From 258dc6b41c876f3a8340f0d15a3a1d00842c1620 Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Sun, 24 Nov 2024 18:08:34 -0500 Subject: [PATCH] feat: use the new reserved rules api --- grammar.js | 13 + src/grammar.json | 146 +- src/parser.c | 115149 ++++++++++++++++++------------------ src/tree_sitter/array.h | 3 +- src/tree_sitter/parser.h | 11 +- test/corpus/errors.txt | 43 + 6 files changed, 57355 insertions(+), 58010 deletions(-) diff --git a/grammar.js b/grammar.js index ce62fe51..a35b0ff4 100644 --- a/grammar.js +++ b/grammar.js @@ -99,6 +99,19 @@ module.exports = grammar({ $.keyword_identifier, ], + reserved: { + global: _ => [ + // https://docs.python.org/3/reference/lexical_analysis.html#keywords + 'False', 'await', 'else', 'import', 'pass', + 'None', 'break', 'except', 'in', 'raise', + 'True', 'class', 'finally', 'is', 'return', + 'and', 'continue', 'for', 'lambda', 'try', + 'as', 'def', 'from', 'nonlocal', 'while', + 'assert', 'del', 'global', 'not', 'with', + 'async', 'elif', 'if', 'or', 'yield', + ], + }, + word: $ => $.identifier, rules: { diff --git a/src/grammar.json b/src/grammar.json index 16d4baf8..979c2f75 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -6302,5 +6302,149 @@ "primary_expression", "pattern", "parameter" - ] + ], + "reserved": { + "global": [ + { + "type": "STRING", + "value": "False" + }, + { + "type": "STRING", + "value": "await" + }, + { + "type": "STRING", + "value": "else" + }, + { + "type": "STRING", + "value": "import" + }, + { + "type": "STRING", + "value": "pass" + }, + { + "type": "STRING", + "value": "None" + }, + { + "type": "STRING", + "value": "break" + }, + { + "type": "STRING", + "value": "except" + }, + { + "type": "STRING", + "value": "in" + }, + { + "type": "STRING", + "value": "raise" + }, + { + "type": "STRING", + "value": "True" + }, + { + "type": "STRING", + "value": "class" + }, + { + "type": "STRING", + "value": "finally" + }, + { + "type": "STRING", + "value": "is" + }, + { + "type": "STRING", + "value": "return" + }, + { + "type": "STRING", + "value": "and" + }, + { + "type": "STRING", + "value": "continue" + }, + { + "type": "STRING", + "value": "for" + }, + { + "type": "STRING", + "value": "lambda" + }, + { + "type": "STRING", + "value": "try" + }, + { + "type": "STRING", + "value": "as" + }, + { + "type": "STRING", + "value": "def" + }, + { + "type": "STRING", + "value": "from" + }, + { + "type": "STRING", + "value": "nonlocal" + }, + { + "type": "STRING", + "value": "while" + }, + { + "type": "STRING", + "value": "assert" + }, + { + "type": "STRING", + "value": "del" + }, + { + "type": "STRING", + "value": "global" + }, + { + "type": "STRING", + "value": "not" + }, + { + "type": "STRING", + "value": "with" + }, + { + "type": "STRING", + "value": "async" + }, + { + "type": "STRING", + "value": "elif" + }, + { + "type": "STRING", + "value": "if" + }, + { + "type": "STRING", + "value": "or" + }, + { + "type": "STRING", + "value": "yield" + } + ] + } } diff --git a/src/parser.c b/src/parser.c index 1f98bb34..67edf875 100644 --- a/src/parser.c +++ b/src/parser.c @@ -1,18 +1,21 @@ +/* Automatically generated by tree-sitter v0.25.0 (ebb9df536c1fa3f7cc733cdc4c749d0b9a1bc096) */ + #include "tree_sitter/parser.h" #if defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif -#define LANGUAGE_VERSION 14 -#define STATE_COUNT 2795 -#define LARGE_STATE_COUNT 189 +#define LANGUAGE_VERSION 15 +#define STATE_COUNT 2775 +#define LARGE_STATE_COUNT 183 #define SYMBOL_COUNT 273 #define ALIAS_COUNT 2 #define TOKEN_COUNT 108 #define EXTERNAL_TOKEN_COUNT 12 #define FIELD_COUNT 32 #define MAX_ALIAS_SEQUENCE_LENGTH 10 +#define MAX_RESERVED_WORD_SET_SIZE 35 #define PRODUCTION_ID_COUNT 138 enum ts_symbol_identifiers { @@ -2781,7 +2784,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [13] = 13, [14] = 14, [15] = 15, - [16] = 2, + [16] = 16, [17] = 17, [18] = 18, [19] = 19, @@ -2799,700 +2802,700 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [31] = 31, [32] = 32, [33] = 33, - [34] = 30, - [35] = 3, - [36] = 4, - [37] = 5, - [38] = 6, - [39] = 7, - [40] = 8, - [41] = 9, - [42] = 10, - [43] = 11, - [44] = 12, - [45] = 13, - [46] = 14, - [47] = 15, - [48] = 48, - [49] = 17, - [50] = 18, - [51] = 19, - [52] = 20, - [53] = 21, - [54] = 22, - [55] = 24, - [56] = 25, - [57] = 28, - [58] = 29, - [59] = 59, - [60] = 48, - [61] = 59, + [34] = 34, + [35] = 4, + [36] = 5, + [37] = 6, + [38] = 7, + [39] = 8, + [40] = 9, + [41] = 10, + [42] = 11, + [43] = 12, + [44] = 13, + [45] = 14, + [46] = 15, + [47] = 16, + [48] = 17, + [49] = 18, + [50] = 19, + [51] = 20, + [52] = 21, + [53] = 22, + [54] = 23, + [55] = 25, + [56] = 26, + [57] = 29, + [58] = 30, + [59] = 31, + [60] = 34, + [61] = 3, [62] = 62, - [63] = 62, - [64] = 64, + [63] = 63, + [64] = 62, [65] = 65, - [66] = 62, - [67] = 65, - [68] = 62, - [69] = 62, - [70] = 62, - [71] = 62, - [72] = 62, + [66] = 63, + [67] = 63, + [68] = 63, + [69] = 63, + [70] = 63, + [71] = 71, + [72] = 71, [73] = 73, - [74] = 73, + [74] = 74, [75] = 75, - [76] = 76, - [77] = 75, - [78] = 76, - [79] = 79, - [80] = 80, - [81] = 79, - [82] = 80, + [76] = 75, + [77] = 73, + [78] = 78, + [79] = 78, + [80] = 74, + [81] = 81, + [82] = 81, [83] = 83, [84] = 83, [85] = 85, - [86] = 85, + [86] = 86, [87] = 87, [88] = 88, - [89] = 89, + [89] = 85, [90] = 90, - [91] = 91, + [91] = 86, [92] = 92, [93] = 93, [94] = 94, [95] = 95, [96] = 96, - [97] = 97, - [98] = 88, - [99] = 93, + [97] = 93, + [98] = 98, + [99] = 99, [100] = 100, [101] = 101, - [102] = 96, + [102] = 87, [103] = 103, - [104] = 104, + [104] = 95, [105] = 105, - [106] = 106, - [107] = 101, + [106] = 96, + [107] = 107, [108] = 108, [109] = 109, - [110] = 97, - [111] = 111, - [112] = 90, - [113] = 100, - [114] = 109, - [115] = 91, - [116] = 116, - [117] = 92, - [118] = 118, - [119] = 119, - [120] = 106, - [121] = 121, + [110] = 88, + [111] = 98, + [112] = 112, + [113] = 113, + [114] = 99, + [115] = 115, + [116] = 100, + [117] = 117, + [118] = 92, + [119] = 101, + [120] = 120, + [121] = 103, [122] = 122, - [123] = 123, - [124] = 122, - [125] = 94, - [126] = 118, - [127] = 104, - [128] = 128, - [129] = 105, - [130] = 95, - [131] = 123, - [132] = 103, - [133] = 121, - [134] = 134, - [135] = 108, - [136] = 89, - [137] = 137, - [138] = 137, - [139] = 137, - [140] = 140, - [141] = 140, - [142] = 137, - [143] = 137, - [144] = 140, - [145] = 137, - [146] = 140, - [147] = 140, - [148] = 137, - [149] = 140, - [150] = 140, - [151] = 137, - [152] = 140, - [153] = 153, - [154] = 154, - [155] = 154, - [156] = 156, - [157] = 157, - [158] = 158, - [159] = 157, - [160] = 154, - [161] = 156, - [162] = 156, - [163] = 156, - [164] = 157, - [165] = 158, - [166] = 157, - [167] = 157, - [168] = 168, - [169] = 169, - [170] = 157, - [171] = 158, - [172] = 156, - [173] = 157, - [174] = 158, - [175] = 154, - [176] = 176, - [177] = 156, - [178] = 154, - [179] = 168, - [180] = 168, - [181] = 169, - [182] = 158, - [183] = 157, - [184] = 158, - [185] = 158, - [186] = 158, - [187] = 156, - [188] = 176, - [189] = 189, - [190] = 190, - [191] = 189, + [123] = 105, + [124] = 124, + [125] = 90, + [126] = 107, + [127] = 108, + [128] = 120, + [129] = 129, + [130] = 130, + [131] = 109, + [132] = 112, + [133] = 113, + [134] = 129, + [135] = 135, + [136] = 136, + [137] = 135, + [138] = 135, + [139] = 136, + [140] = 135, + [141] = 136, + [142] = 135, + [143] = 136, + [144] = 136, + [145] = 135, + [146] = 136, + [147] = 147, + [148] = 148, + [149] = 148, + [150] = 150, + [151] = 151, + [152] = 152, + [153] = 150, + [154] = 151, + [155] = 148, + [156] = 150, + [157] = 150, + [158] = 151, + [159] = 151, + [160] = 160, + [161] = 161, + [162] = 152, + [163] = 151, + [164] = 151, + [165] = 152, + [166] = 161, + [167] = 161, + [168] = 152, + [169] = 152, + [170] = 151, + [171] = 171, + [172] = 151, + [173] = 148, + [174] = 148, + [175] = 160, + [176] = 150, + [177] = 150, + [178] = 152, + [179] = 152, + [180] = 152, + [181] = 171, + [182] = 150, + [183] = 183, + [184] = 184, + [185] = 185, + [186] = 186, + [187] = 184, + [188] = 188, + [189] = 184, + [190] = 183, + [191] = 185, [192] = 192, - [193] = 190, - [194] = 194, - [195] = 189, - [196] = 192, - [197] = 190, - [198] = 198, - [199] = 199, - [200] = 189, - [201] = 189, - [202] = 192, - [203] = 189, - [204] = 192, - [205] = 189, - [206] = 192, - [207] = 190, - [208] = 190, - [209] = 209, - [210] = 209, - [211] = 189, - [212] = 192, - [213] = 190, - [214] = 190, - [215] = 192, - [216] = 192, - [217] = 189, - [218] = 192, - [219] = 192, - [220] = 192, - [221] = 190, - [222] = 222, - [223] = 223, - [224] = 224, - [225] = 225, - [226] = 225, - [227] = 224, - [228] = 225, - [229] = 225, + [193] = 184, + [194] = 183, + [195] = 185, + [196] = 186, + [197] = 183, + [198] = 183, + [199] = 185, + [200] = 200, + [201] = 184, + [202] = 183, + [203] = 185, + [204] = 185, + [205] = 184, + [206] = 183, + [207] = 185, + [208] = 184, + [209] = 183, + [210] = 185, + [211] = 184, + [212] = 183, + [213] = 183, + [214] = 183, + [215] = 184, + [216] = 216, + [217] = 217, + [218] = 218, + [219] = 219, + [220] = 220, + [221] = 220, + [222] = 220, + [223] = 218, + [224] = 218, + [225] = 220, + [226] = 219, + [227] = 218, + [228] = 228, + [229] = 229, [230] = 230, - [231] = 224, - [232] = 224, - [233] = 230, - [234] = 234, + [231] = 216, + [232] = 232, + [233] = 233, + [234] = 229, [235] = 235, - [236] = 236, + [236] = 229, [237] = 237, - [238] = 238, - [239] = 239, - [240] = 240, + [238] = 232, + [239] = 232, + [240] = 232, [241] = 241, [242] = 242, - [243] = 243, - [244] = 240, - [245] = 243, - [246] = 246, + [243] = 229, + [244] = 244, + [245] = 232, + [246] = 217, [247] = 247, - [248] = 248, - [249] = 240, - [250] = 250, - [251] = 248, - [252] = 252, - [253] = 222, - [254] = 223, - [255] = 250, - [256] = 248, - [257] = 240, - [258] = 243, - [259] = 259, - [260] = 248, - [261] = 248, - [262] = 248, - [263] = 248, - [264] = 239, - [265] = 239, - [266] = 239, - [267] = 248, - [268] = 236, - [269] = 237, - [270] = 242, - [271] = 243, - [272] = 272, + [248] = 235, + [249] = 232, + [250] = 232, + [251] = 232, + [252] = 235, + [253] = 253, + [254] = 254, + [255] = 235, + [256] = 256, + [257] = 230, + [258] = 230, + [259] = 230, + [260] = 260, + [261] = 261, + [262] = 228, + [263] = 241, + [264] = 247, + [265] = 261, + [266] = 266, + [267] = 267, + [268] = 266, + [269] = 269, + [270] = 269, + [271] = 266, + [272] = 267, [273] = 273, [274] = 274, [275] = 275, [276] = 276, [277] = 273, - [278] = 278, - [279] = 275, - [280] = 280, - [281] = 274, - [282] = 272, - [283] = 272, - [284] = 278, + [278] = 274, + [279] = 269, + [280] = 266, + [281] = 267, + [282] = 273, + [283] = 274, + [284] = 275, [285] = 276, - [286] = 273, - [287] = 275, - [288] = 280, - [289] = 274, - [290] = 278, - [291] = 272, - [292] = 278, - [293] = 276, - [294] = 273, - [295] = 275, - [296] = 280, - [297] = 272, - [298] = 278, - [299] = 276, + [286] = 269, + [287] = 266, + [288] = 267, + [289] = 275, + [290] = 276, + [291] = 275, + [292] = 273, + [293] = 274, + [294] = 275, + [295] = 276, + [296] = 276, + [297] = 269, + [298] = 266, + [299] = 267, [300] = 273, - [301] = 275, - [302] = 280, - [303] = 274, - [304] = 272, - [305] = 278, - [306] = 276, - [307] = 273, - [308] = 280, - [309] = 275, - [310] = 280, - [311] = 272, - [312] = 278, - [313] = 276, + [301] = 274, + [302] = 275, + [303] = 276, + [304] = 273, + [305] = 274, + [306] = 269, + [307] = 266, + [308] = 273, + [309] = 274, + [310] = 275, + [311] = 276, + [312] = 269, + [313] = 266, [314] = 273, - [315] = 275, - [316] = 280, - [317] = 272, - [318] = 278, - [319] = 276, - [320] = 273, - [321] = 275, - [322] = 280, - [323] = 274, - [324] = 276, - [325] = 274, + [315] = 274, + [316] = 275, + [317] = 276, + [318] = 269, + [319] = 267, + [320] = 320, + [321] = 321, + [322] = 171, + [323] = 323, + [324] = 324, + [325] = 325, [326] = 326, - [327] = 327, - [328] = 328, + [327] = 323, + [328] = 321, [329] = 329, - [330] = 327, - [331] = 331, + [330] = 320, + [331] = 329, [332] = 332, - [333] = 332, - [334] = 334, - [335] = 326, - [336] = 329, - [337] = 329, - [338] = 332, - [339] = 326, - [340] = 334, - [341] = 341, - [342] = 342, - [343] = 327, - [344] = 176, - [345] = 334, - [346] = 341, - [347] = 341, - [348] = 348, - [349] = 349, - [350] = 350, - [351] = 350, - [352] = 352, - [353] = 352, - [354] = 252, - [355] = 352, - [356] = 348, - [357] = 350, - [358] = 352, - [359] = 352, - [360] = 252, - [361] = 350, - [362] = 352, - [363] = 252, - [364] = 350, - [365] = 350, - [366] = 352, - [367] = 350, - [368] = 350, - [369] = 348, - [370] = 352, + [333] = 325, + [334] = 321, + [335] = 335, + [336] = 325, + [337] = 323, + [338] = 324, + [339] = 329, + [340] = 324, + [341] = 320, + [342] = 237, + [343] = 343, + [344] = 344, + [345] = 343, + [346] = 237, + [347] = 347, + [348] = 343, + [349] = 344, + [350] = 347, + [351] = 347, + [352] = 343, + [353] = 347, + [354] = 347, + [355] = 343, + [356] = 343, + [357] = 347, + [358] = 343, + [359] = 343, + [360] = 344, + [361] = 361, + [362] = 237, + [363] = 347, + [364] = 347, + [365] = 365, + [366] = 366, + [367] = 365, + [368] = 368, + [369] = 368, + [370] = 365, [371] = 371, - [372] = 372, - [373] = 373, - [374] = 373, - [375] = 373, - [376] = 376, - [377] = 371, - [378] = 376, - [379] = 371, - [380] = 328, - [381] = 381, - [382] = 376, - [383] = 342, - [384] = 373, - [385] = 376, - [386] = 371, - [387] = 371, - [388] = 371, - [389] = 156, - [390] = 373, - [391] = 373, - [392] = 373, - [393] = 376, - [394] = 371, - [395] = 373, - [396] = 376, - [397] = 371, - [398] = 373, - [399] = 376, - [400] = 371, + [372] = 335, + [373] = 365, + [374] = 368, + [375] = 366, + [376] = 368, + [377] = 365, + [378] = 368, + [379] = 366, + [380] = 365, + [381] = 365, + [382] = 150, + [383] = 368, + [384] = 366, + [385] = 365, + [386] = 366, + [387] = 368, + [388] = 366, + [389] = 365, + [390] = 366, + [391] = 365, + [392] = 368, + [393] = 368, + [394] = 368, + [395] = 395, + [396] = 366, + [397] = 397, + [398] = 366, + [399] = 366, + [400] = 326, [401] = 401, - [402] = 376, + [402] = 402, [403] = 403, [404] = 404, - [405] = 373, - [406] = 376, - [407] = 371, - [408] = 376, + [405] = 402, + [406] = 171, + [407] = 407, + [408] = 326, [409] = 409, - [410] = 410, - [411] = 411, - [412] = 412, - [413] = 328, - [414] = 414, - [415] = 415, - [416] = 416, - [417] = 156, + [410] = 335, + [411] = 150, + [412] = 171, + [413] = 404, + [414] = 326, + [415] = 171, + [416] = 335, + [417] = 417, [418] = 418, [419] = 419, - [420] = 418, - [421] = 421, - [422] = 176, - [423] = 176, + [420] = 420, + [421] = 420, + [422] = 422, + [423] = 423, [424] = 424, [425] = 425, - [426] = 421, - [427] = 328, + [426] = 426, + [427] = 427, [428] = 428, - [429] = 409, - [430] = 411, - [431] = 431, - [432] = 342, - [433] = 433, - [434] = 434, - [435] = 433, + [429] = 422, + [430] = 420, + [431] = 422, + [432] = 424, + [433] = 426, + [434] = 428, + [435] = 435, [436] = 436, - [437] = 411, + [437] = 424, [438] = 438, - [439] = 404, - [440] = 409, + [439] = 439, + [440] = 426, [441] = 441, - [442] = 342, - [443] = 409, + [442] = 442, + [443] = 428, [444] = 444, - [445] = 409, - [446] = 176, - [447] = 409, - [448] = 409, - [449] = 409, - [450] = 409, - [451] = 409, - [452] = 433, + [445] = 444, + [446] = 444, + [447] = 444, + [448] = 444, + [449] = 444, + [450] = 444, + [451] = 444, + [452] = 444, [453] = 441, - [454] = 431, - [455] = 416, - [456] = 441, - [457] = 418, - [458] = 421, + [454] = 444, + [455] = 455, + [456] = 456, + [457] = 455, + [458] = 456, [459] = 459, [460] = 460, [461] = 461, - [462] = 462, + [462] = 326, [463] = 463, [464] = 464, - [465] = 342, - [466] = 328, - [467] = 463, - [468] = 468, - [469] = 469, + [465] = 335, + [466] = 466, + [467] = 460, + [468] = 464, + [469] = 459, [470] = 470, - [471] = 471, - [472] = 464, - [473] = 470, - [474] = 462, + [471] = 466, + [472] = 470, + [473] = 461, + [474] = 474, [475] = 475, - [476] = 461, - [477] = 468, + [476] = 476, + [477] = 477, [478] = 475, - [479] = 469, + [479] = 476, [480] = 480, [481] = 481, - [482] = 482, - [483] = 483, + [482] = 480, + [483] = 481, [484] = 484, [485] = 485, [486] = 486, [487] = 487, [488] = 488, - [489] = 480, - [490] = 488, - [491] = 481, - [492] = 482, - [493] = 483, - [494] = 484, - [495] = 487, - [496] = 480, - [497] = 497, - [498] = 488, - [499] = 481, - [500] = 482, - [501] = 483, - [502] = 484, - [503] = 487, + [489] = 489, + [490] = 490, + [491] = 477, + [492] = 475, + [493] = 476, + [494] = 480, + [495] = 481, + [496] = 496, + [497] = 485, + [498] = 485, + [499] = 487, + [500] = 500, + [501] = 477, + [502] = 475, + [503] = 476, [504] = 480, - [505] = 488, - [506] = 506, - [507] = 488, - [508] = 481, - [509] = 482, - [510] = 483, - [511] = 484, - [512] = 487, - [513] = 480, - [514] = 514, - [515] = 488, - [516] = 481, - [517] = 482, - [518] = 483, - [519] = 484, - [520] = 487, - [521] = 480, - [522] = 481, - [523] = 482, + [505] = 481, + [506] = 485, + [507] = 487, + [508] = 477, + [509] = 475, + [510] = 476, + [511] = 480, + [512] = 481, + [513] = 485, + [514] = 487, + [515] = 477, + [516] = 475, + [517] = 476, + [518] = 480, + [519] = 481, + [520] = 485, + [521] = 487, + [522] = 474, + [523] = 523, [524] = 524, [525] = 525, - [526] = 526, + [526] = 487, [527] = 527, - [528] = 525, - [529] = 529, - [530] = 530, + [528] = 528, + [529] = 525, + [530] = 484, [531] = 531, - [532] = 532, - [533] = 483, - [534] = 534, - [535] = 535, + [532] = 488, + [533] = 533, + [534] = 489, + [535] = 477, [536] = 536, [537] = 537, - [538] = 484, + [538] = 487, [539] = 539, - [540] = 529, - [541] = 497, - [542] = 530, - [543] = 487, - [544] = 514, - [545] = 527, - [546] = 546, - [547] = 497, - [548] = 532, - [549] = 488, - [550] = 525, - [551] = 526, - [552] = 546, - [553] = 532, - [554] = 554, - [555] = 487, + [540] = 540, + [541] = 475, + [542] = 542, + [543] = 543, + [544] = 544, + [545] = 544, + [546] = 476, + [547] = 547, + [548] = 480, + [549] = 542, + [550] = 481, + [551] = 540, + [552] = 490, + [553] = 474, + [554] = 524, + [555] = 533, [556] = 556, - [557] = 557, - [558] = 546, - [559] = 497, - [560] = 525, - [561] = 526, - [562] = 562, - [563] = 563, - [564] = 481, - [565] = 532, - [566] = 566, - [567] = 567, - [568] = 568, - [569] = 482, - [570] = 570, - [571] = 525, - [572] = 526, - [573] = 483, - [574] = 484, - [575] = 488, - [576] = 546, - [577] = 481, - [578] = 482, - [579] = 483, - [580] = 484, - [581] = 525, - [582] = 526, - [583] = 497, - [584] = 480, - [585] = 585, - [586] = 586, - [587] = 487, - [588] = 525, - [589] = 526, - [590] = 562, - [591] = 563, - [592] = 480, - [593] = 525, - [594] = 485, - [595] = 486, - [596] = 570, - [597] = 570, - [598] = 570, - [599] = 570, - [600] = 570, - [601] = 570, - [602] = 570, - [603] = 568, - [604] = 535, - [605] = 557, + [557] = 540, + [558] = 490, + [559] = 559, + [560] = 560, + [561] = 474, + [562] = 524, + [563] = 533, + [564] = 474, + [565] = 524, + [566] = 477, + [567] = 474, + [568] = 524, + [569] = 475, + [570] = 490, + [571] = 571, + [572] = 474, + [573] = 573, + [574] = 476, + [575] = 480, + [576] = 481, + [577] = 474, + [578] = 524, + [579] = 490, + [580] = 531, + [581] = 581, + [582] = 533, + [583] = 547, + [584] = 485, + [585] = 547, + [586] = 485, + [587] = 547, + [588] = 547, + [589] = 547, + [590] = 487, + [591] = 547, + [592] = 547, + [593] = 593, + [594] = 594, + [595] = 500, + [596] = 571, + [597] = 477, + [598] = 486, + [599] = 537, + [600] = 556, + [601] = 540, + [602] = 543, + [603] = 603, + [604] = 604, + [605] = 605, [606] = 606, - [607] = 536, + [607] = 607, [608] = 606, [609] = 609, [610] = 610, - [611] = 611, - [612] = 612, - [613] = 612, - [614] = 610, + [611] = 607, + [612] = 609, + [613] = 610, + [614] = 614, [615] = 615, [616] = 616, - [617] = 617, - [618] = 615, - [619] = 616, - [620] = 611, - [621] = 617, + [617] = 604, + [618] = 605, + [619] = 615, + [620] = 616, + [621] = 621, [622] = 622, [623] = 623, - [624] = 622, - [625] = 623, + [624] = 624, + [625] = 625, [626] = 626, - [627] = 627, + [627] = 624, [628] = 628, [629] = 629, [630] = 630, [631] = 631, - [632] = 630, - [633] = 631, + [632] = 629, + [633] = 633, [634] = 634, - [635] = 634, + [635] = 626, [636] = 636, - [637] = 637, + [637] = 633, [638] = 638, - [639] = 639, - [640] = 629, - [641] = 628, + [639] = 628, + [640] = 622, + [641] = 641, [642] = 642, [643] = 643, [644] = 644, - [645] = 645, - [646] = 646, - [647] = 647, - [648] = 648, + [645] = 638, + [646] = 621, + [647] = 631, + [648] = 636, [649] = 649, - [650] = 648, + [650] = 650, [651] = 651, [652] = 652, [653] = 653, [654] = 654, - [655] = 655, - [656] = 223, - [657] = 649, - [658] = 652, - [659] = 653, - [660] = 655, - [661] = 652, - [662] = 653, - [663] = 654, - [664] = 654, + [655] = 216, + [656] = 626, + [657] = 628, + [658] = 658, + [659] = 659, + [660] = 628, + [661] = 622, + [662] = 662, + [663] = 658, + [664] = 664, [665] = 665, - [666] = 666, - [667] = 649, + [666] = 659, + [667] = 629, [668] = 668, - [669] = 669, - [670] = 670, - [671] = 655, - [672] = 672, - [673] = 655, - [674] = 651, - [675] = 675, - [676] = 675, - [677] = 677, - [678] = 652, - [679] = 653, - [680] = 654, - [681] = 665, - [682] = 666, - [683] = 649, - [684] = 649, - [685] = 668, - [686] = 670, - [687] = 672, - [688] = 677, - [689] = 649, - [690] = 222, - [691] = 655, - [692] = 653, - [693] = 652, - [694] = 653, - [695] = 654, - [696] = 652, - [697] = 654, - [698] = 669, - [699] = 655, - [700] = 700, - [701] = 701, - [702] = 702, - [703] = 703, - [704] = 704, - [705] = 705, + [669] = 654, + [670] = 662, + [671] = 671, + [672] = 626, + [673] = 664, + [674] = 665, + [675] = 653, + [676] = 668, + [677] = 671, + [678] = 633, + [679] = 622, + [680] = 629, + [681] = 652, + [682] = 217, + [683] = 633, + [684] = 684, + [685] = 685, + [686] = 686, + [687] = 687, + [688] = 688, + [689] = 689, + [690] = 690, + [691] = 690, + [692] = 692, + [693] = 684, + [694] = 687, + [695] = 692, + [696] = 696, + [697] = 697, + [698] = 697, + [699] = 699, + [700] = 696, + [701] = 685, + [702] = 686, + [703] = 689, + [704] = 688, + [705] = 699, [706] = 706, [707] = 707, - [708] = 708, - [709] = 709, - [710] = 709, - [711] = 708, + [708] = 707, + [709] = 706, + [710] = 710, + [711] = 710, [712] = 712, - [713] = 700, - [714] = 707, - [715] = 712, - [716] = 701, - [717] = 706, - [718] = 704, - [719] = 703, - [720] = 705, - [721] = 702, + [713] = 713, + [714] = 714, + [715] = 715, + [716] = 716, + [717] = 717, + [718] = 718, + [719] = 719, + [720] = 720, + [721] = 721, [722] = 722, - [723] = 723, - [724] = 722, + [723] = 216, + [724] = 724, [725] = 725, - [726] = 725, - [727] = 723, + [726] = 726, + [727] = 727, [728] = 728, [729] = 729, [730] = 730, @@ -3502,2064 +3505,2044 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [734] = 734, [735] = 735, [736] = 736, - [737] = 737, + [737] = 726, [738] = 738, [739] = 739, [740] = 740, [741] = 741, [742] = 742, - [743] = 743, + [743] = 713, [744] = 744, [745] = 745, - [746] = 746, + [746] = 732, [747] = 747, [748] = 748, - [749] = 749, - [750] = 750, + [749] = 733, + [750] = 734, [751] = 751, - [752] = 752, - [753] = 753, + [752] = 735, + [753] = 736, [754] = 754, - [755] = 755, - [756] = 756, - [757] = 757, - [758] = 758, - [759] = 759, - [760] = 760, + [755] = 727, + [756] = 728, + [757] = 738, + [758] = 754, + [759] = 740, + [760] = 742, [761] = 761, [762] = 762, [763] = 763, [764] = 764, - [765] = 765, + [765] = 744, [766] = 766, [767] = 767, - [768] = 768, - [769] = 763, - [770] = 764, - [771] = 771, - [772] = 728, - [773] = 761, + [768] = 745, + [769] = 747, + [770] = 770, + [771] = 748, + [772] = 751, + [773] = 773, [774] = 774, [775] = 775, - [776] = 776, + [776] = 761, [777] = 777, - [778] = 731, + [778] = 778, [779] = 779, [780] = 780, [781] = 781, - [782] = 736, - [783] = 739, - [784] = 741, - [785] = 785, - [786] = 786, - [787] = 765, - [788] = 766, - [789] = 752, - [790] = 762, + [782] = 782, + [783] = 762, + [784] = 779, + [785] = 763, + [786] = 764, + [787] = 766, + [788] = 775, + [789] = 789, + [790] = 790, [791] = 791, - [792] = 754, + [792] = 792, [793] = 793, - [794] = 742, - [795] = 795, - [796] = 780, - [797] = 797, - [798] = 223, - [799] = 767, - [800] = 775, - [801] = 774, - [802] = 776, - [803] = 785, - [804] = 804, - [805] = 805, - [806] = 791, - [807] = 793, - [808] = 786, - [809] = 809, - [810] = 810, - [811] = 804, - [812] = 771, - [813] = 813, - [814] = 730, - [815] = 757, - [816] = 805, - [817] = 795, - [818] = 729, - [819] = 737, - [820] = 755, - [821] = 779, - [822] = 809, - [823] = 810, - [824] = 797, - [825] = 732, - [826] = 733, - [827] = 734, - [828] = 735, - [829] = 738, - [830] = 740, - [831] = 744, - [832] = 745, - [833] = 746, - [834] = 747, - [835] = 748, - [836] = 749, - [837] = 750, - [838] = 751, - [839] = 753, - [840] = 813, - [841] = 756, - [842] = 777, - [843] = 758, - [844] = 781, - [845] = 768, - [846] = 759, - [847] = 760, - [848] = 781, - [849] = 768, - [850] = 743, - [851] = 222, - [852] = 852, - [853] = 852, - [854] = 852, - [855] = 852, - [856] = 852, - [857] = 852, - [858] = 858, - [859] = 858, - [860] = 860, - [861] = 860, - [862] = 860, - [863] = 860, - [864] = 860, + [794] = 794, + [795] = 767, + [796] = 796, + [797] = 731, + [798] = 798, + [799] = 729, + [800] = 730, + [801] = 770, + [802] = 725, + [803] = 796, + [804] = 773, + [805] = 712, + [806] = 774, + [807] = 807, + [808] = 777, + [809] = 778, + [810] = 714, + [811] = 715, + [812] = 780, + [813] = 781, + [814] = 716, + [815] = 717, + [816] = 718, + [817] = 719, + [818] = 720, + [819] = 721, + [820] = 782, + [821] = 722, + [822] = 789, + [823] = 741, + [824] = 791, + [825] = 792, + [826] = 794, + [827] = 793, + [828] = 790, + [829] = 739, + [830] = 217, + [831] = 798, + [832] = 724, + [833] = 793, + [834] = 739, + [835] = 807, + [836] = 836, + [837] = 836, + [838] = 836, + [839] = 836, + [840] = 836, + [841] = 836, + [842] = 842, + [843] = 842, + [844] = 844, + [845] = 844, + [846] = 844, + [847] = 844, + [848] = 844, + [849] = 844, + [850] = 844, + [851] = 851, + [852] = 844, + [853] = 853, + [854] = 854, + [855] = 855, + [856] = 856, + [857] = 857, + [858] = 856, + [859] = 859, + [860] = 853, + [861] = 861, + [862] = 859, + [863] = 863, + [864] = 861, [865] = 865, - [866] = 860, - [867] = 860, - [868] = 860, - [869] = 869, - [870] = 870, - [871] = 871, + [866] = 854, + [867] = 857, + [868] = 856, + [869] = 853, + [870] = 863, + [871] = 865, [872] = 872, - [873] = 869, + [873] = 854, [874] = 874, - [875] = 875, - [876] = 876, - [877] = 875, - [878] = 876, - [879] = 879, - [880] = 880, - [881] = 870, - [882] = 871, - [883] = 883, - [884] = 871, - [885] = 880, + [875] = 853, + [876] = 857, + [877] = 855, + [878] = 859, + [879] = 856, + [880] = 861, + [881] = 859, + [882] = 853, + [883] = 861, + [884] = 863, + [885] = 865, [886] = 886, - [887] = 887, + [887] = 854, [888] = 872, - [889] = 869, - [890] = 874, - [891] = 876, - [892] = 880, - [893] = 875, - [894] = 870, - [895] = 879, - [896] = 871, - [897] = 887, - [898] = 869, - [899] = 872, - [900] = 887, - [901] = 869, - [902] = 880, - [903] = 875, - [904] = 874, - [905] = 879, - [906] = 870, - [907] = 874, - [908] = 875, - [909] = 865, - [910] = 879, + [889] = 874, + [890] = 857, + [891] = 856, + [892] = 853, + [893] = 863, + [894] = 865, + [895] = 859, + [896] = 861, + [897] = 872, + [898] = 854, + [899] = 874, + [900] = 857, + [901] = 856, + [902] = 854, + [903] = 863, + [904] = 857, + [905] = 865, + [906] = 863, + [907] = 872, + [908] = 854, + [909] = 874, + [910] = 874, [911] = 872, - [912] = 865, - [913] = 886, - [914] = 871, - [915] = 875, - [916] = 883, - [917] = 879, - [918] = 870, - [919] = 887, - [920] = 875, - [921] = 887, - [922] = 871, + [912] = 874, + [913] = 857, + [914] = 872, + [915] = 874, + [916] = 855, + [917] = 872, + [918] = 859, + [919] = 861, + [920] = 865, + [921] = 854, + [922] = 857, [923] = 872, - [924] = 874, - [925] = 871, - [926] = 875, - [927] = 876, - [928] = 869, - [929] = 875, - [930] = 874, - [931] = 887, - [932] = 872, - [933] = 880, - [934] = 879, - [935] = 876, - [936] = 879, - [937] = 880, - [938] = 887, - [939] = 872, - [940] = 869, - [941] = 869, - [942] = 874, - [943] = 883, - [944] = 876, - [945] = 875, - [946] = 880, - [947] = 870, - [948] = 879, - [949] = 876, - [950] = 871, - [951] = 874, - [952] = 876, - [953] = 870, - [954] = 883, - [955] = 880, - [956] = 870, - [957] = 872, - [958] = 875, - [959] = 875, - [960] = 875, - [961] = 887, - [962] = 883, - [963] = 865, + [924] = 872, + [925] = 856, + [926] = 853, + [927] = 863, + [928] = 886, + [929] = 859, + [930] = 861, + [931] = 856, + [932] = 851, + [933] = 853, + [934] = 865, + [935] = 855, + [936] = 872, + [937] = 874, + [938] = 863, + [939] = 859, + [940] = 861, + [941] = 872, + [942] = 872, + [943] = 872, + [944] = 855, + [945] = 865, + [946] = 851, + [947] = 851, + [948] = 948, + [949] = 949, + [950] = 851, + [951] = 851, + [952] = 851, + [953] = 851, + [954] = 954, + [955] = 955, + [956] = 948, + [957] = 954, + [958] = 949, + [959] = 948, + [960] = 851, + [961] = 949, + [962] = 962, + [963] = 954, [964] = 964, - [965] = 865, - [966] = 865, - [967] = 865, + [965] = 965, + [966] = 966, + [967] = 967, [968] = 968, [969] = 969, - [970] = 865, - [971] = 969, - [972] = 968, - [973] = 973, + [970] = 970, + [971] = 971, + [972] = 965, + [973] = 949, [974] = 974, - [975] = 969, - [976] = 865, - [977] = 977, - [978] = 964, - [979] = 968, - [980] = 980, - [981] = 981, - [982] = 982, - [983] = 983, - [984] = 964, - [985] = 985, - [986] = 986, - [987] = 987, - [988] = 981, - [989] = 983, - [990] = 985, - [991] = 865, - [992] = 637, - [993] = 964, - [994] = 985, - [995] = 964, - [996] = 969, - [997] = 997, - [998] = 977, - [999] = 973, - [1000] = 982, - [1001] = 964, - [1002] = 987, - [1003] = 986, - [1004] = 968, - [1005] = 642, - [1006] = 968, - [1007] = 980, - [1008] = 865, - [1009] = 1009, - [1010] = 969, - [1011] = 987, - [1012] = 986, - [1013] = 980, - [1014] = 974, - [1015] = 969, - [1016] = 645, - [1017] = 983, - [1018] = 643, - [1019] = 627, - [1020] = 964, - [1021] = 973, - [1022] = 968, - [1023] = 1023, - [1024] = 982, - [1025] = 974, - [1026] = 981, - [1027] = 1027, - [1028] = 969, - [1029] = 968, - [1030] = 865, - [1031] = 977, - [1032] = 647, - [1033] = 644, - [1034] = 1034, - [1035] = 1035, - [1036] = 986, - [1037] = 1037, - [1038] = 1038, + [975] = 954, + [976] = 976, + [977] = 643, + [978] = 851, + [979] = 851, + [980] = 954, + [981] = 969, + [982] = 971, + [983] = 966, + [984] = 967, + [985] = 962, + [986] = 964, + [987] = 966, + [988] = 955, + [989] = 969, + [990] = 955, + [991] = 644, + [992] = 954, + [993] = 642, + [994] = 625, + [995] = 968, + [996] = 949, + [997] = 965, + [998] = 968, + [999] = 970, + [1000] = 970, + [1001] = 623, + [1002] = 1002, + [1003] = 651, + [1004] = 964, + [1005] = 851, + [1006] = 948, + [1007] = 948, + [1008] = 641, + [1009] = 971, + [1010] = 948, + [1011] = 1011, + [1012] = 949, + [1013] = 948, + [1014] = 962, + [1015] = 967, + [1016] = 949, + [1017] = 1017, + [1018] = 954, + [1019] = 967, + [1020] = 1011, + [1021] = 968, + [1022] = 970, + [1023] = 625, + [1024] = 641, + [1025] = 642, + [1026] = 643, + [1027] = 644, + [1028] = 623, + [1029] = 974, + [1030] = 969, + [1031] = 971, + [1032] = 965, + [1033] = 1033, + [1034] = 962, + [1035] = 964, + [1036] = 966, + [1037] = 955, + [1038] = 954, [1039] = 1039, - [1040] = 1040, - [1041] = 1041, - [1042] = 1042, + [1040] = 1017, + [1041] = 976, + [1042] = 1002, [1043] = 1043, - [1044] = 612, - [1045] = 639, - [1046] = 646, - [1047] = 1034, - [1048] = 1023, - [1049] = 1009, - [1050] = 983, - [1051] = 981, + [1044] = 614, + [1045] = 1045, + [1046] = 1046, + [1047] = 948, + [1048] = 650, + [1049] = 949, + [1050] = 1050, + [1051] = 1051, [1052] = 1052, [1053] = 1053, [1054] = 1054, - [1055] = 627, - [1056] = 973, - [1057] = 974, - [1058] = 977, - [1059] = 980, - [1060] = 985, - [1061] = 982, - [1062] = 987, - [1063] = 986, - [1064] = 644, - [1065] = 637, - [1066] = 645, - [1067] = 647, - [1068] = 642, - [1069] = 643, - [1070] = 626, - [1071] = 638, + [1055] = 968, + [1056] = 1052, + [1057] = 970, + [1058] = 1058, + [1059] = 1059, + [1060] = 1060, + [1061] = 1061, + [1062] = 968, + [1063] = 1063, + [1064] = 969, + [1065] = 971, + [1066] = 965, + [1067] = 967, + [1068] = 962, + [1069] = 964, + [1070] = 966, + [1071] = 955, [1072] = 1072, [1073] = 1073, [1074] = 1074, - [1075] = 983, - [1076] = 981, + [1075] = 1075, + [1076] = 1076, [1077] = 1077, [1078] = 1078, [1079] = 1079, - [1080] = 973, - [1081] = 974, - [1082] = 977, - [1083] = 980, - [1084] = 985, - [1085] = 982, - [1086] = 987, - [1087] = 986, - [1088] = 997, + [1080] = 1080, + [1081] = 616, + [1082] = 605, + [1083] = 630, + [1084] = 634, + [1085] = 1017, + [1086] = 976, + [1087] = 1002, + [1088] = 968, [1089] = 1089, - [1090] = 1027, + [1090] = 970, [1091] = 1091, [1092] = 1092, [1093] = 1093, - [1094] = 997, - [1095] = 983, - [1096] = 981, - [1097] = 1027, - [1098] = 973, - [1099] = 974, - [1100] = 977, - [1101] = 980, - [1102] = 985, - [1103] = 982, - [1104] = 987, - [1105] = 986, - [1106] = 1106, - [1107] = 969, - [1108] = 1034, - [1109] = 1023, - [1110] = 1009, - [1111] = 964, - [1112] = 968, - [1113] = 1113, - [1114] = 1114, - [1115] = 1115, - [1116] = 1116, - [1117] = 1117, - [1118] = 1118, - [1119] = 1119, - [1120] = 1073, - [1121] = 983, - [1122] = 981, - [1123] = 1123, - [1124] = 1124, - [1125] = 1125, - [1126] = 1126, - [1127] = 973, - [1128] = 974, - [1129] = 977, - [1130] = 980, - [1131] = 985, - [1132] = 982, - [1133] = 987, - [1134] = 617, - [1135] = 1078, - [1136] = 1126, - [1137] = 626, - [1138] = 1035, - [1139] = 628, - [1140] = 629, - [1141] = 997, - [1142] = 631, - [1143] = 639, - [1144] = 646, - [1145] = 1034, - [1146] = 1023, - [1147] = 1009, - [1148] = 634, - [1149] = 1117, - [1150] = 1118, - [1151] = 1123, - [1152] = 1043, - [1153] = 1027, - [1154] = 1072, - [1155] = 1079, - [1156] = 1092, - [1157] = 1093, - [1158] = 1106, - [1159] = 1113, - [1160] = 1124, - [1161] = 1037, - [1162] = 1038, - [1163] = 1039, - [1164] = 1040, - [1165] = 1041, - [1166] = 1042, - [1167] = 1074, - [1168] = 1077, - [1169] = 1078, - [1170] = 1089, - [1171] = 1091, - [1172] = 1035, - [1173] = 638, - [1174] = 1034, - [1175] = 1023, - [1176] = 1009, - [1177] = 1117, - [1178] = 1118, - [1179] = 1123, - [1180] = 997, - [1181] = 1043, - [1182] = 1072, - [1183] = 1079, - [1184] = 1092, - [1185] = 1093, - [1186] = 1106, - [1187] = 612, - [1188] = 1113, - [1189] = 1124, - [1190] = 1037, - [1191] = 1038, - [1192] = 1039, - [1193] = 1040, - [1194] = 1041, - [1195] = 1042, - [1196] = 1074, - [1197] = 1077, - [1198] = 644, - [1199] = 1125, - [1200] = 645, - [1201] = 1089, - [1202] = 1091, - [1203] = 1119, - [1204] = 627, - [1205] = 1052, - [1206] = 644, - [1207] = 637, - [1208] = 645, - [1209] = 647, - [1210] = 642, - [1211] = 643, - [1212] = 997, - [1213] = 638, - [1214] = 1119, - [1215] = 642, - [1216] = 1073, - [1217] = 983, - [1218] = 981, - [1219] = 1073, - [1220] = 1027, - [1221] = 1125, - [1222] = 1126, - [1223] = 973, - [1224] = 974, - [1225] = 977, - [1226] = 980, - [1227] = 985, - [1228] = 982, - [1229] = 987, - [1230] = 986, - [1231] = 639, - [1232] = 646, - [1233] = 638, - [1234] = 1053, - [1235] = 1054, - [1236] = 643, - [1237] = 626, - [1238] = 997, - [1239] = 612, - [1240] = 617, - [1241] = 1034, - [1242] = 1023, - [1243] = 1009, - [1244] = 1034, - [1245] = 1027, - [1246] = 1052, - [1247] = 1053, - [1248] = 1054, - [1249] = 1023, - [1250] = 1009, - [1251] = 627, - [1252] = 647, - [1253] = 1027, - [1254] = 617, - [1255] = 637, - [1256] = 1123, - [1257] = 638, - [1258] = 1119, - [1259] = 1126, - [1260] = 1125, - [1261] = 636, - [1262] = 1092, - [1263] = 1093, - [1264] = 1106, - [1265] = 1126, - [1266] = 627, - [1267] = 1113, - [1268] = 1035, - [1269] = 1072, - [1270] = 1035, - [1271] = 638, - [1272] = 639, - [1273] = 646, - [1274] = 1034, - [1275] = 1023, - [1276] = 1009, - [1277] = 1117, - [1278] = 1118, - [1279] = 1125, - [1280] = 1123, - [1281] = 1124, - [1282] = 1043, - [1283] = 1037, - [1284] = 1072, - [1285] = 1079, - [1286] = 1092, - [1287] = 1093, - [1288] = 1106, - [1289] = 1126, - [1290] = 1113, - [1291] = 1038, - [1292] = 1039, - [1293] = 1040, - [1294] = 1041, - [1295] = 1042, - [1296] = 1089, - [1297] = 1074, - [1298] = 1077, - [1299] = 1124, - [1300] = 1037, - [1301] = 1038, - [1302] = 1039, - [1303] = 1040, - [1304] = 1041, - [1305] = 1042, - [1306] = 1092, - [1307] = 1074, - [1308] = 1077, - [1309] = 1078, - [1310] = 1093, - [1311] = 627, - [1312] = 1106, - [1313] = 1089, - [1314] = 1091, - [1315] = 1043, - [1316] = 1113, - [1317] = 1078, - [1318] = 1124, - [1319] = 1037, - [1320] = 1038, - [1321] = 1091, - [1322] = 1039, - [1323] = 1040, - [1324] = 644, - [1325] = 1041, - [1326] = 1042, - [1327] = 1089, - [1328] = 644, - [1329] = 637, - [1330] = 645, - [1331] = 627, - [1332] = 647, - [1333] = 1074, - [1334] = 1077, - [1335] = 642, - [1336] = 643, - [1337] = 1078, - [1338] = 1077, - [1339] = 639, - [1340] = 1091, - [1341] = 644, - [1342] = 1119, - [1343] = 645, - [1344] = 647, - [1345] = 642, - [1346] = 643, - [1347] = 997, - [1348] = 639, - [1349] = 646, - [1350] = 638, - [1351] = 1027, - [1352] = 628, - [1353] = 629, - [1354] = 631, - [1355] = 646, - [1356] = 637, - [1357] = 638, - [1358] = 634, - [1359] = 638, - [1360] = 1119, - [1361] = 1117, - [1362] = 1118, - [1363] = 645, - [1364] = 647, - [1365] = 1035, - [1366] = 1089, - [1367] = 1035, - [1368] = 1368, - [1369] = 628, - [1370] = 629, - [1371] = 1371, - [1372] = 631, - [1373] = 1091, - [1374] = 642, - [1375] = 639, - [1376] = 646, - [1377] = 638, - [1378] = 628, - [1379] = 643, - [1380] = 1079, - [1381] = 629, - [1382] = 634, - [1383] = 1117, - [1384] = 1118, - [1385] = 631, - [1386] = 1123, - [1387] = 1123, - [1388] = 1119, - [1389] = 1043, - [1390] = 1078, + [1094] = 1094, + [1095] = 970, + [1096] = 1011, + [1097] = 1097, + [1098] = 1098, + [1099] = 1099, + [1100] = 969, + [1101] = 971, + [1102] = 1102, + [1103] = 965, + [1104] = 974, + [1105] = 967, + [1106] = 962, + [1107] = 964, + [1108] = 651, + [1109] = 969, + [1110] = 971, + [1111] = 965, + [1112] = 967, + [1113] = 962, + [1114] = 964, + [1115] = 966, + [1116] = 955, + [1117] = 966, + [1118] = 955, + [1119] = 624, + [1120] = 1017, + [1121] = 976, + [1122] = 974, + [1123] = 1072, + [1124] = 1073, + [1125] = 969, + [1126] = 971, + [1127] = 965, + [1128] = 967, + [1129] = 962, + [1130] = 964, + [1131] = 966, + [1132] = 955, + [1133] = 1002, + [1134] = 630, + [1135] = 634, + [1136] = 1017, + [1137] = 976, + [1138] = 1002, + [1139] = 650, + [1140] = 1052, + [1141] = 605, + [1142] = 625, + [1143] = 974, + [1144] = 1097, + [1145] = 1098, + [1146] = 1099, + [1147] = 651, + [1148] = 644, + [1149] = 1063, + [1150] = 614, + [1151] = 638, + [1152] = 1011, + [1153] = 621, + [1154] = 630, + [1155] = 634, + [1156] = 1011, + [1157] = 1017, + [1158] = 976, + [1159] = 1002, + [1160] = 631, + [1161] = 1039, + [1162] = 1043, + [1163] = 1060, + [1164] = 1046, + [1165] = 625, + [1166] = 1052, + [1167] = 1089, + [1168] = 974, + [1169] = 1093, + [1170] = 1094, + [1171] = 1033, + [1172] = 1078, + [1173] = 1045, + [1174] = 641, + [1175] = 1097, + [1176] = 642, + [1177] = 1061, + [1178] = 641, + [1179] = 642, + [1180] = 1098, + [1181] = 1099, + [1182] = 643, + [1183] = 623, + [1184] = 1102, + [1185] = 1011, + [1186] = 1050, + [1187] = 1051, + [1188] = 643, + [1189] = 1053, + [1190] = 1054, + [1191] = 1058, + [1192] = 1059, + [1193] = 1075, + [1194] = 1076, + [1195] = 1077, + [1196] = 1091, + [1197] = 1092, + [1198] = 1063, + [1199] = 616, + [1200] = 644, + [1201] = 650, + [1202] = 651, + [1203] = 1017, + [1204] = 976, + [1205] = 1002, + [1206] = 1039, + [1207] = 1043, + [1208] = 1060, + [1209] = 974, + [1210] = 623, + [1211] = 616, + [1212] = 1072, + [1213] = 605, + [1214] = 1073, + [1215] = 1011, + [1216] = 1089, + [1217] = 650, + [1218] = 1093, + [1219] = 1094, + [1220] = 1033, + [1221] = 1078, + [1222] = 1045, + [1223] = 1046, + [1224] = 1061, + [1225] = 968, + [1226] = 1102, + [1227] = 1050, + [1228] = 1051, + [1229] = 1053, + [1230] = 1054, + [1231] = 970, + [1232] = 1058, + [1233] = 1059, + [1234] = 1075, + [1235] = 1076, + [1236] = 1077, + [1237] = 1091, + [1238] = 1092, + [1239] = 614, + [1240] = 650, + [1241] = 1051, + [1242] = 1093, + [1243] = 651, + [1244] = 1033, + [1245] = 1061, + [1246] = 1078, + [1247] = 1045, + [1248] = 650, + [1249] = 1061, + [1250] = 1017, + [1251] = 976, + [1252] = 1094, + [1253] = 1102, + [1254] = 1092, + [1255] = 1050, + [1256] = 1051, + [1257] = 1053, + [1258] = 1054, + [1259] = 1060, + [1260] = 1039, + [1261] = 1058, + [1262] = 1059, + [1263] = 625, + [1264] = 649, + [1265] = 1075, + [1266] = 1043, + [1267] = 1076, + [1268] = 1077, + [1269] = 641, + [1270] = 642, + [1271] = 643, + [1272] = 1091, + [1273] = 1092, + [1274] = 644, + [1275] = 623, + [1276] = 1063, + [1277] = 1102, + [1278] = 1050, + [1279] = 1033, + [1280] = 650, + [1281] = 1046, + [1282] = 625, + [1283] = 1051, + [1284] = 1053, + [1285] = 641, + [1286] = 642, + [1287] = 1054, + [1288] = 630, + [1289] = 643, + [1290] = 1063, + [1291] = 1058, + [1292] = 1059, + [1293] = 1078, + [1294] = 644, + [1295] = 1039, + [1296] = 1043, + [1297] = 1045, + [1298] = 1075, + [1299] = 623, + [1300] = 1076, + [1301] = 1060, + [1302] = 1011, + [1303] = 630, + [1304] = 634, + [1305] = 1072, + [1306] = 1073, + [1307] = 1077, + [1308] = 650, + [1309] = 630, + [1310] = 974, + [1311] = 651, + [1312] = 1075, + [1313] = 1076, + [1314] = 1077, + [1315] = 624, + [1316] = 638, + [1317] = 621, + [1318] = 638, + [1319] = 1075, + [1320] = 650, + [1321] = 631, + [1322] = 1046, + [1323] = 621, + [1324] = 625, + [1325] = 650, + [1326] = 651, + [1327] = 1091, + [1328] = 641, + [1329] = 1091, + [1330] = 642, + [1331] = 1072, + [1332] = 643, + [1333] = 1046, + [1334] = 1073, + [1335] = 624, + [1336] = 644, + [1337] = 623, + [1338] = 1092, + [1339] = 1092, + [1340] = 634, + [1341] = 631, + [1342] = 630, + [1343] = 634, + [1344] = 1039, + [1345] = 1046, + [1346] = 1043, + [1347] = 1063, + [1348] = 1089, + [1349] = 1061, + [1350] = 1350, + [1351] = 1351, + [1352] = 1089, + [1353] = 1060, + [1354] = 621, + [1355] = 1074, + [1356] = 1089, + [1357] = 1050, + [1358] = 1051, + [1359] = 634, + [1360] = 1079, + [1361] = 1080, + [1362] = 1093, + [1363] = 1094, + [1364] = 1053, + [1365] = 1054, + [1366] = 1093, + [1367] = 1053, + [1368] = 631, + [1369] = 1033, + [1370] = 1058, + [1371] = 1078, + [1372] = 1094, + [1373] = 1059, + [1374] = 1076, + [1375] = 1072, + [1376] = 1073, + [1377] = 1039, + [1378] = 1043, + [1379] = 1102, + [1380] = 1045, + [1381] = 1060, + [1382] = 624, + [1383] = 1058, + [1384] = 1063, + [1385] = 1061, + [1386] = 1059, + [1387] = 1054, + [1388] = 1089, + [1389] = 1093, + [1390] = 1094, [1391] = 1072, - [1392] = 1079, - [1393] = 636, - [1394] = 1092, - [1395] = 1093, - [1396] = 1106, - [1397] = 1125, - [1398] = 1113, - [1399] = 1114, - [1400] = 1115, - [1401] = 1116, - [1402] = 1126, - [1403] = 1043, + [1392] = 1073, + [1393] = 1077, + [1394] = 649, + [1395] = 638, + [1396] = 1033, + [1397] = 1102, + [1398] = 1091, + [1399] = 1078, + [1400] = 1045, + [1401] = 1050, + [1402] = 1002, + [1403] = 1089, [1404] = 634, - [1405] = 1117, - [1406] = 1118, - [1407] = 1072, - [1408] = 1079, - [1409] = 1074, - [1410] = 1124, - [1411] = 1037, - [1412] = 1038, - [1413] = 1039, - [1414] = 1040, - [1415] = 1041, - [1416] = 1042, - [1417] = 1125, - [1418] = 637, - [1419] = 1053, - [1420] = 636, - [1421] = 1093, - [1422] = 1106, - [1423] = 636, - [1424] = 1113, - [1425] = 627, - [1426] = 644, - [1427] = 637, - [1428] = 645, - [1429] = 647, - [1430] = 1052, - [1431] = 642, - [1432] = 643, - [1433] = 1052, - [1434] = 1053, - [1435] = 1054, - [1436] = 1054, - [1437] = 1119, - [1438] = 1053, - [1439] = 1092, - [1440] = 1117, - [1441] = 1118, - [1442] = 1035, - [1443] = 1123, - [1444] = 1125, - [1445] = 638, - [1446] = 1126, - [1447] = 1043, - [1448] = 1124, - [1449] = 1037, - [1450] = 1038, - [1451] = 1039, - [1452] = 1040, - [1453] = 1041, - [1454] = 1042, - [1455] = 639, - [1456] = 1074, - [1457] = 1077, - [1458] = 1078, - [1459] = 646, - [1460] = 1072, - [1461] = 1079, - [1462] = 1089, - [1463] = 1091, - [1464] = 1052, - [1465] = 1054, - [1466] = 634, - [1467] = 627, - [1468] = 644, - [1469] = 637, - [1470] = 645, - [1471] = 647, - [1472] = 642, - [1473] = 643, - [1474] = 639, - [1475] = 646, - [1476] = 638, - [1477] = 638, - [1478] = 638, - [1479] = 638, - [1480] = 631, - [1481] = 628, - [1482] = 629, - [1483] = 1371, - [1484] = 1368, + [1405] = 1094, + [1406] = 1058, + [1407] = 1050, + [1408] = 1097, + [1409] = 1097, + [1410] = 1098, + [1411] = 1099, + [1412] = 1061, + [1413] = 1098, + [1414] = 1099, + [1415] = 1059, + [1416] = 1091, + [1417] = 1033, + [1418] = 1078, + [1419] = 1051, + [1420] = 650, + [1421] = 1045, + [1422] = 1073, + [1423] = 649, + [1424] = 1092, + [1425] = 1075, + [1426] = 1076, + [1427] = 1039, + [1428] = 1043, + [1429] = 1053, + [1430] = 651, + [1431] = 1060, + [1432] = 1097, + [1433] = 1098, + [1434] = 1099, + [1435] = 1063, + [1436] = 625, + [1437] = 1046, + [1438] = 641, + [1439] = 1054, + [1440] = 642, + [1441] = 1077, + [1442] = 1102, + [1443] = 1093, + [1444] = 643, + [1445] = 644, + [1446] = 623, + [1447] = 649, + [1448] = 630, + [1449] = 1072, + [1450] = 638, + [1451] = 631, + [1452] = 621, + [1453] = 624, + [1454] = 1350, + [1455] = 1351, + [1456] = 650, + [1457] = 650, + [1458] = 650, + [1459] = 650, + [1460] = 651, + [1461] = 625, + [1462] = 641, + [1463] = 642, + [1464] = 643, + [1465] = 644, + [1466] = 623, + [1467] = 634, + [1468] = 630, + [1469] = 1469, + [1470] = 1470, + [1471] = 1471, + [1472] = 1472, + [1473] = 1473, + [1474] = 1474, + [1475] = 1472, + [1476] = 1473, + [1477] = 1472, + [1478] = 1474, + [1479] = 1473, + [1480] = 1474, + [1481] = 1481, + [1482] = 1482, + [1483] = 1483, + [1484] = 1484, [1485] = 1485, - [1486] = 1486, - [1487] = 1487, - [1488] = 1488, - [1489] = 1489, - [1490] = 1490, - [1491] = 1491, - [1492] = 1492, - [1493] = 1493, - [1494] = 1494, - [1495] = 1487, - [1496] = 1489, - [1497] = 1493, - [1498] = 1492, - [1499] = 1499, - [1500] = 1488, - [1501] = 1490, - [1502] = 1491, - [1503] = 1499, - [1504] = 1494, - [1505] = 1487, - [1506] = 1489, - [1507] = 1493, - [1508] = 1490, - [1509] = 1499, - [1510] = 1488, - [1511] = 1490, - [1512] = 1491, - [1513] = 1492, - [1514] = 1494, - [1515] = 1491, - [1516] = 1489, - [1517] = 1493, - [1518] = 1494, - [1519] = 1499, - [1520] = 1488, - [1521] = 1487, - [1522] = 1492, - [1523] = 1523, - [1524] = 1523, - [1525] = 1525, - [1526] = 1523, - [1527] = 1527, - [1528] = 1528, - [1529] = 1529, - [1530] = 1530, - [1531] = 1531, - [1532] = 1528, + [1486] = 1471, + [1487] = 1471, + [1488] = 1485, + [1489] = 1472, + [1490] = 1473, + [1491] = 1474, + [1492] = 1481, + [1493] = 1481, + [1494] = 1484, + [1495] = 1483, + [1496] = 1484, + [1497] = 1483, + [1498] = 1471, + [1499] = 1482, + [1500] = 1485, + [1501] = 1483, + [1502] = 1481, + [1503] = 1482, + [1504] = 1484, + [1505] = 1485, + [1506] = 1482, + [1507] = 1507, + [1508] = 1508, + [1509] = 1509, + [1510] = 1507, + [1511] = 1507, + [1512] = 1512, + [1513] = 1513, + [1514] = 1514, + [1515] = 1515, + [1516] = 1514, + [1517] = 1513, + [1518] = 1515, + [1519] = 1514, + [1520] = 1512, + [1521] = 1512, + [1522] = 1513, + [1523] = 1513, + [1524] = 1524, + [1525] = 1524, + [1526] = 1524, + [1527] = 1514, + [1528] = 1515, + [1529] = 1512, + [1530] = 1515, + [1531] = 1524, + [1532] = 1532, [1533] = 1533, - [1534] = 1529, - [1535] = 1531, - [1536] = 1530, - [1537] = 1531, - [1538] = 1530, - [1539] = 1528, - [1540] = 1530, + [1534] = 1533, + [1535] = 1535, + [1536] = 1536, + [1537] = 1536, + [1538] = 1536, + [1539] = 1539, + [1540] = 1536, [1541] = 1533, - [1542] = 1529, - [1543] = 1529, - [1544] = 1533, - [1545] = 1528, - [1546] = 1531, - [1547] = 1533, - [1548] = 1548, - [1549] = 1549, - [1550] = 1550, - [1551] = 1549, - [1552] = 1549, - [1553] = 1550, - [1554] = 1554, - [1555] = 1555, - [1556] = 1550, - [1557] = 1550, - [1558] = 1549, - [1559] = 1555, - [1560] = 1554, - [1561] = 1555, - [1562] = 1554, - [1563] = 1554, - [1564] = 1554, - [1565] = 1555, - [1566] = 1555, - [1567] = 1555, - [1568] = 1554, + [1542] = 1533, + [1543] = 1535, + [1544] = 1535, + [1545] = 1539, + [1546] = 1539, + [1547] = 1539, + [1548] = 1535, + [1549] = 1539, + [1550] = 1539, + [1551] = 1535, + [1552] = 1535, + [1553] = 1350, + [1554] = 1535, + [1555] = 624, + [1556] = 1539, + [1557] = 1557, + [1558] = 1539, + [1559] = 1559, + [1560] = 1535, + [1561] = 1351, + [1562] = 638, + [1563] = 631, + [1564] = 621, + [1565] = 1565, + [1566] = 1566, + [1567] = 1567, + [1568] = 650, [1569] = 1569, - [1570] = 1368, - [1571] = 1555, - [1572] = 1555, - [1573] = 1573, - [1574] = 634, - [1575] = 1554, - [1576] = 629, - [1577] = 1371, - [1578] = 628, - [1579] = 1554, - [1580] = 631, - [1581] = 646, - [1582] = 639, - [1583] = 638, - [1584] = 1584, - [1585] = 1585, - [1586] = 1586, - [1587] = 1587, - [1588] = 1588, - [1589] = 1589, - [1590] = 628, - [1591] = 1589, - [1592] = 1592, - [1593] = 631, - [1594] = 1368, - [1595] = 1371, - [1596] = 628, - [1597] = 629, - [1598] = 629, - [1599] = 631, - [1600] = 634, - [1601] = 1368, - [1602] = 1371, - [1603] = 628, - [1604] = 1604, - [1605] = 1586, - [1606] = 631, - [1607] = 638, - [1608] = 639, - [1609] = 646, + [1570] = 1570, + [1571] = 630, + [1572] = 634, + [1573] = 634, + [1574] = 1350, + [1575] = 1351, + [1576] = 1576, + [1577] = 1577, + [1578] = 1578, + [1579] = 624, + [1580] = 638, + [1581] = 1350, + [1582] = 621, + [1583] = 1351, + [1584] = 631, + [1585] = 650, + [1586] = 624, + [1587] = 638, + [1588] = 621, + [1589] = 631, + [1590] = 1566, + [1591] = 1569, + [1592] = 1565, + [1593] = 624, + [1594] = 638, + [1595] = 621, + [1596] = 631, + [1597] = 630, + [1598] = 1350, + [1599] = 1351, + [1600] = 1600, + [1601] = 1600, + [1602] = 1600, + [1603] = 1600, + [1604] = 1600, + [1605] = 1600, + [1606] = 1600, + [1607] = 1600, + [1608] = 1600, + [1609] = 1600, [1610] = 1610, - [1611] = 1585, - [1612] = 1589, - [1613] = 629, - [1614] = 1589, - [1615] = 1589, - [1616] = 1589, - [1617] = 1589, - [1618] = 1589, - [1619] = 1589, - [1620] = 1589, - [1621] = 634, - [1622] = 634, - [1623] = 1371, - [1624] = 1368, - [1625] = 1588, - [1626] = 1626, - [1627] = 1604, - [1628] = 1628, - [1629] = 1628, - [1630] = 1630, - [1631] = 1628, + [1611] = 1578, + [1612] = 1612, + [1613] = 1613, + [1614] = 1570, + [1615] = 1612, + [1616] = 1616, + [1617] = 1612, + [1618] = 1612, + [1619] = 1619, + [1620] = 1576, + [1621] = 1567, + [1622] = 1616, + [1623] = 1610, + [1624] = 1612, + [1625] = 1577, + [1626] = 1612, + [1627] = 1612, + [1628] = 1612, + [1629] = 1619, + [1630] = 1619, + [1631] = 1631, [1632] = 1632, [1633] = 1633, - [1634] = 1632, - [1635] = 1628, - [1636] = 1633, - [1637] = 1628, - [1638] = 1628, - [1639] = 1610, - [1640] = 1592, - [1641] = 1587, - [1642] = 1626, - [1643] = 1628, - [1644] = 1584, - [1645] = 1628, - [1646] = 1633, + [1634] = 1633, + [1635] = 1632, + [1636] = 1636, + [1637] = 1637, + [1638] = 1637, + [1639] = 1639, + [1640] = 1640, + [1641] = 1641, + [1642] = 1639, + [1643] = 1643, + [1644] = 1644, + [1645] = 1645, + [1646] = 1646, [1647] = 1647, - [1648] = 1648, + [1648] = 1639, [1649] = 1649, - [1650] = 1650, - [1651] = 1649, - [1652] = 1650, + [1650] = 1639, + [1651] = 1639, + [1652] = 1639, [1653] = 1653, - [1654] = 1653, - [1655] = 1655, - [1656] = 1655, + [1654] = 1639, + [1655] = 1639, + [1656] = 1656, [1657] = 1657, [1658] = 1658, [1659] = 1659, [1660] = 1660, - [1661] = 1661, - [1662] = 1662, - [1663] = 1655, - [1664] = 1664, - [1665] = 1665, + [1661] = 1657, + [1662] = 1658, + [1663] = 1663, + [1664] = 1659, + [1665] = 1656, [1666] = 1666, - [1667] = 1655, - [1668] = 1655, - [1669] = 1655, - [1670] = 1655, - [1671] = 1655, - [1672] = 1672, - [1673] = 1673, - [1674] = 1672, - [1675] = 1675, - [1676] = 1676, - [1677] = 1677, - [1678] = 1672, - [1679] = 1675, - [1680] = 1676, - [1681] = 1676, - [1682] = 1677, - [1683] = 1675, - [1684] = 1672, - [1685] = 1675, - [1686] = 1676, - [1687] = 1677, - [1688] = 1676, - [1689] = 1672, - [1690] = 1675, - [1691] = 1676, - [1692] = 1677, - [1693] = 1677, - [1694] = 1694, - [1695] = 1672, - [1696] = 1675, - [1697] = 1676, - [1698] = 1677, - [1699] = 1672, - [1700] = 1675, - [1701] = 1676, - [1702] = 1677, - [1703] = 1672, - [1704] = 1675, - [1705] = 1673, - [1706] = 1706, - [1707] = 1673, - [1708] = 1677, - [1709] = 1673, - [1710] = 1672, - [1711] = 1673, - [1712] = 1673, - [1713] = 1673, - [1714] = 1673, - [1715] = 1675, + [1667] = 1660, + [1668] = 1657, + [1669] = 1660, + [1670] = 1658, + [1671] = 1659, + [1672] = 1660, + [1673] = 1657, + [1674] = 1658, + [1675] = 1659, + [1676] = 1659, + [1677] = 1660, + [1678] = 1657, + [1679] = 1660, + [1680] = 1659, + [1681] = 1659, + [1682] = 1660, + [1683] = 1657, + [1684] = 1658, + [1685] = 1659, + [1686] = 1660, + [1687] = 1656, + [1688] = 1660, + [1689] = 1656, + [1690] = 1657, + [1691] = 1658, + [1692] = 1658, + [1693] = 1656, + [1694] = 1656, + [1695] = 1657, + [1696] = 1696, + [1697] = 1656, + [1698] = 1659, + [1699] = 1656, + [1700] = 1658, + [1701] = 1644, + [1702] = 1640, + [1703] = 1647, + [1704] = 1646, + [1705] = 1705, + [1706] = 1647, + [1707] = 1641, + [1708] = 1649, + [1709] = 1646, + [1710] = 1641, + [1711] = 1649, + [1712] = 1643, + [1713] = 1644, + [1714] = 1714, + [1715] = 1653, [1716] = 1716, - [1717] = 1666, - [1718] = 1657, - [1719] = 1658, - [1720] = 1660, - [1721] = 1661, - [1722] = 1660, - [1723] = 1666, - [1724] = 1724, - [1725] = 1665, - [1726] = 1662, - [1727] = 1657, - [1728] = 1661, - [1729] = 1664, - [1730] = 1658, - [1731] = 1659, - [1732] = 1732, - [1733] = 1664, - [1734] = 1662, - [1735] = 1659, - [1736] = 1665, - [1737] = 1737, - [1738] = 1724, - [1739] = 1661, - [1740] = 1661, - [1741] = 1665, - [1742] = 1657, - [1743] = 1658, - [1744] = 1659, - [1745] = 1664, - [1746] = 1746, - [1747] = 1747, - [1748] = 1748, - [1749] = 1660, - [1750] = 1662, - [1751] = 1666, - [1752] = 1665, - [1753] = 1657, - [1754] = 1658, - [1755] = 1664, - [1756] = 1664, + [1717] = 1714, + [1718] = 1645, + [1719] = 1643, + [1720] = 1640, + [1721] = 1653, + [1722] = 1645, + [1723] = 1723, + [1724] = 1649, + [1725] = 1646, + [1726] = 1641, + [1727] = 1643, + [1728] = 1644, + [1729] = 1645, + [1730] = 1730, + [1731] = 1649, + [1732] = 1653, + [1733] = 1646, + [1734] = 1641, + [1735] = 1643, + [1736] = 1644, + [1737] = 1645, + [1738] = 1653, + [1739] = 1739, + [1740] = 1740, + [1741] = 1645, + [1742] = 1653, + [1743] = 1714, + [1744] = 1640, + [1745] = 1745, + [1746] = 1714, + [1747] = 1647, + [1748] = 1649, + [1749] = 1646, + [1750] = 1641, + [1751] = 1640, + [1752] = 1647, + [1753] = 1753, + [1754] = 1640, + [1755] = 1643, + [1756] = 1647, [1757] = 1757, - [1758] = 1660, - [1759] = 1662, - [1760] = 1661, - [1761] = 1724, + [1758] = 1644, + [1759] = 1759, + [1760] = 1753, + [1761] = 1761, [1762] = 1762, - [1763] = 1665, - [1764] = 1657, - [1765] = 1658, - [1766] = 1659, - [1767] = 1666, - [1768] = 1724, - [1769] = 1769, + [1763] = 1649, + [1764] = 1762, + [1765] = 1765, + [1766] = 1647, + [1767] = 1765, + [1768] = 1646, + [1769] = 1765, [1770] = 1770, - [1771] = 1666, - [1772] = 1660, - [1773] = 1662, - [1774] = 1659, - [1775] = 1775, + [1771] = 1641, + [1772] = 1643, + [1773] = 1644, + [1774] = 1647, + [1775] = 1653, [1776] = 1776, - [1777] = 1662, - [1778] = 1778, - [1779] = 1664, - [1780] = 1780, + [1777] = 1777, + [1778] = 1765, + [1779] = 1779, + [1780] = 1649, [1781] = 1781, - [1782] = 1782, - [1783] = 1783, + [1782] = 1762, + [1783] = 1765, [1784] = 1784, - [1785] = 1664, - [1786] = 1748, - [1787] = 1660, + [1785] = 1765, + [1786] = 1645, + [1787] = 1765, [1788] = 1788, [1789] = 1789, - [1790] = 1784, - [1791] = 1791, - [1792] = 1792, - [1793] = 1666, - [1794] = 1794, - [1795] = 1784, - [1796] = 1791, - [1797] = 1784, - [1798] = 1661, - [1799] = 1788, - [1800] = 1784, - [1801] = 1801, - [1802] = 1783, - [1803] = 1784, - [1804] = 1801, - [1805] = 1762, - [1806] = 1666, - [1807] = 1657, - [1808] = 1658, - [1809] = 1659, - [1810] = 1784, - [1811] = 1748, - [1812] = 1812, - [1813] = 1662, - [1814] = 1784, - [1815] = 1815, - [1816] = 1661, - [1817] = 1784, - [1818] = 1818, - [1819] = 1819, - [1820] = 1784, - [1821] = 1665, - [1822] = 1776, - [1823] = 1657, - [1824] = 1783, - [1825] = 1658, - [1826] = 1659, - [1827] = 1794, - [1828] = 1828, - [1829] = 1732, - [1830] = 1801, - [1831] = 1794, - [1832] = 1660, - [1833] = 1748, - [1834] = 1665, - [1835] = 1835, - [1836] = 1836, - [1837] = 1732, - [1838] = 1757, - [1839] = 1835, - [1840] = 1757, - [1841] = 1770, - [1842] = 1818, - [1843] = 1843, - [1844] = 1844, - [1845] = 1836, + [1790] = 1790, + [1791] = 1653, + [1792] = 1765, + [1793] = 1793, + [1794] = 1784, + [1795] = 1795, + [1796] = 1765, + [1797] = 1640, + [1798] = 1757, + [1799] = 1716, + [1800] = 1646, + [1801] = 1640, + [1802] = 1757, + [1803] = 1759, + [1804] = 1777, + [1805] = 1805, + [1806] = 1641, + [1807] = 1807, + [1808] = 1643, + [1809] = 1644, + [1810] = 1795, + [1811] = 1759, + [1812] = 1765, + [1813] = 1813, + [1814] = 1795, + [1815] = 1757, + [1816] = 1788, + [1817] = 1817, + [1818] = 1645, + [1819] = 1730, + [1820] = 1820, + [1821] = 1821, + [1822] = 1822, + [1823] = 1761, + [1824] = 1824, + [1825] = 1825, + [1826] = 1826, + [1827] = 1822, + [1828] = 1723, + [1829] = 1825, + [1830] = 1830, + [1831] = 1723, + [1832] = 1822, + [1833] = 1833, + [1834] = 1716, + [1835] = 1820, + [1836] = 1821, + [1837] = 1837, + [1838] = 1822, + [1839] = 1822, + [1840] = 1740, + [1841] = 1820, + [1842] = 1821, + [1843] = 1825, + [1844] = 1822, + [1845] = 1845, [1846] = 1846, - [1847] = 1818, - [1848] = 1732, - [1849] = 1770, - [1850] = 1850, - [1851] = 1843, - [1852] = 1852, - [1853] = 1853, - [1854] = 1747, - [1855] = 1836, + [1847] = 1740, + [1848] = 1848, + [1849] = 1849, + [1850] = 1822, + [1851] = 1730, + [1852] = 1730, + [1853] = 1716, + [1854] = 1822, + [1855] = 1849, [1856] = 1856, [1857] = 1857, - [1858] = 1818, - [1859] = 1836, + [1858] = 1761, + [1859] = 1845, [1860] = 1860, [1861] = 1861, - [1862] = 1836, - [1863] = 1857, - [1864] = 1770, - [1865] = 1843, - [1866] = 1836, - [1867] = 1867, - [1868] = 1856, - [1869] = 1869, - [1870] = 1747, - [1871] = 1757, - [1872] = 1861, + [1862] = 1740, + [1863] = 1861, + [1864] = 1857, + [1865] = 1865, + [1866] = 1857, + [1867] = 1761, + [1868] = 1723, + [1869] = 1570, + [1870] = 1826, + [1871] = 1770, + [1872] = 1872, [1873] = 1873, - [1874] = 1861, - [1875] = 1867, - [1876] = 1747, + [1874] = 1874, + [1875] = 1875, + [1876] = 1876, [1877] = 1877, - [1878] = 1836, + [1878] = 1878, [1879] = 1879, - [1880] = 1852, + [1880] = 1856, [1881] = 1881, - [1882] = 1852, - [1883] = 1867, - [1884] = 1836, + [1882] = 1882, + [1883] = 1745, + [1884] = 1884, [1885] = 1885, [1886] = 1886, [1887] = 1887, - [1888] = 1888, + [1888] = 1753, [1889] = 1889, - [1890] = 1890, - [1891] = 1887, + [1890] = 1856, + [1891] = 1891, [1892] = 1892, - [1893] = 1893, + [1893] = 1723, [1894] = 1894, - [1895] = 1819, + [1895] = 1895, [1896] = 1896, - [1897] = 1892, - [1898] = 1757, + [1897] = 1897, + [1898] = 1874, [1899] = 1899, - [1900] = 1900, - [1901] = 1900, + [1900] = 1879, + [1901] = 1895, [1902] = 1902, - [1903] = 1846, + [1903] = 1903, [1904] = 1904, - [1905] = 1905, - [1906] = 1747, - [1907] = 1769, + [1905] = 1885, + [1906] = 1745, + [1907] = 1907, [1908] = 1908, - [1909] = 1909, - [1910] = 1910, - [1911] = 1762, + [1909] = 1894, + [1910] = 1753, + [1911] = 1911, [1912] = 1912, - [1913] = 1913, + [1913] = 1567, [1914] = 1914, [1915] = 1915, - [1916] = 1916, + [1916] = 1813, [1917] = 1917, - [1918] = 1889, - [1919] = 1919, - [1920] = 1869, - [1921] = 1921, - [1922] = 1904, - [1923] = 1819, - [1924] = 1924, - [1925] = 1890, + [1918] = 1896, + [1919] = 1886, + [1920] = 1920, + [1921] = 1891, + [1922] = 1813, + [1923] = 1923, + [1924] = 1902, + [1925] = 1925, [1926] = 1926, [1927] = 1927, [1928] = 1928, - [1929] = 1769, + [1929] = 1929, [1930] = 1930, - [1931] = 1931, - [1932] = 1896, - [1933] = 1584, - [1934] = 1934, - [1935] = 1935, - [1936] = 1902, - [1937] = 1846, - [1938] = 1938, - [1939] = 1869, + [1931] = 1882, + [1932] = 1889, + [1933] = 1894, + [1934] = 1826, + [1935] = 1897, + [1936] = 1936, + [1937] = 1937, + [1938] = 1873, + [1939] = 1885, [1940] = 1940, - [1941] = 1941, - [1942] = 1942, - [1943] = 1943, - [1944] = 1902, - [1945] = 1894, - [1946] = 1770, + [1941] = 1879, + [1942] = 1878, + [1943] = 1923, + [1944] = 1944, + [1945] = 1882, + [1946] = 1928, [1947] = 1947, - [1948] = 1948, - [1949] = 1762, - [1950] = 1950, - [1951] = 1587, + [1948] = 1891, + [1949] = 1886, + [1950] = 1826, + [1951] = 1889, [1952] = 1952, - [1953] = 1846, + [1953] = 1929, [1954] = 1954, - [1955] = 1887, - [1956] = 1762, - [1957] = 1957, - [1958] = 1904, - [1959] = 1959, + [1955] = 1745, + [1956] = 1887, + [1957] = 1753, + [1958] = 1958, + [1959] = 1876, [1960] = 1960, - [1961] = 1928, - [1962] = 1900, - [1963] = 1888, - [1964] = 1928, - [1965] = 1769, - [1966] = 1896, - [1967] = 1947, - [1968] = 1869, - [1969] = 1905, - [1970] = 1970, - [1971] = 1952, - [1972] = 1957, - [1973] = 1905, - [1974] = 1960, - [1975] = 1975, + [1961] = 1904, + [1962] = 1962, + [1963] = 1887, + [1964] = 1915, + [1965] = 1965, + [1966] = 1740, + [1967] = 1730, + [1968] = 1813, + [1969] = 1915, + [1970] = 1882, + [1971] = 1873, + [1972] = 1972, + [1973] = 1856, + [1974] = 1930, + [1975] = 1897, [1976] = 1976, - [1977] = 1935, - [1978] = 1792, + [1977] = 1977, + [1978] = 1978, [1979] = 1979, - [1980] = 1935, + [1980] = 1980, [1981] = 1981, - [1982] = 1919, - [1983] = 1819, - [1984] = 1948, - [1985] = 1904, - [1986] = 1899, - [1987] = 1930, - [1988] = 1899, - [1989] = 1888, - [1990] = 1950, - [1991] = 1950, - [1992] = 1992, - [1993] = 1913, - [1994] = 1994, - [1995] = 1960, - [1996] = 1996, - [1997] = 1997, + [1982] = 1876, + [1983] = 1875, + [1984] = 1926, + [1985] = 1985, + [1986] = 1977, + [1987] = 1987, + [1988] = 1988, + [1989] = 1989, + [1990] = 1990, + [1991] = 1980, + [1992] = 1928, + [1993] = 1993, + [1994] = 1929, + [1995] = 1995, + [1996] = 1895, + [1997] = 1896, [1998] = 1998, [1999] = 1999, [2000] = 2000, - [2001] = 2001, - [2002] = 2002, + [2001] = 1813, + [2002] = 1990, [2003] = 2003, - [2004] = 1893, - [2005] = 2005, - [2006] = 2006, - [2007] = 2007, + [2004] = 2004, + [2005] = 1928, + [2006] = 1929, + [2007] = 1930, [2008] = 2008, - [2009] = 1997, + [2009] = 2009, [2010] = 2010, - [2011] = 1992, + [2011] = 2011, [2012] = 2012, - [2013] = 1992, + [2013] = 1885, [2014] = 2014, - [2015] = 1917, - [2016] = 1894, - [2017] = 1889, - [2018] = 1890, - [2019] = 2019, + [2015] = 1876, + [2016] = 1903, + [2017] = 1920, + [2018] = 1887, + [2019] = 1980, [2020] = 2020, [2021] = 2021, - [2022] = 1942, - [2023] = 2023, - [2024] = 1943, - [2025] = 2025, - [2026] = 2026, - [2027] = 2027, - [2028] = 2028, + [2022] = 2022, + [2023] = 1947, + [2024] = 1915, + [2025] = 1872, + [2026] = 2004, + [2027] = 1990, + [2028] = 2008, [2029] = 2029, - [2030] = 2030, - [2031] = 1604, - [2032] = 1889, - [2033] = 1890, - [2034] = 2034, - [2035] = 2035, - [2036] = 2036, - [2037] = 2037, + [2030] = 1892, + [2031] = 1936, + [2032] = 1937, + [2033] = 2033, + [2034] = 1930, + [2035] = 1980, + [2036] = 1937, + [2037] = 1990, [2038] = 2038, - [2039] = 2039, - [2040] = 2040, - [2041] = 1626, - [2042] = 2042, - [2043] = 2043, - [2044] = 2044, + [2039] = 1903, + [2040] = 1920, + [2041] = 2041, + [2042] = 1895, + [2043] = 1896, + [2044] = 2033, [2045] = 2045, - [2046] = 1610, - [2047] = 1819, - [2048] = 2020, - [2049] = 1992, + [2046] = 1980, + [2047] = 2047, + [2048] = 2048, + [2049] = 2049, [2050] = 2050, [2051] = 2051, - [2052] = 1592, - [2053] = 1981, + [2052] = 2052, + [2053] = 2053, [2054] = 2054, [2055] = 2055, [2056] = 2056, - [2057] = 2057, - [2058] = 2058, - [2059] = 1952, - [2060] = 1957, - [2061] = 1960, - [2062] = 2035, - [2063] = 1992, - [2064] = 1852, + [2057] = 1980, + [2058] = 1576, + [2059] = 2059, + [2060] = 1577, + [2061] = 2061, + [2062] = 1980, + [2063] = 1578, + [2064] = 1947, [2065] = 2065, - [2066] = 2035, - [2067] = 1908, - [2068] = 1913, - [2069] = 1950, - [2070] = 1992, - [2071] = 2054, - [2072] = 1959, - [2073] = 1893, - [2074] = 1942, - [2075] = 1943, - [2076] = 1992, - [2077] = 2077, - [2078] = 1952, - [2079] = 2079, - [2080] = 1908, - [2081] = 1913, - [2082] = 1896, - [2083] = 2083, - [2084] = 1992, - [2085] = 1957, - [2086] = 1959, - [2087] = 1888, - [2088] = 2088, - [2089] = 1959, - [2090] = 1996, - [2091] = 2091, - [2092] = 1886, - [2093] = 1998, - [2094] = 2091, - [2095] = 2014, - [2096] = 2019, - [2097] = 1908, - [2098] = 1893, - [2099] = 2000, - [2100] = 2088, - [2101] = 2079, - [2102] = 1942, - [2103] = 1943, - [2104] = 2020, - [2105] = 1998, - [2106] = 1996, - [2107] = 1894, + [2066] = 2066, + [2067] = 2067, + [2068] = 2068, + [2069] = 2069, + [2070] = 2070, + [2071] = 1980, + [2072] = 2004, + [2073] = 2008, + [2074] = 2074, + [2075] = 2041, + [2076] = 2076, + [2077] = 2038, + [2078] = 2076, + [2079] = 1820, + [2080] = 1892, + [2081] = 1981, + [2082] = 2059, + [2083] = 1998, + [2084] = 1936, + [2085] = 1937, + [2086] = 1903, + [2087] = 1920, + [2088] = 2033, + [2089] = 1987, + [2090] = 1947, + [2091] = 1892, + [2092] = 1936, + [2093] = 1610, + [2094] = 2055, + [2095] = 2095, + [2096] = 2069, + [2097] = 2070, + [2098] = 2074, + [2099] = 2099, + [2100] = 2100, + [2101] = 2069, + [2102] = 2102, + [2103] = 2103, + [2104] = 2104, + [2105] = 2105, + [2106] = 2106, + [2107] = 2070, [2108] = 2108, - [2109] = 2035, - [2110] = 2021, - [2111] = 2111, - [2112] = 2039, - [2113] = 2113, + [2109] = 2109, + [2110] = 2110, + [2111] = 2068, + [2112] = 2112, + [2113] = 2069, [2114] = 2114, - [2115] = 2040, - [2116] = 2042, - [2117] = 2117, + [2115] = 2115, + [2116] = 2116, + [2117] = 2065, [2118] = 2118, [2119] = 2119, - [2120] = 2003, - [2121] = 2043, + [2120] = 2070, + [2121] = 2121, [2122] = 2122, - [2123] = 2123, - [2124] = 2045, - [2125] = 2125, - [2126] = 2008, - [2127] = 2108, + [2123] = 2067, + [2124] = 2124, + [2125] = 1995, + [2126] = 2074, + [2127] = 2127, [2128] = 2128, - [2129] = 2051, - [2130] = 2130, - [2131] = 2002, - [2132] = 2055, - [2133] = 2057, - [2134] = 2134, - [2135] = 2135, + [2129] = 2056, + [2130] = 2066, + [2131] = 2131, + [2132] = 2132, + [2133] = 1985, + [2134] = 2114, + [2135] = 1987, [2136] = 2136, - [2137] = 2002, - [2138] = 2003, - [2139] = 2006, - [2140] = 2005, - [2141] = 2007, - [2142] = 2008, - [2143] = 2010, - [2144] = 2010, - [2145] = 2021, - [2146] = 2123, - [2147] = 2021, - [2148] = 2023, - [2149] = 2149, - [2150] = 2150, - [2151] = 2025, - [2152] = 2026, - [2153] = 2027, - [2154] = 2028, - [2155] = 2029, - [2156] = 2030, - [2157] = 2038, - [2158] = 2039, - [2159] = 2040, - [2160] = 2042, - [2161] = 2043, - [2162] = 2045, - [2163] = 2023, + [2137] = 2137, + [2138] = 1988, + [2139] = 1989, + [2140] = 2140, + [2141] = 2112, + [2142] = 1985, + [2143] = 1987, + [2144] = 2068, + [2145] = 1988, + [2146] = 1989, + [2147] = 2147, + [2148] = 2148, + [2149] = 2105, + [2150] = 2106, + [2151] = 2065, + [2152] = 2105, + [2153] = 2106, + [2154] = 2105, + [2155] = 2155, + [2156] = 2156, + [2157] = 2074, + [2158] = 2011, + [2159] = 2014, + [2160] = 2160, + [2161] = 2161, + [2162] = 2020, + [2163] = 2109, [2164] = 2164, - [2165] = 2025, - [2166] = 2026, - [2167] = 2077, - [2168] = 2027, - [2169] = 2028, - [2170] = 2051, - [2171] = 2054, - [2172] = 2055, - [2173] = 2051, - [2174] = 2054, - [2175] = 2055, - [2176] = 2057, - [2177] = 2057, - [2178] = 2178, - [2179] = 2179, - [2180] = 2029, - [2181] = 2030, - [2182] = 2182, - [2183] = 2118, - [2184] = 2119, - [2185] = 2185, + [2165] = 2127, + [2166] = 2010, + [2167] = 2011, + [2168] = 2022, + [2169] = 2014, + [2170] = 2170, + [2171] = 2029, + [2172] = 2172, + [2173] = 2109, + [2174] = 2020, + [2175] = 2021, + [2176] = 2022, + [2177] = 2109, + [2178] = 2106, + [2179] = 2029, + [2180] = 2048, + [2181] = 2049, + [2182] = 2050, + [2183] = 2051, + [2184] = 2052, + [2185] = 2053, [2186] = 2186, - [2187] = 2187, - [2188] = 2118, - [2189] = 2189, - [2190] = 2190, - [2191] = 2118, - [2192] = 2123, - [2193] = 2050, - [2194] = 2056, - [2195] = 2119, - [2196] = 2002, - [2197] = 2197, - [2198] = 2119, - [2199] = 2003, - [2200] = 2006, - [2201] = 2007, + [2187] = 2054, + [2188] = 2066, + [2189] = 2048, + [2190] = 2049, + [2191] = 2050, + [2192] = 2051, + [2193] = 2052, + [2194] = 2053, + [2195] = 1985, + [2196] = 2054, + [2197] = 2055, + [2198] = 2055, + [2199] = 1988, + [2200] = 2009, + [2201] = 1989, [2202] = 2202, - [2203] = 2182, - [2204] = 2008, - [2205] = 2205, - [2206] = 2206, - [2207] = 2010, - [2208] = 2208, - [2209] = 2006, - [2210] = 2007, - [2211] = 2125, - [2212] = 2212, - [2213] = 2213, - [2214] = 2214, - [2215] = 2023, - [2216] = 2025, - [2217] = 2217, - [2218] = 2218, - [2219] = 2026, - [2220] = 2027, - [2221] = 2028, - [2222] = 2029, - [2223] = 2164, - [2224] = 2030, + [2203] = 2203, + [2204] = 2124, + [2205] = 2155, + [2206] = 2011, + [2207] = 2014, + [2208] = 2020, + [2209] = 2021, + [2210] = 2022, + [2211] = 2065, + [2212] = 2029, + [2213] = 2066, + [2214] = 2068, + [2215] = 2048, + [2216] = 2049, + [2217] = 2050, + [2218] = 2051, + [2219] = 2052, + [2220] = 2053, + [2221] = 2054, + [2222] = 2021, + [2223] = 2095, + [2224] = 2224, [2225] = 2225, - [2226] = 2038, - [2227] = 2039, - [2228] = 2040, - [2229] = 2042, - [2230] = 2043, - [2231] = 2045, + [2226] = 2226, + [2227] = 2227, + [2228] = 2228, + [2229] = 2229, + [2230] = 2160, + [2231] = 2228, [2232] = 2232, - [2233] = 2117, + [2233] = 2233, [2234] = 2234, - [2235] = 2038, - [2236] = 2234, - [2237] = 2123, + [2235] = 2235, + [2236] = 2236, + [2237] = 2237, [2238] = 2238, - [2239] = 1886, + [2239] = 2229, [2240] = 2240, [2241] = 2241, - [2242] = 2242, + [2242] = 1567, [2243] = 2243, [2244] = 2244, [2245] = 2245, [2246] = 2246, - [2247] = 2244, - [2248] = 2246, + [2247] = 2247, + [2248] = 2248, [2249] = 2249, - [2250] = 2250, - [2251] = 2251, - [2252] = 2250, - [2253] = 2251, + [2250] = 2228, + [2251] = 2232, + [2252] = 2252, + [2253] = 2253, [2254] = 2254, [2255] = 2255, [2256] = 2256, - [2257] = 2202, + [2257] = 2257, [2258] = 2258, - [2259] = 649, - [2260] = 2260, - [2261] = 2238, - [2262] = 2262, + [2259] = 2253, + [2260] = 2240, + [2261] = 2249, + [2262] = 2233, [2263] = 2263, - [2264] = 2242, - [2265] = 1926, + [2264] = 2099, + [2265] = 2100, [2266] = 2266, - [2267] = 2267, - [2268] = 2268, - [2269] = 2269, - [2270] = 2270, - [2271] = 2245, - [2272] = 2272, + [2267] = 2102, + [2268] = 2255, + [2269] = 1570, + [2270] = 2243, + [2271] = 1954, + [2272] = 2235, [2273] = 2273, [2274] = 2274, - [2275] = 2275, - [2276] = 2255, - [2277] = 2277, - [2278] = 1934, - [2279] = 2267, - [2280] = 654, - [2281] = 1975, - [2282] = 2282, - [2283] = 2250, - [2284] = 2284, - [2285] = 1587, - [2286] = 2286, - [2287] = 2241, - [2288] = 1938, - [2289] = 2267, - [2290] = 2290, - [2291] = 2291, - [2292] = 2292, - [2293] = 2293, - [2294] = 2260, - [2295] = 2128, - [2296] = 2190, - [2297] = 2251, - [2298] = 2242, - [2299] = 2260, - [2300] = 997, - [2301] = 2282, - [2302] = 2187, - [2303] = 2242, - [2304] = 2304, - [2305] = 2267, - [2306] = 2306, - [2307] = 2267, - [2308] = 2268, - [2309] = 2284, - [2310] = 2268, - [2311] = 2254, - [2312] = 1604, - [2313] = 2245, - [2314] = 2314, - [2315] = 2315, - [2316] = 2273, - [2317] = 2274, - [2318] = 1917, - [2319] = 2245, - [2320] = 2277, - [2321] = 2292, - [2322] = 2286, - [2323] = 2273, - [2324] = 2282, - [2325] = 2274, - [2326] = 2284, - [2327] = 2241, - [2328] = 2286, - [2329] = 2241, - [2330] = 2277, - [2331] = 2331, - [2332] = 2332, - [2333] = 1917, - [2334] = 2268, - [2335] = 2282, - [2336] = 2273, + [2275] = 2236, + [2276] = 2224, + [2277] = 629, + [2278] = 2238, + [2279] = 2279, + [2280] = 2227, + [2281] = 2281, + [2282] = 2229, + [2283] = 2233, + [2284] = 2118, + [2285] = 2285, + [2286] = 2235, + [2287] = 2236, + [2288] = 1958, + [2289] = 1960, + [2290] = 2238, + [2291] = 2235, + [2292] = 2147, + [2293] = 2236, + [2294] = 2241, + [2295] = 2232, + [2296] = 2243, + [2297] = 2245, + [2298] = 2246, + [2299] = 2248, + [2300] = 2245, + [2301] = 1011, + [2302] = 2302, + [2303] = 2303, + [2304] = 2255, + [2305] = 626, + [2306] = 2257, + [2307] = 2258, + [2308] = 2224, + [2309] = 2240, + [2310] = 2234, + [2311] = 2249, + [2312] = 2312, + [2313] = 2313, + [2314] = 2274, + [2315] = 2266, + [2316] = 2241, + [2317] = 2160, + [2318] = 2318, + [2319] = 2319, + [2320] = 2274, + [2321] = 2243, + [2322] = 2322, + [2323] = 2245, + [2324] = 2224, + [2325] = 2246, + [2326] = 2225, + [2327] = 2227, + [2328] = 2328, + [2329] = 2229, + [2330] = 2233, + [2331] = 2235, + [2332] = 2236, + [2333] = 2226, + [2334] = 2303, + [2335] = 2238, + [2336] = 2237, [2337] = 2337, - [2338] = 2284, - [2339] = 2339, - [2340] = 2340, - [2341] = 2260, - [2342] = 2286, - [2343] = 2241, - [2344] = 2242, + [2338] = 2241, + [2339] = 628, + [2340] = 2243, + [2341] = 2341, + [2342] = 2245, + [2343] = 2246, + [2344] = 1875, [2345] = 2345, - [2346] = 1584, - [2347] = 2267, - [2348] = 2254, - [2349] = 2202, - [2350] = 2268, - [2351] = 2304, - [2352] = 2245, - [2353] = 2242, - [2354] = 2273, - [2355] = 2274, - [2356] = 2149, - [2357] = 2345, - [2358] = 2277, - [2359] = 2359, - [2360] = 2360, - [2361] = 2282, - [2362] = 2284, - [2363] = 2363, - [2364] = 2286, - [2365] = 2241, - [2366] = 2366, - [2367] = 2187, - [2368] = 2368, - [2369] = 2369, - [2370] = 2274, - [2371] = 655, - [2372] = 2360, - [2373] = 1587, - [2374] = 2260, - [2375] = 2214, - [2376] = 2260, - [2377] = 2242, - [2378] = 2345, - [2379] = 2314, - [2380] = 2267, - [2381] = 2315, - [2382] = 2340, - [2383] = 2284, - [2384] = 2360, - [2385] = 2385, - [2386] = 2245, - [2387] = 2387, - [2388] = 2273, - [2389] = 2274, + [2346] = 2238, + [2347] = 2285, + [2348] = 2348, + [2349] = 2248, + [2350] = 2312, + [2351] = 2274, + [2352] = 2352, + [2353] = 2224, + [2354] = 2247, + [2355] = 2266, + [2356] = 2227, + [2357] = 2229, + [2358] = 974, + [2359] = 2233, + [2360] = 2235, + [2361] = 2236, + [2362] = 633, + [2363] = 2238, + [2364] = 2254, + [2365] = 2365, + [2366] = 2241, + [2367] = 2243, + [2368] = 2245, + [2369] = 2246, + [2370] = 2302, + [2371] = 2371, + [2372] = 1875, + [2373] = 1917, + [2374] = 1875, + [2375] = 2375, + [2376] = 2224, + [2377] = 2227, + [2378] = 1570, + [2379] = 2233, + [2380] = 2235, + [2381] = 2236, + [2382] = 2238, + [2383] = 1570, + [2384] = 2241, + [2385] = 2243, + [2386] = 1962, + [2387] = 2245, + [2388] = 2246, + [2389] = 2246, [2390] = 2390, - [2391] = 2277, - [2392] = 2368, - [2393] = 2243, - [2394] = 2282, - [2395] = 2284, - [2396] = 2396, - [2397] = 2286, - [2398] = 2241, - [2399] = 2399, - [2400] = 2400, - [2401] = 2387, - [2402] = 2244, - [2403] = 2403, - [2404] = 2246, - [2405] = 1027, - [2406] = 2250, + [2391] = 1925, + [2392] = 1881, + [2393] = 1926, + [2394] = 1926, + [2395] = 2322, + [2396] = 2273, + [2397] = 2224, + [2398] = 2229, + [2399] = 2312, + [2400] = 2227, + [2401] = 2401, + [2402] = 2233, + [2403] = 1576, + [2404] = 2235, + [2405] = 2236, + [2406] = 2406, [2407] = 2407, - [2408] = 2277, - [2409] = 2286, - [2410] = 2241, - [2411] = 2114, - [2412] = 1924, - [2413] = 2251, - [2414] = 2277, - [2415] = 2286, - [2416] = 2241, - [2417] = 2135, - [2418] = 2244, - [2419] = 2150, - [2420] = 2420, - [2421] = 2245, - [2422] = 2255, - [2423] = 2423, - [2424] = 1587, - [2425] = 1886, + [2408] = 2238, + [2409] = 2241, + [2410] = 2243, + [2411] = 2245, + [2412] = 2246, + [2413] = 2281, + [2414] = 622, + [2415] = 2238, + [2416] = 1926, + [2417] = 2245, + [2418] = 2246, + [2419] = 2419, + [2420] = 2238, + [2421] = 2255, + [2422] = 2245, + [2423] = 2246, + [2424] = 2274, + [2425] = 2425, [2426] = 2426, - [2427] = 2266, - [2428] = 2266, - [2429] = 2272, - [2430] = 2270, - [2431] = 2268, - [2432] = 2202, - [2433] = 2403, - [2434] = 2314, - [2435] = 2315, - [2436] = 2260, - [2437] = 2437, + [2427] = 2248, + [2428] = 2428, + [2429] = 2390, + [2430] = 2313, + [2431] = 2318, + [2432] = 2432, + [2433] = 2433, + [2434] = 2234, + [2435] = 2433, + [2436] = 2436, + [2437] = 2419, [2438] = 2438, - [2439] = 2255, - [2440] = 2440, - [2441] = 2262, - [2442] = 2293, - [2443] = 2242, - [2444] = 2238, - [2445] = 2187, - [2446] = 2214, - [2447] = 2273, - [2448] = 2274, - [2449] = 2437, - [2450] = 2270, - [2451] = 2403, - [2452] = 2260, - [2453] = 2453, - [2454] = 2267, - [2455] = 2277, - [2456] = 2366, - [2457] = 2457, - [2458] = 2458, - [2459] = 2243, - [2460] = 2268, - [2461] = 2277, - [2462] = 2245, - [2463] = 2286, - [2464] = 2291, - [2465] = 2273, - [2466] = 2274, - [2467] = 2243, - [2468] = 2275, - [2469] = 2277, - [2470] = 2470, - [2471] = 2331, - [2472] = 2282, - [2473] = 2284, - [2474] = 2286, - [2475] = 2241, - [2476] = 652, - [2477] = 1886, - [2478] = 1917, - [2479] = 2282, - [2480] = 2360, - [2481] = 2390, - [2482] = 2457, - [2483] = 2399, - [2484] = 2440, + [2439] = 2252, + [2440] = 2341, + [2441] = 2257, + [2442] = 2099, + [2443] = 2100, + [2444] = 2102, + [2445] = 2432, + [2446] = 2258, + [2447] = 2447, + [2448] = 2313, + [2449] = 2318, + [2450] = 2233, + [2451] = 2438, + [2452] = 2136, + [2453] = 2240, + [2454] = 2319, + [2455] = 2160, + [2456] = 1965, + [2457] = 2247, + [2458] = 2148, + [2459] = 2241, + [2460] = 2249, + [2461] = 2224, + [2462] = 2406, + [2463] = 2352, + [2464] = 2464, + [2465] = 2266, + [2466] = 2466, + [2467] = 2467, + [2468] = 2110, + [2469] = 2257, + [2470] = 2258, + [2471] = 2100, + [2472] = 2227, + [2473] = 2473, + [2474] = 2274, + [2475] = 2475, + [2476] = 2407, + [2477] = 2365, + [2478] = 2227, + [2479] = 2479, + [2480] = 2480, + [2481] = 2481, + [2482] = 2482, + [2483] = 1577, + [2484] = 2484, [2485] = 2485, - [2486] = 2258, - [2487] = 2458, - [2488] = 653, + [2486] = 2047, + [2487] = 2487, + [2488] = 2488, [2489] = 2489, - [2490] = 1940, - [2491] = 1976, - [2492] = 1885, - [2493] = 2290, - [2494] = 2470, - [2495] = 2485, - [2496] = 2246, - [2497] = 2332, - [2498] = 2268, + [2490] = 2490, + [2491] = 2491, + [2492] = 2492, + [2493] = 1578, + [2494] = 2494, + [2495] = 2495, + [2496] = 2496, + [2497] = 2497, + [2498] = 2498, [2499] = 2499, - [2500] = 2500, - [2501] = 2501, - [2502] = 2001, + [2500] = 1578, + [2501] = 2487, + [2502] = 2502, [2503] = 2503, - [2504] = 2501, - [2505] = 2505, + [2504] = 2504, + [2505] = 2503, [2506] = 2506, - [2507] = 2507, - [2508] = 2508, + [2507] = 2480, + [2508] = 2480, [2509] = 2509, - [2510] = 2501, + [2510] = 2464, [2511] = 2511, [2512] = 2512, - [2513] = 2513, - [2514] = 1610, - [2515] = 1626, - [2516] = 2516, + [2513] = 622, + [2514] = 2488, + [2515] = 2503, + [2516] = 2480, [2517] = 2517, [2518] = 2518, - [2519] = 2519, + [2519] = 2495, [2520] = 2520, - [2521] = 2521, + [2521] = 2499, [2522] = 2522, - [2523] = 2523, + [2523] = 2047, [2524] = 2524, - [2525] = 652, - [2526] = 2526, + [2525] = 2509, + [2526] = 1576, [2527] = 2527, - [2528] = 1610, + [2528] = 2528, [2529] = 2529, [2530] = 2530, - [2531] = 2531, + [2531] = 2244, [2532] = 2532, - [2533] = 2529, - [2534] = 2534, + [2533] = 2533, + [2534] = 2488, [2535] = 2535, [2536] = 2536, [2537] = 2537, [2538] = 2538, - [2539] = 2539, + [2539] = 2488, [2540] = 2540, - [2541] = 2541, - [2542] = 2505, + [2541] = 633, + [2542] = 2499, [2543] = 2543, - [2544] = 2522, - [2545] = 2545, - [2546] = 2501, - [2547] = 2538, - [2548] = 1604, - [2549] = 2549, - [2550] = 2539, - [2551] = 2499, - [2552] = 2339, - [2553] = 2553, + [2544] = 2544, + [2545] = 2536, + [2546] = 2494, + [2547] = 2487, + [2548] = 2502, + [2549] = 2504, + [2550] = 2550, + [2551] = 2485, + [2552] = 1577, + [2553] = 2532, [2554] = 2554, - [2555] = 2001, - [2556] = 2505, - [2557] = 2506, - [2558] = 2509, - [2559] = 2506, - [2560] = 2509, + [2555] = 628, + [2556] = 2495, + [2557] = 2520, + [2558] = 2436, + [2559] = 1610, + [2560] = 2560, [2561] = 2561, - [2562] = 653, - [2563] = 2536, - [2564] = 2561, + [2562] = 2502, + [2563] = 2503, + [2564] = 2047, [2565] = 2565, - [2566] = 2538, - [2567] = 2520, - [2568] = 2539, + [2566] = 626, + [2567] = 2567, + [2568] = 2511, [2569] = 2569, - [2570] = 1592, - [2571] = 2571, - [2572] = 649, - [2573] = 1592, - [2574] = 654, - [2575] = 2575, - [2576] = 2576, - [2577] = 2537, + [2570] = 2530, + [2571] = 2496, + [2572] = 2572, + [2573] = 2573, + [2574] = 2574, + [2575] = 2495, + [2576] = 1610, + [2577] = 629, [2578] = 2578, [2579] = 2579, - [2580] = 2489, - [2581] = 2581, + [2580] = 2580, + [2581] = 2580, [2582] = 2582, - [2583] = 2554, + [2583] = 2583, [2584] = 2584, [2585] = 2585, [2586] = 2586, - [2587] = 2538, - [2588] = 2522, + [2587] = 2587, + [2588] = 2588, [2589] = 2589, - [2590] = 2539, - [2591] = 2512, - [2592] = 1626, - [2593] = 2549, - [2594] = 2565, + [2590] = 2590, + [2591] = 2591, + [2592] = 2586, + [2593] = 2593, + [2594] = 2594, [2595] = 2595, - [2596] = 2001, - [2597] = 2522, - [2598] = 655, - [2599] = 2306, - [2600] = 2600, - [2601] = 2601, - [2602] = 2602, + [2596] = 2596, + [2597] = 2597, + [2598] = 2598, + [2599] = 2599, + [2600] = 2584, + [2601] = 2587, + [2602] = 2589, [2603] = 2603, - [2604] = 2604, + [2604] = 2585, [2605] = 2605, - [2606] = 2602, + [2606] = 2596, [2607] = 2607, - [2608] = 2608, + [2608] = 2586, [2609] = 2609, [2610] = 2610, - [2611] = 2611, - [2612] = 2612, - [2613] = 2601, + [2611] = 2593, + [2612] = 2584, + [2613] = 2613, [2614] = 2614, [2615] = 2615, - [2616] = 2616, + [2616] = 2613, [2617] = 2617, - [2618] = 2607, - [2619] = 2619, + [2618] = 2618, + [2619] = 2597, [2620] = 2620, - [2621] = 2619, - [2622] = 2622, - [2623] = 2602, + [2621] = 2621, + [2622] = 2596, + [2623] = 2623, [2624] = 2624, - [2625] = 2602, - [2626] = 2626, - [2627] = 2614, - [2628] = 2604, - [2629] = 2629, - [2630] = 2624, - [2631] = 2601, + [2625] = 2625, + [2626] = 2594, + [2627] = 2603, + [2628] = 2628, + [2629] = 2594, + [2630] = 2630, + [2631] = 2603, [2632] = 2632, - [2633] = 2622, - [2634] = 2605, - [2635] = 2622, - [2636] = 2636, - [2637] = 2608, - [2638] = 2611, - [2639] = 2609, + [2633] = 2580, + [2634] = 2634, + [2635] = 2588, + [2636] = 2594, + [2637] = 2637, + [2638] = 2580, + [2639] = 2639, [2640] = 2640, [2641] = 2641, - [2642] = 2624, - [2643] = 2608, - [2644] = 2612, - [2645] = 2624, - [2646] = 2612, - [2647] = 2601, - [2648] = 2626, - [2649] = 2626, + [2642] = 2594, + [2643] = 2585, + [2644] = 2644, + [2645] = 2645, + [2646] = 2646, + [2647] = 2580, + [2648] = 2588, + [2649] = 2585, [2650] = 2650, - [2651] = 2651, - [2652] = 2601, + [2651] = 2589, + [2652] = 2639, [2653] = 2653, - [2654] = 2604, - [2655] = 2600, - [2656] = 2612, - [2657] = 2657, - [2658] = 2658, - [2659] = 2605, - [2660] = 2614, - [2661] = 2604, - [2662] = 2629, + [2654] = 2585, + [2655] = 2655, + [2656] = 2596, + [2657] = 2597, + [2658] = 2580, + [2659] = 2621, + [2660] = 2586, + [2661] = 2593, + [2662] = 2594, [2663] = 2615, - [2664] = 2604, - [2665] = 2605, - [2666] = 2605, - [2667] = 2612, - [2668] = 2608, - [2669] = 2607, - [2670] = 2607, + [2664] = 2664, + [2665] = 2588, + [2666] = 2607, + [2667] = 2585, + [2668] = 2645, + [2669] = 2596, + [2670] = 2597, [2671] = 2609, - [2672] = 2672, - [2673] = 2619, - [2674] = 2674, - [2675] = 2608, - [2676] = 2612, - [2677] = 2609, - [2678] = 2619, - [2679] = 2679, - [2680] = 2614, - [2681] = 2615, - [2682] = 2609, - [2683] = 2611, - [2684] = 2636, - [2685] = 2685, - [2686] = 2686, - [2687] = 2615, - [2688] = 2688, - [2689] = 2622, - [2690] = 2607, - [2691] = 2691, - [2692] = 2602, - [2693] = 2693, - [2694] = 2619, - [2695] = 2632, - [2696] = 2658, - [2697] = 2641, - [2698] = 2605, - [2699] = 2699, - [2700] = 2601, - [2701] = 2701, - [2702] = 2605, - [2703] = 2626, - [2704] = 2604, + [2672] = 2603, + [2673] = 2673, + [2674] = 2584, + [2675] = 2675, + [2676] = 2676, + [2677] = 2655, + [2678] = 2589, + [2679] = 2584, + [2680] = 2641, + [2681] = 2587, + [2682] = 2586, + [2683] = 2593, + [2684] = 2613, + [2685] = 2595, + [2686] = 2594, + [2687] = 2632, + [2688] = 2580, + [2689] = 2595, + [2690] = 2596, + [2691] = 2641, + [2692] = 2603, + [2693] = 2597, + [2694] = 2615, + [2695] = 2587, + [2696] = 2585, + [2697] = 2584, + [2698] = 2587, + [2699] = 2640, + [2700] = 2607, + [2701] = 2610, + [2702] = 2675, + [2703] = 2603, + [2704] = 2632, [2705] = 2705, - [2706] = 2605, - [2707] = 2614, - [2708] = 2708, - [2709] = 2612, - [2710] = 2608, - [2711] = 2609, - [2712] = 2688, - [2713] = 2614, - [2714] = 2616, - [2715] = 2612, - [2716] = 2650, - [2717] = 2609, - [2718] = 2718, - [2719] = 2650, - [2720] = 2686, - [2721] = 2614, - [2722] = 2632, - [2723] = 2615, - [2724] = 2600, - [2725] = 2615, - [2726] = 2614, - [2727] = 2607, - [2728] = 2619, - [2729] = 2686, - [2730] = 2629, - [2731] = 2622, - [2732] = 2732, - [2733] = 2615, - [2734] = 2691, - [2735] = 2735, - [2736] = 2601, - [2737] = 2626, - [2738] = 2738, - [2739] = 2607, - [2740] = 2740, - [2741] = 2619, - [2742] = 2607, - [2743] = 2604, - [2744] = 2619, + [2706] = 2584, + [2707] = 2584, + [2708] = 2587, + [2709] = 2709, + [2710] = 2710, + [2711] = 2589, + [2712] = 2630, + [2713] = 2590, + [2714] = 2615, + [2715] = 2588, + [2716] = 2637, + [2717] = 2587, + [2718] = 2587, + [2719] = 2719, + [2720] = 2603, + [2721] = 2589, + [2722] = 2586, + [2723] = 2723, + [2724] = 2594, + [2725] = 2725, + [2726] = 2641, + [2727] = 2590, + [2728] = 2593, + [2729] = 2593, + [2730] = 2585, + [2731] = 2676, + [2732] = 2588, + [2733] = 2586, + [2734] = 2593, + [2735] = 2596, + [2736] = 2597, + [2737] = 2589, + [2738] = 2591, + [2739] = 2590, + [2740] = 2618, + [2741] = 2615, + [2742] = 2594, + [2743] = 2625, + [2744] = 2588, [2745] = 2745, - [2746] = 2608, + [2746] = 2595, [2747] = 2747, [2748] = 2650, - [2749] = 2622, - [2750] = 2609, - [2751] = 2611, - [2752] = 2752, - [2753] = 2753, - [2754] = 2615, - [2755] = 2612, - [2756] = 2629, - [2757] = 2608, - [2758] = 2620, - [2759] = 2653, - [2760] = 2760, - [2761] = 2760, - [2762] = 2762, - [2763] = 2763, - [2764] = 2612, - [2765] = 2640, - [2766] = 2603, - [2767] = 2672, - [2768] = 2762, - [2769] = 2640, - [2770] = 2693, - [2771] = 2611, - [2772] = 2772, - [2773] = 2611, - [2774] = 2774, - [2775] = 2611, - [2776] = 2679, - [2777] = 2611, - [2778] = 2778, - [2779] = 2779, - [2780] = 2640, - [2781] = 2650, - [2782] = 2601, - [2783] = 2772, - [2784] = 2778, - [2785] = 2785, - [2786] = 2735, - [2787] = 2752, - [2788] = 2674, - [2789] = 2685, - [2790] = 2774, - [2791] = 2674, - [2792] = 2604, - [2793] = 2622, - [2794] = 2622, + [2749] = 2664, + [2750] = 2589, + [2751] = 2588, + [2752] = 2603, + [2753] = 2673, + [2754] = 2597, + [2755] = 2650, + [2756] = 2595, + [2757] = 2650, + [2758] = 2596, + [2759] = 2580, + [2760] = 2613, + [2761] = 2593, + [2762] = 2641, + [2763] = 2723, + [2764] = 2747, + [2765] = 2594, + [2766] = 2620, + [2767] = 2767, + [2768] = 2614, + [2769] = 2597, + [2770] = 2617, + [2771] = 2614, + [2772] = 2586, + [2773] = 2767, + [2774] = 2675, }; static TSCharacterRange sym_identifier_character_set_1[] = { @@ -5591,7 +5574,7 @@ static TSCharacterRange sym_identifier_character_set_1[] = { {0x1760, 0x176c}, {0x176e, 0x1770}, {0x1780, 0x17b3}, {0x17d7, 0x17d7}, {0x17dc, 0x17dc}, {0x1820, 0x1878}, {0x1880, 0x18a8}, {0x18aa, 0x18aa}, {0x18b0, 0x18f5}, {0x1900, 0x191e}, {0x1950, 0x196d}, {0x1970, 0x1974}, {0x1980, 0x19ab}, {0x19b0, 0x19c9}, {0x1a00, 0x1a16}, {0x1a20, 0x1a54}, {0x1aa7, 0x1aa7}, {0x1b05, 0x1b33}, {0x1b45, 0x1b4c}, {0x1b83, 0x1ba0}, {0x1bae, 0x1baf}, {0x1bba, 0x1be5}, {0x1c00, 0x1c23}, {0x1c4d, 0x1c4f}, - {0x1c5a, 0x1c7d}, {0x1c80, 0x1c88}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1ce9, 0x1cec}, {0x1cee, 0x1cf3}, {0x1cf5, 0x1cf6}, {0x1cfa, 0x1cfa}, + {0x1c5a, 0x1c7d}, {0x1c80, 0x1c8a}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1ce9, 0x1cec}, {0x1cee, 0x1cf3}, {0x1cf5, 0x1cf6}, {0x1cfa, 0x1cfa}, {0x1d00, 0x1dbf}, {0x1e00, 0x1f15}, {0x1f18, 0x1f1d}, {0x1f20, 0x1f45}, {0x1f48, 0x1f4d}, {0x1f50, 0x1f57}, {0x1f59, 0x1f59}, {0x1f5b, 0x1f5b}, {0x1f5d, 0x1f5d}, {0x1f5f, 0x1f7d}, {0x1f80, 0x1fb4}, {0x1fb6, 0x1fbc}, {0x1fbe, 0x1fbe}, {0x1fc2, 0x1fc4}, {0x1fc6, 0x1fcc}, {0x1fd0, 0x1fd3}, {0x1fd6, 0x1fdb}, {0x1fe0, 0x1fec}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffc}, {0x2071, 0x2071}, {0x207f, 0x207f}, {0x2090, 0x209c}, {0x2102, 0x2102}, @@ -5601,7 +5584,7 @@ static TSCharacterRange sym_identifier_character_set_1[] = { {0x2db8, 0x2dbe}, {0x2dc0, 0x2dc6}, {0x2dc8, 0x2dce}, {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x3005, 0x3007}, {0x3021, 0x3029}, {0x3031, 0x3035}, {0x3038, 0x303c}, {0x3041, 0x3096}, {0x309d, 0x309f}, {0x30a1, 0x30fa}, {0x30fc, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, {0x31a0, 0x31bf}, {0x31f0, 0x31ff}, {0x3400, 0x4dbf}, {0x4e00, 0xa48c}, {0xa4d0, 0xa4fd}, {0xa500, 0xa60c}, {0xa610, 0xa61f}, {0xa62a, 0xa62b}, {0xa640, 0xa66e}, - {0xa67f, 0xa69d}, {0xa6a0, 0xa6ef}, {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7ca}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7d9}, + {0xa67f, 0xa69d}, {0xa6a0, 0xa6ef}, {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7cd}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7dc}, {0xa7f2, 0xa801}, {0xa803, 0xa805}, {0xa807, 0xa80a}, {0xa80c, 0xa822}, {0xa840, 0xa873}, {0xa882, 0xa8b3}, {0xa8f2, 0xa8f7}, {0xa8fb, 0xa8fb}, {0xa8fd, 0xa8fe}, {0xa90a, 0xa925}, {0xa930, 0xa946}, {0xa960, 0xa97c}, {0xa984, 0xa9b2}, {0xa9cf, 0xa9cf}, {0xa9e0, 0xa9e4}, {0xa9e6, 0xa9ef}, {0xa9fa, 0xa9fe}, {0xaa00, 0xaa28}, {0xaa40, 0xaa42}, {0xaa44, 0xaa4b}, {0xaa60, 0xaa76}, {0xaa7a, 0xaa7a}, {0xaa7e, 0xaaaf}, {0xaab1, 0xaab1}, @@ -5615,38 +5598,40 @@ static TSCharacterRange sym_identifier_character_set_1[] = { {0x10080, 0x100fa}, {0x10140, 0x10174}, {0x10280, 0x1029c}, {0x102a0, 0x102d0}, {0x10300, 0x1031f}, {0x1032d, 0x1034a}, {0x10350, 0x10375}, {0x10380, 0x1039d}, {0x103a0, 0x103c3}, {0x103c8, 0x103cf}, {0x103d1, 0x103d5}, {0x10400, 0x1049d}, {0x104b0, 0x104d3}, {0x104d8, 0x104fb}, {0x10500, 0x10527}, {0x10530, 0x10563}, {0x10570, 0x1057a}, {0x1057c, 0x1058a}, {0x1058c, 0x10592}, {0x10594, 0x10595}, {0x10597, 0x105a1}, {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, - {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, - {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, - {0x10900, 0x10915}, {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109be, 0x109bf}, {0x10a00, 0x10a00}, {0x10a10, 0x10a13}, {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, - {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae4}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, {0x10b80, 0x10b91}, - {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d23}, {0x10e80, 0x10ea9}, {0x10eb0, 0x10eb1}, {0x10f00, 0x10f1c}, {0x10f27, 0x10f27}, - {0x10f30, 0x10f45}, {0x10f70, 0x10f81}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11003, 0x11037}, {0x11071, 0x11072}, {0x11075, 0x11075}, {0x11083, 0x110af}, - {0x110d0, 0x110e8}, {0x11103, 0x11126}, {0x11144, 0x11144}, {0x11147, 0x11147}, {0x11150, 0x11172}, {0x11176, 0x11176}, {0x11183, 0x111b2}, {0x111c1, 0x111c4}, - {0x111da, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x1122b}, {0x1123f, 0x11240}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, - {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112de}, {0x11305, 0x1130c}, {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, - {0x11335, 0x11339}, {0x1133d, 0x1133d}, {0x11350, 0x11350}, {0x1135d, 0x11361}, {0x11400, 0x11434}, {0x11447, 0x1144a}, {0x1145f, 0x11461}, {0x11480, 0x114af}, - {0x114c4, 0x114c5}, {0x114c7, 0x114c7}, {0x11580, 0x115ae}, {0x115d8, 0x115db}, {0x11600, 0x1162f}, {0x11644, 0x11644}, {0x11680, 0x116aa}, {0x116b8, 0x116b8}, - {0x11700, 0x1171a}, {0x11740, 0x11746}, {0x11800, 0x1182b}, {0x118a0, 0x118df}, {0x118ff, 0x11906}, {0x11909, 0x11909}, {0x1190c, 0x11913}, {0x11915, 0x11916}, - {0x11918, 0x1192f}, {0x1193f, 0x1193f}, {0x11941, 0x11941}, {0x119a0, 0x119a7}, {0x119aa, 0x119d0}, {0x119e1, 0x119e1}, {0x119e3, 0x119e3}, {0x11a00, 0x11a00}, - {0x11a0b, 0x11a32}, {0x11a3a, 0x11a3a}, {0x11a50, 0x11a50}, {0x11a5c, 0x11a89}, {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c2e}, - {0x11c40, 0x11c40}, {0x11c72, 0x11c8f}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d30}, {0x11d46, 0x11d46}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, - {0x11d6a, 0x11d89}, {0x11d98, 0x11d98}, {0x11ee0, 0x11ef2}, {0x11f02, 0x11f02}, {0x11f04, 0x11f10}, {0x11f12, 0x11f33}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, - {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, {0x13441, 0x13446}, {0x14400, 0x14646}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, - {0x16a70, 0x16abe}, {0x16ad0, 0x16aed}, {0x16b00, 0x16b2f}, {0x16b40, 0x16b43}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, - {0x16f50, 0x16f50}, {0x16f93, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe3}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18d00, 0x18d08}, {0x1aff0, 0x1aff3}, - {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, - {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, - {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, - {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, - {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, - {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e030, 0x1e06d}, {0x1e100, 0x1e12c}, {0x1e137, 0x1e13d}, {0x1e14e, 0x1e14e}, - {0x1e290, 0x1e2ad}, {0x1e2c0, 0x1e2eb}, {0x1e4d0, 0x1e4eb}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, - {0x1e900, 0x1e943}, {0x1e94b, 0x1e94b}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, - {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, - {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, {0x1ee5f, 0x1ee5f}, {0x1ee61, 0x1ee62}, - {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, {0x1ee80, 0x1ee89}, {0x1ee8b, 0x1ee9b}, - {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, {0x1eeab, 0x1eebb}, {0x20000, 0x2a6df}, {0x2a700, 0x2b739}, {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, {0x2ceb0, 0x2ebe0}, - {0x2ebf0, 0x2ee5d}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, {0x31350, 0x323af}, + {0x105c0, 0x105f3}, {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, + {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, + {0x108f4, 0x108f5}, {0x10900, 0x10915}, {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109be, 0x109bf}, {0x10a00, 0x10a00}, {0x10a10, 0x10a13}, {0x10a15, 0x10a17}, + {0x10a19, 0x10a35}, {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae4}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, + {0x10b80, 0x10b91}, {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d23}, {0x10d4a, 0x10d65}, {0x10d6f, 0x10d85}, {0x10e80, 0x10ea9}, + {0x10eb0, 0x10eb1}, {0x10ec2, 0x10ec4}, {0x10f00, 0x10f1c}, {0x10f27, 0x10f27}, {0x10f30, 0x10f45}, {0x10f70, 0x10f81}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, + {0x11003, 0x11037}, {0x11071, 0x11072}, {0x11075, 0x11075}, {0x11083, 0x110af}, {0x110d0, 0x110e8}, {0x11103, 0x11126}, {0x11144, 0x11144}, {0x11147, 0x11147}, + {0x11150, 0x11172}, {0x11176, 0x11176}, {0x11183, 0x111b2}, {0x111c1, 0x111c4}, {0x111da, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x1122b}, + {0x1123f, 0x11240}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112de}, {0x11305, 0x1130c}, + {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133d, 0x1133d}, {0x11350, 0x11350}, {0x1135d, 0x11361}, + {0x11380, 0x11389}, {0x1138b, 0x1138b}, {0x1138e, 0x1138e}, {0x11390, 0x113b5}, {0x113b7, 0x113b7}, {0x113d1, 0x113d1}, {0x113d3, 0x113d3}, {0x11400, 0x11434}, + {0x11447, 0x1144a}, {0x1145f, 0x11461}, {0x11480, 0x114af}, {0x114c4, 0x114c5}, {0x114c7, 0x114c7}, {0x11580, 0x115ae}, {0x115d8, 0x115db}, {0x11600, 0x1162f}, + {0x11644, 0x11644}, {0x11680, 0x116aa}, {0x116b8, 0x116b8}, {0x11700, 0x1171a}, {0x11740, 0x11746}, {0x11800, 0x1182b}, {0x118a0, 0x118df}, {0x118ff, 0x11906}, + {0x11909, 0x11909}, {0x1190c, 0x11913}, {0x11915, 0x11916}, {0x11918, 0x1192f}, {0x1193f, 0x1193f}, {0x11941, 0x11941}, {0x119a0, 0x119a7}, {0x119aa, 0x119d0}, + {0x119e1, 0x119e1}, {0x119e3, 0x119e3}, {0x11a00, 0x11a00}, {0x11a0b, 0x11a32}, {0x11a3a, 0x11a3a}, {0x11a50, 0x11a50}, {0x11a5c, 0x11a89}, {0x11a9d, 0x11a9d}, + {0x11ab0, 0x11af8}, {0x11bc0, 0x11be0}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c2e}, {0x11c40, 0x11c40}, {0x11c72, 0x11c8f}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, + {0x11d0b, 0x11d30}, {0x11d46, 0x11d46}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d89}, {0x11d98, 0x11d98}, {0x11ee0, 0x11ef2}, {0x11f02, 0x11f02}, + {0x11f04, 0x11f10}, {0x11f12, 0x11f33}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, + {0x13441, 0x13446}, {0x13460, 0x143fa}, {0x14400, 0x14646}, {0x16100, 0x1611d}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, {0x16a70, 0x16abe}, {0x16ad0, 0x16aed}, + {0x16b00, 0x16b2f}, {0x16b40, 0x16b43}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16d40, 0x16d6c}, {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, {0x16f50, 0x16f50}, + {0x16f93, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe3}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18cff, 0x18d08}, {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, + {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, + {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, + {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, + {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, + {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, + {0x1d7c4, 0x1d7cb}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e030, 0x1e06d}, {0x1e100, 0x1e12c}, {0x1e137, 0x1e13d}, {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ad}, + {0x1e2c0, 0x1e2eb}, {0x1e4d0, 0x1e4eb}, {0x1e5d0, 0x1e5ed}, {0x1e5f0, 0x1e5f0}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, + {0x1e800, 0x1e8c4}, {0x1e900, 0x1e943}, {0x1e94b, 0x1e94b}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, + {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, + {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, {0x1ee5f, 0x1ee5f}, + {0x1ee61, 0x1ee62}, {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, {0x1ee80, 0x1ee89}, + {0x1ee8b, 0x1ee9b}, {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, {0x1eeab, 0x1eebb}, {0x20000, 0x2a6df}, {0x2a700, 0x2b739}, {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, + {0x2ceb0, 0x2ebe0}, {0x2ebf0, 0x2ee5d}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, {0x31350, 0x323af}, }; static TSCharacterRange sym_identifier_character_set_2[] = { @@ -5656,7 +5641,7 @@ static TSCharacterRange sym_identifier_character_set_2[] = { {0x483, 0x487}, {0x48a, 0x52f}, {0x531, 0x556}, {0x559, 0x559}, {0x560, 0x588}, {0x591, 0x5bd}, {0x5bf, 0x5bf}, {0x5c1, 0x5c2}, {0x5c4, 0x5c5}, {0x5c7, 0x5c7}, {0x5d0, 0x5ea}, {0x5ef, 0x5f2}, {0x610, 0x61a}, {0x620, 0x669}, {0x66e, 0x6d3}, {0x6d5, 0x6dc}, {0x6df, 0x6e8}, {0x6ea, 0x6fc}, {0x6ff, 0x6ff}, {0x710, 0x74a}, {0x74d, 0x7b1}, {0x7c0, 0x7f5}, {0x7fa, 0x7fa}, {0x7fd, 0x7fd}, - {0x800, 0x82d}, {0x840, 0x85b}, {0x860, 0x86a}, {0x870, 0x887}, {0x889, 0x88e}, {0x898, 0x8e1}, {0x8e3, 0x963}, {0x966, 0x96f}, + {0x800, 0x82d}, {0x840, 0x85b}, {0x860, 0x86a}, {0x870, 0x887}, {0x889, 0x88e}, {0x897, 0x8e1}, {0x8e3, 0x963}, {0x966, 0x96f}, {0x971, 0x983}, {0x985, 0x98c}, {0x98f, 0x990}, {0x993, 0x9a8}, {0x9aa, 0x9b0}, {0x9b2, 0x9b2}, {0x9b6, 0x9b9}, {0x9bc, 0x9c4}, {0x9c7, 0x9c8}, {0x9cb, 0x9ce}, {0x9d7, 0x9d7}, {0x9dc, 0x9dd}, {0x9df, 0x9e3}, {0x9e6, 0x9f1}, {0x9fc, 0x9fc}, {0x9fe, 0x9fe}, {0xa01, 0xa03}, {0xa05, 0xa0a}, {0xa0f, 0xa10}, {0xa13, 0xa28}, {0xa2a, 0xa30}, {0xa32, 0xa33}, {0xa35, 0xa36}, {0xa38, 0xa39}, @@ -5684,7 +5669,7 @@ static TSCharacterRange sym_identifier_character_set_2[] = { {0x180b, 0x180d}, {0x180f, 0x1819}, {0x1820, 0x1878}, {0x1880, 0x18aa}, {0x18b0, 0x18f5}, {0x1900, 0x191e}, {0x1920, 0x192b}, {0x1930, 0x193b}, {0x1946, 0x196d}, {0x1970, 0x1974}, {0x1980, 0x19ab}, {0x19b0, 0x19c9}, {0x19d0, 0x19da}, {0x1a00, 0x1a1b}, {0x1a20, 0x1a5e}, {0x1a60, 0x1a7c}, {0x1a7f, 0x1a89}, {0x1a90, 0x1a99}, {0x1aa7, 0x1aa7}, {0x1ab0, 0x1abd}, {0x1abf, 0x1ace}, {0x1b00, 0x1b4c}, {0x1b50, 0x1b59}, {0x1b6b, 0x1b73}, - {0x1b80, 0x1bf3}, {0x1c00, 0x1c37}, {0x1c40, 0x1c49}, {0x1c4d, 0x1c7d}, {0x1c80, 0x1c88}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1cd0, 0x1cd2}, + {0x1b80, 0x1bf3}, {0x1c00, 0x1c37}, {0x1c40, 0x1c49}, {0x1c4d, 0x1c7d}, {0x1c80, 0x1c8a}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1cd0, 0x1cd2}, {0x1cd4, 0x1cfa}, {0x1d00, 0x1f15}, {0x1f18, 0x1f1d}, {0x1f20, 0x1f45}, {0x1f48, 0x1f4d}, {0x1f50, 0x1f57}, {0x1f59, 0x1f59}, {0x1f5b, 0x1f5b}, {0x1f5d, 0x1f5d}, {0x1f5f, 0x1f7d}, {0x1f80, 0x1fb4}, {0x1fb6, 0x1fbc}, {0x1fbe, 0x1fbe}, {0x1fc2, 0x1fc4}, {0x1fc6, 0x1fcc}, {0x1fd0, 0x1fd3}, {0x1fd6, 0x1fdb}, {0x1fe0, 0x1fec}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffc}, {0x200c, 0x200d}, {0x203f, 0x2040}, {0x2054, 0x2054}, {0x2071, 0x2071}, @@ -5695,7 +5680,7 @@ static TSCharacterRange sym_identifier_character_set_2[] = { {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x2de0, 0x2dff}, {0x3005, 0x3007}, {0x3021, 0x302f}, {0x3031, 0x3035}, {0x3038, 0x303c}, {0x3041, 0x3096}, {0x3099, 0x309a}, {0x309d, 0x309f}, {0x30a1, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, {0x31a0, 0x31bf}, {0x31f0, 0x31ff}, {0x3400, 0x4dbf}, {0x4e00, 0xa48c}, {0xa4d0, 0xa4fd}, {0xa500, 0xa60c}, {0xa610, 0xa62b}, {0xa640, 0xa66f}, {0xa674, 0xa67d}, {0xa67f, 0xa6f1}, {0xa717, 0xa71f}, - {0xa722, 0xa788}, {0xa78b, 0xa7ca}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7d9}, {0xa7f2, 0xa827}, {0xa82c, 0xa82c}, {0xa840, 0xa873}, + {0xa722, 0xa788}, {0xa78b, 0xa7cd}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7dc}, {0xa7f2, 0xa827}, {0xa82c, 0xa82c}, {0xa840, 0xa873}, {0xa880, 0xa8c5}, {0xa8d0, 0xa8d9}, {0xa8e0, 0xa8f7}, {0xa8fb, 0xa8fb}, {0xa8fd, 0xa92d}, {0xa930, 0xa953}, {0xa960, 0xa97c}, {0xa980, 0xa9c0}, {0xa9cf, 0xa9d9}, {0xa9e0, 0xa9fe}, {0xaa00, 0xaa36}, {0xaa40, 0xaa4d}, {0xaa50, 0xaa59}, {0xaa60, 0xaa76}, {0xaa7a, 0xaac2}, {0xaadb, 0xaadd}, {0xaae0, 0xaaef}, {0xaaf2, 0xaaf6}, {0xab01, 0xab06}, {0xab09, 0xab0e}, {0xab11, 0xab16}, {0xab20, 0xab26}, {0xab28, 0xab2e}, {0xab30, 0xab5a}, @@ -5708,39 +5693,42 @@ static TSCharacterRange sym_identifier_character_set_2[] = { {0x10050, 0x1005d}, {0x10080, 0x100fa}, {0x10140, 0x10174}, {0x101fd, 0x101fd}, {0x10280, 0x1029c}, {0x102a0, 0x102d0}, {0x102e0, 0x102e0}, {0x10300, 0x1031f}, {0x1032d, 0x1034a}, {0x10350, 0x1037a}, {0x10380, 0x1039d}, {0x103a0, 0x103c3}, {0x103c8, 0x103cf}, {0x103d1, 0x103d5}, {0x10400, 0x1049d}, {0x104a0, 0x104a9}, {0x104b0, 0x104d3}, {0x104d8, 0x104fb}, {0x10500, 0x10527}, {0x10530, 0x10563}, {0x10570, 0x1057a}, {0x1057c, 0x1058a}, {0x1058c, 0x10592}, {0x10594, 0x10595}, - {0x10597, 0x105a1}, {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, - {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, - {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, {0x10900, 0x10915}, {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109be, 0x109bf}, - {0x10a00, 0x10a03}, {0x10a05, 0x10a06}, {0x10a0c, 0x10a13}, {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, {0x10a38, 0x10a3a}, {0x10a3f, 0x10a3f}, {0x10a60, 0x10a7c}, - {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae6}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, {0x10b80, 0x10b91}, {0x10c00, 0x10c48}, - {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d27}, {0x10d30, 0x10d39}, {0x10e80, 0x10ea9}, {0x10eab, 0x10eac}, {0x10eb0, 0x10eb1}, {0x10efd, 0x10f1c}, - {0x10f27, 0x10f27}, {0x10f30, 0x10f50}, {0x10f70, 0x10f85}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11000, 0x11046}, {0x11066, 0x11075}, {0x1107f, 0x110ba}, - {0x110c2, 0x110c2}, {0x110d0, 0x110e8}, {0x110f0, 0x110f9}, {0x11100, 0x11134}, {0x11136, 0x1113f}, {0x11144, 0x11147}, {0x11150, 0x11173}, {0x11176, 0x11176}, - {0x11180, 0x111c4}, {0x111c9, 0x111cc}, {0x111ce, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x11237}, {0x1123e, 0x11241}, {0x11280, 0x11286}, - {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112ea}, {0x112f0, 0x112f9}, {0x11300, 0x11303}, {0x11305, 0x1130c}, - {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133b, 0x11344}, {0x11347, 0x11348}, {0x1134b, 0x1134d}, - {0x11350, 0x11350}, {0x11357, 0x11357}, {0x1135d, 0x11363}, {0x11366, 0x1136c}, {0x11370, 0x11374}, {0x11400, 0x1144a}, {0x11450, 0x11459}, {0x1145e, 0x11461}, - {0x11480, 0x114c5}, {0x114c7, 0x114c7}, {0x114d0, 0x114d9}, {0x11580, 0x115b5}, {0x115b8, 0x115c0}, {0x115d8, 0x115dd}, {0x11600, 0x11640}, {0x11644, 0x11644}, - {0x11650, 0x11659}, {0x11680, 0x116b8}, {0x116c0, 0x116c9}, {0x11700, 0x1171a}, {0x1171d, 0x1172b}, {0x11730, 0x11739}, {0x11740, 0x11746}, {0x11800, 0x1183a}, + {0x10597, 0x105a1}, {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, {0x105c0, 0x105f3}, {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, + {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, + {0x1083f, 0x10855}, {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, {0x10900, 0x10915}, {0x10920, 0x10939}, {0x10980, 0x109b7}, + {0x109be, 0x109bf}, {0x10a00, 0x10a03}, {0x10a05, 0x10a06}, {0x10a0c, 0x10a13}, {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, {0x10a38, 0x10a3a}, {0x10a3f, 0x10a3f}, + {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae6}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, {0x10b80, 0x10b91}, + {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d27}, {0x10d30, 0x10d39}, {0x10d40, 0x10d65}, {0x10d69, 0x10d6d}, {0x10d6f, 0x10d85}, + {0x10e80, 0x10ea9}, {0x10eab, 0x10eac}, {0x10eb0, 0x10eb1}, {0x10ec2, 0x10ec4}, {0x10efc, 0x10f1c}, {0x10f27, 0x10f27}, {0x10f30, 0x10f50}, {0x10f70, 0x10f85}, + {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11000, 0x11046}, {0x11066, 0x11075}, {0x1107f, 0x110ba}, {0x110c2, 0x110c2}, {0x110d0, 0x110e8}, {0x110f0, 0x110f9}, + {0x11100, 0x11134}, {0x11136, 0x1113f}, {0x11144, 0x11147}, {0x11150, 0x11173}, {0x11176, 0x11176}, {0x11180, 0x111c4}, {0x111c9, 0x111cc}, {0x111ce, 0x111da}, + {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x11237}, {0x1123e, 0x11241}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, + {0x1129f, 0x112a8}, {0x112b0, 0x112ea}, {0x112f0, 0x112f9}, {0x11300, 0x11303}, {0x11305, 0x1130c}, {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, + {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133b, 0x11344}, {0x11347, 0x11348}, {0x1134b, 0x1134d}, {0x11350, 0x11350}, {0x11357, 0x11357}, {0x1135d, 0x11363}, + {0x11366, 0x1136c}, {0x11370, 0x11374}, {0x11380, 0x11389}, {0x1138b, 0x1138b}, {0x1138e, 0x1138e}, {0x11390, 0x113b5}, {0x113b7, 0x113c0}, {0x113c2, 0x113c2}, + {0x113c5, 0x113c5}, {0x113c7, 0x113ca}, {0x113cc, 0x113d3}, {0x113e1, 0x113e2}, {0x11400, 0x1144a}, {0x11450, 0x11459}, {0x1145e, 0x11461}, {0x11480, 0x114c5}, + {0x114c7, 0x114c7}, {0x114d0, 0x114d9}, {0x11580, 0x115b5}, {0x115b8, 0x115c0}, {0x115d8, 0x115dd}, {0x11600, 0x11640}, {0x11644, 0x11644}, {0x11650, 0x11659}, + {0x11680, 0x116b8}, {0x116c0, 0x116c9}, {0x116d0, 0x116e3}, {0x11700, 0x1171a}, {0x1171d, 0x1172b}, {0x11730, 0x11739}, {0x11740, 0x11746}, {0x11800, 0x1183a}, {0x118a0, 0x118e9}, {0x118ff, 0x11906}, {0x11909, 0x11909}, {0x1190c, 0x11913}, {0x11915, 0x11916}, {0x11918, 0x11935}, {0x11937, 0x11938}, {0x1193b, 0x11943}, {0x11950, 0x11959}, {0x119a0, 0x119a7}, {0x119aa, 0x119d7}, {0x119da, 0x119e1}, {0x119e3, 0x119e4}, {0x11a00, 0x11a3e}, {0x11a47, 0x11a47}, {0x11a50, 0x11a99}, - {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c36}, {0x11c38, 0x11c40}, {0x11c50, 0x11c59}, {0x11c72, 0x11c8f}, {0x11c92, 0x11ca7}, - {0x11ca9, 0x11cb6}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d36}, {0x11d3a, 0x11d3a}, {0x11d3c, 0x11d3d}, {0x11d3f, 0x11d47}, {0x11d50, 0x11d59}, - {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d8e}, {0x11d90, 0x11d91}, {0x11d93, 0x11d98}, {0x11da0, 0x11da9}, {0x11ee0, 0x11ef6}, {0x11f00, 0x11f10}, - {0x11f12, 0x11f3a}, {0x11f3e, 0x11f42}, {0x11f50, 0x11f59}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, - {0x13000, 0x1342f}, {0x13440, 0x13455}, {0x14400, 0x14646}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, {0x16a60, 0x16a69}, {0x16a70, 0x16abe}, {0x16ac0, 0x16ac9}, - {0x16ad0, 0x16aed}, {0x16af0, 0x16af4}, {0x16b00, 0x16b36}, {0x16b40, 0x16b43}, {0x16b50, 0x16b59}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16e40, 0x16e7f}, - {0x16f00, 0x16f4a}, {0x16f4f, 0x16f87}, {0x16f8f, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe4}, {0x16ff0, 0x16ff1}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, - {0x18d00, 0x18d08}, {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, - {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1bc9d, 0x1bc9e}, {0x1cf00, 0x1cf2d}, - {0x1cf30, 0x1cf46}, {0x1d165, 0x1d169}, {0x1d16d, 0x1d172}, {0x1d17b, 0x1d182}, {0x1d185, 0x1d18b}, {0x1d1aa, 0x1d1ad}, {0x1d242, 0x1d244}, {0x1d400, 0x1d454}, - {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, - {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, - {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, - {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1d7ce, 0x1d7ff}, {0x1da00, 0x1da36}, {0x1da3b, 0x1da6c}, - {0x1da75, 0x1da75}, {0x1da84, 0x1da84}, {0x1da9b, 0x1da9f}, {0x1daa1, 0x1daaf}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e000, 0x1e006}, {0x1e008, 0x1e018}, - {0x1e01b, 0x1e021}, {0x1e023, 0x1e024}, {0x1e026, 0x1e02a}, {0x1e030, 0x1e06d}, {0x1e08f, 0x1e08f}, {0x1e100, 0x1e12c}, {0x1e130, 0x1e13d}, {0x1e140, 0x1e149}, - {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ae}, {0x1e2c0, 0x1e2f9}, {0x1e4d0, 0x1e4f9}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, + {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11bc0, 0x11be0}, {0x11bf0, 0x11bf9}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c36}, {0x11c38, 0x11c40}, {0x11c50, 0x11c59}, + {0x11c72, 0x11c8f}, {0x11c92, 0x11ca7}, {0x11ca9, 0x11cb6}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d36}, {0x11d3a, 0x11d3a}, {0x11d3c, 0x11d3d}, + {0x11d3f, 0x11d47}, {0x11d50, 0x11d59}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d8e}, {0x11d90, 0x11d91}, {0x11d93, 0x11d98}, {0x11da0, 0x11da9}, + {0x11ee0, 0x11ef6}, {0x11f00, 0x11f10}, {0x11f12, 0x11f3a}, {0x11f3e, 0x11f42}, {0x11f50, 0x11f5a}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, {0x12400, 0x1246e}, + {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, {0x13440, 0x13455}, {0x13460, 0x143fa}, {0x14400, 0x14646}, {0x16100, 0x16139}, {0x16800, 0x16a38}, + {0x16a40, 0x16a5e}, {0x16a60, 0x16a69}, {0x16a70, 0x16abe}, {0x16ac0, 0x16ac9}, {0x16ad0, 0x16aed}, {0x16af0, 0x16af4}, {0x16b00, 0x16b36}, {0x16b40, 0x16b43}, + {0x16b50, 0x16b59}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16d40, 0x16d6c}, {0x16d70, 0x16d79}, {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, {0x16f4f, 0x16f87}, + {0x16f8f, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe4}, {0x16ff0, 0x16ff1}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18cff, 0x18d08}, {0x1aff0, 0x1aff3}, + {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, + {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1bc9d, 0x1bc9e}, {0x1ccf0, 0x1ccf9}, {0x1cf00, 0x1cf2d}, {0x1cf30, 0x1cf46}, + {0x1d165, 0x1d169}, {0x1d16d, 0x1d172}, {0x1d17b, 0x1d182}, {0x1d185, 0x1d18b}, {0x1d1aa, 0x1d1ad}, {0x1d242, 0x1d244}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, + {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, + {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, + {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, + {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1d7ce, 0x1d7ff}, {0x1da00, 0x1da36}, {0x1da3b, 0x1da6c}, {0x1da75, 0x1da75}, + {0x1da84, 0x1da84}, {0x1da9b, 0x1da9f}, {0x1daa1, 0x1daaf}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e000, 0x1e006}, {0x1e008, 0x1e018}, {0x1e01b, 0x1e021}, + {0x1e023, 0x1e024}, {0x1e026, 0x1e02a}, {0x1e030, 0x1e06d}, {0x1e08f, 0x1e08f}, {0x1e100, 0x1e12c}, {0x1e130, 0x1e13d}, {0x1e140, 0x1e149}, {0x1e14e, 0x1e14e}, + {0x1e290, 0x1e2ae}, {0x1e2c0, 0x1e2f9}, {0x1e4d0, 0x1e4f9}, {0x1e5d0, 0x1e5fa}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, {0x1e8d0, 0x1e8d6}, {0x1e900, 0x1e94b}, {0x1e950, 0x1e959}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, @@ -5754,498 +5742,528 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(55); - if (lookahead == '\r') SKIP(51); - if (lookahead == '!') ADVANCE(20); - if (lookahead == '#') ADVANCE(167); - if (lookahead == '%') ADVANCE(95); - if (lookahead == '&') ADVANCE(99); - if (lookahead == '(') ADVANCE(59); - if (lookahead == ')') ADVANCE(60); - if (lookahead == '*') ADVANCE(63); - if (lookahead == '+') ADVANCE(91); - if (lookahead == ',') ADVANCE(61); - if (lookahead == '-') ADVANCE(85); - if (lookahead == '.') ADVANCE(58); - if (lookahead == '/') ADVANCE(92); - if (lookahead == '0') ADVANCE(139); - if (lookahead == ':') ADVANCE(70); - if (lookahead == ';') ADVANCE(56); - if (lookahead == '<') ADVANCE(105); - if (lookahead == '=') ADVANCE(78); - if (lookahead == '>') ADVANCE(113); - if (lookahead == '@') ADVANCE(82); - if (lookahead == '[') ADVANCE(79); - if (lookahead == '\\') ADVANCE(133); - if (lookahead == ']') ADVANCE(80); - if (lookahead == '^') ADVANCE(101); - if (lookahead == 'e') ADVANCE(163); - if (lookahead == '{') ADVANCE(88); - if (lookahead == '|') ADVANCE(87); - if (lookahead == '}') ADVANCE(89); - if (lookahead == '~') ADVANCE(104); + if (eof) ADVANCE(56); + if (lookahead == '\r') SKIP(53); + if (lookahead == '!') ADVANCE(21); + if (lookahead == '#') ADVANCE(160); + if (lookahead == '%') ADVANCE(96); + if (lookahead == '&') ADVANCE(100); + if (lookahead == '(') ADVANCE(60); + if (lookahead == ')') ADVANCE(61); + if (lookahead == '*') ADVANCE(64); + if (lookahead == '+') ADVANCE(92); + if (lookahead == ',') ADVANCE(62); + if (lookahead == '-') ADVANCE(86); + if (lookahead == '.') ADVANCE(59); + if (lookahead == '/') ADVANCE(93); + if (lookahead == '0') ADVANCE(138); + if (lookahead == ':') ADVANCE(71); + if (lookahead == ';') ADVANCE(57); + if (lookahead == '<') ADVANCE(106); + if (lookahead == '=') ADVANCE(79); + if (lookahead == '>') ADVANCE(112); + if (lookahead == '@') ADVANCE(83); + if (lookahead == '[') ADVANCE(80); + if (lookahead == '\\') ADVANCE(132); + if (lookahead == ']') ADVANCE(81); + if (lookahead == '^') ADVANCE(102); + if (lookahead == 'e') ADVANCE(157); + if (lookahead == '{') ADVANCE(89); + if (lookahead == '|') ADVANCE(88); + if (lookahead == '}') ADVANCE(90); + if (lookahead == '~') ADVANCE(105); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(51); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); + lookahead == 0xfeff) SKIP(53); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(139); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(159); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(168); + if (lookahead == '\n') ADVANCE(161); END_STATE(); case 2: - if (lookahead == '\n') ADVANCE(130); + if (lookahead == '\n') ADVANCE(129); END_STATE(); case 3: if (lookahead == '\n') SKIP(3); - if (lookahead == '\r') ADVANCE(135); - if (lookahead == '#') ADVANCE(136); - if (lookahead == '\\') ADVANCE(134); - if (lookahead == '{') ADVANCE(88); - if (lookahead == '}') ADVANCE(89); + if (lookahead == '\r') ADVANCE(134); + if (lookahead == '#') ADVANCE(135); + if (lookahead == '\\') ADVANCE(133); + if (lookahead == '{') ADVANCE(89); + if (lookahead == '}') ADVANCE(90); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(135); - if (lookahead != 0) ADVANCE(136); + lookahead == 0xfeff) ADVANCE(134); + if (lookahead != 0) ADVANCE(135); END_STATE(); case 4: if (lookahead == '\r') SKIP(4); - if (lookahead == '!') ADVANCE(19); - if (lookahead == '#') ADVANCE(167); - if (lookahead == '%') ADVANCE(95); - if (lookahead == '&') ADVANCE(99); - if (lookahead == '(') ADVANCE(59); - if (lookahead == '*') ADVANCE(63); - if (lookahead == '+') ADVANCE(91); - if (lookahead == ',') ADVANCE(61); - if (lookahead == '-') ADVANCE(84); - if (lookahead == '.') ADVANCE(58); - if (lookahead == '/') ADVANCE(92); - if (lookahead == '0') ADVANCE(139); - if (lookahead == ':') ADVANCE(70); - if (lookahead == ';') ADVANCE(56); - if (lookahead == '<') ADVANCE(105); - if (lookahead == '=') ADVANCE(78); - if (lookahead == '>') ADVANCE(113); - if (lookahead == '@') ADVANCE(82); - if (lookahead == '[') ADVANCE(79); + if (lookahead == '!') ADVANCE(20); + if (lookahead == '#') ADVANCE(160); + if (lookahead == '%') ADVANCE(96); + if (lookahead == '&') ADVANCE(100); + if (lookahead == '(') ADVANCE(60); + if (lookahead == '*') ADVANCE(64); + if (lookahead == '+') ADVANCE(92); + if (lookahead == ',') ADVANCE(62); + if (lookahead == '-') ADVANCE(85); + if (lookahead == '.') ADVANCE(59); + if (lookahead == '/') ADVANCE(93); + if (lookahead == '0') ADVANCE(138); + if (lookahead == ':') ADVANCE(71); + if (lookahead == ';') ADVANCE(57); + if (lookahead == '<') ADVANCE(106); + if (lookahead == '=') ADVANCE(79); + if (lookahead == '>') ADVANCE(112); + if (lookahead == '@') ADVANCE(83); + if (lookahead == '[') ADVANCE(80); if (lookahead == '\\') ADVANCE(10); - if (lookahead == '^') ADVANCE(101); - if (lookahead == '{') ADVANCE(88); - if (lookahead == '|') ADVANCE(87); - if (lookahead == '~') ADVANCE(104); + if (lookahead == '^') ADVANCE(102); + if (lookahead == 'e') ADVANCE(158); + if (lookahead == '{') ADVANCE(89); + if (lookahead == '|') ADVANCE(88); + if (lookahead == '~') ADVANCE(105); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(4); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(139); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(159); END_STATE(); case 5: if (lookahead == '\r') SKIP(5); - if (lookahead == '!') ADVANCE(20); - if (lookahead == '#') ADVANCE(167); - if (lookahead == '%') ADVANCE(94); - if (lookahead == '&') ADVANCE(98); - if (lookahead == '(') ADVANCE(59); - if (lookahead == ')') ADVANCE(60); - if (lookahead == '*') ADVANCE(64); - if (lookahead == '+') ADVANCE(90); - if (lookahead == ',') ADVANCE(61); - if (lookahead == '-') ADVANCE(83); - if (lookahead == '.') ADVANCE(58); - if (lookahead == '/') ADVANCE(93); - if (lookahead == '0') ADVANCE(139); - if (lookahead == ':') ADVANCE(70); - if (lookahead == ';') ADVANCE(56); - if (lookahead == '<') ADVANCE(106); - if (lookahead == '=') ADVANCE(78); - if (lookahead == '>') ADVANCE(114); - if (lookahead == '@') ADVANCE(81); - if (lookahead == '[') ADVANCE(79); + if (lookahead == '!') ADVANCE(21); + if (lookahead == '#') ADVANCE(160); + if (lookahead == '%') ADVANCE(95); + if (lookahead == '&') ADVANCE(99); + if (lookahead == '(') ADVANCE(60); + if (lookahead == ')') ADVANCE(61); + if (lookahead == '*') ADVANCE(65); + if (lookahead == '+') ADVANCE(91); + if (lookahead == ',') ADVANCE(62); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '.') ADVANCE(59); + if (lookahead == '/') ADVANCE(94); + if (lookahead == '0') ADVANCE(138); + if (lookahead == ':') ADVANCE(71); + if (lookahead == ';') ADVANCE(57); + if (lookahead == '<') ADVANCE(107); + if (lookahead == '=') ADVANCE(79); + if (lookahead == '>') ADVANCE(113); + if (lookahead == '@') ADVANCE(82); + if (lookahead == '[') ADVANCE(80); if (lookahead == '\\') ADVANCE(10); - if (lookahead == ']') ADVANCE(80); - if (lookahead == '^') ADVANCE(100); - if (lookahead == '{') ADVANCE(88); - if (lookahead == '|') ADVANCE(86); - if (lookahead == '}') ADVANCE(89); - if (lookahead == '~') ADVANCE(104); + if (lookahead == ']') ADVANCE(81); + if (lookahead == '^') ADVANCE(101); + if (lookahead == 'e') ADVANCE(158); + if (lookahead == '{') ADVANCE(89); + if (lookahead == '|') ADVANCE(87); + if (lookahead == '}') ADVANCE(90); + if (lookahead == '~') ADVANCE(105); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(5); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(139); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(159); END_STATE(); case 6: if (lookahead == '\r') SKIP(6); - if (lookahead == '#') ADVANCE(167); - if (lookahead == '%') ADVANCE(21); - if (lookahead == '&') ADVANCE(22); - if (lookahead == '(') ADVANCE(59); - if (lookahead == '*') ADVANCE(65); - if (lookahead == '+') ADVANCE(91); - if (lookahead == '-') ADVANCE(84); - if (lookahead == '.') ADVANCE(15); - if (lookahead == '/') ADVANCE(17); - if (lookahead == '0') ADVANCE(139); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(56); - if (lookahead == '<') ADVANCE(18); - if (lookahead == '=') ADVANCE(77); - if (lookahead == '>') ADVANCE(31); - if (lookahead == '@') ADVANCE(23); - if (lookahead == '[') ADVANCE(79); + if (lookahead == '#') ADVANCE(160); + if (lookahead == '%') ADVANCE(22); + if (lookahead == '&') ADVANCE(23); + if (lookahead == '(') ADVANCE(60); + if (lookahead == '*') ADVANCE(66); + if (lookahead == '+') ADVANCE(92); + if (lookahead == '-') ADVANCE(85); + if (lookahead == '.') ADVANCE(16); + if (lookahead == '/') ADVANCE(18); + if (lookahead == '0') ADVANCE(138); + if (lookahead == ':') ADVANCE(70); + if (lookahead == ';') ADVANCE(57); + if (lookahead == '<') ADVANCE(19); + if (lookahead == '=') ADVANCE(78); + if (lookahead == '>') ADVANCE(32); + if (lookahead == '@') ADVANCE(24); + if (lookahead == '[') ADVANCE(80); if (lookahead == '\\') ADVANCE(10); - if (lookahead == '^') ADVANCE(24); - if (lookahead == '{') ADVANCE(88); - if (lookahead == '|') ADVANCE(25); - if (lookahead == '~') ADVANCE(104); + if (lookahead == '^') ADVANCE(25); + if (lookahead == 'e') ADVANCE(158); + if (lookahead == '{') ADVANCE(89); + if (lookahead == '|') ADVANCE(26); + if (lookahead == '~') ADVANCE(105); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(6); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(139); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(159); END_STATE(); case 7: if (lookahead == '\r') SKIP(7); - if (lookahead == '!') ADVANCE(19); - if (lookahead == '#') ADVANCE(167); - if (lookahead == '%') ADVANCE(95); - if (lookahead == '&') ADVANCE(99); - if (lookahead == '(') ADVANCE(59); - if (lookahead == ')') ADVANCE(60); - if (lookahead == '*') ADVANCE(63); - if (lookahead == '+') ADVANCE(91); - if (lookahead == ',') ADVANCE(61); - if (lookahead == '-') ADVANCE(84); - if (lookahead == '.') ADVANCE(57); - if (lookahead == '/') ADVANCE(92); - if (lookahead == ':') ADVANCE(70); - if (lookahead == ';') ADVANCE(56); - if (lookahead == '<') ADVANCE(105); - if (lookahead == '=') ADVANCE(78); - if (lookahead == '>') ADVANCE(113); - if (lookahead == '@') ADVANCE(82); - if (lookahead == '[') ADVANCE(79); + if (lookahead == '!') ADVANCE(20); + if (lookahead == '#') ADVANCE(160); + if (lookahead == '%') ADVANCE(96); + if (lookahead == '&') ADVANCE(100); + if (lookahead == '(') ADVANCE(60); + if (lookahead == '*') ADVANCE(64); + if (lookahead == '+') ADVANCE(92); + if (lookahead == ',') ADVANCE(62); + if (lookahead == '-') ADVANCE(85); + if (lookahead == '.') ADVANCE(58); + if (lookahead == '/') ADVANCE(93); + if (lookahead == ':') ADVANCE(71); + if (lookahead == ';') ADVANCE(57); + if (lookahead == '<') ADVANCE(106); + if (lookahead == '=') ADVANCE(79); + if (lookahead == '>') ADVANCE(112); + if (lookahead == '@') ADVANCE(83); + if (lookahead == '[') ADVANCE(80); if (lookahead == '\\') ADVANCE(10); - if (lookahead == ']') ADVANCE(80); - if (lookahead == '^') ADVANCE(101); - if (lookahead == '|') ADVANCE(87); - if (lookahead == '}') ADVANCE(89); + if (lookahead == '^') ADVANCE(102); + if (lookahead == 'e') ADVANCE(158); + if (lookahead == '|') ADVANCE(88); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(7); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(159); END_STATE(); case 8: if (lookahead == '\r') SKIP(8); - if (lookahead == '!') ADVANCE(19); - if (lookahead == '#') ADVANCE(167); - if (lookahead == '%') ADVANCE(95); - if (lookahead == '&') ADVANCE(99); - if (lookahead == '(') ADVANCE(59); - if (lookahead == ')') ADVANCE(60); - if (lookahead == '*') ADVANCE(63); - if (lookahead == '+') ADVANCE(91); - if (lookahead == ',') ADVANCE(61); - if (lookahead == '-') ADVANCE(84); - if (lookahead == '.') ADVANCE(57); - if (lookahead == '/') ADVANCE(92); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(56); - if (lookahead == '<') ADVANCE(105); - if (lookahead == '=') ADVANCE(78); - if (lookahead == '>') ADVANCE(113); - if (lookahead == '@') ADVANCE(82); - if (lookahead == '[') ADVANCE(79); + if (lookahead == '!') ADVANCE(20); + if (lookahead == '#') ADVANCE(160); + if (lookahead == '%') ADVANCE(96); + if (lookahead == '&') ADVANCE(100); + if (lookahead == '(') ADVANCE(60); + if (lookahead == ')') ADVANCE(61); + if (lookahead == '*') ADVANCE(64); + if (lookahead == '+') ADVANCE(92); + if (lookahead == ',') ADVANCE(62); + if (lookahead == '-') ADVANCE(85); + if (lookahead == '.') ADVANCE(58); + if (lookahead == '/') ADVANCE(93); + if (lookahead == ':') ADVANCE(71); + if (lookahead == ';') ADVANCE(57); + if (lookahead == '<') ADVANCE(106); + if (lookahead == '=') ADVANCE(79); + if (lookahead == '>') ADVANCE(112); + if (lookahead == '@') ADVANCE(83); + if (lookahead == '[') ADVANCE(80); if (lookahead == '\\') ADVANCE(10); - if (lookahead == ']') ADVANCE(80); - if (lookahead == '^') ADVANCE(101); - if (lookahead == '|') ADVANCE(87); + if (lookahead == ']') ADVANCE(81); + if (lookahead == '^') ADVANCE(102); + if (lookahead == '|') ADVANCE(88); + if (lookahead == '}') ADVANCE(90); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(8); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(159); END_STATE(); case 9: if (lookahead == '\r') SKIP(9); - if (lookahead == '#') ADVANCE(167); - if (lookahead == '-') ADVANCE(30); - if (lookahead == ':') ADVANCE(69); + if (lookahead == '#') ADVANCE(160); + if (lookahead == '-') ADVANCE(31); + if (lookahead == ':') ADVANCE(70); if (lookahead == '\\') ADVANCE(10); - if (lookahead == 'e') ADVANCE(163); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(9); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); END_STATE(); case 10: if (lookahead == '\r') ADVANCE(1); if ((!eof && lookahead == 00) || - lookahead == '\n') ADVANCE(168); + lookahead == '\n') ADVANCE(161); END_STATE(); case 11: if (lookahead == '\r') SKIP(11); - if (lookahead == '!') ADVANCE(19); - if (lookahead == '#') ADVANCE(167); - if (lookahead == '%') ADVANCE(95); - if (lookahead == '&') ADVANCE(99); - if (lookahead == '(') ADVANCE(59); - if (lookahead == '*') ADVANCE(63); - if (lookahead == '+') ADVANCE(91); - if (lookahead == ',') ADVANCE(61); - if (lookahead == '-') ADVANCE(84); - if (lookahead == '.') ADVANCE(58); - if (lookahead == '/') ADVANCE(92); - if (lookahead == '0') ADVANCE(139); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(56); - if (lookahead == '<') ADVANCE(105); - if (lookahead == '=') ADVANCE(78); - if (lookahead == '>') ADVANCE(113); - if (lookahead == '@') ADVANCE(82); - if (lookahead == '[') ADVANCE(79); + if (lookahead == '!') ADVANCE(20); + if (lookahead == '#') ADVANCE(160); + if (lookahead == '%') ADVANCE(96); + if (lookahead == '&') ADVANCE(100); + if (lookahead == '(') ADVANCE(60); + if (lookahead == '*') ADVANCE(64); + if (lookahead == '+') ADVANCE(92); + if (lookahead == ',') ADVANCE(62); + if (lookahead == '-') ADVANCE(85); + if (lookahead == '.') ADVANCE(59); + if (lookahead == '/') ADVANCE(93); + if (lookahead == '0') ADVANCE(138); + if (lookahead == ':') ADVANCE(70); + if (lookahead == ';') ADVANCE(57); + if (lookahead == '<') ADVANCE(106); + if (lookahead == '=') ADVANCE(79); + if (lookahead == '>') ADVANCE(112); + if (lookahead == '@') ADVANCE(83); + if (lookahead == '[') ADVANCE(80); if (lookahead == '\\') ADVANCE(10); - if (lookahead == '^') ADVANCE(101); - if (lookahead == '{') ADVANCE(88); - if (lookahead == '|') ADVANCE(87); - if (lookahead == '~') ADVANCE(104); + if (lookahead == '^') ADVANCE(102); + if (lookahead == 'e') ADVANCE(158); + if (lookahead == '{') ADVANCE(89); + if (lookahead == '|') ADVANCE(88); + if (lookahead == '~') ADVANCE(105); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(11); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(139); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(159); END_STATE(); case 12: if (lookahead == '\r') SKIP(12); - if (lookahead == '!') ADVANCE(20); - if (lookahead == '#') ADVANCE(167); - if (lookahead == '%') ADVANCE(94); - if (lookahead == '&') ADVANCE(98); - if (lookahead == '(') ADVANCE(59); - if (lookahead == ')') ADVANCE(60); - if (lookahead == '*') ADVANCE(64); - if (lookahead == '+') ADVANCE(90); - if (lookahead == ',') ADVANCE(61); - if (lookahead == '-') ADVANCE(83); - if (lookahead == '.') ADVANCE(58); - if (lookahead == '/') ADVANCE(93); - if (lookahead == '0') ADVANCE(139); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(56); - if (lookahead == '<') ADVANCE(106); - if (lookahead == '=') ADVANCE(78); - if (lookahead == '>') ADVANCE(114); - if (lookahead == '@') ADVANCE(81); - if (lookahead == '[') ADVANCE(79); + if (lookahead == '!') ADVANCE(21); + if (lookahead == '#') ADVANCE(160); + if (lookahead == '%') ADVANCE(95); + if (lookahead == '&') ADVANCE(99); + if (lookahead == '(') ADVANCE(60); + if (lookahead == ')') ADVANCE(61); + if (lookahead == '*') ADVANCE(65); + if (lookahead == '+') ADVANCE(91); + if (lookahead == ',') ADVANCE(62); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '.') ADVANCE(59); + if (lookahead == '/') ADVANCE(94); + if (lookahead == '0') ADVANCE(138); + if (lookahead == ':') ADVANCE(70); + if (lookahead == ';') ADVANCE(57); + if (lookahead == '<') ADVANCE(107); + if (lookahead == '=') ADVANCE(79); + if (lookahead == '>') ADVANCE(113); + if (lookahead == '@') ADVANCE(82); + if (lookahead == '[') ADVANCE(80); if (lookahead == '\\') ADVANCE(10); - if (lookahead == ']') ADVANCE(80); - if (lookahead == '^') ADVANCE(100); - if (lookahead == '{') ADVANCE(88); - if (lookahead == '|') ADVANCE(86); - if (lookahead == '}') ADVANCE(89); - if (lookahead == '~') ADVANCE(104); + if (lookahead == ']') ADVANCE(81); + if (lookahead == '^') ADVANCE(101); + if (lookahead == 'e') ADVANCE(158); + if (lookahead == '{') ADVANCE(89); + if (lookahead == '|') ADVANCE(87); + if (lookahead == '}') ADVANCE(90); + if (lookahead == '~') ADVANCE(105); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(12); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(139); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(159); END_STATE(); case 13: if (lookahead == '\r') SKIP(13); - if (lookahead == '!') ADVANCE(20); - if (lookahead == '#') ADVANCE(167); - if (lookahead == '%') ADVANCE(94); - if (lookahead == '&') ADVANCE(98); - if (lookahead == '(') ADVANCE(59); - if (lookahead == ')') ADVANCE(60); + if (lookahead == '!') ADVANCE(21); + if (lookahead == '#') ADVANCE(160); + if (lookahead == '%') ADVANCE(96); + if (lookahead == '&') ADVANCE(100); + if (lookahead == '(') ADVANCE(60); + if (lookahead == ')') ADVANCE(61); if (lookahead == '*') ADVANCE(64); - if (lookahead == '+') ADVANCE(90); - if (lookahead == ',') ADVANCE(61); - if (lookahead == '-') ADVANCE(83); - if (lookahead == '.') ADVANCE(57); + if (lookahead == '+') ADVANCE(92); + if (lookahead == ',') ADVANCE(62); + if (lookahead == '-') ADVANCE(85); + if (lookahead == '.') ADVANCE(58); if (lookahead == '/') ADVANCE(93); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(56); + if (lookahead == ':') ADVANCE(70); + if (lookahead == ';') ADVANCE(57); if (lookahead == '<') ADVANCE(106); - if (lookahead == '=') ADVANCE(78); - if (lookahead == '>') ADVANCE(114); - if (lookahead == '@') ADVANCE(81); - if (lookahead == '[') ADVANCE(79); + if (lookahead == '=') ADVANCE(79); + if (lookahead == '>') ADVANCE(112); + if (lookahead == '@') ADVANCE(83); + if (lookahead == '[') ADVANCE(80); if (lookahead == '\\') ADVANCE(10); - if (lookahead == ']') ADVANCE(80); - if (lookahead == '^') ADVANCE(100); - if (lookahead == '|') ADVANCE(86); - if (lookahead == '}') ADVANCE(89); + if (lookahead == ']') ADVANCE(81); + if (lookahead == '^') ADVANCE(102); + if (lookahead == '|') ADVANCE(88); + if (lookahead == '}') ADVANCE(90); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(13); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(159); END_STATE(); case 14: if (lookahead == '\r') SKIP(14); - if (lookahead == '!') ADVANCE(20); - if (lookahead == '#') ADVANCE(167); - if (lookahead == '%') ADVANCE(94); - if (lookahead == '&') ADVANCE(98); - if (lookahead == '(') ADVANCE(59); - if (lookahead == ')') ADVANCE(60); - if (lookahead == '*') ADVANCE(64); - if (lookahead == '+') ADVANCE(90); - if (lookahead == ',') ADVANCE(61); - if (lookahead == '-') ADVANCE(83); - if (lookahead == '.') ADVANCE(57); - if (lookahead == '/') ADVANCE(93); + if (lookahead == '!') ADVANCE(21); + if (lookahead == '#') ADVANCE(160); + if (lookahead == '%') ADVANCE(95); + if (lookahead == '&') ADVANCE(99); + if (lookahead == '(') ADVANCE(60); + if (lookahead == ')') ADVANCE(61); + if (lookahead == '*') ADVANCE(65); + if (lookahead == '+') ADVANCE(91); + if (lookahead == ',') ADVANCE(62); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '.') ADVANCE(58); + if (lookahead == '/') ADVANCE(94); if (lookahead == ':') ADVANCE(70); - if (lookahead == ';') ADVANCE(56); - if (lookahead == '<') ADVANCE(106); - if (lookahead == '=') ADVANCE(78); - if (lookahead == '>') ADVANCE(114); - if (lookahead == '@') ADVANCE(81); - if (lookahead == '[') ADVANCE(79); + if (lookahead == ';') ADVANCE(57); + if (lookahead == '<') ADVANCE(107); + if (lookahead == '=') ADVANCE(79); + if (lookahead == '>') ADVANCE(113); + if (lookahead == '@') ADVANCE(82); + if (lookahead == '[') ADVANCE(80); if (lookahead == '\\') ADVANCE(10); - if (lookahead == ']') ADVANCE(80); - if (lookahead == '^') ADVANCE(100); - if (lookahead == '|') ADVANCE(86); - if (lookahead == '}') ADVANCE(89); + if (lookahead == ']') ADVANCE(81); + if (lookahead == '^') ADVANCE(101); + if (lookahead == '|') ADVANCE(87); + if (lookahead == '}') ADVANCE(90); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(14); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(159); END_STATE(); case 15: - if (lookahead == '.') ADVANCE(16); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(146); + if (lookahead == '\r') SKIP(15); + if (lookahead == '!') ADVANCE(21); + if (lookahead == '#') ADVANCE(160); + if (lookahead == '%') ADVANCE(95); + if (lookahead == '&') ADVANCE(99); + if (lookahead == '(') ADVANCE(60); + if (lookahead == ')') ADVANCE(61); + if (lookahead == '*') ADVANCE(65); + if (lookahead == '+') ADVANCE(91); + if (lookahead == ',') ADVANCE(62); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '.') ADVANCE(58); + if (lookahead == '/') ADVANCE(94); + if (lookahead == ':') ADVANCE(71); + if (lookahead == ';') ADVANCE(57); + if (lookahead == '<') ADVANCE(107); + if (lookahead == '=') ADVANCE(79); + if (lookahead == '>') ADVANCE(113); + if (lookahead == '@') ADVANCE(82); + if (lookahead == '[') ADVANCE(80); + if (lookahead == '\\') ADVANCE(10); + if (lookahead == ']') ADVANCE(81); + if (lookahead == '^') ADVANCE(101); + if (lookahead == '|') ADVANCE(87); + if (lookahead == '}') ADVANCE(90); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(15); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(159); END_STATE(); case 16: - if (lookahead == '.') ADVANCE(129); + if (lookahead == '.') ADVANCE(17); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(145); END_STATE(); case 17: - if (lookahead == '/') ADVANCE(27); - if (lookahead == '=') ADVANCE(119); + if (lookahead == '.') ADVANCE(128); END_STATE(); case 18: - if (lookahead == '<') ADVANCE(28); + if (lookahead == '/') ADVANCE(28); + if (lookahead == '=') ADVANCE(118); END_STATE(); case 19: - if (lookahead == '=') ADVANCE(110); + if (lookahead == '<') ADVANCE(29); END_STATE(); case 20: if (lookahead == '=') ADVANCE(110); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(137); END_STATE(); case 21: - if (lookahead == '=') ADVANCE(122); + if (lookahead == '=') ADVANCE(110); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(136); END_STATE(); case 22: - if (lookahead == '=') ADVANCE(126); + if (lookahead == '=') ADVANCE(121); END_STATE(); case 23: - if (lookahead == '=') ADVANCE(120); + if (lookahead == '=') ADVANCE(125); END_STATE(); case 24: - if (lookahead == '=') ADVANCE(127); + if (lookahead == '=') ADVANCE(119); END_STATE(); case 25: - if (lookahead == '=') ADVANCE(128); + if (lookahead == '=') ADVANCE(126); END_STATE(); case 26: - if (lookahead == '=') ADVANCE(123); + if (lookahead == '=') ADVANCE(127); END_STATE(); case 27: - if (lookahead == '=') ADVANCE(121); + if (lookahead == '=') ADVANCE(122); END_STATE(); case 28: - if (lookahead == '=') ADVANCE(125); + if (lookahead == '=') ADVANCE(120); END_STATE(); case 29: if (lookahead == '=') ADVANCE(124); END_STATE(); case 30: - if (lookahead == '>') ADVANCE(74); + if (lookahead == '=') ADVANCE(123); END_STATE(); case 31: - if (lookahead == '>') ADVANCE(29); + if (lookahead == '>') ADVANCE(75); END_STATE(); case 32: - if (lookahead == '_') ADVANCE(38); - if (lookahead == '0' || - lookahead == '1') ADVANCE(142); + if (lookahead == '>') ADVANCE(30); END_STATE(); case 33: if (lookahead == '_') ADVANCE(39); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(143); + if (lookahead == '0' || + lookahead == '1') ADVANCE(141); END_STATE(); case 34: - if (lookahead == '_') ADVANCE(42); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(144); + if (lookahead == '_') ADVANCE(40); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(142); END_STATE(); case 35: - if (lookahead == '{') ADVANCE(50); + if (lookahead == '_') ADVANCE(43); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(143); END_STATE(); case 36: - if (lookahead == '}') ADVANCE(130); - if (lookahead != 0) ADVANCE(36); + if (lookahead == '{') ADVANCE(52); END_STATE(); case 37: - if (lookahead == '+' || - lookahead == '-') ADVANCE(40); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(147); + if (lookahead == '}') ADVANCE(129); + if (lookahead != 0) ADVANCE(37); END_STATE(); case 38: - if (lookahead == '0' || - lookahead == '1') ADVANCE(142); + if (lookahead == '+' || + lookahead == '-') ADVANCE(41); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(146); END_STATE(); case 39: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(143); + if (lookahead == '0' || + lookahead == '1') ADVANCE(141); END_STATE(); case 40: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(147); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(142); END_STATE(); case 41: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(130); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(146); END_STATE(); case 42: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(144); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(129); END_STATE(); case 43: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(41); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(143); END_STATE(); case 44: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(43); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(42); END_STATE(); case 45: if (('0' <= lookahead && lookahead <= '9') || @@ -6273,324 +6291,302 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f')) ADVANCE(48); END_STATE(); case 50: - if (lookahead != 0 && - lookahead != '}') ADVANCE(36); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(49); END_STATE(); case 51: - if (eof) ADVANCE(55); - if (lookahead == '\r') SKIP(51); - if (lookahead == '!') ADVANCE(20); - if (lookahead == '#') ADVANCE(167); - if (lookahead == '%') ADVANCE(95); - if (lookahead == '&') ADVANCE(99); - if (lookahead == '(') ADVANCE(59); - if (lookahead == ')') ADVANCE(60); - if (lookahead == '*') ADVANCE(63); - if (lookahead == '+') ADVANCE(91); - if (lookahead == ',') ADVANCE(61); - if (lookahead == '-') ADVANCE(85); - if (lookahead == '.') ADVANCE(58); - if (lookahead == '/') ADVANCE(92); - if (lookahead == '0') ADVANCE(139); - if (lookahead == ':') ADVANCE(70); - if (lookahead == ';') ADVANCE(56); - if (lookahead == '<') ADVANCE(105); - if (lookahead == '=') ADVANCE(78); - if (lookahead == '>') ADVANCE(113); - if (lookahead == '@') ADVANCE(82); - if (lookahead == '[') ADVANCE(79); - if (lookahead == '\\') ADVANCE(10); - if (lookahead == ']') ADVANCE(80); - if (lookahead == '^') ADVANCE(101); - if (lookahead == 'e') ADVANCE(163); - if (lookahead == '{') ADVANCE(88); - if (lookahead == '|') ADVANCE(87); - if (lookahead == '}') ADVANCE(89); - if (lookahead == '~') ADVANCE(104); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ' || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(51); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(136); END_STATE(); case 52: - if (eof) ADVANCE(55); - if (lookahead == '\r') SKIP(52); - if (lookahead == '!') ADVANCE(20); - if (lookahead == '#') ADVANCE(167); - if (lookahead == '(') ADVANCE(59); - if (lookahead == ')') ADVANCE(60); - if (lookahead == '*') ADVANCE(62); - if (lookahead == '+') ADVANCE(90); - if (lookahead == ',') ADVANCE(61); - if (lookahead == '-') ADVANCE(83); - if (lookahead == '.') ADVANCE(15); - if (lookahead == '0') ADVANCE(139); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(56); - if (lookahead == '<') ADVANCE(107); - if (lookahead == '=') ADVANCE(78); - if (lookahead == '>') ADVANCE(112); - if (lookahead == '@') ADVANCE(81); - if (lookahead == '[') ADVANCE(79); - if (lookahead == '\\') ADVANCE(10); - if (lookahead == ']') ADVANCE(80); - if (lookahead == '{') ADVANCE(88); - if (lookahead == '|') ADVANCE(86); - if (lookahead == '}') ADVANCE(89); - if (lookahead == '~') ADVANCE(104); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ' || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(52); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); + if (lookahead != 0 && + lookahead != '}') ADVANCE(37); END_STATE(); case 53: - if (eof) ADVANCE(55); + if (eof) ADVANCE(56); if (lookahead == '\r') SKIP(53); - if (lookahead == '#') ADVANCE(167); - if (lookahead == '(') ADVANCE(59); - if (lookahead == '*') ADVANCE(62); - if (lookahead == '+') ADVANCE(90); - if (lookahead == '-') ADVANCE(83); - if (lookahead == '.') ADVANCE(15); - if (lookahead == '0') ADVANCE(139); - if (lookahead == '@') ADVANCE(81); - if (lookahead == '[') ADVANCE(79); + if (lookahead == '!') ADVANCE(21); + if (lookahead == '#') ADVANCE(160); + if (lookahead == '%') ADVANCE(96); + if (lookahead == '&') ADVANCE(100); + if (lookahead == '(') ADVANCE(60); + if (lookahead == ')') ADVANCE(61); + if (lookahead == '*') ADVANCE(64); + if (lookahead == '+') ADVANCE(92); + if (lookahead == ',') ADVANCE(62); + if (lookahead == '-') ADVANCE(86); + if (lookahead == '.') ADVANCE(59); + if (lookahead == '/') ADVANCE(93); + if (lookahead == '0') ADVANCE(138); + if (lookahead == ':') ADVANCE(71); + if (lookahead == ';') ADVANCE(57); + if (lookahead == '<') ADVANCE(106); + if (lookahead == '=') ADVANCE(79); + if (lookahead == '>') ADVANCE(112); + if (lookahead == '@') ADVANCE(83); + if (lookahead == '[') ADVANCE(80); if (lookahead == '\\') ADVANCE(10); - if (lookahead == 'e') ADVANCE(164); - if (lookahead == '{') ADVANCE(88); - if (lookahead == '~') ADVANCE(104); + if (lookahead == ']') ADVANCE(81); + if (lookahead == '^') ADVANCE(102); + if (lookahead == 'e') ADVANCE(157); + if (lookahead == '{') ADVANCE(89); + if (lookahead == '|') ADVANCE(88); + if (lookahead == '}') ADVANCE(90); + if (lookahead == '~') ADVANCE(105); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(53); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(139); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(159); END_STATE(); case 54: - if (eof) ADVANCE(55); + if (eof) ADVANCE(56); if (lookahead == '\r') SKIP(54); - if (lookahead == '#') ADVANCE(167); - if (lookahead == '(') ADVANCE(59); - if (lookahead == '*') ADVANCE(62); - if (lookahead == '+') ADVANCE(90); - if (lookahead == '-') ADVANCE(83); - if (lookahead == '.') ADVANCE(15); - if (lookahead == '0') ADVANCE(139); - if (lookahead == '@') ADVANCE(81); - if (lookahead == '[') ADVANCE(79); + if (lookahead == '!') ADVANCE(51); + if (lookahead == '#') ADVANCE(160); + if (lookahead == '(') ADVANCE(60); + if (lookahead == ')') ADVANCE(61); + if (lookahead == '*') ADVANCE(63); + if (lookahead == '+') ADVANCE(91); + if (lookahead == ',') ADVANCE(62); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '.') ADVANCE(16); + if (lookahead == '0') ADVANCE(138); + if (lookahead == ':') ADVANCE(70); + if (lookahead == ';') ADVANCE(57); + if (lookahead == '=') ADVANCE(78); + if (lookahead == '@') ADVANCE(82); + if (lookahead == '[') ADVANCE(80); if (lookahead == '\\') ADVANCE(10); - if (lookahead == 'e') ADVANCE(165); - if (lookahead == '{') ADVANCE(88); - if (lookahead == '~') ADVANCE(104); + if (lookahead == ']') ADVANCE(81); + if (lookahead == 'e') ADVANCE(158); + if (lookahead == '{') ADVANCE(89); + if (lookahead == '|') ADVANCE(87); + if (lookahead == '}') ADVANCE(90); + if (lookahead == '~') ADVANCE(105); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(54); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(139); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(159); END_STATE(); case 55: - ACCEPT_TOKEN(ts_builtin_sym_end); + if (eof) ADVANCE(56); + if (lookahead == '\r') SKIP(55); + if (lookahead == '#') ADVANCE(160); + if (lookahead == '(') ADVANCE(60); + if (lookahead == '*') ADVANCE(63); + if (lookahead == '+') ADVANCE(91); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '.') ADVANCE(16); + if (lookahead == '0') ADVANCE(138); + if (lookahead == '@') ADVANCE(82); + if (lookahead == '[') ADVANCE(80); + if (lookahead == '\\') ADVANCE(10); + if (lookahead == 'e') ADVANCE(157); + if (lookahead == '{') ADVANCE(89); + if (lookahead == '~') ADVANCE(105); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(55); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(139); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(159); END_STATE(); case 56: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 57: - ACCEPT_TOKEN(anon_sym_DOT); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 58: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(16); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(146); END_STATE(); case 59: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(17); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(145); END_STATE(); case 60: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 61: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 62: - ACCEPT_TOKEN(anon_sym_STAR); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 63: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(76); - if (lookahead == '=') ADVANCE(118); END_STATE(); case 64: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(75); + if (lookahead == '*') ADVANCE(77); + if (lookahead == '=') ADVANCE(117); END_STATE(); case 65: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(26); - if (lookahead == '=') ADVANCE(118); + if (lookahead == '*') ADVANCE(76); END_STATE(); case 66: - ACCEPT_TOKEN(anon_sym_GT_GT); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(27); + if (lookahead == '=') ADVANCE(117); END_STATE(); case 67: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(124); END_STATE(); case 68: - ACCEPT_TOKEN(anon_sym_COLON_EQ); + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(123); END_STATE(); case 69: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_COLON_EQ); END_STATE(); case 70: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '=') ADVANCE(68); END_STATE(); case 71: - ACCEPT_TOKEN(anon_sym_except); - if (lookahead == '*') ADVANCE(73); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == '=') ADVANCE(69); END_STATE(); case 72: ACCEPT_TOKEN(anon_sym_except); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); + if (lookahead == '*') ADVANCE(74); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(159); END_STATE(); case 73: - ACCEPT_TOKEN(anon_sym_except_STAR); + ACCEPT_TOKEN(anon_sym_except); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(159); END_STATE(); case 74: - ACCEPT_TOKEN(anon_sym_DASH_GT); + ACCEPT_TOKEN(anon_sym_except_STAR); END_STATE(); case 75: - ACCEPT_TOKEN(anon_sym_STAR_STAR); + ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); case 76: ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '=') ADVANCE(123); END_STATE(); case 77: - ACCEPT_TOKEN(anon_sym_EQ); + ACCEPT_TOKEN(anon_sym_STAR_STAR); + if (lookahead == '=') ADVANCE(122); END_STATE(); case 78: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(109); END_STATE(); case 79: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(109); END_STATE(); case 80: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 81: - ACCEPT_TOKEN(anon_sym_AT); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 82: ACCEPT_TOKEN(anon_sym_AT); - if (lookahead == '=') ADVANCE(120); END_STATE(); case 83: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_AT); + if (lookahead == '=') ADVANCE(119); END_STATE(); case 84: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(117); END_STATE(); case 85: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(117); - if (lookahead == '>') ADVANCE(74); + if (lookahead == '=') ADVANCE(116); END_STATE(); case 86: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(116); + if (lookahead == '>') ADVANCE(75); END_STATE(); case 87: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(128); END_STATE(); case 88: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(127); END_STATE(); case 89: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 90: - ACCEPT_TOKEN(anon_sym_PLUS); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 91: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(116); END_STATE(); case 92: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(97); - if (lookahead == '=') ADVANCE(119); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '=') ADVANCE(115); END_STATE(); case 93: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(96); + if (lookahead == '/') ADVANCE(98); + if (lookahead == '=') ADVANCE(118); END_STATE(); case 94: - ACCEPT_TOKEN(anon_sym_PERCENT); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '/') ADVANCE(97); END_STATE(); case 95: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(122); END_STATE(); case 96: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH); + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(121); END_STATE(); case 97: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); - if (lookahead == '=') ADVANCE(121); END_STATE(); case 98: - ACCEPT_TOKEN(anon_sym_AMP); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); + if (lookahead == '=') ADVANCE(120); END_STATE(); case 99: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '=') ADVANCE(126); END_STATE(); case 100: - ACCEPT_TOKEN(anon_sym_CARET); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '=') ADVANCE(125); END_STATE(); case 101: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(127); END_STATE(); case 102: - ACCEPT_TOKEN(anon_sym_LT_LT); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(126); END_STATE(); case 103: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(125); END_STATE(); case 104: - ACCEPT_TOKEN(anon_sym_TILDE); + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(124); END_STATE(); case 105: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(103); - if (lookahead == '=') ADVANCE(108); - if (lookahead == '>') ADVANCE(115); + ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); case 106: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(102); + if (lookahead == '<') ADVANCE(104); if (lookahead == '=') ADVANCE(108); - if (lookahead == '>') ADVANCE(115); + if (lookahead == '>') ADVANCE(114); END_STATE(); case 107: ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(103); if (lookahead == '=') ADVANCE(108); - if (lookahead == '>') ADVANCE(115); + if (lookahead == '>') ADVANCE(114); END_STATE(); case 108: ACCEPT_TOKEN(anon_sym_LT_EQ); @@ -6607,6 +6603,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 112: ACCEPT_TOKEN(anon_sym_GT); if (lookahead == '=') ADVANCE(111); + if (lookahead == '>') ADVANCE(68); END_STATE(); case 113: ACCEPT_TOKEN(anon_sym_GT); @@ -6614,322 +6611,287 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(67); END_STATE(); case 114: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(111); - if (lookahead == '>') ADVANCE(66); + ACCEPT_TOKEN(anon_sym_LT_GT); END_STATE(); case 115: - ACCEPT_TOKEN(anon_sym_LT_GT); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 116: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 117: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 118: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 119: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_AT_EQ); END_STATE(); case 120: - ACCEPT_TOKEN(anon_sym_AT_EQ); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH_EQ); END_STATE(); case 121: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); case 122: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); END_STATE(); case 123: - ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); case 124: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); case 125: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); case 126: - ACCEPT_TOKEN(anon_sym_AMP_EQ); + ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); case 127: - ACCEPT_TOKEN(anon_sym_CARET_EQ); + ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); case 128: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + ACCEPT_TOKEN(sym_ellipsis); END_STATE(); case 129: - ACCEPT_TOKEN(sym_ellipsis); + ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); case 130: ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(129); END_STATE(); case 131: ACCEPT_TOKEN(sym_escape_sequence); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(130); END_STATE(); case 132: - ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(131); - END_STATE(); - case 133: ACCEPT_TOKEN(anon_sym_BSLASH); ADVANCE_MAP( - 0, 168, - '\n', 130, + 0, 161, + '\n', 129, '\r', 2, - 'N', 35, - 'U', 49, - 'u', 45, - 'x', 43, - '"', 130, - '\'', 130, - '\\', 130, - 'a', 130, - 'b', 130, - 'f', 130, - 'n', 130, - 'r', 130, - 't', 130, - 'v', 130, + 'N', 36, + 'U', 50, + 'u', 46, + 'x', 44, + '"', 129, + '\'', 129, + '\\', 129, + 'a', 129, + 'b', 129, + 'f', 129, + 'n', 129, + 'r', 129, + 't', 129, + 'v', 129, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(132); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(131); END_STATE(); - case 134: + case 133: ACCEPT_TOKEN(aux_sym_format_specifier_token1); - if ((!eof && lookahead == 00)) ADVANCE(136); - if (lookahead == '\r') ADVANCE(136); + if ((!eof && lookahead == 00)) ADVANCE(135); + if (lookahead == '\r') ADVANCE(135); if (lookahead != 0 && lookahead != '\n' && lookahead != '{' && - lookahead != '}') ADVANCE(136); + lookahead != '}') ADVANCE(135); END_STATE(); - case 135: + case 134: ACCEPT_TOKEN(aux_sym_format_specifier_token1); ADVANCE_MAP( - '\r', 135, - '#', 136, - '\\', 134, - '\t', 135, - 0x0b, 135, - '\f', 135, - ' ', 135, - 0x200b, 135, - 0x2060, 135, - 0xfeff, 135, + '\r', 134, + '#', 135, + '\\', 133, + '\t', 134, + 0x0b, 134, + '\f', 134, + ' ', 134, + 0x200b, 134, + 0x2060, 134, + 0xfeff, 134, ); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '{' && - lookahead != '}') ADVANCE(136); + lookahead != '}') ADVANCE(135); END_STATE(); - case 136: + case 135: ACCEPT_TOKEN(aux_sym_format_specifier_token1); if (lookahead != 0 && lookahead != '\n' && lookahead != '{' && - lookahead != '}') ADVANCE(136); + lookahead != '}') ADVANCE(135); END_STATE(); - case 137: + case 136: ACCEPT_TOKEN(sym_type_conversion); END_STATE(); - case 138: + case 137: ACCEPT_TOKEN(sym_integer); END_STATE(); - case 139: + case 138: ACCEPT_TOKEN(sym_integer); ADVANCE_MAP( - '.', 148, - '_', 141, - 'B', 32, - 'b', 32, - 'E', 37, - 'e', 37, - 'O', 33, - 'o', 33, - 'X', 34, - 'x', 34, - 'J', 138, - 'L', 138, - 'j', 138, - 'l', 138, + '.', 147, + '_', 140, + 'B', 33, + 'b', 33, + 'E', 38, + 'e', 38, + 'O', 34, + 'o', 34, + 'X', 35, + 'x', 35, + 'J', 137, + 'L', 137, + 'j', 137, + 'l', 137, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(140); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(139); END_STATE(); - case 140: + case 139: ACCEPT_TOKEN(sym_integer); ADVANCE_MAP( - '.', 148, - '_', 141, - 'E', 37, - 'e', 37, - 'J', 138, - 'L', 138, - 'j', 138, - 'l', 138, + '.', 147, + '_', 140, + 'E', 38, + 'e', 38, + 'J', 137, + 'L', 137, + 'j', 137, + 'l', 137, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(140); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(139); END_STATE(); - case 141: + case 140: ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(148); + if (lookahead == '.') ADVANCE(147); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(37); + lookahead == 'e') ADVANCE(38); if (lookahead == 'J' || lookahead == 'L' || lookahead == 'j' || - lookahead == 'l') ADVANCE(138); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(140); + lookahead == 'l') ADVANCE(137); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(139); END_STATE(); - case 142: + case 141: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(38); + if (lookahead == '_') ADVANCE(39); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(138); + lookahead == 'l') ADVANCE(137); if (lookahead == '0' || - lookahead == '1') ADVANCE(142); + lookahead == '1') ADVANCE(141); END_STATE(); - case 143: + case 142: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(39); + if (lookahead == '_') ADVANCE(40); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(138); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(143); + lookahead == 'l') ADVANCE(137); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(142); END_STATE(); - case 144: + case 143: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(42); + if (lookahead == '_') ADVANCE(43); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(138); + lookahead == 'l') ADVANCE(137); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(144); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(143); + END_STATE(); + case 144: + ACCEPT_TOKEN(sym_float); END_STATE(); case 145: ACCEPT_TOKEN(sym_float); + if (lookahead == '_') ADVANCE(147); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(38); + if (lookahead == 'J' || + lookahead == 'j') ADVANCE(144); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(145); END_STATE(); case 146: ACCEPT_TOKEN(sym_float); if (lookahead == '_') ADVANCE(148); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(37); if (lookahead == 'J' || - lookahead == 'j') ADVANCE(145); + lookahead == 'j') ADVANCE(144); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(146); END_STATE(); case 147: ACCEPT_TOKEN(sym_float); - if (lookahead == '_') ADVANCE(149); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(38); if (lookahead == 'J' || - lookahead == 'j') ADVANCE(145); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(147); + lookahead == 'j') ADVANCE(144); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(145); END_STATE(); case 148: ACCEPT_TOKEN(sym_float); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(37); if (lookahead == 'J' || - lookahead == 'j') ADVANCE(145); + lookahead == 'j') ADVANCE(144); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(146); END_STATE(); case 149: - ACCEPT_TOKEN(sym_float); - if (lookahead == 'J' || - lookahead == 'j') ADVANCE(145); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(147); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'c') ADVANCE(151); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(159); END_STATE(); case 150: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '*') ADVANCE(73); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); + if (lookahead == 'c') ADVANCE(152); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(159); END_STATE(); case 151: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(154); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); + if (lookahead == 'e') ADVANCE(153); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(159); END_STATE(); case 152: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(155); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); + if (lookahead == 'e') ADVANCE(154); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(159); END_STATE(); case 153: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(156); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); + if (lookahead == 'p') ADVANCE(155); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(159); END_STATE(); case 154: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(157); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); + if (lookahead == 'p') ADVANCE(156); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(159); END_STATE(); case 155: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(158); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); + if (lookahead == 't') ADVANCE(72); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(159); END_STATE(); case 156: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(159); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); + if (lookahead == 't') ADVANCE(73); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(159); END_STATE(); case 157: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(160); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); + if (lookahead == 'x') ADVANCE(149); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(159); END_STATE(); case 158: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(161); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); + if (lookahead == 'x') ADVANCE(150); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(159); END_STATE(); case 159: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(162); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(159); END_STATE(); case 160: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(71); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); - END_STATE(); - case 161: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(72); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); - END_STATE(); - case 162: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(150); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); - END_STATE(); - case 163: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'x') ADVANCE(151); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); - END_STATE(); - case 164: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'x') ADVANCE(152); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); - END_STATE(); - case 165: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'x') ADVANCE(153); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); - END_STATE(); - case 166: - ACCEPT_TOKEN(sym_identifier); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); - END_STATE(); - case 167: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(167); + lookahead != '\n') ADVANCE(160); END_STATE(); - case 168: + case 161: ACCEPT_TOKEN(sym_line_continuation); END_STATE(); default: @@ -7466,2806 +7428,3154 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { } } -static const TSLexMode ts_lex_modes[STATE_COUNT] = { +static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 52, .external_lex_state = 2}, - [2] = {.lex_state = 52, .external_lex_state = 3}, - [3] = {.lex_state = 52, .external_lex_state = 3}, - [4] = {.lex_state = 52, .external_lex_state = 3}, - [5] = {.lex_state = 52, .external_lex_state = 3}, - [6] = {.lex_state = 52, .external_lex_state = 3}, - [7] = {.lex_state = 52, .external_lex_state = 3}, - [8] = {.lex_state = 52, .external_lex_state = 3}, - [9] = {.lex_state = 52, .external_lex_state = 3}, - [10] = {.lex_state = 52, .external_lex_state = 3}, - [11] = {.lex_state = 52, .external_lex_state = 3}, - [12] = {.lex_state = 52, .external_lex_state = 3}, - [13] = {.lex_state = 52, .external_lex_state = 3}, - [14] = {.lex_state = 52, .external_lex_state = 3}, - [15] = {.lex_state = 52, .external_lex_state = 3}, - [16] = {.lex_state = 52, .external_lex_state = 3}, - [17] = {.lex_state = 52, .external_lex_state = 3}, - [18] = {.lex_state = 52, .external_lex_state = 3}, - [19] = {.lex_state = 52, .external_lex_state = 3}, - [20] = {.lex_state = 52, .external_lex_state = 3}, - [21] = {.lex_state = 52, .external_lex_state = 3}, - [22] = {.lex_state = 52, .external_lex_state = 3}, - [23] = {.lex_state = 52, .external_lex_state = 3}, - [24] = {.lex_state = 52, .external_lex_state = 3}, - [25] = {.lex_state = 52, .external_lex_state = 3}, - [26] = {.lex_state = 52, .external_lex_state = 3}, - [27] = {.lex_state = 52, .external_lex_state = 3}, - [28] = {.lex_state = 52, .external_lex_state = 3}, - [29] = {.lex_state = 52, .external_lex_state = 3}, - [30] = {.lex_state = 52, .external_lex_state = 3}, - [31] = {.lex_state = 52, .external_lex_state = 3}, - [32] = {.lex_state = 52, .external_lex_state = 3}, - [33] = {.lex_state = 52, .external_lex_state = 3}, - [34] = {.lex_state = 52, .external_lex_state = 3}, - [35] = {.lex_state = 52, .external_lex_state = 3}, - [36] = {.lex_state = 52, .external_lex_state = 3}, - [37] = {.lex_state = 52, .external_lex_state = 3}, - [38] = {.lex_state = 52, .external_lex_state = 3}, - [39] = {.lex_state = 52, .external_lex_state = 3}, - [40] = {.lex_state = 52, .external_lex_state = 3}, - [41] = {.lex_state = 52, .external_lex_state = 3}, - [42] = {.lex_state = 52, .external_lex_state = 3}, - [43] = {.lex_state = 52, .external_lex_state = 3}, - [44] = {.lex_state = 52, .external_lex_state = 3}, - [45] = {.lex_state = 52, .external_lex_state = 3}, - [46] = {.lex_state = 52, .external_lex_state = 3}, - [47] = {.lex_state = 52, .external_lex_state = 3}, - [48] = {.lex_state = 52, .external_lex_state = 3}, - [49] = {.lex_state = 52, .external_lex_state = 3}, - [50] = {.lex_state = 52, .external_lex_state = 3}, - [51] = {.lex_state = 52, .external_lex_state = 3}, - [52] = {.lex_state = 52, .external_lex_state = 3}, - [53] = {.lex_state = 52, .external_lex_state = 3}, - [54] = {.lex_state = 52, .external_lex_state = 3}, - [55] = {.lex_state = 52, .external_lex_state = 3}, - [56] = {.lex_state = 52, .external_lex_state = 3}, - [57] = {.lex_state = 52, .external_lex_state = 3}, - [58] = {.lex_state = 52, .external_lex_state = 3}, - [59] = {.lex_state = 52, .external_lex_state = 3}, - [60] = {.lex_state = 52, .external_lex_state = 3}, - [61] = {.lex_state = 52, .external_lex_state = 3}, - [62] = {.lex_state = 52, .external_lex_state = 3}, - [63] = {.lex_state = 52, .external_lex_state = 3}, - [64] = {.lex_state = 52, .external_lex_state = 2}, - [65] = {.lex_state = 52, .external_lex_state = 3}, - [66] = {.lex_state = 52, .external_lex_state = 3}, - [67] = {.lex_state = 52, .external_lex_state = 2}, - [68] = {.lex_state = 52, .external_lex_state = 3}, - [69] = {.lex_state = 52, .external_lex_state = 3}, - [70] = {.lex_state = 52, .external_lex_state = 3}, - [71] = {.lex_state = 52, .external_lex_state = 3}, - [72] = {.lex_state = 52, .external_lex_state = 3}, - [73] = {.lex_state = 4, .external_lex_state = 4}, - [74] = {.lex_state = 4, .external_lex_state = 4}, - [75] = {.lex_state = 5, .external_lex_state = 5}, - [76] = {.lex_state = 5, .external_lex_state = 5}, - [77] = {.lex_state = 5, .external_lex_state = 5}, - [78] = {.lex_state = 5, .external_lex_state = 5}, - [79] = {.lex_state = 5, .external_lex_state = 5}, - [80] = {.lex_state = 5, .external_lex_state = 5}, - [81] = {.lex_state = 5, .external_lex_state = 5}, - [82] = {.lex_state = 5, .external_lex_state = 5}, - [83] = {.lex_state = 4, .external_lex_state = 4}, - [84] = {.lex_state = 4, .external_lex_state = 4}, - [85] = {.lex_state = 4, .external_lex_state = 4}, - [86] = {.lex_state = 4, .external_lex_state = 4}, - [87] = {.lex_state = 52, .external_lex_state = 5}, - [88] = {.lex_state = 52, .external_lex_state = 5}, - [89] = {.lex_state = 52, .external_lex_state = 5}, - [90] = {.lex_state = 52, .external_lex_state = 5}, - [91] = {.lex_state = 52, .external_lex_state = 5}, - [92] = {.lex_state = 52, .external_lex_state = 5}, - [93] = {.lex_state = 52, .external_lex_state = 5}, - [94] = {.lex_state = 52, .external_lex_state = 5}, - [95] = {.lex_state = 52, .external_lex_state = 5}, - [96] = {.lex_state = 52, .external_lex_state = 5}, - [97] = {.lex_state = 52, .external_lex_state = 5}, - [98] = {.lex_state = 52, .external_lex_state = 5}, - [99] = {.lex_state = 52, .external_lex_state = 5}, - [100] = {.lex_state = 52, .external_lex_state = 5}, - [101] = {.lex_state = 52, .external_lex_state = 5}, - [102] = {.lex_state = 52, .external_lex_state = 5}, - [103] = {.lex_state = 52, .external_lex_state = 5}, - [104] = {.lex_state = 52, .external_lex_state = 5}, - [105] = {.lex_state = 52, .external_lex_state = 5}, - [106] = {.lex_state = 52, .external_lex_state = 5}, - [107] = {.lex_state = 52, .external_lex_state = 5}, - [108] = {.lex_state = 52, .external_lex_state = 5}, - [109] = {.lex_state = 52, .external_lex_state = 5}, - [110] = {.lex_state = 52, .external_lex_state = 5}, - [111] = {.lex_state = 52, .external_lex_state = 5}, - [112] = {.lex_state = 52, .external_lex_state = 5}, - [113] = {.lex_state = 52, .external_lex_state = 5}, - [114] = {.lex_state = 52, .external_lex_state = 5}, - [115] = {.lex_state = 52, .external_lex_state = 5}, - [116] = {.lex_state = 52, .external_lex_state = 5}, - [117] = {.lex_state = 52, .external_lex_state = 5}, - [118] = {.lex_state = 52, .external_lex_state = 5}, - [119] = {.lex_state = 52, .external_lex_state = 5}, - [120] = {.lex_state = 52, .external_lex_state = 5}, - [121] = {.lex_state = 52, .external_lex_state = 5}, - [122] = {.lex_state = 52, .external_lex_state = 5}, - [123] = {.lex_state = 52, .external_lex_state = 5}, - [124] = {.lex_state = 52, .external_lex_state = 5}, - [125] = {.lex_state = 52, .external_lex_state = 5}, - [126] = {.lex_state = 52, .external_lex_state = 5}, - [127] = {.lex_state = 52, .external_lex_state = 5}, - [128] = {.lex_state = 52, .external_lex_state = 5}, - [129] = {.lex_state = 52, .external_lex_state = 5}, - [130] = {.lex_state = 52, .external_lex_state = 5}, - [131] = {.lex_state = 52, .external_lex_state = 5}, - [132] = {.lex_state = 52, .external_lex_state = 5}, - [133] = {.lex_state = 52, .external_lex_state = 5}, - [134] = {.lex_state = 52, .external_lex_state = 5}, - [135] = {.lex_state = 52, .external_lex_state = 5}, - [136] = {.lex_state = 52, .external_lex_state = 5}, - [137] = {.lex_state = 52, .external_lex_state = 4}, - [138] = {.lex_state = 52, .external_lex_state = 4}, - [139] = {.lex_state = 52, .external_lex_state = 4}, - [140] = {.lex_state = 52, .external_lex_state = 4}, - [141] = {.lex_state = 52, .external_lex_state = 4}, - [142] = {.lex_state = 52, .external_lex_state = 4}, - [143] = {.lex_state = 52, .external_lex_state = 4}, - [144] = {.lex_state = 52, .external_lex_state = 4}, - [145] = {.lex_state = 52, .external_lex_state = 4}, - [146] = {.lex_state = 52, .external_lex_state = 4}, - [147] = {.lex_state = 52, .external_lex_state = 4}, - [148] = {.lex_state = 52, .external_lex_state = 4}, - [149] = {.lex_state = 52, .external_lex_state = 4}, - [150] = {.lex_state = 52, .external_lex_state = 4}, - [151] = {.lex_state = 52, .external_lex_state = 4}, - [152] = {.lex_state = 52, .external_lex_state = 4}, - [153] = {.lex_state = 52, .external_lex_state = 2}, - [154] = {.lex_state = 4, .external_lex_state = 4}, - [155] = {.lex_state = 4, .external_lex_state = 4}, - [156] = {.lex_state = 11, .external_lex_state = 4}, - [157] = {.lex_state = 5, .external_lex_state = 4}, - [158] = {.lex_state = 12, .external_lex_state = 4}, - [159] = {.lex_state = 5, .external_lex_state = 6}, - [160] = {.lex_state = 5, .external_lex_state = 6}, - [161] = {.lex_state = 12, .external_lex_state = 4}, - [162] = {.lex_state = 12, .external_lex_state = 6}, - [163] = {.lex_state = 12, .external_lex_state = 7}, - [164] = {.lex_state = 5, .external_lex_state = 7}, - [165] = {.lex_state = 12, .external_lex_state = 6}, - [166] = {.lex_state = 5, .external_lex_state = 2}, - [167] = {.lex_state = 5, .external_lex_state = 6}, - [168] = {.lex_state = 5, .external_lex_state = 6}, - [169] = {.lex_state = 5, .external_lex_state = 7}, - [170] = {.lex_state = 5, .external_lex_state = 8}, - [171] = {.lex_state = 12, .external_lex_state = 6}, - [172] = {.lex_state = 12, .external_lex_state = 8}, - [173] = {.lex_state = 5, .external_lex_state = 8}, - [174] = {.lex_state = 12, .external_lex_state = 7}, - [175] = {.lex_state = 5, .external_lex_state = 7}, - [176] = {.lex_state = 11, .external_lex_state = 4}, - [177] = {.lex_state = 12, .external_lex_state = 2}, - [178] = {.lex_state = 5, .external_lex_state = 8}, - [179] = {.lex_state = 5, .external_lex_state = 7}, - [180] = {.lex_state = 5, .external_lex_state = 8}, - [181] = {.lex_state = 5, .external_lex_state = 7}, - [182] = {.lex_state = 12, .external_lex_state = 2}, - [183] = {.lex_state = 5, .external_lex_state = 7}, - [184] = {.lex_state = 12, .external_lex_state = 8}, - [185] = {.lex_state = 5, .external_lex_state = 8}, - [186] = {.lex_state = 5, .external_lex_state = 7}, - [187] = {.lex_state = 11, .external_lex_state = 2}, - [188] = {.lex_state = 11, .external_lex_state = 2}, - [189] = {.lex_state = 52, .external_lex_state = 7}, - [190] = {.lex_state = 5, .external_lex_state = 6}, - [191] = {.lex_state = 52, .external_lex_state = 7}, - [192] = {.lex_state = 52, .external_lex_state = 8}, - [193] = {.lex_state = 5, .external_lex_state = 6}, - [194] = {.lex_state = 52, .external_lex_state = 2}, - [195] = {.lex_state = 52, .external_lex_state = 7}, - [196] = {.lex_state = 52, .external_lex_state = 8}, - [197] = {.lex_state = 5, .external_lex_state = 6}, - [198] = {.lex_state = 52, .external_lex_state = 2}, - [199] = {.lex_state = 52, .external_lex_state = 2}, - [200] = {.lex_state = 52, .external_lex_state = 7}, - [201] = {.lex_state = 52, .external_lex_state = 7}, - [202] = {.lex_state = 52, .external_lex_state = 8}, - [203] = {.lex_state = 52, .external_lex_state = 7}, - [204] = {.lex_state = 52, .external_lex_state = 8}, - [205] = {.lex_state = 52, .external_lex_state = 7}, - [206] = {.lex_state = 52, .external_lex_state = 8}, - [207] = {.lex_state = 5, .external_lex_state = 6}, - [208] = {.lex_state = 5, .external_lex_state = 6}, - [209] = {.lex_state = 52, .external_lex_state = 7}, - [210] = {.lex_state = 52, .external_lex_state = 7}, - [211] = {.lex_state = 52, .external_lex_state = 7}, - [212] = {.lex_state = 52, .external_lex_state = 8}, - [213] = {.lex_state = 5, .external_lex_state = 6}, - [214] = {.lex_state = 5, .external_lex_state = 6}, - [215] = {.lex_state = 52, .external_lex_state = 8}, - [216] = {.lex_state = 52, .external_lex_state = 8}, - [217] = {.lex_state = 52, .external_lex_state = 7}, - [218] = {.lex_state = 52, .external_lex_state = 8}, - [219] = {.lex_state = 52, .external_lex_state = 8}, - [220] = {.lex_state = 52, .external_lex_state = 8}, - [221] = {.lex_state = 5, .external_lex_state = 6}, - [222] = {.lex_state = 6, .external_lex_state = 4}, - [223] = {.lex_state = 6, .external_lex_state = 4}, - [224] = {.lex_state = 5, .external_lex_state = 8}, - [225] = {.lex_state = 5, .external_lex_state = 8}, - [226] = {.lex_state = 5, .external_lex_state = 8}, - [227] = {.lex_state = 5, .external_lex_state = 8}, - [228] = {.lex_state = 5, .external_lex_state = 8}, - [229] = {.lex_state = 5, .external_lex_state = 8}, - [230] = {.lex_state = 52, .external_lex_state = 2}, - [231] = {.lex_state = 5, .external_lex_state = 8}, - [232] = {.lex_state = 5, .external_lex_state = 8}, - [233] = {.lex_state = 52, .external_lex_state = 2}, - [234] = {.lex_state = 5, .external_lex_state = 7}, - [235] = {.lex_state = 5, .external_lex_state = 2}, - [236] = {.lex_state = 5, .external_lex_state = 2}, - [237] = {.lex_state = 5, .external_lex_state = 2}, - [238] = {.lex_state = 52, .external_lex_state = 7}, - [239] = {.lex_state = 5, .external_lex_state = 2}, - [240] = {.lex_state = 5, .external_lex_state = 2}, - [241] = {.lex_state = 5, .external_lex_state = 2}, - [242] = {.lex_state = 5, .external_lex_state = 2}, - [243] = {.lex_state = 5, .external_lex_state = 2}, - [244] = {.lex_state = 5, .external_lex_state = 2}, - [245] = {.lex_state = 5, .external_lex_state = 2}, - [246] = {.lex_state = 5, .external_lex_state = 2}, - [247] = {.lex_state = 5, .external_lex_state = 2}, - [248] = {.lex_state = 5, .external_lex_state = 7}, - [249] = {.lex_state = 5, .external_lex_state = 2}, - [250] = {.lex_state = 5, .external_lex_state = 2}, - [251] = {.lex_state = 5, .external_lex_state = 7}, - [252] = {.lex_state = 52, .external_lex_state = 6}, - [253] = {.lex_state = 6, .external_lex_state = 2}, - [254] = {.lex_state = 6, .external_lex_state = 2}, - [255] = {.lex_state = 5, .external_lex_state = 2}, - [256] = {.lex_state = 5, .external_lex_state = 7}, - [257] = {.lex_state = 5, .external_lex_state = 2}, - [258] = {.lex_state = 5, .external_lex_state = 2}, - [259] = {.lex_state = 5, .external_lex_state = 2}, - [260] = {.lex_state = 5, .external_lex_state = 7}, - [261] = {.lex_state = 5, .external_lex_state = 7}, - [262] = {.lex_state = 5, .external_lex_state = 7}, - [263] = {.lex_state = 5, .external_lex_state = 7}, - [264] = {.lex_state = 5, .external_lex_state = 2}, - [265] = {.lex_state = 5, .external_lex_state = 2}, - [266] = {.lex_state = 5, .external_lex_state = 2}, - [267] = {.lex_state = 5, .external_lex_state = 7}, - [268] = {.lex_state = 5, .external_lex_state = 2}, - [269] = {.lex_state = 5, .external_lex_state = 2}, - [270] = {.lex_state = 5, .external_lex_state = 2}, - [271] = {.lex_state = 5, .external_lex_state = 2}, - [272] = {.lex_state = 5, .external_lex_state = 7}, - [273] = {.lex_state = 5, .external_lex_state = 7}, - [274] = {.lex_state = 52, .external_lex_state = 7}, - [275] = {.lex_state = 52, .external_lex_state = 7}, - [276] = {.lex_state = 5, .external_lex_state = 7}, - [277] = {.lex_state = 5, .external_lex_state = 7}, - [278] = {.lex_state = 5, .external_lex_state = 7}, - [279] = {.lex_state = 52, .external_lex_state = 7}, - [280] = {.lex_state = 52, .external_lex_state = 8}, - [281] = {.lex_state = 52, .external_lex_state = 7}, - [282] = {.lex_state = 5, .external_lex_state = 7}, - [283] = {.lex_state = 5, .external_lex_state = 7}, - [284] = {.lex_state = 5, .external_lex_state = 7}, - [285] = {.lex_state = 5, .external_lex_state = 7}, - [286] = {.lex_state = 5, .external_lex_state = 7}, - [287] = {.lex_state = 52, .external_lex_state = 7}, - [288] = {.lex_state = 52, .external_lex_state = 8}, - [289] = {.lex_state = 52, .external_lex_state = 7}, - [290] = {.lex_state = 5, .external_lex_state = 7}, - [291] = {.lex_state = 5, .external_lex_state = 7}, - [292] = {.lex_state = 5, .external_lex_state = 7}, - [293] = {.lex_state = 5, .external_lex_state = 7}, - [294] = {.lex_state = 5, .external_lex_state = 7}, - [295] = {.lex_state = 52, .external_lex_state = 7}, - [296] = {.lex_state = 52, .external_lex_state = 8}, - [297] = {.lex_state = 5, .external_lex_state = 7}, - [298] = {.lex_state = 5, .external_lex_state = 7}, - [299] = {.lex_state = 5, .external_lex_state = 7}, - [300] = {.lex_state = 5, .external_lex_state = 7}, - [301] = {.lex_state = 52, .external_lex_state = 7}, - [302] = {.lex_state = 52, .external_lex_state = 8}, - [303] = {.lex_state = 52, .external_lex_state = 7}, - [304] = {.lex_state = 5, .external_lex_state = 7}, - [305] = {.lex_state = 5, .external_lex_state = 7}, - [306] = {.lex_state = 5, .external_lex_state = 7}, - [307] = {.lex_state = 5, .external_lex_state = 7}, - [308] = {.lex_state = 52, .external_lex_state = 8}, - [309] = {.lex_state = 52, .external_lex_state = 7}, - [310] = {.lex_state = 52, .external_lex_state = 8}, - [311] = {.lex_state = 5, .external_lex_state = 7}, - [312] = {.lex_state = 5, .external_lex_state = 7}, - [313] = {.lex_state = 5, .external_lex_state = 7}, - [314] = {.lex_state = 5, .external_lex_state = 7}, - [315] = {.lex_state = 52, .external_lex_state = 7}, - [316] = {.lex_state = 52, .external_lex_state = 8}, - [317] = {.lex_state = 5, .external_lex_state = 7}, - [318] = {.lex_state = 5, .external_lex_state = 7}, - [319] = {.lex_state = 5, .external_lex_state = 7}, - [320] = {.lex_state = 5, .external_lex_state = 7}, - [321] = {.lex_state = 52, .external_lex_state = 7}, - [322] = {.lex_state = 52, .external_lex_state = 8}, - [323] = {.lex_state = 52, .external_lex_state = 7}, - [324] = {.lex_state = 5, .external_lex_state = 7}, - [325] = {.lex_state = 52, .external_lex_state = 7}, - [326] = {.lex_state = 52, .external_lex_state = 7}, - [327] = {.lex_state = 52, .external_lex_state = 8}, - [328] = {.lex_state = 52, .external_lex_state = 6}, - [329] = {.lex_state = 52, .external_lex_state = 8}, - [330] = {.lex_state = 52, .external_lex_state = 6}, - [331] = {.lex_state = 5, .external_lex_state = 2}, - [332] = {.lex_state = 52, .external_lex_state = 8}, - [333] = {.lex_state = 52, .external_lex_state = 7}, - [334] = {.lex_state = 52, .external_lex_state = 7}, - [335] = {.lex_state = 52, .external_lex_state = 8}, - [336] = {.lex_state = 52, .external_lex_state = 7}, - [337] = {.lex_state = 52, .external_lex_state = 6}, - [338] = {.lex_state = 52, .external_lex_state = 6}, - [339] = {.lex_state = 52, .external_lex_state = 6}, - [340] = {.lex_state = 52, .external_lex_state = 8}, - [341] = {.lex_state = 52, .external_lex_state = 6}, - [342] = {.lex_state = 52, .external_lex_state = 6}, - [343] = {.lex_state = 52, .external_lex_state = 7}, - [344] = {.lex_state = 12, .external_lex_state = 6}, - [345] = {.lex_state = 52, .external_lex_state = 6}, - [346] = {.lex_state = 52, .external_lex_state = 7}, - [347] = {.lex_state = 52, .external_lex_state = 8}, - [348] = {.lex_state = 52, .external_lex_state = 2}, - [349] = {.lex_state = 52, .external_lex_state = 4}, - [350] = {.lex_state = 5, .external_lex_state = 6}, - [351] = {.lex_state = 5, .external_lex_state = 6}, - [352] = {.lex_state = 5, .external_lex_state = 6}, - [353] = {.lex_state = 5, .external_lex_state = 6}, - [354] = {.lex_state = 52, .external_lex_state = 7}, - [355] = {.lex_state = 5, .external_lex_state = 6}, - [356] = {.lex_state = 52, .external_lex_state = 2}, - [357] = {.lex_state = 5, .external_lex_state = 6}, - [358] = {.lex_state = 5, .external_lex_state = 6}, - [359] = {.lex_state = 5, .external_lex_state = 6}, - [360] = {.lex_state = 52, .external_lex_state = 4}, - [361] = {.lex_state = 5, .external_lex_state = 6}, - [362] = {.lex_state = 5, .external_lex_state = 6}, - [363] = {.lex_state = 52, .external_lex_state = 8}, - [364] = {.lex_state = 5, .external_lex_state = 6}, - [365] = {.lex_state = 5, .external_lex_state = 6}, - [366] = {.lex_state = 5, .external_lex_state = 6}, - [367] = {.lex_state = 5, .external_lex_state = 6}, - [368] = {.lex_state = 5, .external_lex_state = 6}, - [369] = {.lex_state = 52, .external_lex_state = 2}, - [370] = {.lex_state = 5, .external_lex_state = 6}, - [371] = {.lex_state = 52, .external_lex_state = 8}, - [372] = {.lex_state = 52, .external_lex_state = 8}, - [373] = {.lex_state = 52, .external_lex_state = 8}, - [374] = {.lex_state = 52, .external_lex_state = 8}, - [375] = {.lex_state = 52, .external_lex_state = 8}, - [376] = {.lex_state = 52, .external_lex_state = 8}, - [377] = {.lex_state = 52, .external_lex_state = 8}, - [378] = {.lex_state = 52, .external_lex_state = 8}, - [379] = {.lex_state = 52, .external_lex_state = 8}, - [380] = {.lex_state = 52, .external_lex_state = 4}, - [381] = {.lex_state = 5, .external_lex_state = 2}, - [382] = {.lex_state = 52, .external_lex_state = 8}, - [383] = {.lex_state = 52, .external_lex_state = 4}, - [384] = {.lex_state = 52, .external_lex_state = 8}, - [385] = {.lex_state = 52, .external_lex_state = 8}, - [386] = {.lex_state = 52, .external_lex_state = 8}, - [387] = {.lex_state = 52, .external_lex_state = 8}, - [388] = {.lex_state = 52, .external_lex_state = 8}, - [389] = {.lex_state = 12, .external_lex_state = 7}, - [390] = {.lex_state = 52, .external_lex_state = 8}, - [391] = {.lex_state = 52, .external_lex_state = 8}, - [392] = {.lex_state = 52, .external_lex_state = 8}, - [393] = {.lex_state = 52, .external_lex_state = 8}, - [394] = {.lex_state = 52, .external_lex_state = 8}, - [395] = {.lex_state = 52, .external_lex_state = 8}, - [396] = {.lex_state = 52, .external_lex_state = 8}, - [397] = {.lex_state = 52, .external_lex_state = 8}, - [398] = {.lex_state = 52, .external_lex_state = 8}, - [399] = {.lex_state = 52, .external_lex_state = 8}, - [400] = {.lex_state = 52, .external_lex_state = 8}, - [401] = {.lex_state = 52, .external_lex_state = 8}, - [402] = {.lex_state = 52, .external_lex_state = 8}, - [403] = {.lex_state = 52, .external_lex_state = 4}, - [404] = {.lex_state = 12, .external_lex_state = 7}, - [405] = {.lex_state = 52, .external_lex_state = 8}, - [406] = {.lex_state = 52, .external_lex_state = 8}, - [407] = {.lex_state = 52, .external_lex_state = 8}, - [408] = {.lex_state = 52, .external_lex_state = 8}, - [409] = {.lex_state = 52, .external_lex_state = 2}, - [410] = {.lex_state = 52, .external_lex_state = 2}, - [411] = {.lex_state = 52, .external_lex_state = 2}, - [412] = {.lex_state = 52, .external_lex_state = 8}, - [413] = {.lex_state = 52, .external_lex_state = 8}, - [414] = {.lex_state = 52, .external_lex_state = 4}, - [415] = {.lex_state = 52, .external_lex_state = 4}, - [416] = {.lex_state = 52, .external_lex_state = 2}, - [417] = {.lex_state = 12, .external_lex_state = 2}, - [418] = {.lex_state = 52, .external_lex_state = 2}, - [419] = {.lex_state = 52, .external_lex_state = 4}, - [420] = {.lex_state = 52, .external_lex_state = 2}, - [421] = {.lex_state = 52, .external_lex_state = 2}, - [422] = {.lex_state = 5, .external_lex_state = 8}, - [423] = {.lex_state = 5, .external_lex_state = 2}, - [424] = {.lex_state = 52, .external_lex_state = 4}, - [425] = {.lex_state = 52, .external_lex_state = 8}, - [426] = {.lex_state = 52, .external_lex_state = 2}, - [427] = {.lex_state = 52, .external_lex_state = 7}, - [428] = {.lex_state = 52, .external_lex_state = 7}, - [429] = {.lex_state = 52, .external_lex_state = 2}, - [430] = {.lex_state = 52, .external_lex_state = 2}, - [431] = {.lex_state = 52, .external_lex_state = 2}, - [432] = {.lex_state = 52, .external_lex_state = 8}, - [433] = {.lex_state = 52, .external_lex_state = 2}, - [434] = {.lex_state = 52, .external_lex_state = 4}, - [435] = {.lex_state = 52, .external_lex_state = 2}, - [436] = {.lex_state = 52, .external_lex_state = 8}, - [437] = {.lex_state = 52, .external_lex_state = 2}, - [438] = {.lex_state = 52, .external_lex_state = 4}, - [439] = {.lex_state = 12, .external_lex_state = 2}, - [440] = {.lex_state = 52, .external_lex_state = 2}, - [441] = {.lex_state = 52, .external_lex_state = 2}, - [442] = {.lex_state = 52, .external_lex_state = 7}, - [443] = {.lex_state = 52, .external_lex_state = 2}, - [444] = {.lex_state = 52, .external_lex_state = 2}, - [445] = {.lex_state = 52, .external_lex_state = 2}, - [446] = {.lex_state = 5, .external_lex_state = 7}, - [447] = {.lex_state = 52, .external_lex_state = 2}, - [448] = {.lex_state = 52, .external_lex_state = 2}, - [449] = {.lex_state = 52, .external_lex_state = 2}, - [450] = {.lex_state = 52, .external_lex_state = 2}, - [451] = {.lex_state = 52, .external_lex_state = 2}, - [452] = {.lex_state = 52, .external_lex_state = 2}, - [453] = {.lex_state = 52, .external_lex_state = 2}, - [454] = {.lex_state = 52, .external_lex_state = 2}, - [455] = {.lex_state = 52, .external_lex_state = 2}, - [456] = {.lex_state = 52, .external_lex_state = 2}, - [457] = {.lex_state = 52, .external_lex_state = 2}, - [458] = {.lex_state = 52, .external_lex_state = 2}, - [459] = {.lex_state = 52, .external_lex_state = 7}, - [460] = {.lex_state = 52, .external_lex_state = 2}, - [461] = {.lex_state = 7, .external_lex_state = 4}, - [462] = {.lex_state = 52, .external_lex_state = 2}, - [463] = {.lex_state = 7, .external_lex_state = 9}, - [464] = {.lex_state = 52, .external_lex_state = 2}, - [465] = {.lex_state = 52, .external_lex_state = 2}, - [466] = {.lex_state = 52, .external_lex_state = 2}, - [467] = {.lex_state = 7, .external_lex_state = 9}, - [468] = {.lex_state = 52, .external_lex_state = 2}, - [469] = {.lex_state = 52, .external_lex_state = 2}, - [470] = {.lex_state = 52, .external_lex_state = 2}, - [471] = {.lex_state = 52, .external_lex_state = 2}, - [472] = {.lex_state = 52, .external_lex_state = 2}, - [473] = {.lex_state = 52, .external_lex_state = 2}, - [474] = {.lex_state = 52, .external_lex_state = 2}, - [475] = {.lex_state = 52, .external_lex_state = 2}, - [476] = {.lex_state = 7, .external_lex_state = 4}, - [477] = {.lex_state = 52, .external_lex_state = 2}, - [478] = {.lex_state = 52, .external_lex_state = 2}, - [479] = {.lex_state = 52, .external_lex_state = 2}, - [480] = {.lex_state = 52, .external_lex_state = 2}, - [481] = {.lex_state = 52, .external_lex_state = 2}, - [482] = {.lex_state = 52, .external_lex_state = 2}, - [483] = {.lex_state = 52, .external_lex_state = 2}, - [484] = {.lex_state = 52, .external_lex_state = 2}, - [485] = {.lex_state = 53, .external_lex_state = 10}, - [486] = {.lex_state = 54, .external_lex_state = 2}, - [487] = {.lex_state = 52, .external_lex_state = 2}, - [488] = {.lex_state = 52, .external_lex_state = 2}, - [489] = {.lex_state = 52, .external_lex_state = 2}, - [490] = {.lex_state = 52, .external_lex_state = 2}, - [491] = {.lex_state = 52, .external_lex_state = 2}, - [492] = {.lex_state = 52, .external_lex_state = 2}, - [493] = {.lex_state = 52, .external_lex_state = 2}, - [494] = {.lex_state = 52, .external_lex_state = 2}, - [495] = {.lex_state = 52, .external_lex_state = 2}, - [496] = {.lex_state = 52, .external_lex_state = 2}, - [497] = {.lex_state = 52, .external_lex_state = 2}, - [498] = {.lex_state = 52, .external_lex_state = 2}, - [499] = {.lex_state = 52, .external_lex_state = 2}, - [500] = {.lex_state = 52, .external_lex_state = 2}, - [501] = {.lex_state = 52, .external_lex_state = 2}, - [502] = {.lex_state = 52, .external_lex_state = 2}, - [503] = {.lex_state = 52, .external_lex_state = 2}, - [504] = {.lex_state = 52, .external_lex_state = 2}, - [505] = {.lex_state = 52, .external_lex_state = 2}, - [506] = {.lex_state = 52, .external_lex_state = 2}, - [507] = {.lex_state = 52, .external_lex_state = 2}, - [508] = {.lex_state = 52, .external_lex_state = 2}, - [509] = {.lex_state = 52, .external_lex_state = 2}, - [510] = {.lex_state = 52, .external_lex_state = 2}, - [511] = {.lex_state = 52, .external_lex_state = 2}, - [512] = {.lex_state = 52, .external_lex_state = 2}, - [513] = {.lex_state = 52, .external_lex_state = 2}, - [514] = {.lex_state = 52, .external_lex_state = 2}, - [515] = {.lex_state = 52, .external_lex_state = 2}, - [516] = {.lex_state = 52, .external_lex_state = 2}, - [517] = {.lex_state = 52, .external_lex_state = 2}, - [518] = {.lex_state = 52, .external_lex_state = 2}, - [519] = {.lex_state = 52, .external_lex_state = 2}, - [520] = {.lex_state = 52, .external_lex_state = 2}, - [521] = {.lex_state = 52, .external_lex_state = 2}, - [522] = {.lex_state = 52, .external_lex_state = 2}, - [523] = {.lex_state = 52, .external_lex_state = 2}, - [524] = {.lex_state = 52, .external_lex_state = 2}, - [525] = {.lex_state = 52, .external_lex_state = 2}, - [526] = {.lex_state = 52, .external_lex_state = 2}, - [527] = {.lex_state = 52, .external_lex_state = 2}, - [528] = {.lex_state = 52, .external_lex_state = 2}, - [529] = {.lex_state = 52, .external_lex_state = 2}, - [530] = {.lex_state = 52, .external_lex_state = 2}, - [531] = {.lex_state = 52, .external_lex_state = 2}, - [532] = {.lex_state = 52, .external_lex_state = 2}, - [533] = {.lex_state = 52, .external_lex_state = 2}, - [534] = {.lex_state = 52, .external_lex_state = 2}, - [535] = {.lex_state = 52, .external_lex_state = 2}, - [536] = {.lex_state = 52, .external_lex_state = 2}, - [537] = {.lex_state = 52, .external_lex_state = 2}, - [538] = {.lex_state = 52, .external_lex_state = 2}, - [539] = {.lex_state = 52, .external_lex_state = 2}, - [540] = {.lex_state = 52, .external_lex_state = 2}, - [541] = {.lex_state = 52, .external_lex_state = 2}, - [542] = {.lex_state = 52, .external_lex_state = 2}, - [543] = {.lex_state = 52, .external_lex_state = 2}, - [544] = {.lex_state = 52, .external_lex_state = 2}, - [545] = {.lex_state = 52, .external_lex_state = 2}, - [546] = {.lex_state = 52, .external_lex_state = 2}, - [547] = {.lex_state = 52, .external_lex_state = 2}, - [548] = {.lex_state = 52, .external_lex_state = 2}, - [549] = {.lex_state = 52, .external_lex_state = 2}, - [550] = {.lex_state = 52, .external_lex_state = 2}, - [551] = {.lex_state = 52, .external_lex_state = 2}, - [552] = {.lex_state = 52, .external_lex_state = 2}, - [553] = {.lex_state = 52, .external_lex_state = 2}, - [554] = {.lex_state = 52, .external_lex_state = 2}, - [555] = {.lex_state = 52, .external_lex_state = 2}, - [556] = {.lex_state = 52, .external_lex_state = 2}, - [557] = {.lex_state = 52, .external_lex_state = 2}, - [558] = {.lex_state = 52, .external_lex_state = 2}, - [559] = {.lex_state = 52, .external_lex_state = 2}, - [560] = {.lex_state = 52, .external_lex_state = 2}, - [561] = {.lex_state = 52, .external_lex_state = 2}, - [562] = {.lex_state = 53, .external_lex_state = 10}, - [563] = {.lex_state = 54, .external_lex_state = 2}, - [564] = {.lex_state = 52, .external_lex_state = 2}, - [565] = {.lex_state = 52, .external_lex_state = 2}, - [566] = {.lex_state = 52, .external_lex_state = 2}, - [567] = {.lex_state = 52, .external_lex_state = 2}, - [568] = {.lex_state = 52, .external_lex_state = 2}, - [569] = {.lex_state = 52, .external_lex_state = 2}, - [570] = {.lex_state = 52, .external_lex_state = 2}, - [571] = {.lex_state = 52, .external_lex_state = 2}, - [572] = {.lex_state = 52, .external_lex_state = 2}, - [573] = {.lex_state = 52, .external_lex_state = 2}, - [574] = {.lex_state = 52, .external_lex_state = 2}, - [575] = {.lex_state = 52, .external_lex_state = 2}, - [576] = {.lex_state = 52, .external_lex_state = 2}, - [577] = {.lex_state = 52, .external_lex_state = 2}, - [578] = {.lex_state = 52, .external_lex_state = 2}, - [579] = {.lex_state = 52, .external_lex_state = 2}, - [580] = {.lex_state = 52, .external_lex_state = 2}, - [581] = {.lex_state = 52, .external_lex_state = 2}, - [582] = {.lex_state = 52, .external_lex_state = 2}, - [583] = {.lex_state = 52, .external_lex_state = 2}, - [584] = {.lex_state = 52, .external_lex_state = 2}, - [585] = {.lex_state = 52, .external_lex_state = 2}, - [586] = {.lex_state = 52, .external_lex_state = 2}, - [587] = {.lex_state = 52, .external_lex_state = 2}, - [588] = {.lex_state = 52, .external_lex_state = 2}, - [589] = {.lex_state = 52, .external_lex_state = 2}, - [590] = {.lex_state = 53, .external_lex_state = 11}, - [591] = {.lex_state = 54, .external_lex_state = 3}, - [592] = {.lex_state = 52, .external_lex_state = 2}, - [593] = {.lex_state = 52, .external_lex_state = 2}, - [594] = {.lex_state = 53, .external_lex_state = 11}, - [595] = {.lex_state = 54, .external_lex_state = 3}, - [596] = {.lex_state = 52, .external_lex_state = 2}, - [597] = {.lex_state = 52, .external_lex_state = 2}, - [598] = {.lex_state = 52, .external_lex_state = 2}, - [599] = {.lex_state = 52, .external_lex_state = 2}, - [600] = {.lex_state = 52, .external_lex_state = 2}, - [601] = {.lex_state = 52, .external_lex_state = 2}, - [602] = {.lex_state = 52, .external_lex_state = 2}, - [603] = {.lex_state = 52, .external_lex_state = 2}, - [604] = {.lex_state = 52, .external_lex_state = 2}, - [605] = {.lex_state = 52, .external_lex_state = 2}, - [606] = {.lex_state = 52, .external_lex_state = 2}, - [607] = {.lex_state = 52, .external_lex_state = 2}, - [608] = {.lex_state = 52, .external_lex_state = 2}, - [609] = {.lex_state = 7, .external_lex_state = 9}, - [610] = {.lex_state = 52, .external_lex_state = 3}, - [611] = {.lex_state = 52, .external_lex_state = 2}, - [612] = {.lex_state = 7, .external_lex_state = 9}, - [613] = {.lex_state = 7, .external_lex_state = 9}, - [614] = {.lex_state = 52, .external_lex_state = 2}, - [615] = {.lex_state = 52, .external_lex_state = 3}, - [616] = {.lex_state = 52, .external_lex_state = 2}, - [617] = {.lex_state = 7, .external_lex_state = 9}, - [618] = {.lex_state = 52, .external_lex_state = 2}, - [619] = {.lex_state = 52, .external_lex_state = 3}, - [620] = {.lex_state = 52, .external_lex_state = 3}, - [621] = {.lex_state = 7, .external_lex_state = 9}, - [622] = {.lex_state = 53, .external_lex_state = 10}, - [623] = {.lex_state = 54, .external_lex_state = 2}, - [624] = {.lex_state = 53, .external_lex_state = 11}, - [625] = {.lex_state = 54, .external_lex_state = 3}, - [626] = {.lex_state = 7, .external_lex_state = 9}, - [627] = {.lex_state = 8, .external_lex_state = 9}, - [628] = {.lex_state = 8, .external_lex_state = 9}, - [629] = {.lex_state = 8, .external_lex_state = 9}, - [630] = {.lex_state = 52, .external_lex_state = 3}, - [631] = {.lex_state = 8, .external_lex_state = 9}, - [632] = {.lex_state = 52, .external_lex_state = 2}, - [633] = {.lex_state = 8, .external_lex_state = 9}, - [634] = {.lex_state = 8, .external_lex_state = 9}, - [635] = {.lex_state = 8, .external_lex_state = 9}, - [636] = {.lex_state = 8, .external_lex_state = 9}, - [637] = {.lex_state = 8, .external_lex_state = 9}, - [638] = {.lex_state = 8, .external_lex_state = 9}, - [639] = {.lex_state = 8, .external_lex_state = 9}, - [640] = {.lex_state = 8, .external_lex_state = 9}, - [641] = {.lex_state = 8, .external_lex_state = 9}, - [642] = {.lex_state = 8, .external_lex_state = 9}, - [643] = {.lex_state = 8, .external_lex_state = 9}, - [644] = {.lex_state = 8, .external_lex_state = 9}, - [645] = {.lex_state = 8, .external_lex_state = 9}, - [646] = {.lex_state = 8, .external_lex_state = 9}, - [647] = {.lex_state = 8, .external_lex_state = 9}, - [648] = {.lex_state = 54, .external_lex_state = 2}, - [649] = {.lex_state = 53, .external_lex_state = 11}, - [650] = {.lex_state = 54, .external_lex_state = 3}, - [651] = {.lex_state = 53, .external_lex_state = 11}, - [652] = {.lex_state = 53, .external_lex_state = 11}, - [653] = {.lex_state = 53, .external_lex_state = 11}, - [654] = {.lex_state = 53, .external_lex_state = 11}, - [655] = {.lex_state = 52, .external_lex_state = 3}, - [656] = {.lex_state = 52, .external_lex_state = 6}, - [657] = {.lex_state = 54, .external_lex_state = 3}, - [658] = {.lex_state = 53, .external_lex_state = 10}, - [659] = {.lex_state = 52, .external_lex_state = 3}, - [660] = {.lex_state = 54, .external_lex_state = 3}, - [661] = {.lex_state = 54, .external_lex_state = 3}, - [662] = {.lex_state = 54, .external_lex_state = 3}, - [663] = {.lex_state = 54, .external_lex_state = 3}, - [664] = {.lex_state = 53, .external_lex_state = 10}, - [665] = {.lex_state = 53, .external_lex_state = 11}, - [666] = {.lex_state = 54, .external_lex_state = 3}, - [667] = {.lex_state = 53, .external_lex_state = 10}, - [668] = {.lex_state = 53, .external_lex_state = 11}, - [669] = {.lex_state = 53, .external_lex_state = 10}, - [670] = {.lex_state = 54, .external_lex_state = 3}, - [671] = {.lex_state = 52, .external_lex_state = 2}, - [672] = {.lex_state = 53, .external_lex_state = 11}, - [673] = {.lex_state = 53, .external_lex_state = 10}, - [674] = {.lex_state = 53, .external_lex_state = 10}, - [675] = {.lex_state = 53, .external_lex_state = 10}, - [676] = {.lex_state = 53, .external_lex_state = 11}, - [677] = {.lex_state = 54, .external_lex_state = 3}, - [678] = {.lex_state = 54, .external_lex_state = 2}, - [679] = {.lex_state = 53, .external_lex_state = 10}, - [680] = {.lex_state = 54, .external_lex_state = 2}, - [681] = {.lex_state = 53, .external_lex_state = 10}, - [682] = {.lex_state = 54, .external_lex_state = 2}, - [683] = {.lex_state = 52, .external_lex_state = 2}, - [684] = {.lex_state = 54, .external_lex_state = 2}, - [685] = {.lex_state = 53, .external_lex_state = 10}, - [686] = {.lex_state = 54, .external_lex_state = 2}, - [687] = {.lex_state = 53, .external_lex_state = 10}, - [688] = {.lex_state = 54, .external_lex_state = 2}, - [689] = {.lex_state = 52, .external_lex_state = 3}, - [690] = {.lex_state = 52, .external_lex_state = 6}, - [691] = {.lex_state = 54, .external_lex_state = 2}, - [692] = {.lex_state = 52, .external_lex_state = 2}, - [693] = {.lex_state = 52, .external_lex_state = 3}, - [694] = {.lex_state = 54, .external_lex_state = 2}, - [695] = {.lex_state = 52, .external_lex_state = 3}, - [696] = {.lex_state = 52, .external_lex_state = 2}, - [697] = {.lex_state = 52, .external_lex_state = 2}, - [698] = {.lex_state = 53, .external_lex_state = 11}, - [699] = {.lex_state = 53, .external_lex_state = 11}, - [700] = {.lex_state = 52, .external_lex_state = 2}, - [701] = {.lex_state = 52, .external_lex_state = 2}, - [702] = {.lex_state = 52, .external_lex_state = 2}, - [703] = {.lex_state = 52, .external_lex_state = 2}, - [704] = {.lex_state = 52, .external_lex_state = 2}, - [705] = {.lex_state = 52, .external_lex_state = 2}, - [706] = {.lex_state = 52, .external_lex_state = 2}, - [707] = {.lex_state = 52, .external_lex_state = 3}, - [708] = {.lex_state = 52, .external_lex_state = 3}, - [709] = {.lex_state = 52, .external_lex_state = 2}, - [710] = {.lex_state = 52, .external_lex_state = 3}, - [711] = {.lex_state = 52, .external_lex_state = 2}, - [712] = {.lex_state = 52, .external_lex_state = 3}, - [713] = {.lex_state = 52, .external_lex_state = 3}, - [714] = {.lex_state = 52, .external_lex_state = 2}, - [715] = {.lex_state = 52, .external_lex_state = 2}, - [716] = {.lex_state = 52, .external_lex_state = 3}, - [717] = {.lex_state = 52, .external_lex_state = 3}, - [718] = {.lex_state = 52, .external_lex_state = 3}, - [719] = {.lex_state = 52, .external_lex_state = 3}, - [720] = {.lex_state = 52, .external_lex_state = 3}, - [721] = {.lex_state = 52, .external_lex_state = 3}, - [722] = {.lex_state = 52, .external_lex_state = 7}, - [723] = {.lex_state = 52, .external_lex_state = 2}, - [724] = {.lex_state = 52, .external_lex_state = 7}, - [725] = {.lex_state = 52, .external_lex_state = 2}, - [726] = {.lex_state = 52, .external_lex_state = 3}, - [727] = {.lex_state = 52, .external_lex_state = 3}, - [728] = {.lex_state = 52, .external_lex_state = 3}, - [729] = {.lex_state = 52, .external_lex_state = 2}, - [730] = {.lex_state = 52, .external_lex_state = 2}, - [731] = {.lex_state = 52, .external_lex_state = 3}, - [732] = {.lex_state = 52, .external_lex_state = 2}, - [733] = {.lex_state = 52, .external_lex_state = 2}, - [734] = {.lex_state = 52, .external_lex_state = 2}, - [735] = {.lex_state = 52, .external_lex_state = 2}, - [736] = {.lex_state = 52, .external_lex_state = 3}, - [737] = {.lex_state = 52, .external_lex_state = 2}, - [738] = {.lex_state = 52, .external_lex_state = 2}, - [739] = {.lex_state = 52, .external_lex_state = 3}, - [740] = {.lex_state = 52, .external_lex_state = 2}, - [741] = {.lex_state = 52, .external_lex_state = 3}, - [742] = {.lex_state = 52, .external_lex_state = 2}, - [743] = {.lex_state = 52, .external_lex_state = 2}, - [744] = {.lex_state = 52, .external_lex_state = 2}, - [745] = {.lex_state = 52, .external_lex_state = 2}, - [746] = {.lex_state = 52, .external_lex_state = 2}, - [747] = {.lex_state = 52, .external_lex_state = 2}, - [748] = {.lex_state = 52, .external_lex_state = 2}, - [749] = {.lex_state = 52, .external_lex_state = 2}, - [750] = {.lex_state = 52, .external_lex_state = 2}, - [751] = {.lex_state = 52, .external_lex_state = 2}, - [752] = {.lex_state = 52, .external_lex_state = 3}, - [753] = {.lex_state = 52, .external_lex_state = 2}, - [754] = {.lex_state = 52, .external_lex_state = 3}, - [755] = {.lex_state = 52, .external_lex_state = 2}, - [756] = {.lex_state = 52, .external_lex_state = 2}, - [757] = {.lex_state = 52, .external_lex_state = 2}, - [758] = {.lex_state = 52, .external_lex_state = 2}, - [759] = {.lex_state = 52, .external_lex_state = 2}, - [760] = {.lex_state = 52, .external_lex_state = 2}, - [761] = {.lex_state = 52, .external_lex_state = 3}, - [762] = {.lex_state = 52, .external_lex_state = 2}, - [763] = {.lex_state = 52, .external_lex_state = 2}, - [764] = {.lex_state = 52, .external_lex_state = 2}, - [765] = {.lex_state = 52, .external_lex_state = 2}, - [766] = {.lex_state = 52, .external_lex_state = 2}, - [767] = {.lex_state = 52, .external_lex_state = 7}, - [768] = {.lex_state = 52, .external_lex_state = 2}, - [769] = {.lex_state = 52, .external_lex_state = 3}, - [770] = {.lex_state = 52, .external_lex_state = 3}, - [771] = {.lex_state = 52, .external_lex_state = 2}, - [772] = {.lex_state = 52, .external_lex_state = 2}, - [773] = {.lex_state = 52, .external_lex_state = 2}, - [774] = {.lex_state = 52, .external_lex_state = 2}, - [775] = {.lex_state = 52, .external_lex_state = 2}, - [776] = {.lex_state = 52, .external_lex_state = 2}, - [777] = {.lex_state = 52, .external_lex_state = 2}, - [778] = {.lex_state = 52, .external_lex_state = 2}, - [779] = {.lex_state = 52, .external_lex_state = 2}, - [780] = {.lex_state = 52, .external_lex_state = 7}, - [781] = {.lex_state = 52, .external_lex_state = 2}, - [782] = {.lex_state = 52, .external_lex_state = 2}, - [783] = {.lex_state = 52, .external_lex_state = 2}, - [784] = {.lex_state = 52, .external_lex_state = 2}, - [785] = {.lex_state = 52, .external_lex_state = 2}, - [786] = {.lex_state = 52, .external_lex_state = 2}, - [787] = {.lex_state = 52, .external_lex_state = 3}, - [788] = {.lex_state = 52, .external_lex_state = 3}, - [789] = {.lex_state = 52, .external_lex_state = 2}, - [790] = {.lex_state = 52, .external_lex_state = 3}, - [791] = {.lex_state = 52, .external_lex_state = 2}, - [792] = {.lex_state = 52, .external_lex_state = 2}, - [793] = {.lex_state = 52, .external_lex_state = 2}, - [794] = {.lex_state = 52, .external_lex_state = 2}, - [795] = {.lex_state = 52, .external_lex_state = 3}, - [796] = {.lex_state = 52, .external_lex_state = 8}, - [797] = {.lex_state = 52, .external_lex_state = 2}, - [798] = {.lex_state = 52, .external_lex_state = 2}, - [799] = {.lex_state = 52, .external_lex_state = 8}, - [800] = {.lex_state = 52, .external_lex_state = 3}, - [801] = {.lex_state = 52, .external_lex_state = 3}, - [802] = {.lex_state = 52, .external_lex_state = 3}, - [803] = {.lex_state = 52, .external_lex_state = 3}, - [804] = {.lex_state = 52, .external_lex_state = 2}, - [805] = {.lex_state = 52, .external_lex_state = 2}, - [806] = {.lex_state = 52, .external_lex_state = 3}, - [807] = {.lex_state = 52, .external_lex_state = 3}, - [808] = {.lex_state = 52, .external_lex_state = 3}, - [809] = {.lex_state = 52, .external_lex_state = 2}, - [810] = {.lex_state = 52, .external_lex_state = 2}, - [811] = {.lex_state = 52, .external_lex_state = 3}, - [812] = {.lex_state = 52, .external_lex_state = 3}, - [813] = {.lex_state = 52, .external_lex_state = 3}, - [814] = {.lex_state = 52, .external_lex_state = 3}, - [815] = {.lex_state = 52, .external_lex_state = 3}, - [816] = {.lex_state = 52, .external_lex_state = 3}, - [817] = {.lex_state = 52, .external_lex_state = 2}, - [818] = {.lex_state = 52, .external_lex_state = 3}, - [819] = {.lex_state = 52, .external_lex_state = 3}, - [820] = {.lex_state = 52, .external_lex_state = 3}, - [821] = {.lex_state = 52, .external_lex_state = 3}, - [822] = {.lex_state = 52, .external_lex_state = 3}, - [823] = {.lex_state = 52, .external_lex_state = 3}, - [824] = {.lex_state = 52, .external_lex_state = 3}, - [825] = {.lex_state = 52, .external_lex_state = 3}, - [826] = {.lex_state = 52, .external_lex_state = 3}, - [827] = {.lex_state = 52, .external_lex_state = 3}, - [828] = {.lex_state = 52, .external_lex_state = 3}, - [829] = {.lex_state = 52, .external_lex_state = 3}, - [830] = {.lex_state = 52, .external_lex_state = 3}, - [831] = {.lex_state = 52, .external_lex_state = 3}, - [832] = {.lex_state = 52, .external_lex_state = 3}, - [833] = {.lex_state = 52, .external_lex_state = 3}, - [834] = {.lex_state = 52, .external_lex_state = 3}, - [835] = {.lex_state = 52, .external_lex_state = 3}, - [836] = {.lex_state = 52, .external_lex_state = 3}, - [837] = {.lex_state = 52, .external_lex_state = 3}, - [838] = {.lex_state = 52, .external_lex_state = 3}, - [839] = {.lex_state = 52, .external_lex_state = 3}, - [840] = {.lex_state = 52, .external_lex_state = 2}, - [841] = {.lex_state = 52, .external_lex_state = 3}, - [842] = {.lex_state = 52, .external_lex_state = 3}, - [843] = {.lex_state = 52, .external_lex_state = 3}, - [844] = {.lex_state = 52, .external_lex_state = 2}, - [845] = {.lex_state = 52, .external_lex_state = 2}, - [846] = {.lex_state = 52, .external_lex_state = 3}, - [847] = {.lex_state = 52, .external_lex_state = 3}, - [848] = {.lex_state = 52, .external_lex_state = 2}, - [849] = {.lex_state = 52, .external_lex_state = 2}, - [850] = {.lex_state = 52, .external_lex_state = 2}, - [851] = {.lex_state = 52, .external_lex_state = 2}, - [852] = {.lex_state = 52, .external_lex_state = 2}, - [853] = {.lex_state = 52, .external_lex_state = 2}, - [854] = {.lex_state = 52, .external_lex_state = 2}, - [855] = {.lex_state = 52, .external_lex_state = 2}, - [856] = {.lex_state = 52, .external_lex_state = 2}, - [857] = {.lex_state = 52, .external_lex_state = 2}, - [858] = {.lex_state = 52, .external_lex_state = 2}, - [859] = {.lex_state = 52, .external_lex_state = 7}, - [860] = {.lex_state = 52, .external_lex_state = 2}, - [861] = {.lex_state = 52, .external_lex_state = 2}, - [862] = {.lex_state = 52, .external_lex_state = 2}, - [863] = {.lex_state = 52, .external_lex_state = 2}, - [864] = {.lex_state = 52, .external_lex_state = 2}, - [865] = {.lex_state = 13, .external_lex_state = 9}, - [866] = {.lex_state = 52, .external_lex_state = 2}, - [867] = {.lex_state = 52, .external_lex_state = 2}, - [868] = {.lex_state = 52, .external_lex_state = 2}, - [869] = {.lex_state = 52, .external_lex_state = 2}, - [870] = {.lex_state = 52, .external_lex_state = 2}, - [871] = {.lex_state = 52, .external_lex_state = 2}, - [872] = {.lex_state = 52, .external_lex_state = 2}, - [873] = {.lex_state = 52, .external_lex_state = 2}, - [874] = {.lex_state = 52, .external_lex_state = 2}, - [875] = {.lex_state = 52, .external_lex_state = 2}, - [876] = {.lex_state = 52, .external_lex_state = 2}, - [877] = {.lex_state = 52, .external_lex_state = 2}, - [878] = {.lex_state = 52, .external_lex_state = 2}, - [879] = {.lex_state = 52, .external_lex_state = 2}, - [880] = {.lex_state = 52, .external_lex_state = 2}, - [881] = {.lex_state = 52, .external_lex_state = 2}, - [882] = {.lex_state = 52, .external_lex_state = 2}, - [883] = {.lex_state = 52, .external_lex_state = 2}, - [884] = {.lex_state = 52, .external_lex_state = 2}, - [885] = {.lex_state = 52, .external_lex_state = 2}, - [886] = {.lex_state = 52, .external_lex_state = 2}, - [887] = {.lex_state = 52, .external_lex_state = 2}, - [888] = {.lex_state = 52, .external_lex_state = 2}, - [889] = {.lex_state = 52, .external_lex_state = 2}, - [890] = {.lex_state = 52, .external_lex_state = 2}, - [891] = {.lex_state = 52, .external_lex_state = 2}, - [892] = {.lex_state = 52, .external_lex_state = 2}, - [893] = {.lex_state = 52, .external_lex_state = 2}, - [894] = {.lex_state = 52, .external_lex_state = 2}, - [895] = {.lex_state = 52, .external_lex_state = 2}, - [896] = {.lex_state = 52, .external_lex_state = 2}, - [897] = {.lex_state = 52, .external_lex_state = 2}, - [898] = {.lex_state = 52, .external_lex_state = 2}, - [899] = {.lex_state = 52, .external_lex_state = 2}, - [900] = {.lex_state = 52, .external_lex_state = 2}, - [901] = {.lex_state = 52, .external_lex_state = 2}, - [902] = {.lex_state = 52, .external_lex_state = 2}, - [903] = {.lex_state = 52, .external_lex_state = 2}, - [904] = {.lex_state = 52, .external_lex_state = 2}, - [905] = {.lex_state = 52, .external_lex_state = 2}, - [906] = {.lex_state = 52, .external_lex_state = 2}, - [907] = {.lex_state = 52, .external_lex_state = 2}, - [908] = {.lex_state = 52, .external_lex_state = 2}, - [909] = {.lex_state = 13, .external_lex_state = 12}, - [910] = {.lex_state = 52, .external_lex_state = 2}, - [911] = {.lex_state = 52, .external_lex_state = 2}, - [912] = {.lex_state = 13, .external_lex_state = 12}, - [913] = {.lex_state = 52, .external_lex_state = 2}, - [914] = {.lex_state = 52, .external_lex_state = 2}, - [915] = {.lex_state = 52, .external_lex_state = 2}, - [916] = {.lex_state = 52, .external_lex_state = 2}, - [917] = {.lex_state = 52, .external_lex_state = 2}, - [918] = {.lex_state = 52, .external_lex_state = 2}, - [919] = {.lex_state = 52, .external_lex_state = 2}, - [920] = {.lex_state = 52, .external_lex_state = 2}, - [921] = {.lex_state = 52, .external_lex_state = 2}, - [922] = {.lex_state = 52, .external_lex_state = 2}, - [923] = {.lex_state = 52, .external_lex_state = 2}, - [924] = {.lex_state = 52, .external_lex_state = 2}, - [925] = {.lex_state = 52, .external_lex_state = 2}, - [926] = {.lex_state = 52, .external_lex_state = 2}, - [927] = {.lex_state = 52, .external_lex_state = 2}, - [928] = {.lex_state = 52, .external_lex_state = 2}, - [929] = {.lex_state = 52, .external_lex_state = 2}, - [930] = {.lex_state = 52, .external_lex_state = 2}, - [931] = {.lex_state = 52, .external_lex_state = 2}, - [932] = {.lex_state = 52, .external_lex_state = 2}, - [933] = {.lex_state = 52, .external_lex_state = 2}, - [934] = {.lex_state = 52, .external_lex_state = 2}, - [935] = {.lex_state = 52, .external_lex_state = 2}, - [936] = {.lex_state = 52, .external_lex_state = 2}, - [937] = {.lex_state = 52, .external_lex_state = 2}, - [938] = {.lex_state = 52, .external_lex_state = 2}, - [939] = {.lex_state = 52, .external_lex_state = 2}, - [940] = {.lex_state = 52, .external_lex_state = 2}, - [941] = {.lex_state = 52, .external_lex_state = 2}, - [942] = {.lex_state = 52, .external_lex_state = 2}, - [943] = {.lex_state = 52, .external_lex_state = 2}, - [944] = {.lex_state = 52, .external_lex_state = 2}, - [945] = {.lex_state = 52, .external_lex_state = 2}, - [946] = {.lex_state = 52, .external_lex_state = 2}, - [947] = {.lex_state = 52, .external_lex_state = 2}, - [948] = {.lex_state = 52, .external_lex_state = 2}, - [949] = {.lex_state = 52, .external_lex_state = 2}, - [950] = {.lex_state = 52, .external_lex_state = 2}, - [951] = {.lex_state = 52, .external_lex_state = 2}, - [952] = {.lex_state = 52, .external_lex_state = 2}, - [953] = {.lex_state = 52, .external_lex_state = 2}, - [954] = {.lex_state = 52, .external_lex_state = 2}, - [955] = {.lex_state = 52, .external_lex_state = 2}, - [956] = {.lex_state = 52, .external_lex_state = 2}, - [957] = {.lex_state = 52, .external_lex_state = 2}, - [958] = {.lex_state = 52, .external_lex_state = 2}, - [959] = {.lex_state = 52, .external_lex_state = 2}, - [960] = {.lex_state = 52, .external_lex_state = 2}, - [961] = {.lex_state = 52, .external_lex_state = 2}, - [962] = {.lex_state = 52, .external_lex_state = 2}, - [963] = {.lex_state = 13, .external_lex_state = 13}, - [964] = {.lex_state = 13, .external_lex_state = 4}, - [965] = {.lex_state = 13, .external_lex_state = 14}, - [966] = {.lex_state = 13, .external_lex_state = 9}, - [967] = {.lex_state = 13, .external_lex_state = 13}, - [968] = {.lex_state = 13, .external_lex_state = 4}, - [969] = {.lex_state = 13, .external_lex_state = 4}, - [970] = {.lex_state = 13, .external_lex_state = 15}, - [971] = {.lex_state = 13, .external_lex_state = 6}, - [972] = {.lex_state = 13, .external_lex_state = 6}, - [973] = {.lex_state = 13, .external_lex_state = 9}, - [974] = {.lex_state = 13, .external_lex_state = 9}, - [975] = {.lex_state = 13, .external_lex_state = 6}, - [976] = {.lex_state = 13, .external_lex_state = 14}, - [977] = {.lex_state = 13, .external_lex_state = 9}, - [978] = {.lex_state = 13, .external_lex_state = 6}, - [979] = {.lex_state = 13, .external_lex_state = 6}, - [980] = {.lex_state = 13, .external_lex_state = 9}, - [981] = {.lex_state = 13, .external_lex_state = 9}, - [982] = {.lex_state = 13, .external_lex_state = 9}, - [983] = {.lex_state = 13, .external_lex_state = 9}, - [984] = {.lex_state = 13, .external_lex_state = 6}, - [985] = {.lex_state = 13, .external_lex_state = 9}, - [986] = {.lex_state = 13, .external_lex_state = 9}, - [987] = {.lex_state = 13, .external_lex_state = 9}, - [988] = {.lex_state = 13, .external_lex_state = 12}, - [989] = {.lex_state = 13, .external_lex_state = 12}, - [990] = {.lex_state = 13, .external_lex_state = 12}, - [991] = {.lex_state = 13, .external_lex_state = 12}, - [992] = {.lex_state = 13, .external_lex_state = 12}, - [993] = {.lex_state = 13, .external_lex_state = 2}, - [994] = {.lex_state = 13, .external_lex_state = 12}, - [995] = {.lex_state = 13, .external_lex_state = 7}, - [996] = {.lex_state = 13, .external_lex_state = 8}, - [997] = {.lex_state = 13, .external_lex_state = 4}, - [998] = {.lex_state = 13, .external_lex_state = 12}, - [999] = {.lex_state = 13, .external_lex_state = 12}, - [1000] = {.lex_state = 13, .external_lex_state = 12}, - [1001] = {.lex_state = 13, .external_lex_state = 8}, - [1002] = {.lex_state = 13, .external_lex_state = 12}, - [1003] = {.lex_state = 13, .external_lex_state = 12}, - [1004] = {.lex_state = 13, .external_lex_state = 8}, - [1005] = {.lex_state = 13, .external_lex_state = 12}, - [1006] = {.lex_state = 13, .external_lex_state = 2}, - [1007] = {.lex_state = 13, .external_lex_state = 12}, - [1008] = {.lex_state = 13, .external_lex_state = 14}, - [1009] = {.lex_state = 14, .external_lex_state = 9}, - [1010] = {.lex_state = 13, .external_lex_state = 2}, - [1011] = {.lex_state = 13, .external_lex_state = 12}, - [1012] = {.lex_state = 13, .external_lex_state = 12}, - [1013] = {.lex_state = 13, .external_lex_state = 12}, - [1014] = {.lex_state = 13, .external_lex_state = 12}, - [1015] = {.lex_state = 13, .external_lex_state = 7}, - [1016] = {.lex_state = 13, .external_lex_state = 12}, - [1017] = {.lex_state = 13, .external_lex_state = 12}, - [1018] = {.lex_state = 13, .external_lex_state = 12}, - [1019] = {.lex_state = 13, .external_lex_state = 12}, - [1020] = {.lex_state = 13, .external_lex_state = 7}, - [1021] = {.lex_state = 13, .external_lex_state = 12}, - [1022] = {.lex_state = 13, .external_lex_state = 7}, + [1] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [7] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [8] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [9] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [10] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [11] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [12] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [13] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [14] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [15] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [16] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [17] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 2}, + [18] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [19] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [20] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [21] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [22] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [23] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [24] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [25] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [26] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [27] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [28] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [29] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [30] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [31] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [32] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [33] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [34] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [35] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [36] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [37] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [38] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [39] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [40] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [41] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [42] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [43] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [44] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [45] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [46] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [47] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [48] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 2}, + [49] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [50] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [51] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [52] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [53] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [54] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [55] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [56] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [57] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [58] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [59] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [60] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [61] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [62] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [63] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [64] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [65] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [66] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [67] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 2}, + [68] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [69] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [70] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 2}, + [71] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [72] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [73] = {.lex_state = 5, .external_lex_state = 5, .reserved_word_set_id = 1}, + [74] = {.lex_state = 5, .external_lex_state = 5, .reserved_word_set_id = 1}, + [75] = {.lex_state = 5, .external_lex_state = 5, .reserved_word_set_id = 1}, + [76] = {.lex_state = 5, .external_lex_state = 5, .reserved_word_set_id = 1}, + [77] = {.lex_state = 5, .external_lex_state = 5, .reserved_word_set_id = 1}, + [78] = {.lex_state = 5, .external_lex_state = 5, .reserved_word_set_id = 1}, + [79] = {.lex_state = 5, .external_lex_state = 5, .reserved_word_set_id = 1}, + [80] = {.lex_state = 5, .external_lex_state = 5, .reserved_word_set_id = 1}, + [81] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [82] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [83] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [84] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [85] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [86] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [87] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [88] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [89] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [90] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [91] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [92] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [93] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [94] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [95] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [96] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [97] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [98] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [99] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [100] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [101] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [102] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [103] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [104] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [105] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [106] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [107] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 3}, + [108] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [109] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [110] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [111] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [112] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [113] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [114] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [115] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [116] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [117] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [118] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [119] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [120] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [121] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [122] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [123] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [124] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [125] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [126] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 3}, + [127] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [128] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [129] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [130] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [131] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [132] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [133] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [134] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, + [135] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 1}, + [136] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 1}, + [137] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 3}, + [138] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 1}, + [139] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 1}, + [140] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 3}, + [141] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 3}, + [142] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 1}, + [143] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 3}, + [144] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 1}, + [145] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 1}, + [146] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 1}, + [147] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [148] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [149] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [150] = {.lex_state = 11, .external_lex_state = 4, .reserved_word_set_id = 4}, + [151] = {.lex_state = 5, .external_lex_state = 4, .reserved_word_set_id = 5}, + [152] = {.lex_state = 12, .external_lex_state = 4, .reserved_word_set_id = 5}, + [153] = {.lex_state = 12, .external_lex_state = 6, .reserved_word_set_id = 6}, + [154] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 4}, + [155] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, + [156] = {.lex_state = 12, .external_lex_state = 4, .reserved_word_set_id = 5}, + [157] = {.lex_state = 12, .external_lex_state = 7, .reserved_word_set_id = 6}, + [158] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 4}, + [159] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 6}, + [160] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [161] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 6}, + [162] = {.lex_state = 12, .external_lex_state = 6, .reserved_word_set_id = 4}, + [163] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 7}, + [164] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 6}, + [165] = {.lex_state = 12, .external_lex_state = 7, .reserved_word_set_id = 4}, + [166] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 6}, + [167] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 6}, + [168] = {.lex_state = 12, .external_lex_state = 2, .reserved_word_set_id = 7}, + [169] = {.lex_state = 12, .external_lex_state = 6, .reserved_word_set_id = 6}, + [170] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 6}, + [171] = {.lex_state = 11, .external_lex_state = 4, .reserved_word_set_id = 1}, + [172] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 4}, + [173] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [174] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [175] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [176] = {.lex_state = 12, .external_lex_state = 8, .reserved_word_set_id = 6}, + [177] = {.lex_state = 12, .external_lex_state = 2, .reserved_word_set_id = 7}, + [178] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 6}, + [179] = {.lex_state = 12, .external_lex_state = 8, .reserved_word_set_id = 4}, + [180] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 6}, + [181] = {.lex_state = 11, .external_lex_state = 2, .reserved_word_set_id = 1}, + [182] = {.lex_state = 11, .external_lex_state = 2, .reserved_word_set_id = 1}, + [183] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [184] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [185] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 8}, + [186] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [187] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [188] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [189] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [190] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [191] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 8}, + [192] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [193] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [194] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [195] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 8}, + [196] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [197] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [198] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [199] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 8}, + [200] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [201] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [202] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [203] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 8}, + [204] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 8}, + [205] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [206] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [207] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 8}, + [208] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [209] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [210] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 8}, + [211] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [212] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [213] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [214] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [215] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [216] = {.lex_state = 6, .external_lex_state = 4, .reserved_word_set_id = 1}, + [217] = {.lex_state = 6, .external_lex_state = 4, .reserved_word_set_id = 1}, + [218] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [219] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [220] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [221] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [222] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [223] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [224] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [225] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [226] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [227] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [228] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [229] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, + [230] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, + [231] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [232] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [233] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [234] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, + [235] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [236] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [237] = {.lex_state = 54, .external_lex_state = 6, .reserved_word_set_id = 10}, + [238] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [239] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [240] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [241] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [242] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [243] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, + [244] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [245] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [246] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [247] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [248] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, + [249] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [250] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [251] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [252] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, + [253] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [254] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [255] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, + [256] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [257] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, + [258] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [259] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, + [260] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [261] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [262] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [263] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [264] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [265] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [266] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 8}, + [267] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [268] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 8}, + [269] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 8}, + [270] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 8}, + [271] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 8}, + [272] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [273] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [274] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [275] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [276] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [277] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [278] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [279] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 8}, + [280] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 8}, + [281] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [282] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [283] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [284] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [285] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [286] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 8}, + [287] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 8}, + [288] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [289] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [290] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [291] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [292] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [293] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [294] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [295] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [296] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [297] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 8}, + [298] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 8}, + [299] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [300] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [301] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [302] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [303] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [304] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [305] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [306] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 8}, + [307] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 8}, + [308] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [309] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [310] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [311] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [312] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 8}, + [313] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 8}, + [314] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [315] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [316] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [317] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [318] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 8}, + [319] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [320] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [321] = {.lex_state = 54, .external_lex_state = 6, .reserved_word_set_id = 1}, + [322] = {.lex_state = 12, .external_lex_state = 6, .reserved_word_set_id = 1}, + [323] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [324] = {.lex_state = 54, .external_lex_state = 6, .reserved_word_set_id = 1}, + [325] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [326] = {.lex_state = 54, .external_lex_state = 6, .reserved_word_set_id = 9}, + [327] = {.lex_state = 54, .external_lex_state = 6, .reserved_word_set_id = 1}, + [328] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [329] = {.lex_state = 54, .external_lex_state = 6, .reserved_word_set_id = 1}, + [330] = {.lex_state = 54, .external_lex_state = 6, .reserved_word_set_id = 1}, + [331] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [332] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [333] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [334] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [335] = {.lex_state = 54, .external_lex_state = 6, .reserved_word_set_id = 9}, + [336] = {.lex_state = 54, .external_lex_state = 6, .reserved_word_set_id = 1}, + [337] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [338] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [339] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [340] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [341] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [342] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [343] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, + [344] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [345] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, + [346] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 1}, + [347] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, + [348] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, + [349] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [350] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, + [351] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, + [352] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, + [353] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, + [354] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, + [355] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, + [356] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, + [357] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, + [358] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, + [359] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, + [360] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [361] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 1}, + [362] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [363] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, + [364] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, + [365] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, + [366] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, + [367] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, + [368] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, + [369] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, + [370] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, + [371] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [372] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 10}, + [373] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, + [374] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, + [375] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, + [376] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, + [377] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, + [378] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, + [379] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, + [380] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, + [381] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, + [382] = {.lex_state = 12, .external_lex_state = 7, .reserved_word_set_id = 1}, + [383] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, + [384] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, + [385] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, + [386] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, + [387] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [388] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [389] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [390] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, + [391] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, + [392] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, + [393] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, + [394] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, + [395] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [396] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, + [397] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [398] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, + [399] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, + [400] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 10}, + [401] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 1}, + [402] = {.lex_state = 12, .external_lex_state = 7, .reserved_word_set_id = 1}, + [403] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 1}, + [404] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [405] = {.lex_state = 12, .external_lex_state = 2, .reserved_word_set_id = 1}, + [406] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [407] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 1}, + [408] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [409] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 1}, + [410] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [411] = {.lex_state = 12, .external_lex_state = 2, .reserved_word_set_id = 1}, + [412] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [413] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [414] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [415] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [416] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [417] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [418] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [419] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [420] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [421] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [422] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [423] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [424] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [425] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 1}, + [426] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [427] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [428] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [429] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [430] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [431] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [432] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [433] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [434] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [435] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [436] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [437] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [438] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 1}, + [439] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 1}, + [440] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [441] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [442] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [443] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [444] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [445] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [446] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [447] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [448] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [449] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [450] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [451] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [452] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [453] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [454] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [455] = {.lex_state = 7, .external_lex_state = 4, .reserved_word_set_id = 1}, + [456] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [457] = {.lex_state = 7, .external_lex_state = 4, .reserved_word_set_id = 1}, + [458] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [459] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [460] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [461] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [462] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [463] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [464] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [465] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [466] = {.lex_state = 8, .external_lex_state = 9}, + [467] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [468] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [469] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [470] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [471] = {.lex_state = 8, .external_lex_state = 9}, + [472] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [473] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [474] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [475] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [476] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [477] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [478] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [479] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [480] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [481] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [482] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [483] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [484] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [485] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [486] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [487] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [488] = {.lex_state = 54, .external_lex_state = 10, .reserved_word_set_id = 1}, + [489] = {.lex_state = 55, .external_lex_state = 2, .reserved_word_set_id = 1}, + [490] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [491] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [492] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [493] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [494] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [495] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [496] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [497] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [498] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [499] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [500] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [501] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [502] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [503] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [504] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [505] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [506] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [507] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [508] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [509] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [510] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [511] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [512] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [513] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [514] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [515] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [516] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [517] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [518] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [519] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [520] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [521] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [522] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [523] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [524] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [525] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [526] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [527] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [528] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [529] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [530] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [531] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [532] = {.lex_state = 54, .external_lex_state = 11, .reserved_word_set_id = 1}, + [533] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [534] = {.lex_state = 55, .external_lex_state = 3, .reserved_word_set_id = 1}, + [535] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [536] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [537] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [538] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [539] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [540] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [541] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [542] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [543] = {.lex_state = 54, .external_lex_state = 10, .reserved_word_set_id = 1}, + [544] = {.lex_state = 55, .external_lex_state = 2, .reserved_word_set_id = 1}, + [545] = {.lex_state = 55, .external_lex_state = 3, .reserved_word_set_id = 1}, + [546] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [547] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [548] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [549] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [550] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [551] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [552] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [553] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [554] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [555] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [556] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [557] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [558] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [559] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [560] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [561] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [562] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [563] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [564] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [565] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [566] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [567] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [568] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [569] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [570] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [571] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [572] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [573] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [574] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [575] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [576] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [577] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [578] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [579] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [580] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [581] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [582] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [583] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [584] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [585] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [586] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [587] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [588] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [589] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [590] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [591] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [592] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [593] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [594] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [595] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [596] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [597] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, + [598] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [599] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [600] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [601] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [602] = {.lex_state = 54, .external_lex_state = 11, .reserved_word_set_id = 1}, + [603] = {.lex_state = 8, .external_lex_state = 9}, + [604] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [605] = {.lex_state = 8, .external_lex_state = 9}, + [606] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [607] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [608] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [609] = {.lex_state = 54, .external_lex_state = 10, .reserved_word_set_id = 1}, + [610] = {.lex_state = 55, .external_lex_state = 2, .reserved_word_set_id = 1}, + [611] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [612] = {.lex_state = 54, .external_lex_state = 11, .reserved_word_set_id = 1}, + [613] = {.lex_state = 55, .external_lex_state = 3, .reserved_word_set_id = 1}, + [614] = {.lex_state = 8, .external_lex_state = 9}, + [615] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [616] = {.lex_state = 8, .external_lex_state = 9}, + [617] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [618] = {.lex_state = 8, .external_lex_state = 9}, + [619] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [620] = {.lex_state = 8, .external_lex_state = 9}, + [621] = {.lex_state = 13, .external_lex_state = 9}, + [622] = {.lex_state = 54, .external_lex_state = 11, .reserved_word_set_id = 11}, + [623] = {.lex_state = 13, .external_lex_state = 9}, + [624] = {.lex_state = 13, .external_lex_state = 9}, + [625] = {.lex_state = 13, .external_lex_state = 9}, + [626] = {.lex_state = 54, .external_lex_state = 10, .reserved_word_set_id = 11}, + [627] = {.lex_state = 13, .external_lex_state = 9}, + [628] = {.lex_state = 54, .external_lex_state = 10, .reserved_word_set_id = 11}, + [629] = {.lex_state = 54, .external_lex_state = 10, .reserved_word_set_id = 11}, + [630] = {.lex_state = 13, .external_lex_state = 9}, + [631] = {.lex_state = 13, .external_lex_state = 9}, + [632] = {.lex_state = 54, .external_lex_state = 11, .reserved_word_set_id = 11}, + [633] = {.lex_state = 54, .external_lex_state = 11, .reserved_word_set_id = 11}, + [634] = {.lex_state = 13, .external_lex_state = 9}, + [635] = {.lex_state = 54, .external_lex_state = 11, .reserved_word_set_id = 11}, + [636] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [637] = {.lex_state = 54, .external_lex_state = 10, .reserved_word_set_id = 11}, + [638] = {.lex_state = 13, .external_lex_state = 9}, + [639] = {.lex_state = 54, .external_lex_state = 11, .reserved_word_set_id = 11}, + [640] = {.lex_state = 54, .external_lex_state = 10, .reserved_word_set_id = 11}, + [641] = {.lex_state = 13, .external_lex_state = 9}, + [642] = {.lex_state = 13, .external_lex_state = 9}, + [643] = {.lex_state = 13, .external_lex_state = 9}, + [644] = {.lex_state = 13, .external_lex_state = 9}, + [645] = {.lex_state = 13, .external_lex_state = 9}, + [646] = {.lex_state = 13, .external_lex_state = 9}, + [647] = {.lex_state = 13, .external_lex_state = 9}, + [648] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [649] = {.lex_state = 13, .external_lex_state = 9}, + [650] = {.lex_state = 13, .external_lex_state = 9}, + [651] = {.lex_state = 13, .external_lex_state = 9}, + [652] = {.lex_state = 55, .external_lex_state = 2, .reserved_word_set_id = 1}, + [653] = {.lex_state = 55, .external_lex_state = 3, .reserved_word_set_id = 1}, + [654] = {.lex_state = 54, .external_lex_state = 11, .reserved_word_set_id = 1}, + [655] = {.lex_state = 54, .external_lex_state = 6, .reserved_word_set_id = 1}, + [656] = {.lex_state = 55, .external_lex_state = 3, .reserved_word_set_id = 1}, + [657] = {.lex_state = 55, .external_lex_state = 3, .reserved_word_set_id = 1}, + [658] = {.lex_state = 54, .external_lex_state = 10, .reserved_word_set_id = 1}, + [659] = {.lex_state = 54, .external_lex_state = 10, .reserved_word_set_id = 1}, + [660] = {.lex_state = 55, .external_lex_state = 2, .reserved_word_set_id = 1}, + [661] = {.lex_state = 55, .external_lex_state = 2, .reserved_word_set_id = 1}, + [662] = {.lex_state = 55, .external_lex_state = 3, .reserved_word_set_id = 1}, + [663] = {.lex_state = 54, .external_lex_state = 11, .reserved_word_set_id = 1}, + [664] = {.lex_state = 55, .external_lex_state = 3, .reserved_word_set_id = 1}, + [665] = {.lex_state = 54, .external_lex_state = 10, .reserved_word_set_id = 1}, + [666] = {.lex_state = 54, .external_lex_state = 11, .reserved_word_set_id = 1}, + [667] = {.lex_state = 55, .external_lex_state = 2, .reserved_word_set_id = 1}, + [668] = {.lex_state = 54, .external_lex_state = 10, .reserved_word_set_id = 1}, + [669] = {.lex_state = 54, .external_lex_state = 10, .reserved_word_set_id = 1}, + [670] = {.lex_state = 55, .external_lex_state = 2, .reserved_word_set_id = 1}, + [671] = {.lex_state = 54, .external_lex_state = 10, .reserved_word_set_id = 1}, + [672] = {.lex_state = 55, .external_lex_state = 2, .reserved_word_set_id = 1}, + [673] = {.lex_state = 55, .external_lex_state = 2, .reserved_word_set_id = 1}, + [674] = {.lex_state = 54, .external_lex_state = 11, .reserved_word_set_id = 1}, + [675] = {.lex_state = 55, .external_lex_state = 2, .reserved_word_set_id = 1}, + [676] = {.lex_state = 54, .external_lex_state = 11, .reserved_word_set_id = 1}, + [677] = {.lex_state = 54, .external_lex_state = 11, .reserved_word_set_id = 1}, + [678] = {.lex_state = 55, .external_lex_state = 2, .reserved_word_set_id = 1}, + [679] = {.lex_state = 55, .external_lex_state = 3, .reserved_word_set_id = 1}, + [680] = {.lex_state = 55, .external_lex_state = 3, .reserved_word_set_id = 1}, + [681] = {.lex_state = 55, .external_lex_state = 3, .reserved_word_set_id = 1}, + [682] = {.lex_state = 54, .external_lex_state = 6, .reserved_word_set_id = 1}, + [683] = {.lex_state = 55, .external_lex_state = 3, .reserved_word_set_id = 1}, + [684] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [685] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [686] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [687] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [688] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [689] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [690] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [691] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [692] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [693] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [694] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [695] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [696] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [697] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [698] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [699] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [700] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [701] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [702] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [703] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [704] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [705] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [706] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 12}, + [707] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [708] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [709] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 12}, + [710] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 12}, + [711] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 12}, + [712] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [713] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [714] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [715] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [716] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [717] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [718] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [719] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [720] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [721] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [722] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [723] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [724] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [725] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [726] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [727] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [728] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [729] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [730] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [731] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [732] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [733] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [734] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [735] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [736] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [737] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [738] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [739] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [740] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [741] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [742] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [743] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [744] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [745] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [746] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [747] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [748] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [749] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [750] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [751] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [752] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [753] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [754] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [755] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [756] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [757] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [758] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [759] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [760] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [761] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [762] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [763] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [764] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [765] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [766] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [767] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [768] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [769] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [770] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [771] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [772] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [773] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [774] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [775] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [776] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [777] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [778] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [779] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [780] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [781] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [782] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [783] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [784] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [785] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [786] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [787] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [788] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [789] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [790] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [791] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [792] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [793] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [794] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [795] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [796] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [797] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [798] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [799] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [800] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [801] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [802] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [803] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [804] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [805] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [806] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [807] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [808] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [809] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [810] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [811] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [812] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [813] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [814] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [815] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [816] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [817] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [818] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [819] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [820] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [821] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [822] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [823] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [824] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [825] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [826] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [827] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [828] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [829] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [830] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [831] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [832] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [833] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [834] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [835] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [836] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [837] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [838] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [839] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [840] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [841] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [842] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [843] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [844] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 13}, + [845] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 13}, + [846] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 13}, + [847] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 13}, + [848] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 13}, + [849] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 13}, + [850] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 13}, + [851] = {.lex_state = 14, .external_lex_state = 9}, + [852] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 13}, + [853] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [854] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [855] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [856] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [857] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [858] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [859] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [860] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [861] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [862] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [863] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [864] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [865] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [866] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [867] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [868] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [869] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [870] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [871] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [872] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [873] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [874] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [875] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [876] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [877] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [878] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [879] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [880] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [881] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [882] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [883] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [884] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [885] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [886] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [887] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [888] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [889] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [890] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [891] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [892] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [893] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [894] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [895] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [896] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [897] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [898] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [899] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [900] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [901] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [902] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [903] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [904] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [905] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [906] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [907] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [908] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [909] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [910] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [911] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [912] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [913] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [914] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [915] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [916] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [917] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [918] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [919] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [920] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [921] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [922] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [923] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [924] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [925] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [926] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [927] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [928] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [929] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [930] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [931] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [932] = {.lex_state = 14, .external_lex_state = 12}, + [933] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [934] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [935] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [936] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [937] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [938] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [939] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [940] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [941] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [942] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [943] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [944] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [945] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, + [946] = {.lex_state = 14, .external_lex_state = 12}, + [947] = {.lex_state = 14, .external_lex_state = 13}, + [948] = {.lex_state = 14, .external_lex_state = 4}, + [949] = {.lex_state = 14, .external_lex_state = 4}, + [950] = {.lex_state = 14, .external_lex_state = 9}, + [951] = {.lex_state = 14, .external_lex_state = 14}, + [952] = {.lex_state = 14, .external_lex_state = 13}, + [953] = {.lex_state = 14, .external_lex_state = 15}, + [954] = {.lex_state = 14, .external_lex_state = 4}, + [955] = {.lex_state = 14, .external_lex_state = 9}, + [956] = {.lex_state = 14, .external_lex_state = 6}, + [957] = {.lex_state = 14, .external_lex_state = 6}, + [958] = {.lex_state = 14, .external_lex_state = 6}, + [959] = {.lex_state = 14, .external_lex_state = 6}, + [960] = {.lex_state = 14, .external_lex_state = 14}, + [961] = {.lex_state = 14, .external_lex_state = 6}, + [962] = {.lex_state = 14, .external_lex_state = 9}, + [963] = {.lex_state = 14, .external_lex_state = 6}, + [964] = {.lex_state = 14, .external_lex_state = 9}, + [965] = {.lex_state = 14, .external_lex_state = 9}, + [966] = {.lex_state = 14, .external_lex_state = 9}, + [967] = {.lex_state = 14, .external_lex_state = 9}, + [968] = {.lex_state = 14, .external_lex_state = 9}, + [969] = {.lex_state = 14, .external_lex_state = 9}, + [970] = {.lex_state = 14, .external_lex_state = 9}, + [971] = {.lex_state = 14, .external_lex_state = 9}, + [972] = {.lex_state = 14, .external_lex_state = 12}, + [973] = {.lex_state = 14, .external_lex_state = 2}, + [974] = {.lex_state = 14, .external_lex_state = 4}, + [975] = {.lex_state = 14, .external_lex_state = 2}, + [976] = {.lex_state = 15, .external_lex_state = 9}, + [977] = {.lex_state = 14, .external_lex_state = 12}, + [978] = {.lex_state = 14, .external_lex_state = 12}, + [979] = {.lex_state = 14, .external_lex_state = 14}, + [980] = {.lex_state = 14, .external_lex_state = 8}, + [981] = {.lex_state = 14, .external_lex_state = 12}, + [982] = {.lex_state = 14, .external_lex_state = 12}, + [983] = {.lex_state = 14, .external_lex_state = 12}, + [984] = {.lex_state = 14, .external_lex_state = 12}, + [985] = {.lex_state = 14, .external_lex_state = 12}, + [986] = {.lex_state = 14, .external_lex_state = 12}, + [987] = {.lex_state = 14, .external_lex_state = 12}, + [988] = {.lex_state = 14, .external_lex_state = 12}, + [989] = {.lex_state = 14, .external_lex_state = 12}, + [990] = {.lex_state = 14, .external_lex_state = 12}, + [991] = {.lex_state = 14, .external_lex_state = 12}, + [992] = {.lex_state = 14, .external_lex_state = 7}, + [993] = {.lex_state = 14, .external_lex_state = 12}, + [994] = {.lex_state = 14, .external_lex_state = 12}, + [995] = {.lex_state = 14, .external_lex_state = 12}, + [996] = {.lex_state = 14, .external_lex_state = 7}, + [997] = {.lex_state = 14, .external_lex_state = 12}, + [998] = {.lex_state = 14, .external_lex_state = 12}, + [999] = {.lex_state = 14, .external_lex_state = 12}, + [1000] = {.lex_state = 14, .external_lex_state = 12}, + [1001] = {.lex_state = 14, .external_lex_state = 12}, + [1002] = {.lex_state = 15, .external_lex_state = 9}, + [1003] = {.lex_state = 14, .external_lex_state = 12}, + [1004] = {.lex_state = 14, .external_lex_state = 12}, + [1005] = {.lex_state = 14, .external_lex_state = 13}, + [1006] = {.lex_state = 14, .external_lex_state = 7}, + [1007] = {.lex_state = 14, .external_lex_state = 7}, + [1008] = {.lex_state = 14, .external_lex_state = 12}, + [1009] = {.lex_state = 14, .external_lex_state = 12}, + [1010] = {.lex_state = 14, .external_lex_state = 2}, + [1011] = {.lex_state = 14, .external_lex_state = 4}, + [1012] = {.lex_state = 14, .external_lex_state = 7}, + [1013] = {.lex_state = 14, .external_lex_state = 8}, + [1014] = {.lex_state = 14, .external_lex_state = 12}, + [1015] = {.lex_state = 14, .external_lex_state = 12}, + [1016] = {.lex_state = 14, .external_lex_state = 8}, + [1017] = {.lex_state = 15, .external_lex_state = 9}, + [1018] = {.lex_state = 14, .external_lex_state = 7}, + [1019] = {.lex_state = 14, .external_lex_state = 13}, + [1020] = {.lex_state = 14, .external_lex_state = 6}, + [1021] = {.lex_state = 14, .external_lex_state = 13}, + [1022] = {.lex_state = 14, .external_lex_state = 13}, [1023] = {.lex_state = 14, .external_lex_state = 9}, - [1024] = {.lex_state = 13, .external_lex_state = 12}, - [1025] = {.lex_state = 13, .external_lex_state = 12}, - [1026] = {.lex_state = 13, .external_lex_state = 12}, - [1027] = {.lex_state = 13, .external_lex_state = 4}, - [1028] = {.lex_state = 13, .external_lex_state = 7}, - [1029] = {.lex_state = 13, .external_lex_state = 7}, - [1030] = {.lex_state = 13, .external_lex_state = 13}, - [1031] = {.lex_state = 13, .external_lex_state = 12}, - [1032] = {.lex_state = 13, .external_lex_state = 12}, - [1033] = {.lex_state = 13, .external_lex_state = 12}, - [1034] = {.lex_state = 14, .external_lex_state = 9}, - [1035] = {.lex_state = 13, .external_lex_state = 9}, - [1036] = {.lex_state = 13, .external_lex_state = 13}, - [1037] = {.lex_state = 13, .external_lex_state = 9}, - [1038] = {.lex_state = 13, .external_lex_state = 9}, - [1039] = {.lex_state = 13, .external_lex_state = 9}, - [1040] = {.lex_state = 13, .external_lex_state = 9}, - [1041] = {.lex_state = 13, .external_lex_state = 9}, - [1042] = {.lex_state = 13, .external_lex_state = 9}, - [1043] = {.lex_state = 13, .external_lex_state = 9}, - [1044] = {.lex_state = 14, .external_lex_state = 12}, - [1045] = {.lex_state = 13, .external_lex_state = 9}, - [1046] = {.lex_state = 13, .external_lex_state = 9}, - [1047] = {.lex_state = 14, .external_lex_state = 12}, - [1048] = {.lex_state = 14, .external_lex_state = 12}, - [1049] = {.lex_state = 14, .external_lex_state = 12}, - [1050] = {.lex_state = 13, .external_lex_state = 15}, - [1051] = {.lex_state = 13, .external_lex_state = 15}, - [1052] = {.lex_state = 14, .external_lex_state = 12}, - [1053] = {.lex_state = 14, .external_lex_state = 12}, - [1054] = {.lex_state = 14, .external_lex_state = 12}, - [1055] = {.lex_state = 13, .external_lex_state = 9}, - [1056] = {.lex_state = 13, .external_lex_state = 15}, - [1057] = {.lex_state = 13, .external_lex_state = 15}, - [1058] = {.lex_state = 13, .external_lex_state = 15}, - [1059] = {.lex_state = 13, .external_lex_state = 15}, - [1060] = {.lex_state = 13, .external_lex_state = 15}, - [1061] = {.lex_state = 13, .external_lex_state = 15}, - [1062] = {.lex_state = 13, .external_lex_state = 15}, - [1063] = {.lex_state = 13, .external_lex_state = 15}, - [1064] = {.lex_state = 13, .external_lex_state = 9}, - [1065] = {.lex_state = 13, .external_lex_state = 9}, - [1066] = {.lex_state = 13, .external_lex_state = 9}, - [1067] = {.lex_state = 13, .external_lex_state = 9}, - [1068] = {.lex_state = 13, .external_lex_state = 9}, - [1069] = {.lex_state = 13, .external_lex_state = 9}, - [1070] = {.lex_state = 14, .external_lex_state = 12}, - [1071] = {.lex_state = 13, .external_lex_state = 9}, - [1072] = {.lex_state = 13, .external_lex_state = 9}, - [1073] = {.lex_state = 14, .external_lex_state = 13}, - [1074] = {.lex_state = 13, .external_lex_state = 9}, - [1075] = {.lex_state = 13, .external_lex_state = 14}, - [1076] = {.lex_state = 13, .external_lex_state = 14}, - [1077] = {.lex_state = 13, .external_lex_state = 9}, - [1078] = {.lex_state = 13, .external_lex_state = 9}, - [1079] = {.lex_state = 13, .external_lex_state = 9}, - [1080] = {.lex_state = 13, .external_lex_state = 14}, - [1081] = {.lex_state = 13, .external_lex_state = 14}, - [1082] = {.lex_state = 13, .external_lex_state = 14}, - [1083] = {.lex_state = 13, .external_lex_state = 14}, - [1084] = {.lex_state = 13, .external_lex_state = 14}, - [1085] = {.lex_state = 13, .external_lex_state = 14}, - [1086] = {.lex_state = 13, .external_lex_state = 14}, - [1087] = {.lex_state = 13, .external_lex_state = 14}, - [1088] = {.lex_state = 13, .external_lex_state = 6}, - [1089] = {.lex_state = 13, .external_lex_state = 9}, - [1090] = {.lex_state = 13, .external_lex_state = 6}, - [1091] = {.lex_state = 13, .external_lex_state = 9}, - [1092] = {.lex_state = 13, .external_lex_state = 9}, - [1093] = {.lex_state = 13, .external_lex_state = 9}, - [1094] = {.lex_state = 13, .external_lex_state = 6}, - [1095] = {.lex_state = 13, .external_lex_state = 13}, - [1096] = {.lex_state = 13, .external_lex_state = 13}, - [1097] = {.lex_state = 13, .external_lex_state = 6}, - [1098] = {.lex_state = 13, .external_lex_state = 13}, - [1099] = {.lex_state = 13, .external_lex_state = 13}, - [1100] = {.lex_state = 13, .external_lex_state = 13}, - [1101] = {.lex_state = 13, .external_lex_state = 13}, - [1102] = {.lex_state = 13, .external_lex_state = 13}, - [1103] = {.lex_state = 13, .external_lex_state = 13}, - [1104] = {.lex_state = 13, .external_lex_state = 13}, - [1105] = {.lex_state = 13, .external_lex_state = 13}, - [1106] = {.lex_state = 13, .external_lex_state = 9}, - [1107] = {.lex_state = 13, .external_lex_state = 8}, - [1108] = {.lex_state = 14, .external_lex_state = 12}, - [1109] = {.lex_state = 14, .external_lex_state = 12}, - [1110] = {.lex_state = 14, .external_lex_state = 12}, - [1111] = {.lex_state = 13, .external_lex_state = 8}, - [1112] = {.lex_state = 13, .external_lex_state = 8}, - [1113] = {.lex_state = 13, .external_lex_state = 9}, - [1114] = {.lex_state = 14, .external_lex_state = 13}, - [1115] = {.lex_state = 14, .external_lex_state = 13}, - [1116] = {.lex_state = 14, .external_lex_state = 13}, - [1117] = {.lex_state = 13, .external_lex_state = 9}, - [1118] = {.lex_state = 13, .external_lex_state = 9}, - [1119] = {.lex_state = 13, .external_lex_state = 9}, - [1120] = {.lex_state = 14, .external_lex_state = 9}, - [1121] = {.lex_state = 13, .external_lex_state = 13}, - [1122] = {.lex_state = 13, .external_lex_state = 13}, - [1123] = {.lex_state = 13, .external_lex_state = 9}, - [1124] = {.lex_state = 13, .external_lex_state = 9}, - [1125] = {.lex_state = 13, .external_lex_state = 9}, - [1126] = {.lex_state = 13, .external_lex_state = 9}, - [1127] = {.lex_state = 13, .external_lex_state = 13}, - [1128] = {.lex_state = 13, .external_lex_state = 13}, - [1129] = {.lex_state = 13, .external_lex_state = 13}, - [1130] = {.lex_state = 13, .external_lex_state = 13}, - [1131] = {.lex_state = 13, .external_lex_state = 13}, - [1132] = {.lex_state = 13, .external_lex_state = 13}, - [1133] = {.lex_state = 13, .external_lex_state = 13}, + [1024] = {.lex_state = 14, .external_lex_state = 9}, + [1025] = {.lex_state = 14, .external_lex_state = 9}, + [1026] = {.lex_state = 14, .external_lex_state = 9}, + [1027] = {.lex_state = 14, .external_lex_state = 9}, + [1028] = {.lex_state = 14, .external_lex_state = 9}, + [1029] = {.lex_state = 14, .external_lex_state = 6}, + [1030] = {.lex_state = 14, .external_lex_state = 13}, + [1031] = {.lex_state = 14, .external_lex_state = 13}, + [1032] = {.lex_state = 14, .external_lex_state = 13}, + [1033] = {.lex_state = 14, .external_lex_state = 9}, + [1034] = {.lex_state = 14, .external_lex_state = 13}, + [1035] = {.lex_state = 14, .external_lex_state = 13}, + [1036] = {.lex_state = 14, .external_lex_state = 13}, + [1037] = {.lex_state = 14, .external_lex_state = 13}, + [1038] = {.lex_state = 14, .external_lex_state = 8}, + [1039] = {.lex_state = 14, .external_lex_state = 9}, + [1040] = {.lex_state = 15, .external_lex_state = 12}, + [1041] = {.lex_state = 15, .external_lex_state = 12}, + [1042] = {.lex_state = 15, .external_lex_state = 12}, + [1043] = {.lex_state = 14, .external_lex_state = 9}, + [1044] = {.lex_state = 15, .external_lex_state = 12}, + [1045] = {.lex_state = 14, .external_lex_state = 9}, + [1046] = {.lex_state = 14, .external_lex_state = 9}, + [1047] = {.lex_state = 14, .external_lex_state = 8}, + [1048] = {.lex_state = 14, .external_lex_state = 9}, + [1049] = {.lex_state = 14, .external_lex_state = 8}, + [1050] = {.lex_state = 14, .external_lex_state = 9}, + [1051] = {.lex_state = 14, .external_lex_state = 9}, + [1052] = {.lex_state = 15, .external_lex_state = 13}, + [1053] = {.lex_state = 14, .external_lex_state = 9}, + [1054] = {.lex_state = 14, .external_lex_state = 9}, + [1055] = {.lex_state = 14, .external_lex_state = 14}, + [1056] = {.lex_state = 15, .external_lex_state = 9}, + [1057] = {.lex_state = 14, .external_lex_state = 14}, + [1058] = {.lex_state = 14, .external_lex_state = 9}, + [1059] = {.lex_state = 14, .external_lex_state = 9}, + [1060] = {.lex_state = 14, .external_lex_state = 9}, + [1061] = {.lex_state = 14, .external_lex_state = 9}, + [1062] = {.lex_state = 14, .external_lex_state = 13}, + [1063] = {.lex_state = 14, .external_lex_state = 9}, + [1064] = {.lex_state = 14, .external_lex_state = 14}, + [1065] = {.lex_state = 14, .external_lex_state = 14}, + [1066] = {.lex_state = 14, .external_lex_state = 14}, + [1067] = {.lex_state = 14, .external_lex_state = 14}, + [1068] = {.lex_state = 14, .external_lex_state = 14}, + [1069] = {.lex_state = 14, .external_lex_state = 14}, + [1070] = {.lex_state = 14, .external_lex_state = 14}, + [1071] = {.lex_state = 14, .external_lex_state = 13}, + [1072] = {.lex_state = 14, .external_lex_state = 9}, + [1073] = {.lex_state = 14, .external_lex_state = 9}, + [1074] = {.lex_state = 15, .external_lex_state = 13}, + [1075] = {.lex_state = 14, .external_lex_state = 9}, + [1076] = {.lex_state = 14, .external_lex_state = 9}, + [1077] = {.lex_state = 14, .external_lex_state = 9}, + [1078] = {.lex_state = 14, .external_lex_state = 9}, + [1079] = {.lex_state = 15, .external_lex_state = 13}, + [1080] = {.lex_state = 15, .external_lex_state = 13}, + [1081] = {.lex_state = 15, .external_lex_state = 12}, + [1082] = {.lex_state = 15, .external_lex_state = 12}, + [1083] = {.lex_state = 14, .external_lex_state = 9}, + [1084] = {.lex_state = 14, .external_lex_state = 9}, + [1085] = {.lex_state = 15, .external_lex_state = 12}, + [1086] = {.lex_state = 15, .external_lex_state = 12}, + [1087] = {.lex_state = 15, .external_lex_state = 12}, + [1088] = {.lex_state = 14, .external_lex_state = 15}, + [1089] = {.lex_state = 14, .external_lex_state = 9}, + [1090] = {.lex_state = 14, .external_lex_state = 15}, + [1091] = {.lex_state = 14, .external_lex_state = 9}, + [1092] = {.lex_state = 14, .external_lex_state = 9}, + [1093] = {.lex_state = 14, .external_lex_state = 9}, + [1094] = {.lex_state = 14, .external_lex_state = 9}, + [1095] = {.lex_state = 14, .external_lex_state = 13}, + [1096] = {.lex_state = 14, .external_lex_state = 6}, + [1097] = {.lex_state = 15, .external_lex_state = 12}, + [1098] = {.lex_state = 15, .external_lex_state = 12}, + [1099] = {.lex_state = 15, .external_lex_state = 12}, + [1100] = {.lex_state = 14, .external_lex_state = 13}, + [1101] = {.lex_state = 14, .external_lex_state = 13}, + [1102] = {.lex_state = 14, .external_lex_state = 9}, + [1103] = {.lex_state = 14, .external_lex_state = 13}, + [1104] = {.lex_state = 14, .external_lex_state = 6}, + [1105] = {.lex_state = 14, .external_lex_state = 13}, + [1106] = {.lex_state = 14, .external_lex_state = 13}, + [1107] = {.lex_state = 14, .external_lex_state = 13}, + [1108] = {.lex_state = 14, .external_lex_state = 9}, + [1109] = {.lex_state = 14, .external_lex_state = 15}, + [1110] = {.lex_state = 14, .external_lex_state = 15}, + [1111] = {.lex_state = 14, .external_lex_state = 15}, + [1112] = {.lex_state = 14, .external_lex_state = 15}, + [1113] = {.lex_state = 14, .external_lex_state = 15}, + [1114] = {.lex_state = 14, .external_lex_state = 15}, + [1115] = {.lex_state = 14, .external_lex_state = 15}, + [1116] = {.lex_state = 14, .external_lex_state = 15}, + [1117] = {.lex_state = 14, .external_lex_state = 13}, + [1118] = {.lex_state = 14, .external_lex_state = 14}, + [1119] = {.lex_state = 14, .external_lex_state = 12}, + [1120] = {.lex_state = 15, .external_lex_state = 15}, + [1121] = {.lex_state = 15, .external_lex_state = 15}, + [1122] = {.lex_state = 14, .external_lex_state = 7}, + [1123] = {.lex_state = 14, .external_lex_state = 12}, + [1124] = {.lex_state = 14, .external_lex_state = 12}, + [1125] = {.lex_state = 14, .external_lex_state = 14}, + [1126] = {.lex_state = 14, .external_lex_state = 14}, + [1127] = {.lex_state = 14, .external_lex_state = 14}, + [1128] = {.lex_state = 14, .external_lex_state = 14}, + [1129] = {.lex_state = 14, .external_lex_state = 14}, + [1130] = {.lex_state = 14, .external_lex_state = 14}, + [1131] = {.lex_state = 14, .external_lex_state = 14}, + [1132] = {.lex_state = 14, .external_lex_state = 14}, + [1133] = {.lex_state = 15, .external_lex_state = 15}, [1134] = {.lex_state = 14, .external_lex_state = 12}, - [1135] = {.lex_state = 13, .external_lex_state = 12}, - [1136] = {.lex_state = 13, .external_lex_state = 12}, - [1137] = {.lex_state = 14, .external_lex_state = 14}, - [1138] = {.lex_state = 13, .external_lex_state = 12}, - [1139] = {.lex_state = 13, .external_lex_state = 12}, - [1140] = {.lex_state = 13, .external_lex_state = 12}, - [1141] = {.lex_state = 13, .external_lex_state = 8}, - [1142] = {.lex_state = 13, .external_lex_state = 12}, - [1143] = {.lex_state = 13, .external_lex_state = 12}, - [1144] = {.lex_state = 13, .external_lex_state = 12}, - [1145] = {.lex_state = 14, .external_lex_state = 13}, - [1146] = {.lex_state = 14, .external_lex_state = 13}, - [1147] = {.lex_state = 14, .external_lex_state = 13}, - [1148] = {.lex_state = 13, .external_lex_state = 12}, - [1149] = {.lex_state = 13, .external_lex_state = 12}, - [1150] = {.lex_state = 13, .external_lex_state = 12}, - [1151] = {.lex_state = 13, .external_lex_state = 12}, - [1152] = {.lex_state = 13, .external_lex_state = 12}, - [1153] = {.lex_state = 13, .external_lex_state = 8}, - [1154] = {.lex_state = 13, .external_lex_state = 12}, - [1155] = {.lex_state = 13, .external_lex_state = 12}, - [1156] = {.lex_state = 13, .external_lex_state = 12}, - [1157] = {.lex_state = 13, .external_lex_state = 12}, - [1158] = {.lex_state = 13, .external_lex_state = 12}, - [1159] = {.lex_state = 13, .external_lex_state = 12}, - [1160] = {.lex_state = 13, .external_lex_state = 12}, - [1161] = {.lex_state = 13, .external_lex_state = 12}, - [1162] = {.lex_state = 13, .external_lex_state = 12}, - [1163] = {.lex_state = 13, .external_lex_state = 12}, - [1164] = {.lex_state = 13, .external_lex_state = 12}, - [1165] = {.lex_state = 13, .external_lex_state = 12}, - [1166] = {.lex_state = 13, .external_lex_state = 12}, - [1167] = {.lex_state = 13, .external_lex_state = 12}, - [1168] = {.lex_state = 13, .external_lex_state = 12}, - [1169] = {.lex_state = 13, .external_lex_state = 12}, - [1170] = {.lex_state = 13, .external_lex_state = 12}, - [1171] = {.lex_state = 13, .external_lex_state = 12}, - [1172] = {.lex_state = 13, .external_lex_state = 12}, - [1173] = {.lex_state = 13, .external_lex_state = 12}, - [1174] = {.lex_state = 14, .external_lex_state = 14}, - [1175] = {.lex_state = 14, .external_lex_state = 14}, - [1176] = {.lex_state = 14, .external_lex_state = 14}, - [1177] = {.lex_state = 13, .external_lex_state = 12}, - [1178] = {.lex_state = 13, .external_lex_state = 12}, - [1179] = {.lex_state = 13, .external_lex_state = 12}, - [1180] = {.lex_state = 13, .external_lex_state = 2}, - [1181] = {.lex_state = 13, .external_lex_state = 12}, - [1182] = {.lex_state = 13, .external_lex_state = 12}, - [1183] = {.lex_state = 13, .external_lex_state = 12}, - [1184] = {.lex_state = 13, .external_lex_state = 12}, - [1185] = {.lex_state = 13, .external_lex_state = 12}, - [1186] = {.lex_state = 13, .external_lex_state = 12}, - [1187] = {.lex_state = 14, .external_lex_state = 13}, - [1188] = {.lex_state = 13, .external_lex_state = 12}, - [1189] = {.lex_state = 13, .external_lex_state = 12}, - [1190] = {.lex_state = 13, .external_lex_state = 12}, - [1191] = {.lex_state = 13, .external_lex_state = 12}, - [1192] = {.lex_state = 13, .external_lex_state = 12}, - [1193] = {.lex_state = 13, .external_lex_state = 12}, - [1194] = {.lex_state = 13, .external_lex_state = 12}, - [1195] = {.lex_state = 13, .external_lex_state = 12}, - [1196] = {.lex_state = 13, .external_lex_state = 12}, - [1197] = {.lex_state = 13, .external_lex_state = 12}, - [1198] = {.lex_state = 13, .external_lex_state = 13}, - [1199] = {.lex_state = 13, .external_lex_state = 12}, - [1200] = {.lex_state = 13, .external_lex_state = 13}, - [1201] = {.lex_state = 13, .external_lex_state = 12}, - [1202] = {.lex_state = 13, .external_lex_state = 12}, - [1203] = {.lex_state = 13, .external_lex_state = 12}, - [1204] = {.lex_state = 13, .external_lex_state = 12}, - [1205] = {.lex_state = 14, .external_lex_state = 13}, - [1206] = {.lex_state = 13, .external_lex_state = 12}, - [1207] = {.lex_state = 13, .external_lex_state = 12}, - [1208] = {.lex_state = 13, .external_lex_state = 12}, - [1209] = {.lex_state = 13, .external_lex_state = 12}, - [1210] = {.lex_state = 13, .external_lex_state = 12}, - [1211] = {.lex_state = 13, .external_lex_state = 12}, - [1212] = {.lex_state = 13, .external_lex_state = 7}, - [1213] = {.lex_state = 13, .external_lex_state = 12}, - [1214] = {.lex_state = 13, .external_lex_state = 12}, - [1215] = {.lex_state = 13, .external_lex_state = 13}, - [1216] = {.lex_state = 14, .external_lex_state = 14}, - [1217] = {.lex_state = 13, .external_lex_state = 14}, - [1218] = {.lex_state = 13, .external_lex_state = 14}, - [1219] = {.lex_state = 14, .external_lex_state = 15}, - [1220] = {.lex_state = 13, .external_lex_state = 7}, - [1221] = {.lex_state = 13, .external_lex_state = 12}, - [1222] = {.lex_state = 13, .external_lex_state = 12}, - [1223] = {.lex_state = 13, .external_lex_state = 14}, - [1224] = {.lex_state = 13, .external_lex_state = 14}, - [1225] = {.lex_state = 13, .external_lex_state = 14}, - [1226] = {.lex_state = 13, .external_lex_state = 14}, - [1227] = {.lex_state = 13, .external_lex_state = 14}, - [1228] = {.lex_state = 13, .external_lex_state = 14}, - [1229] = {.lex_state = 13, .external_lex_state = 14}, - [1230] = {.lex_state = 13, .external_lex_state = 14}, - [1231] = {.lex_state = 13, .external_lex_state = 12}, - [1232] = {.lex_state = 13, .external_lex_state = 12}, - [1233] = {.lex_state = 13, .external_lex_state = 12}, - [1234] = {.lex_state = 14, .external_lex_state = 13}, - [1235] = {.lex_state = 14, .external_lex_state = 13}, - [1236] = {.lex_state = 13, .external_lex_state = 13}, - [1237] = {.lex_state = 14, .external_lex_state = 13}, - [1238] = {.lex_state = 13, .external_lex_state = 7}, - [1239] = {.lex_state = 14, .external_lex_state = 14}, - [1240] = {.lex_state = 14, .external_lex_state = 14}, + [1135] = {.lex_state = 14, .external_lex_state = 12}, + [1136] = {.lex_state = 15, .external_lex_state = 13}, + [1137] = {.lex_state = 15, .external_lex_state = 13}, + [1138] = {.lex_state = 15, .external_lex_state = 13}, + [1139] = {.lex_state = 14, .external_lex_state = 12}, + [1140] = {.lex_state = 15, .external_lex_state = 15}, + [1141] = {.lex_state = 15, .external_lex_state = 14}, + [1142] = {.lex_state = 14, .external_lex_state = 13}, + [1143] = {.lex_state = 14, .external_lex_state = 7}, + [1144] = {.lex_state = 15, .external_lex_state = 14}, + [1145] = {.lex_state = 15, .external_lex_state = 14}, + [1146] = {.lex_state = 15, .external_lex_state = 14}, + [1147] = {.lex_state = 14, .external_lex_state = 12}, + [1148] = {.lex_state = 14, .external_lex_state = 13}, + [1149] = {.lex_state = 14, .external_lex_state = 12}, + [1150] = {.lex_state = 15, .external_lex_state = 14}, + [1151] = {.lex_state = 14, .external_lex_state = 12}, + [1152] = {.lex_state = 14, .external_lex_state = 8}, + [1153] = {.lex_state = 14, .external_lex_state = 12}, + [1154] = {.lex_state = 14, .external_lex_state = 12}, + [1155] = {.lex_state = 14, .external_lex_state = 12}, + [1156] = {.lex_state = 14, .external_lex_state = 2}, + [1157] = {.lex_state = 15, .external_lex_state = 13}, + [1158] = {.lex_state = 15, .external_lex_state = 13}, + [1159] = {.lex_state = 15, .external_lex_state = 13}, + [1160] = {.lex_state = 14, .external_lex_state = 12}, + [1161] = {.lex_state = 14, .external_lex_state = 12}, + [1162] = {.lex_state = 14, .external_lex_state = 12}, + [1163] = {.lex_state = 14, .external_lex_state = 12}, + [1164] = {.lex_state = 14, .external_lex_state = 12}, + [1165] = {.lex_state = 14, .external_lex_state = 12}, + [1166] = {.lex_state = 15, .external_lex_state = 14}, + [1167] = {.lex_state = 14, .external_lex_state = 12}, + [1168] = {.lex_state = 14, .external_lex_state = 8}, + [1169] = {.lex_state = 14, .external_lex_state = 12}, + [1170] = {.lex_state = 14, .external_lex_state = 12}, + [1171] = {.lex_state = 14, .external_lex_state = 12}, + [1172] = {.lex_state = 14, .external_lex_state = 12}, + [1173] = {.lex_state = 14, .external_lex_state = 12}, + [1174] = {.lex_state = 14, .external_lex_state = 12}, + [1175] = {.lex_state = 15, .external_lex_state = 13}, + [1176] = {.lex_state = 14, .external_lex_state = 12}, + [1177] = {.lex_state = 14, .external_lex_state = 12}, + [1178] = {.lex_state = 14, .external_lex_state = 13}, + [1179] = {.lex_state = 14, .external_lex_state = 13}, + [1180] = {.lex_state = 15, .external_lex_state = 13}, + [1181] = {.lex_state = 15, .external_lex_state = 13}, + [1182] = {.lex_state = 14, .external_lex_state = 13}, + [1183] = {.lex_state = 14, .external_lex_state = 13}, + [1184] = {.lex_state = 14, .external_lex_state = 12}, + [1185] = {.lex_state = 14, .external_lex_state = 7}, + [1186] = {.lex_state = 14, .external_lex_state = 12}, + [1187] = {.lex_state = 14, .external_lex_state = 12}, + [1188] = {.lex_state = 14, .external_lex_state = 12}, + [1189] = {.lex_state = 14, .external_lex_state = 12}, + [1190] = {.lex_state = 14, .external_lex_state = 12}, + [1191] = {.lex_state = 14, .external_lex_state = 12}, + [1192] = {.lex_state = 14, .external_lex_state = 12}, + [1193] = {.lex_state = 14, .external_lex_state = 12}, + [1194] = {.lex_state = 14, .external_lex_state = 12}, + [1195] = {.lex_state = 14, .external_lex_state = 12}, + [1196] = {.lex_state = 14, .external_lex_state = 12}, + [1197] = {.lex_state = 14, .external_lex_state = 12}, + [1198] = {.lex_state = 14, .external_lex_state = 12}, + [1199] = {.lex_state = 15, .external_lex_state = 14}, + [1200] = {.lex_state = 14, .external_lex_state = 12}, + [1201] = {.lex_state = 14, .external_lex_state = 12}, + [1202] = {.lex_state = 14, .external_lex_state = 13}, + [1203] = {.lex_state = 15, .external_lex_state = 14}, + [1204] = {.lex_state = 15, .external_lex_state = 14}, + [1205] = {.lex_state = 15, .external_lex_state = 14}, + [1206] = {.lex_state = 14, .external_lex_state = 12}, + [1207] = {.lex_state = 14, .external_lex_state = 12}, + [1208] = {.lex_state = 14, .external_lex_state = 12}, + [1209] = {.lex_state = 14, .external_lex_state = 2}, + [1210] = {.lex_state = 14, .external_lex_state = 12}, + [1211] = {.lex_state = 15, .external_lex_state = 13}, + [1212] = {.lex_state = 14, .external_lex_state = 12}, + [1213] = {.lex_state = 15, .external_lex_state = 13}, + [1214] = {.lex_state = 14, .external_lex_state = 12}, + [1215] = {.lex_state = 14, .external_lex_state = 7}, + [1216] = {.lex_state = 14, .external_lex_state = 12}, + [1217] = {.lex_state = 14, .external_lex_state = 12}, + [1218] = {.lex_state = 14, .external_lex_state = 12}, + [1219] = {.lex_state = 14, .external_lex_state = 12}, + [1220] = {.lex_state = 14, .external_lex_state = 12}, + [1221] = {.lex_state = 14, .external_lex_state = 12}, + [1222] = {.lex_state = 14, .external_lex_state = 12}, + [1223] = {.lex_state = 14, .external_lex_state = 12}, + [1224] = {.lex_state = 14, .external_lex_state = 12}, + [1225] = {.lex_state = 14, .external_lex_state = 14}, + [1226] = {.lex_state = 14, .external_lex_state = 12}, + [1227] = {.lex_state = 14, .external_lex_state = 12}, + [1228] = {.lex_state = 14, .external_lex_state = 12}, + [1229] = {.lex_state = 14, .external_lex_state = 12}, + [1230] = {.lex_state = 14, .external_lex_state = 12}, + [1231] = {.lex_state = 14, .external_lex_state = 14}, + [1232] = {.lex_state = 14, .external_lex_state = 12}, + [1233] = {.lex_state = 14, .external_lex_state = 12}, + [1234] = {.lex_state = 14, .external_lex_state = 12}, + [1235] = {.lex_state = 14, .external_lex_state = 12}, + [1236] = {.lex_state = 14, .external_lex_state = 12}, + [1237] = {.lex_state = 14, .external_lex_state = 12}, + [1238] = {.lex_state = 14, .external_lex_state = 12}, + [1239] = {.lex_state = 15, .external_lex_state = 13}, + [1240] = {.lex_state = 14, .external_lex_state = 15}, [1241] = {.lex_state = 14, .external_lex_state = 15}, - [1242] = {.lex_state = 14, .external_lex_state = 15}, + [1242] = {.lex_state = 14, .external_lex_state = 13}, [1243] = {.lex_state = 14, .external_lex_state = 15}, [1244] = {.lex_state = 14, .external_lex_state = 13}, - [1245] = {.lex_state = 13, .external_lex_state = 7}, - [1246] = {.lex_state = 14, .external_lex_state = 14}, - [1247] = {.lex_state = 14, .external_lex_state = 14}, - [1248] = {.lex_state = 14, .external_lex_state = 14}, + [1245] = {.lex_state = 14, .external_lex_state = 14}, + [1246] = {.lex_state = 14, .external_lex_state = 13}, + [1247] = {.lex_state = 14, .external_lex_state = 13}, + [1248] = {.lex_state = 14, .external_lex_state = 13}, [1249] = {.lex_state = 14, .external_lex_state = 13}, - [1250] = {.lex_state = 14, .external_lex_state = 13}, - [1251] = {.lex_state = 13, .external_lex_state = 13}, - [1252] = {.lex_state = 13, .external_lex_state = 13}, - [1253] = {.lex_state = 13, .external_lex_state = 2}, + [1250] = {.lex_state = 15, .external_lex_state = 14}, + [1251] = {.lex_state = 15, .external_lex_state = 14}, + [1252] = {.lex_state = 14, .external_lex_state = 13}, + [1253] = {.lex_state = 14, .external_lex_state = 14}, [1254] = {.lex_state = 14, .external_lex_state = 13}, - [1255] = {.lex_state = 13, .external_lex_state = 13}, - [1256] = {.lex_state = 13, .external_lex_state = 14}, - [1257] = {.lex_state = 13, .external_lex_state = 14}, - [1258] = {.lex_state = 13, .external_lex_state = 13}, - [1259] = {.lex_state = 13, .external_lex_state = 13}, - [1260] = {.lex_state = 13, .external_lex_state = 15}, - [1261] = {.lex_state = 13, .external_lex_state = 13}, - [1262] = {.lex_state = 13, .external_lex_state = 14}, - [1263] = {.lex_state = 13, .external_lex_state = 14}, - [1264] = {.lex_state = 13, .external_lex_state = 14}, - [1265] = {.lex_state = 13, .external_lex_state = 15}, - [1266] = {.lex_state = 13, .external_lex_state = 15}, - [1267] = {.lex_state = 13, .external_lex_state = 14}, - [1268] = {.lex_state = 13, .external_lex_state = 15}, - [1269] = {.lex_state = 13, .external_lex_state = 15}, - [1270] = {.lex_state = 13, .external_lex_state = 13}, - [1271] = {.lex_state = 13, .external_lex_state = 15}, - [1272] = {.lex_state = 13, .external_lex_state = 13}, - [1273] = {.lex_state = 13, .external_lex_state = 13}, - [1274] = {.lex_state = 14, .external_lex_state = 14}, - [1275] = {.lex_state = 14, .external_lex_state = 14}, - [1276] = {.lex_state = 14, .external_lex_state = 14}, - [1277] = {.lex_state = 13, .external_lex_state = 13}, - [1278] = {.lex_state = 13, .external_lex_state = 13}, - [1279] = {.lex_state = 13, .external_lex_state = 13}, - [1280] = {.lex_state = 13, .external_lex_state = 13}, - [1281] = {.lex_state = 13, .external_lex_state = 15}, - [1282] = {.lex_state = 13, .external_lex_state = 13}, - [1283] = {.lex_state = 13, .external_lex_state = 15}, - [1284] = {.lex_state = 13, .external_lex_state = 13}, - [1285] = {.lex_state = 13, .external_lex_state = 13}, - [1286] = {.lex_state = 13, .external_lex_state = 13}, - [1287] = {.lex_state = 13, .external_lex_state = 13}, - [1288] = {.lex_state = 13, .external_lex_state = 13}, - [1289] = {.lex_state = 13, .external_lex_state = 13}, - [1290] = {.lex_state = 13, .external_lex_state = 13}, - [1291] = {.lex_state = 13, .external_lex_state = 15}, - [1292] = {.lex_state = 13, .external_lex_state = 15}, - [1293] = {.lex_state = 13, .external_lex_state = 15}, - [1294] = {.lex_state = 13, .external_lex_state = 15}, - [1295] = {.lex_state = 13, .external_lex_state = 15}, - [1296] = {.lex_state = 13, .external_lex_state = 13}, - [1297] = {.lex_state = 13, .external_lex_state = 15}, - [1298] = {.lex_state = 13, .external_lex_state = 15}, - [1299] = {.lex_state = 13, .external_lex_state = 13}, - [1300] = {.lex_state = 13, .external_lex_state = 13}, - [1301] = {.lex_state = 13, .external_lex_state = 13}, - [1302] = {.lex_state = 13, .external_lex_state = 13}, - [1303] = {.lex_state = 13, .external_lex_state = 13}, - [1304] = {.lex_state = 13, .external_lex_state = 13}, - [1305] = {.lex_state = 13, .external_lex_state = 13}, - [1306] = {.lex_state = 13, .external_lex_state = 15}, - [1307] = {.lex_state = 13, .external_lex_state = 13}, - [1308] = {.lex_state = 13, .external_lex_state = 13}, - [1309] = {.lex_state = 13, .external_lex_state = 13}, - [1310] = {.lex_state = 13, .external_lex_state = 15}, - [1311] = {.lex_state = 13, .external_lex_state = 14}, - [1312] = {.lex_state = 13, .external_lex_state = 15}, - [1313] = {.lex_state = 13, .external_lex_state = 13}, - [1314] = {.lex_state = 13, .external_lex_state = 13}, - [1315] = {.lex_state = 13, .external_lex_state = 14}, - [1316] = {.lex_state = 13, .external_lex_state = 15}, - [1317] = {.lex_state = 13, .external_lex_state = 15}, - [1318] = {.lex_state = 13, .external_lex_state = 14}, - [1319] = {.lex_state = 13, .external_lex_state = 14}, - [1320] = {.lex_state = 13, .external_lex_state = 14}, - [1321] = {.lex_state = 13, .external_lex_state = 13}, - [1322] = {.lex_state = 13, .external_lex_state = 14}, - [1323] = {.lex_state = 13, .external_lex_state = 14}, - [1324] = {.lex_state = 13, .external_lex_state = 14}, - [1325] = {.lex_state = 13, .external_lex_state = 14}, - [1326] = {.lex_state = 13, .external_lex_state = 14}, - [1327] = {.lex_state = 13, .external_lex_state = 15}, - [1328] = {.lex_state = 13, .external_lex_state = 15}, - [1329] = {.lex_state = 13, .external_lex_state = 14}, - [1330] = {.lex_state = 13, .external_lex_state = 14}, - [1331] = {.lex_state = 13, .external_lex_state = 13}, - [1332] = {.lex_state = 13, .external_lex_state = 14}, - [1333] = {.lex_state = 13, .external_lex_state = 14}, - [1334] = {.lex_state = 13, .external_lex_state = 14}, - [1335] = {.lex_state = 13, .external_lex_state = 14}, - [1336] = {.lex_state = 13, .external_lex_state = 14}, - [1337] = {.lex_state = 13, .external_lex_state = 14}, - [1338] = {.lex_state = 13, .external_lex_state = 13}, - [1339] = {.lex_state = 13, .external_lex_state = 13}, - [1340] = {.lex_state = 13, .external_lex_state = 15}, - [1341] = {.lex_state = 13, .external_lex_state = 13}, - [1342] = {.lex_state = 13, .external_lex_state = 15}, - [1343] = {.lex_state = 13, .external_lex_state = 13}, - [1344] = {.lex_state = 13, .external_lex_state = 13}, - [1345] = {.lex_state = 13, .external_lex_state = 13}, - [1346] = {.lex_state = 13, .external_lex_state = 13}, - [1347] = {.lex_state = 13, .external_lex_state = 8}, - [1348] = {.lex_state = 13, .external_lex_state = 14}, - [1349] = {.lex_state = 13, .external_lex_state = 14}, - [1350] = {.lex_state = 13, .external_lex_state = 13}, - [1351] = {.lex_state = 13, .external_lex_state = 8}, - [1352] = {.lex_state = 8, .external_lex_state = 9}, - [1353] = {.lex_state = 8, .external_lex_state = 9}, - [1354] = {.lex_state = 8, .external_lex_state = 9}, - [1355] = {.lex_state = 13, .external_lex_state = 13}, - [1356] = {.lex_state = 13, .external_lex_state = 15}, - [1357] = {.lex_state = 13, .external_lex_state = 13}, - [1358] = {.lex_state = 8, .external_lex_state = 9}, - [1359] = {.lex_state = 13, .external_lex_state = 14}, - [1360] = {.lex_state = 13, .external_lex_state = 14}, - [1361] = {.lex_state = 13, .external_lex_state = 15}, - [1362] = {.lex_state = 13, .external_lex_state = 15}, - [1363] = {.lex_state = 13, .external_lex_state = 15}, - [1364] = {.lex_state = 13, .external_lex_state = 15}, - [1365] = {.lex_state = 13, .external_lex_state = 14}, - [1366] = {.lex_state = 13, .external_lex_state = 14}, - [1367] = {.lex_state = 13, .external_lex_state = 13}, - [1368] = {.lex_state = 8, .external_lex_state = 9}, - [1369] = {.lex_state = 13, .external_lex_state = 13}, - [1370] = {.lex_state = 13, .external_lex_state = 13}, - [1371] = {.lex_state = 8, .external_lex_state = 9}, - [1372] = {.lex_state = 13, .external_lex_state = 13}, - [1373] = {.lex_state = 13, .external_lex_state = 14}, - [1374] = {.lex_state = 13, .external_lex_state = 15}, - [1375] = {.lex_state = 13, .external_lex_state = 15}, - [1376] = {.lex_state = 13, .external_lex_state = 15}, - [1377] = {.lex_state = 13, .external_lex_state = 13}, - [1378] = {.lex_state = 13, .external_lex_state = 14}, - [1379] = {.lex_state = 13, .external_lex_state = 15}, - [1380] = {.lex_state = 13, .external_lex_state = 15}, - [1381] = {.lex_state = 13, .external_lex_state = 14}, - [1382] = {.lex_state = 13, .external_lex_state = 13}, - [1383] = {.lex_state = 13, .external_lex_state = 13}, - [1384] = {.lex_state = 13, .external_lex_state = 13}, - [1385] = {.lex_state = 13, .external_lex_state = 14}, - [1386] = {.lex_state = 13, .external_lex_state = 13}, - [1387] = {.lex_state = 13, .external_lex_state = 15}, - [1388] = {.lex_state = 13, .external_lex_state = 13}, - [1389] = {.lex_state = 13, .external_lex_state = 13}, - [1390] = {.lex_state = 13, .external_lex_state = 13}, - [1391] = {.lex_state = 13, .external_lex_state = 13}, - [1392] = {.lex_state = 13, .external_lex_state = 13}, - [1393] = {.lex_state = 13, .external_lex_state = 9}, - [1394] = {.lex_state = 13, .external_lex_state = 13}, - [1395] = {.lex_state = 13, .external_lex_state = 13}, - [1396] = {.lex_state = 13, .external_lex_state = 13}, - [1397] = {.lex_state = 13, .external_lex_state = 14}, - [1398] = {.lex_state = 13, .external_lex_state = 13}, - [1399] = {.lex_state = 14, .external_lex_state = 13}, - [1400] = {.lex_state = 14, .external_lex_state = 13}, - [1401] = {.lex_state = 14, .external_lex_state = 13}, - [1402] = {.lex_state = 13, .external_lex_state = 14}, - [1403] = {.lex_state = 13, .external_lex_state = 15}, - [1404] = {.lex_state = 13, .external_lex_state = 14}, - [1405] = {.lex_state = 13, .external_lex_state = 14}, - [1406] = {.lex_state = 13, .external_lex_state = 14}, - [1407] = {.lex_state = 13, .external_lex_state = 14}, - [1408] = {.lex_state = 13, .external_lex_state = 14}, - [1409] = {.lex_state = 13, .external_lex_state = 13}, - [1410] = {.lex_state = 13, .external_lex_state = 13}, - [1411] = {.lex_state = 13, .external_lex_state = 13}, - [1412] = {.lex_state = 13, .external_lex_state = 13}, - [1413] = {.lex_state = 13, .external_lex_state = 13}, - [1414] = {.lex_state = 13, .external_lex_state = 13}, - [1415] = {.lex_state = 13, .external_lex_state = 13}, - [1416] = {.lex_state = 13, .external_lex_state = 13}, - [1417] = {.lex_state = 13, .external_lex_state = 13}, - [1418] = {.lex_state = 13, .external_lex_state = 13}, - [1419] = {.lex_state = 14, .external_lex_state = 13}, - [1420] = {.lex_state = 13, .external_lex_state = 15}, - [1421] = {.lex_state = 13, .external_lex_state = 14}, - [1422] = {.lex_state = 13, .external_lex_state = 14}, - [1423] = {.lex_state = 13, .external_lex_state = 14}, - [1424] = {.lex_state = 13, .external_lex_state = 14}, - [1425] = {.lex_state = 13, .external_lex_state = 14}, - [1426] = {.lex_state = 13, .external_lex_state = 14}, - [1427] = {.lex_state = 13, .external_lex_state = 14}, - [1428] = {.lex_state = 13, .external_lex_state = 14}, - [1429] = {.lex_state = 13, .external_lex_state = 14}, - [1430] = {.lex_state = 14, .external_lex_state = 13}, - [1431] = {.lex_state = 13, .external_lex_state = 14}, - [1432] = {.lex_state = 13, .external_lex_state = 14}, - [1433] = {.lex_state = 14, .external_lex_state = 12}, - [1434] = {.lex_state = 14, .external_lex_state = 12}, - [1435] = {.lex_state = 14, .external_lex_state = 12}, + [1255] = {.lex_state = 14, .external_lex_state = 14}, + [1256] = {.lex_state = 14, .external_lex_state = 14}, + [1257] = {.lex_state = 14, .external_lex_state = 14}, + [1258] = {.lex_state = 14, .external_lex_state = 14}, + [1259] = {.lex_state = 14, .external_lex_state = 13}, + [1260] = {.lex_state = 14, .external_lex_state = 13}, + [1261] = {.lex_state = 14, .external_lex_state = 14}, + [1262] = {.lex_state = 14, .external_lex_state = 14}, + [1263] = {.lex_state = 14, .external_lex_state = 15}, + [1264] = {.lex_state = 14, .external_lex_state = 9}, + [1265] = {.lex_state = 14, .external_lex_state = 14}, + [1266] = {.lex_state = 14, .external_lex_state = 13}, + [1267] = {.lex_state = 14, .external_lex_state = 14}, + [1268] = {.lex_state = 14, .external_lex_state = 14}, + [1269] = {.lex_state = 14, .external_lex_state = 15}, + [1270] = {.lex_state = 14, .external_lex_state = 15}, + [1271] = {.lex_state = 14, .external_lex_state = 15}, + [1272] = {.lex_state = 14, .external_lex_state = 14}, + [1273] = {.lex_state = 14, .external_lex_state = 14}, + [1274] = {.lex_state = 14, .external_lex_state = 15}, + [1275] = {.lex_state = 14, .external_lex_state = 15}, + [1276] = {.lex_state = 14, .external_lex_state = 15}, + [1277] = {.lex_state = 14, .external_lex_state = 13}, + [1278] = {.lex_state = 14, .external_lex_state = 13}, + [1279] = {.lex_state = 14, .external_lex_state = 13}, + [1280] = {.lex_state = 14, .external_lex_state = 14}, + [1281] = {.lex_state = 14, .external_lex_state = 13}, + [1282] = {.lex_state = 14, .external_lex_state = 13}, + [1283] = {.lex_state = 14, .external_lex_state = 13}, + [1284] = {.lex_state = 14, .external_lex_state = 13}, + [1285] = {.lex_state = 14, .external_lex_state = 13}, + [1286] = {.lex_state = 14, .external_lex_state = 13}, + [1287] = {.lex_state = 14, .external_lex_state = 13}, + [1288] = {.lex_state = 14, .external_lex_state = 15}, + [1289] = {.lex_state = 14, .external_lex_state = 13}, + [1290] = {.lex_state = 14, .external_lex_state = 14}, + [1291] = {.lex_state = 14, .external_lex_state = 13}, + [1292] = {.lex_state = 14, .external_lex_state = 13}, + [1293] = {.lex_state = 14, .external_lex_state = 13}, + [1294] = {.lex_state = 14, .external_lex_state = 13}, + [1295] = {.lex_state = 14, .external_lex_state = 15}, + [1296] = {.lex_state = 14, .external_lex_state = 15}, + [1297] = {.lex_state = 14, .external_lex_state = 13}, + [1298] = {.lex_state = 14, .external_lex_state = 13}, + [1299] = {.lex_state = 14, .external_lex_state = 13}, + [1300] = {.lex_state = 14, .external_lex_state = 13}, + [1301] = {.lex_state = 14, .external_lex_state = 15}, + [1302] = {.lex_state = 14, .external_lex_state = 8}, + [1303] = {.lex_state = 14, .external_lex_state = 14}, + [1304] = {.lex_state = 14, .external_lex_state = 14}, + [1305] = {.lex_state = 14, .external_lex_state = 13}, + [1306] = {.lex_state = 14, .external_lex_state = 13}, + [1307] = {.lex_state = 14, .external_lex_state = 13}, + [1308] = {.lex_state = 14, .external_lex_state = 13}, + [1309] = {.lex_state = 14, .external_lex_state = 13}, + [1310] = {.lex_state = 14, .external_lex_state = 8}, + [1311] = {.lex_state = 14, .external_lex_state = 14}, + [1312] = {.lex_state = 14, .external_lex_state = 13}, + [1313] = {.lex_state = 14, .external_lex_state = 13}, + [1314] = {.lex_state = 14, .external_lex_state = 13}, + [1315] = {.lex_state = 13, .external_lex_state = 9}, + [1316] = {.lex_state = 13, .external_lex_state = 9}, + [1317] = {.lex_state = 13, .external_lex_state = 9}, + [1318] = {.lex_state = 14, .external_lex_state = 14}, + [1319] = {.lex_state = 14, .external_lex_state = 15}, + [1320] = {.lex_state = 14, .external_lex_state = 13}, + [1321] = {.lex_state = 13, .external_lex_state = 9}, + [1322] = {.lex_state = 14, .external_lex_state = 13}, + [1323] = {.lex_state = 14, .external_lex_state = 13}, + [1324] = {.lex_state = 14, .external_lex_state = 14}, + [1325] = {.lex_state = 14, .external_lex_state = 14}, + [1326] = {.lex_state = 14, .external_lex_state = 13}, + [1327] = {.lex_state = 14, .external_lex_state = 15}, + [1328] = {.lex_state = 14, .external_lex_state = 14}, + [1329] = {.lex_state = 14, .external_lex_state = 13}, + [1330] = {.lex_state = 14, .external_lex_state = 14}, + [1331] = {.lex_state = 14, .external_lex_state = 15}, + [1332] = {.lex_state = 14, .external_lex_state = 14}, + [1333] = {.lex_state = 14, .external_lex_state = 15}, + [1334] = {.lex_state = 14, .external_lex_state = 15}, + [1335] = {.lex_state = 14, .external_lex_state = 13}, + [1336] = {.lex_state = 14, .external_lex_state = 14}, + [1337] = {.lex_state = 14, .external_lex_state = 14}, + [1338] = {.lex_state = 14, .external_lex_state = 15}, + [1339] = {.lex_state = 14, .external_lex_state = 13}, + [1340] = {.lex_state = 14, .external_lex_state = 13}, + [1341] = {.lex_state = 14, .external_lex_state = 14}, + [1342] = {.lex_state = 14, .external_lex_state = 13}, + [1343] = {.lex_state = 14, .external_lex_state = 13}, + [1344] = {.lex_state = 14, .external_lex_state = 14}, + [1345] = {.lex_state = 14, .external_lex_state = 14}, + [1346] = {.lex_state = 14, .external_lex_state = 14}, + [1347] = {.lex_state = 14, .external_lex_state = 13}, + [1348] = {.lex_state = 14, .external_lex_state = 13}, + [1349] = {.lex_state = 14, .external_lex_state = 13}, + [1350] = {.lex_state = 13, .external_lex_state = 9}, + [1351] = {.lex_state = 13, .external_lex_state = 9}, + [1352] = {.lex_state = 14, .external_lex_state = 15}, + [1353] = {.lex_state = 14, .external_lex_state = 14}, + [1354] = {.lex_state = 14, .external_lex_state = 14}, + [1355] = {.lex_state = 15, .external_lex_state = 13}, + [1356] = {.lex_state = 14, .external_lex_state = 13}, + [1357] = {.lex_state = 14, .external_lex_state = 13}, + [1358] = {.lex_state = 14, .external_lex_state = 13}, + [1359] = {.lex_state = 14, .external_lex_state = 15}, + [1360] = {.lex_state = 15, .external_lex_state = 13}, + [1361] = {.lex_state = 15, .external_lex_state = 13}, + [1362] = {.lex_state = 14, .external_lex_state = 15}, + [1363] = {.lex_state = 14, .external_lex_state = 15}, + [1364] = {.lex_state = 14, .external_lex_state = 13}, + [1365] = {.lex_state = 14, .external_lex_state = 13}, + [1366] = {.lex_state = 14, .external_lex_state = 13}, + [1367] = {.lex_state = 14, .external_lex_state = 15}, + [1368] = {.lex_state = 14, .external_lex_state = 13}, + [1369] = {.lex_state = 14, .external_lex_state = 15}, + [1370] = {.lex_state = 14, .external_lex_state = 13}, + [1371] = {.lex_state = 14, .external_lex_state = 15}, + [1372] = {.lex_state = 14, .external_lex_state = 13}, + [1373] = {.lex_state = 14, .external_lex_state = 13}, + [1374] = {.lex_state = 14, .external_lex_state = 15}, + [1375] = {.lex_state = 14, .external_lex_state = 14}, + [1376] = {.lex_state = 14, .external_lex_state = 14}, + [1377] = {.lex_state = 14, .external_lex_state = 13}, + [1378] = {.lex_state = 14, .external_lex_state = 13}, + [1379] = {.lex_state = 14, .external_lex_state = 13}, + [1380] = {.lex_state = 14, .external_lex_state = 15}, + [1381] = {.lex_state = 14, .external_lex_state = 13}, + [1382] = {.lex_state = 14, .external_lex_state = 14}, + [1383] = {.lex_state = 14, .external_lex_state = 15}, + [1384] = {.lex_state = 14, .external_lex_state = 13}, + [1385] = {.lex_state = 14, .external_lex_state = 15}, + [1386] = {.lex_state = 14, .external_lex_state = 15}, + [1387] = {.lex_state = 14, .external_lex_state = 15}, + [1388] = {.lex_state = 14, .external_lex_state = 14}, + [1389] = {.lex_state = 14, .external_lex_state = 14}, + [1390] = {.lex_state = 14, .external_lex_state = 14}, + [1391] = {.lex_state = 14, .external_lex_state = 13}, + [1392] = {.lex_state = 14, .external_lex_state = 13}, + [1393] = {.lex_state = 14, .external_lex_state = 15}, + [1394] = {.lex_state = 14, .external_lex_state = 13}, + [1395] = {.lex_state = 14, .external_lex_state = 13}, + [1396] = {.lex_state = 14, .external_lex_state = 14}, + [1397] = {.lex_state = 14, .external_lex_state = 15}, + [1398] = {.lex_state = 14, .external_lex_state = 13}, + [1399] = {.lex_state = 14, .external_lex_state = 14}, + [1400] = {.lex_state = 14, .external_lex_state = 14}, + [1401] = {.lex_state = 14, .external_lex_state = 15}, + [1402] = {.lex_state = 15, .external_lex_state = 14}, + [1403] = {.lex_state = 14, .external_lex_state = 14}, + [1404] = {.lex_state = 14, .external_lex_state = 14}, + [1405] = {.lex_state = 14, .external_lex_state = 14}, + [1406] = {.lex_state = 14, .external_lex_state = 14}, + [1407] = {.lex_state = 14, .external_lex_state = 14}, + [1408] = {.lex_state = 15, .external_lex_state = 14}, + [1409] = {.lex_state = 15, .external_lex_state = 12}, + [1410] = {.lex_state = 15, .external_lex_state = 12}, + [1411] = {.lex_state = 15, .external_lex_state = 12}, + [1412] = {.lex_state = 14, .external_lex_state = 14}, + [1413] = {.lex_state = 15, .external_lex_state = 14}, + [1414] = {.lex_state = 15, .external_lex_state = 14}, + [1415] = {.lex_state = 14, .external_lex_state = 14}, + [1416] = {.lex_state = 14, .external_lex_state = 14}, + [1417] = {.lex_state = 14, .external_lex_state = 14}, + [1418] = {.lex_state = 14, .external_lex_state = 14}, + [1419] = {.lex_state = 14, .external_lex_state = 14}, + [1420] = {.lex_state = 14, .external_lex_state = 14}, + [1421] = {.lex_state = 14, .external_lex_state = 14}, + [1422] = {.lex_state = 14, .external_lex_state = 14}, + [1423] = {.lex_state = 14, .external_lex_state = 15}, + [1424] = {.lex_state = 14, .external_lex_state = 14}, + [1425] = {.lex_state = 14, .external_lex_state = 14}, + [1426] = {.lex_state = 14, .external_lex_state = 14}, + [1427] = {.lex_state = 14, .external_lex_state = 14}, + [1428] = {.lex_state = 14, .external_lex_state = 14}, + [1429] = {.lex_state = 14, .external_lex_state = 14}, + [1430] = {.lex_state = 14, .external_lex_state = 14}, + [1431] = {.lex_state = 14, .external_lex_state = 14}, + [1432] = {.lex_state = 15, .external_lex_state = 13}, + [1433] = {.lex_state = 15, .external_lex_state = 13}, + [1434] = {.lex_state = 15, .external_lex_state = 13}, + [1435] = {.lex_state = 14, .external_lex_state = 14}, [1436] = {.lex_state = 14, .external_lex_state = 14}, - [1437] = {.lex_state = 13, .external_lex_state = 14}, + [1437] = {.lex_state = 14, .external_lex_state = 14}, [1438] = {.lex_state = 14, .external_lex_state = 14}, - [1439] = {.lex_state = 13, .external_lex_state = 14}, - [1440] = {.lex_state = 13, .external_lex_state = 14}, - [1441] = {.lex_state = 13, .external_lex_state = 14}, - [1442] = {.lex_state = 13, .external_lex_state = 14}, - [1443] = {.lex_state = 13, .external_lex_state = 14}, - [1444] = {.lex_state = 13, .external_lex_state = 14}, - [1445] = {.lex_state = 13, .external_lex_state = 14}, - [1446] = {.lex_state = 13, .external_lex_state = 14}, - [1447] = {.lex_state = 13, .external_lex_state = 14}, - [1448] = {.lex_state = 13, .external_lex_state = 14}, - [1449] = {.lex_state = 13, .external_lex_state = 14}, - [1450] = {.lex_state = 13, .external_lex_state = 14}, - [1451] = {.lex_state = 13, .external_lex_state = 14}, - [1452] = {.lex_state = 13, .external_lex_state = 14}, - [1453] = {.lex_state = 13, .external_lex_state = 14}, - [1454] = {.lex_state = 13, .external_lex_state = 14}, - [1455] = {.lex_state = 13, .external_lex_state = 14}, - [1456] = {.lex_state = 13, .external_lex_state = 14}, - [1457] = {.lex_state = 13, .external_lex_state = 14}, - [1458] = {.lex_state = 13, .external_lex_state = 14}, - [1459] = {.lex_state = 13, .external_lex_state = 14}, - [1460] = {.lex_state = 13, .external_lex_state = 14}, - [1461] = {.lex_state = 13, .external_lex_state = 14}, - [1462] = {.lex_state = 13, .external_lex_state = 14}, - [1463] = {.lex_state = 13, .external_lex_state = 14}, - [1464] = {.lex_state = 14, .external_lex_state = 14}, - [1465] = {.lex_state = 14, .external_lex_state = 13}, - [1466] = {.lex_state = 8, .external_lex_state = 15}, - [1467] = {.lex_state = 8, .external_lex_state = 15}, - [1468] = {.lex_state = 8, .external_lex_state = 15}, - [1469] = {.lex_state = 8, .external_lex_state = 15}, - [1470] = {.lex_state = 8, .external_lex_state = 15}, - [1471] = {.lex_state = 8, .external_lex_state = 15}, - [1472] = {.lex_state = 8, .external_lex_state = 15}, - [1473] = {.lex_state = 8, .external_lex_state = 15}, - [1474] = {.lex_state = 8, .external_lex_state = 15}, - [1475] = {.lex_state = 8, .external_lex_state = 15}, - [1476] = {.lex_state = 8, .external_lex_state = 15}, - [1477] = {.lex_state = 13, .external_lex_state = 13}, - [1478] = {.lex_state = 13, .external_lex_state = 14}, - [1479] = {.lex_state = 13, .external_lex_state = 12}, - [1480] = {.lex_state = 8, .external_lex_state = 15}, - [1481] = {.lex_state = 8, .external_lex_state = 15}, - [1482] = {.lex_state = 8, .external_lex_state = 15}, - [1483] = {.lex_state = 8, .external_lex_state = 15}, - [1484] = {.lex_state = 8, .external_lex_state = 15}, - [1485] = {.lex_state = 12, .external_lex_state = 2}, - [1486] = {.lex_state = 12, .external_lex_state = 2}, - [1487] = {.lex_state = 5, .external_lex_state = 8}, - [1488] = {.lex_state = 5, .external_lex_state = 8}, - [1489] = {.lex_state = 5, .external_lex_state = 7}, - [1490] = {.lex_state = 5, .external_lex_state = 7}, - [1491] = {.lex_state = 5, .external_lex_state = 7}, - [1492] = {.lex_state = 5, .external_lex_state = 8}, - [1493] = {.lex_state = 5, .external_lex_state = 7}, - [1494] = {.lex_state = 5, .external_lex_state = 7}, - [1495] = {.lex_state = 5, .external_lex_state = 8}, - [1496] = {.lex_state = 5, .external_lex_state = 7}, - [1497] = {.lex_state = 5, .external_lex_state = 7}, - [1498] = {.lex_state = 5, .external_lex_state = 8}, - [1499] = {.lex_state = 5, .external_lex_state = 7}, - [1500] = {.lex_state = 5, .external_lex_state = 8}, - [1501] = {.lex_state = 5, .external_lex_state = 7}, - [1502] = {.lex_state = 5, .external_lex_state = 7}, - [1503] = {.lex_state = 5, .external_lex_state = 7}, - [1504] = {.lex_state = 5, .external_lex_state = 7}, - [1505] = {.lex_state = 5, .external_lex_state = 8}, - [1506] = {.lex_state = 5, .external_lex_state = 7}, - [1507] = {.lex_state = 5, .external_lex_state = 7}, - [1508] = {.lex_state = 5, .external_lex_state = 7}, - [1509] = {.lex_state = 5, .external_lex_state = 7}, - [1510] = {.lex_state = 5, .external_lex_state = 8}, - [1511] = {.lex_state = 5, .external_lex_state = 7}, - [1512] = {.lex_state = 5, .external_lex_state = 7}, - [1513] = {.lex_state = 5, .external_lex_state = 8}, - [1514] = {.lex_state = 5, .external_lex_state = 7}, - [1515] = {.lex_state = 5, .external_lex_state = 7}, - [1516] = {.lex_state = 5, .external_lex_state = 7}, - [1517] = {.lex_state = 5, .external_lex_state = 7}, - [1518] = {.lex_state = 5, .external_lex_state = 7}, - [1519] = {.lex_state = 5, .external_lex_state = 7}, - [1520] = {.lex_state = 5, .external_lex_state = 8}, - [1521] = {.lex_state = 5, .external_lex_state = 8}, - [1522] = {.lex_state = 5, .external_lex_state = 8}, - [1523] = {.lex_state = 5, .external_lex_state = 2}, - [1524] = {.lex_state = 5, .external_lex_state = 2}, - [1525] = {.lex_state = 5, .external_lex_state = 2}, - [1526] = {.lex_state = 5, .external_lex_state = 2}, - [1527] = {.lex_state = 5, .external_lex_state = 2}, - [1528] = {.lex_state = 5, .external_lex_state = 6}, - [1529] = {.lex_state = 5, .external_lex_state = 6}, - [1530] = {.lex_state = 5, .external_lex_state = 6}, - [1531] = {.lex_state = 5, .external_lex_state = 6}, - [1532] = {.lex_state = 5, .external_lex_state = 6}, - [1533] = {.lex_state = 5, .external_lex_state = 6}, - [1534] = {.lex_state = 5, .external_lex_state = 6}, - [1535] = {.lex_state = 5, .external_lex_state = 6}, - [1536] = {.lex_state = 5, .external_lex_state = 6}, - [1537] = {.lex_state = 5, .external_lex_state = 6}, - [1538] = {.lex_state = 5, .external_lex_state = 6}, - [1539] = {.lex_state = 5, .external_lex_state = 6}, - [1540] = {.lex_state = 5, .external_lex_state = 6}, - [1541] = {.lex_state = 5, .external_lex_state = 6}, - [1542] = {.lex_state = 5, .external_lex_state = 6}, - [1543] = {.lex_state = 5, .external_lex_state = 6}, - [1544] = {.lex_state = 5, .external_lex_state = 6}, - [1545] = {.lex_state = 5, .external_lex_state = 6}, - [1546] = {.lex_state = 5, .external_lex_state = 6}, - [1547] = {.lex_state = 5, .external_lex_state = 6}, - [1548] = {.lex_state = 5, .external_lex_state = 2}, - [1549] = {.lex_state = 5, .external_lex_state = 2}, - [1550] = {.lex_state = 5, .external_lex_state = 2}, - [1551] = {.lex_state = 5, .external_lex_state = 2}, - [1552] = {.lex_state = 5, .external_lex_state = 2}, - [1553] = {.lex_state = 5, .external_lex_state = 2}, - [1554] = {.lex_state = 8, .external_lex_state = 9}, - [1555] = {.lex_state = 8, .external_lex_state = 9}, - [1556] = {.lex_state = 5, .external_lex_state = 2}, - [1557] = {.lex_state = 5, .external_lex_state = 2}, - [1558] = {.lex_state = 5, .external_lex_state = 2}, - [1559] = {.lex_state = 8, .external_lex_state = 13}, - [1560] = {.lex_state = 8, .external_lex_state = 15}, - [1561] = {.lex_state = 8, .external_lex_state = 15}, - [1562] = {.lex_state = 8, .external_lex_state = 13}, - [1563] = {.lex_state = 8, .external_lex_state = 14}, - [1564] = {.lex_state = 52, .external_lex_state = 12}, - [1565] = {.lex_state = 52, .external_lex_state = 12}, - [1566] = {.lex_state = 8, .external_lex_state = 14}, - [1567] = {.lex_state = 52, .external_lex_state = 12}, - [1568] = {.lex_state = 52, .external_lex_state = 12}, - [1569] = {.lex_state = 52, .external_lex_state = 2}, - [1570] = {.lex_state = 13, .external_lex_state = 12}, - [1571] = {.lex_state = 52, .external_lex_state = 13}, - [1572] = {.lex_state = 52, .external_lex_state = 14}, - [1573] = {.lex_state = 52, .external_lex_state = 2}, - [1574] = {.lex_state = 13, .external_lex_state = 12}, - [1575] = {.lex_state = 52, .external_lex_state = 13}, - [1576] = {.lex_state = 13, .external_lex_state = 12}, - [1577] = {.lex_state = 13, .external_lex_state = 12}, - [1578] = {.lex_state = 13, .external_lex_state = 12}, - [1579] = {.lex_state = 52, .external_lex_state = 14}, - [1580] = {.lex_state = 13, .external_lex_state = 12}, - [1581] = {.lex_state = 13, .external_lex_state = 13}, - [1582] = {.lex_state = 13, .external_lex_state = 13}, - [1583] = {.lex_state = 13, .external_lex_state = 13}, - [1584] = {.lex_state = 11, .external_lex_state = 9}, - [1585] = {.lex_state = 13, .external_lex_state = 13}, - [1586] = {.lex_state = 13, .external_lex_state = 13}, - [1587] = {.lex_state = 11, .external_lex_state = 9}, - [1588] = {.lex_state = 13, .external_lex_state = 13}, - [1589] = {.lex_state = 13, .external_lex_state = 15}, - [1590] = {.lex_state = 13, .external_lex_state = 13}, - [1591] = {.lex_state = 13, .external_lex_state = 15}, - [1592] = {.lex_state = 11, .external_lex_state = 9}, - [1593] = {.lex_state = 13, .external_lex_state = 15}, - [1594] = {.lex_state = 13, .external_lex_state = 14}, - [1595] = {.lex_state = 13, .external_lex_state = 14}, - [1596] = {.lex_state = 13, .external_lex_state = 14}, - [1597] = {.lex_state = 13, .external_lex_state = 14}, - [1598] = {.lex_state = 13, .external_lex_state = 13}, - [1599] = {.lex_state = 13, .external_lex_state = 13}, - [1600] = {.lex_state = 13, .external_lex_state = 13}, - [1601] = {.lex_state = 13, .external_lex_state = 13}, - [1602] = {.lex_state = 13, .external_lex_state = 13}, - [1603] = {.lex_state = 13, .external_lex_state = 15}, - [1604] = {.lex_state = 11, .external_lex_state = 9}, - [1605] = {.lex_state = 13, .external_lex_state = 15}, - [1606] = {.lex_state = 13, .external_lex_state = 14}, - [1607] = {.lex_state = 13, .external_lex_state = 15}, - [1608] = {.lex_state = 13, .external_lex_state = 15}, - [1609] = {.lex_state = 13, .external_lex_state = 15}, + [1439] = {.lex_state = 14, .external_lex_state = 14}, + [1440] = {.lex_state = 14, .external_lex_state = 14}, + [1441] = {.lex_state = 14, .external_lex_state = 14}, + [1442] = {.lex_state = 14, .external_lex_state = 14}, + [1443] = {.lex_state = 14, .external_lex_state = 14}, + [1444] = {.lex_state = 14, .external_lex_state = 14}, + [1445] = {.lex_state = 14, .external_lex_state = 14}, + [1446] = {.lex_state = 14, .external_lex_state = 14}, + [1447] = {.lex_state = 14, .external_lex_state = 14}, + [1448] = {.lex_state = 14, .external_lex_state = 14}, + [1449] = {.lex_state = 14, .external_lex_state = 14}, + [1450] = {.lex_state = 13, .external_lex_state = 15}, + [1451] = {.lex_state = 13, .external_lex_state = 15}, + [1452] = {.lex_state = 13, .external_lex_state = 15}, + [1453] = {.lex_state = 13, .external_lex_state = 15}, + [1454] = {.lex_state = 13, .external_lex_state = 15}, + [1455] = {.lex_state = 13, .external_lex_state = 15}, + [1456] = {.lex_state = 13, .external_lex_state = 15}, + [1457] = {.lex_state = 14, .external_lex_state = 14}, + [1458] = {.lex_state = 14, .external_lex_state = 13}, + [1459] = {.lex_state = 14, .external_lex_state = 12}, + [1460] = {.lex_state = 13, .external_lex_state = 15}, + [1461] = {.lex_state = 13, .external_lex_state = 15}, + [1462] = {.lex_state = 13, .external_lex_state = 15}, + [1463] = {.lex_state = 13, .external_lex_state = 15}, + [1464] = {.lex_state = 13, .external_lex_state = 15}, + [1465] = {.lex_state = 13, .external_lex_state = 15}, + [1466] = {.lex_state = 13, .external_lex_state = 15}, + [1467] = {.lex_state = 13, .external_lex_state = 15}, + [1468] = {.lex_state = 13, .external_lex_state = 15}, + [1469] = {.lex_state = 12, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1470] = {.lex_state = 12, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1471] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 15}, + [1472] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1473] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [1474] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1475] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1476] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [1477] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 15}, + [1478] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1479] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 15}, + [1480] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 15}, + [1481] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1482] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 15}, + [1483] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1484] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [1485] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 15}, + [1486] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1487] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1488] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [1489] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1490] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [1491] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1492] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1493] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1494] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [1495] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1496] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [1497] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1498] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1499] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1500] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [1501] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 15}, + [1502] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 15}, + [1503] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1504] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 15}, + [1505] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [1506] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1507] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1508] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1509] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1510] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1511] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1512] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1513] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1514] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1515] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1516] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1517] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1518] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 15}, + [1519] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 15}, + [1520] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 15}, + [1521] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1522] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1523] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 15}, + [1524] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1525] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1526] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1527] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1528] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1529] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1530] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1531] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 15}, + [1532] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1533] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1534] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1535] = {.lex_state = 13, .external_lex_state = 9}, + [1536] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1537] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1538] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1539] = {.lex_state = 13, .external_lex_state = 9}, + [1540] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1541] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1542] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 15}, + [1543] = {.lex_state = 13, .external_lex_state = 15}, + [1544] = {.lex_state = 13, .external_lex_state = 13}, + [1545] = {.lex_state = 13, .external_lex_state = 13}, + [1546] = {.lex_state = 13, .external_lex_state = 15}, + [1547] = {.lex_state = 13, .external_lex_state = 12}, + [1548] = {.lex_state = 13, .external_lex_state = 12}, + [1549] = {.lex_state = 13, .external_lex_state = 12}, + [1550] = {.lex_state = 13, .external_lex_state = 14}, + [1551] = {.lex_state = 13, .external_lex_state = 14}, + [1552] = {.lex_state = 13, .external_lex_state = 12}, + [1553] = {.lex_state = 14, .external_lex_state = 12}, + [1554] = {.lex_state = 8, .external_lex_state = 14}, + [1555] = {.lex_state = 14, .external_lex_state = 12}, + [1556] = {.lex_state = 8, .external_lex_state = 13}, + [1557] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1558] = {.lex_state = 8, .external_lex_state = 14}, + [1559] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1560] = {.lex_state = 8, .external_lex_state = 13}, + [1561] = {.lex_state = 14, .external_lex_state = 12}, + [1562] = {.lex_state = 14, .external_lex_state = 12}, + [1563] = {.lex_state = 14, .external_lex_state = 12}, + [1564] = {.lex_state = 14, .external_lex_state = 12}, + [1565] = {.lex_state = 14, .external_lex_state = 13}, + [1566] = {.lex_state = 14, .external_lex_state = 13}, + [1567] = {.lex_state = 11, .external_lex_state = 9}, + [1568] = {.lex_state = 14, .external_lex_state = 13}, + [1569] = {.lex_state = 14, .external_lex_state = 13}, + [1570] = {.lex_state = 11, .external_lex_state = 9}, + [1571] = {.lex_state = 14, .external_lex_state = 13}, + [1572] = {.lex_state = 14, .external_lex_state = 13}, + [1573] = {.lex_state = 14, .external_lex_state = 15}, + [1574] = {.lex_state = 14, .external_lex_state = 13}, + [1575] = {.lex_state = 14, .external_lex_state = 13}, + [1576] = {.lex_state = 11, .external_lex_state = 9}, + [1577] = {.lex_state = 11, .external_lex_state = 9}, + [1578] = {.lex_state = 11, .external_lex_state = 9}, + [1579] = {.lex_state = 14, .external_lex_state = 13}, + [1580] = {.lex_state = 14, .external_lex_state = 13}, + [1581] = {.lex_state = 14, .external_lex_state = 15}, + [1582] = {.lex_state = 14, .external_lex_state = 13}, + [1583] = {.lex_state = 14, .external_lex_state = 15}, + [1584] = {.lex_state = 14, .external_lex_state = 13}, + [1585] = {.lex_state = 14, .external_lex_state = 15}, + [1586] = {.lex_state = 14, .external_lex_state = 14}, + [1587] = {.lex_state = 14, .external_lex_state = 14}, + [1588] = {.lex_state = 14, .external_lex_state = 14}, + [1589] = {.lex_state = 14, .external_lex_state = 14}, + [1590] = {.lex_state = 14, .external_lex_state = 15}, + [1591] = {.lex_state = 14, .external_lex_state = 15}, + [1592] = {.lex_state = 14, .external_lex_state = 15}, + [1593] = {.lex_state = 14, .external_lex_state = 15}, + [1594] = {.lex_state = 14, .external_lex_state = 15}, + [1595] = {.lex_state = 14, .external_lex_state = 15}, + [1596] = {.lex_state = 14, .external_lex_state = 15}, + [1597] = {.lex_state = 14, .external_lex_state = 15}, + [1598] = {.lex_state = 14, .external_lex_state = 14}, + [1599] = {.lex_state = 14, .external_lex_state = 14}, + [1600] = {.lex_state = 14, .external_lex_state = 15}, + [1601] = {.lex_state = 14, .external_lex_state = 15}, + [1602] = {.lex_state = 14, .external_lex_state = 15}, + [1603] = {.lex_state = 14, .external_lex_state = 15}, + [1604] = {.lex_state = 14, .external_lex_state = 15}, + [1605] = {.lex_state = 14, .external_lex_state = 15}, + [1606] = {.lex_state = 14, .external_lex_state = 15}, + [1607] = {.lex_state = 14, .external_lex_state = 15}, + [1608] = {.lex_state = 14, .external_lex_state = 15}, + [1609] = {.lex_state = 14, .external_lex_state = 15}, [1610] = {.lex_state = 11, .external_lex_state = 9}, [1611] = {.lex_state = 13, .external_lex_state = 15}, - [1612] = {.lex_state = 13, .external_lex_state = 15}, - [1613] = {.lex_state = 13, .external_lex_state = 15}, - [1614] = {.lex_state = 13, .external_lex_state = 15}, - [1615] = {.lex_state = 13, .external_lex_state = 15}, - [1616] = {.lex_state = 13, .external_lex_state = 15}, - [1617] = {.lex_state = 13, .external_lex_state = 15}, - [1618] = {.lex_state = 13, .external_lex_state = 15}, - [1619] = {.lex_state = 13, .external_lex_state = 15}, + [1612] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1613] = {.lex_state = 11, .external_lex_state = 9}, + [1614] = {.lex_state = 11, .external_lex_state = 15}, + [1615] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1616] = {.lex_state = 11, .external_lex_state = 15}, + [1617] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1618] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1619] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, [1620] = {.lex_state = 13, .external_lex_state = 15}, - [1621] = {.lex_state = 13, .external_lex_state = 14}, - [1622] = {.lex_state = 13, .external_lex_state = 15}, + [1621] = {.lex_state = 11, .external_lex_state = 15}, + [1622] = {.lex_state = 11, .external_lex_state = 15}, [1623] = {.lex_state = 13, .external_lex_state = 15}, - [1624] = {.lex_state = 13, .external_lex_state = 15}, + [1624] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, [1625] = {.lex_state = 13, .external_lex_state = 15}, - [1626] = {.lex_state = 11, .external_lex_state = 9}, - [1627] = {.lex_state = 11, .external_lex_state = 15}, - [1628] = {.lex_state = 12, .external_lex_state = 15}, - [1629] = {.lex_state = 12, .external_lex_state = 15}, - [1630] = {.lex_state = 11, .external_lex_state = 9}, - [1631] = {.lex_state = 12, .external_lex_state = 15}, - [1632] = {.lex_state = 11, .external_lex_state = 15}, - [1633] = {.lex_state = 12, .external_lex_state = 15}, - [1634] = {.lex_state = 11, .external_lex_state = 15}, - [1635] = {.lex_state = 12, .external_lex_state = 15}, - [1636] = {.lex_state = 12, .external_lex_state = 15}, - [1637] = {.lex_state = 12, .external_lex_state = 15}, - [1638] = {.lex_state = 12, .external_lex_state = 15}, - [1639] = {.lex_state = 11, .external_lex_state = 15}, - [1640] = {.lex_state = 11, .external_lex_state = 15}, - [1641] = {.lex_state = 11, .external_lex_state = 15}, - [1642] = {.lex_state = 11, .external_lex_state = 15}, - [1643] = {.lex_state = 12, .external_lex_state = 15}, - [1644] = {.lex_state = 11, .external_lex_state = 15}, - [1645] = {.lex_state = 12, .external_lex_state = 15}, - [1646] = {.lex_state = 12, .external_lex_state = 15}, - [1647] = {.lex_state = 5, .external_lex_state = 13}, - [1648] = {.lex_state = 11, .external_lex_state = 15}, - [1649] = {.lex_state = 12, .external_lex_state = 15}, - [1650] = {.lex_state = 12, .external_lex_state = 15}, - [1651] = {.lex_state = 5, .external_lex_state = 13}, - [1652] = {.lex_state = 5, .external_lex_state = 13}, - [1653] = {.lex_state = 5, .external_lex_state = 15}, - [1654] = {.lex_state = 5, .external_lex_state = 15}, - [1655] = {.lex_state = 52, .external_lex_state = 12}, - [1656] = {.lex_state = 52, .external_lex_state = 12}, - [1657] = {.lex_state = 8, .external_lex_state = 9}, - [1658] = {.lex_state = 8, .external_lex_state = 9}, - [1659] = {.lex_state = 8, .external_lex_state = 9}, - [1660] = {.lex_state = 8, .external_lex_state = 9}, - [1661] = {.lex_state = 8, .external_lex_state = 9}, - [1662] = {.lex_state = 8, .external_lex_state = 9}, - [1663] = {.lex_state = 52, .external_lex_state = 12}, - [1664] = {.lex_state = 8, .external_lex_state = 9}, - [1665] = {.lex_state = 8, .external_lex_state = 9}, - [1666] = {.lex_state = 8, .external_lex_state = 9}, - [1667] = {.lex_state = 52, .external_lex_state = 12}, - [1668] = {.lex_state = 52, .external_lex_state = 12}, - [1669] = {.lex_state = 52, .external_lex_state = 12}, - [1670] = {.lex_state = 52, .external_lex_state = 12}, - [1671] = {.lex_state = 52, .external_lex_state = 12}, + [1626] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1627] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1628] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1629] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1630] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1631] = {.lex_state = 5, .external_lex_state = 13, .reserved_word_set_id = 1}, + [1632] = {.lex_state = 5, .external_lex_state = 13, .reserved_word_set_id = 1}, + [1633] = {.lex_state = 5, .external_lex_state = 13, .reserved_word_set_id = 1}, + [1634] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1635] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1636] = {.lex_state = 11, .external_lex_state = 15}, + [1637] = {.lex_state = 5, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1638] = {.lex_state = 5, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1639] = {.lex_state = 13, .external_lex_state = 12}, + [1640] = {.lex_state = 13, .external_lex_state = 9}, + [1641] = {.lex_state = 13, .external_lex_state = 9}, + [1642] = {.lex_state = 13, .external_lex_state = 12}, + [1643] = {.lex_state = 13, .external_lex_state = 9}, + [1644] = {.lex_state = 13, .external_lex_state = 9}, + [1645] = {.lex_state = 13, .external_lex_state = 9}, + [1646] = {.lex_state = 13, .external_lex_state = 9}, + [1647] = {.lex_state = 13, .external_lex_state = 9}, + [1648] = {.lex_state = 13, .external_lex_state = 12}, + [1649] = {.lex_state = 13, .external_lex_state = 9}, + [1650] = {.lex_state = 13, .external_lex_state = 12}, + [1651] = {.lex_state = 13, .external_lex_state = 12}, + [1652] = {.lex_state = 13, .external_lex_state = 12}, + [1653] = {.lex_state = 13, .external_lex_state = 9}, + [1654] = {.lex_state = 13, .external_lex_state = 12}, + [1655] = {.lex_state = 13, .external_lex_state = 12}, + [1656] = {.lex_state = 8, .external_lex_state = 14}, + [1657] = {.lex_state = 8, .external_lex_state = 13}, + [1658] = {.lex_state = 8, .external_lex_state = 13}, + [1659] = {.lex_state = 0, .external_lex_state = 16}, + [1660] = {.lex_state = 0, .external_lex_state = 16}, + [1661] = {.lex_state = 8, .external_lex_state = 13}, + [1662] = {.lex_state = 8, .external_lex_state = 13}, + [1663] = {.lex_state = 0, .external_lex_state = 16}, + [1664] = {.lex_state = 0, .external_lex_state = 16}, + [1665] = {.lex_state = 8, .external_lex_state = 14}, + [1666] = {.lex_state = 8, .external_lex_state = 13}, + [1667] = {.lex_state = 0, .external_lex_state = 16}, + [1668] = {.lex_state = 8, .external_lex_state = 13}, + [1669] = {.lex_state = 0, .external_lex_state = 16}, + [1670] = {.lex_state = 8, .external_lex_state = 13}, + [1671] = {.lex_state = 0, .external_lex_state = 16}, [1672] = {.lex_state = 0, .external_lex_state = 16}, - [1673] = {.lex_state = 52, .external_lex_state = 14}, - [1674] = {.lex_state = 0, .external_lex_state = 16}, + [1673] = {.lex_state = 8, .external_lex_state = 13}, + [1674] = {.lex_state = 8, .external_lex_state = 13}, [1675] = {.lex_state = 0, .external_lex_state = 16}, - [1676] = {.lex_state = 52, .external_lex_state = 13}, - [1677] = {.lex_state = 52, .external_lex_state = 13}, - [1678] = {.lex_state = 0, .external_lex_state = 16}, + [1676] = {.lex_state = 0, .external_lex_state = 16}, + [1677] = {.lex_state = 0, .external_lex_state = 16}, + [1678] = {.lex_state = 8, .external_lex_state = 13}, [1679] = {.lex_state = 0, .external_lex_state = 16}, - [1680] = {.lex_state = 52, .external_lex_state = 13}, - [1681] = {.lex_state = 52, .external_lex_state = 13}, - [1682] = {.lex_state = 52, .external_lex_state = 13}, - [1683] = {.lex_state = 0, .external_lex_state = 16}, - [1684] = {.lex_state = 0, .external_lex_state = 16}, + [1680] = {.lex_state = 0, .external_lex_state = 16}, + [1681] = {.lex_state = 0, .external_lex_state = 16}, + [1682] = {.lex_state = 0, .external_lex_state = 16}, + [1683] = {.lex_state = 8, .external_lex_state = 13}, + [1684] = {.lex_state = 8, .external_lex_state = 13}, [1685] = {.lex_state = 0, .external_lex_state = 16}, - [1686] = {.lex_state = 52, .external_lex_state = 13}, - [1687] = {.lex_state = 52, .external_lex_state = 13}, - [1688] = {.lex_state = 52, .external_lex_state = 13}, - [1689] = {.lex_state = 0, .external_lex_state = 16}, - [1690] = {.lex_state = 0, .external_lex_state = 16}, - [1691] = {.lex_state = 52, .external_lex_state = 13}, - [1692] = {.lex_state = 52, .external_lex_state = 13}, - [1693] = {.lex_state = 52, .external_lex_state = 13}, - [1694] = {.lex_state = 52, .external_lex_state = 13}, - [1695] = {.lex_state = 0, .external_lex_state = 16}, - [1696] = {.lex_state = 0, .external_lex_state = 16}, - [1697] = {.lex_state = 52, .external_lex_state = 13}, - [1698] = {.lex_state = 52, .external_lex_state = 13}, - [1699] = {.lex_state = 0, .external_lex_state = 16}, - [1700] = {.lex_state = 0, .external_lex_state = 16}, - [1701] = {.lex_state = 52, .external_lex_state = 13}, - [1702] = {.lex_state = 52, .external_lex_state = 13}, - [1703] = {.lex_state = 0, .external_lex_state = 16}, - [1704] = {.lex_state = 0, .external_lex_state = 16}, - [1705] = {.lex_state = 52, .external_lex_state = 14}, - [1706] = {.lex_state = 0, .external_lex_state = 16}, - [1707] = {.lex_state = 52, .external_lex_state = 14}, - [1708] = {.lex_state = 52, .external_lex_state = 13}, - [1709] = {.lex_state = 52, .external_lex_state = 14}, - [1710] = {.lex_state = 0, .external_lex_state = 16}, - [1711] = {.lex_state = 52, .external_lex_state = 14}, - [1712] = {.lex_state = 52, .external_lex_state = 14}, - [1713] = {.lex_state = 52, .external_lex_state = 14}, - [1714] = {.lex_state = 52, .external_lex_state = 14}, - [1715] = {.lex_state = 0, .external_lex_state = 16}, - [1716] = {.lex_state = 8, .external_lex_state = 9}, - [1717] = {.lex_state = 8, .external_lex_state = 15}, - [1718] = {.lex_state = 8, .external_lex_state = 13}, - [1719] = {.lex_state = 8, .external_lex_state = 13}, - [1720] = {.lex_state = 8, .external_lex_state = 15}, - [1721] = {.lex_state = 8, .external_lex_state = 15}, - [1722] = {.lex_state = 8, .external_lex_state = 13}, - [1723] = {.lex_state = 8, .external_lex_state = 13}, - [1724] = {.lex_state = 8, .external_lex_state = 13}, - [1725] = {.lex_state = 8, .external_lex_state = 15}, - [1726] = {.lex_state = 8, .external_lex_state = 13}, - [1727] = {.lex_state = 8, .external_lex_state = 15}, - [1728] = {.lex_state = 8, .external_lex_state = 13}, - [1729] = {.lex_state = 8, .external_lex_state = 15}, - [1730] = {.lex_state = 8, .external_lex_state = 15}, - [1731] = {.lex_state = 8, .external_lex_state = 15}, - [1732] = {.lex_state = 52, .external_lex_state = 12}, - [1733] = {.lex_state = 8, .external_lex_state = 13}, - [1734] = {.lex_state = 8, .external_lex_state = 15}, - [1735] = {.lex_state = 8, .external_lex_state = 13}, - [1736] = {.lex_state = 8, .external_lex_state = 13}, - [1737] = {.lex_state = 52, .external_lex_state = 12}, - [1738] = {.lex_state = 8, .external_lex_state = 9}, - [1739] = {.lex_state = 52, .external_lex_state = 12}, - [1740] = {.lex_state = 52, .external_lex_state = 12}, - [1741] = {.lex_state = 52, .external_lex_state = 12}, - [1742] = {.lex_state = 52, .external_lex_state = 12}, - [1743] = {.lex_state = 52, .external_lex_state = 12}, - [1744] = {.lex_state = 52, .external_lex_state = 12}, - [1745] = {.lex_state = 52, .external_lex_state = 12}, - [1746] = {.lex_state = 52, .external_lex_state = 9}, - [1747] = {.lex_state = 8, .external_lex_state = 15}, - [1748] = {.lex_state = 8, .external_lex_state = 15}, - [1749] = {.lex_state = 52, .external_lex_state = 12}, - [1750] = {.lex_state = 52, .external_lex_state = 12}, - [1751] = {.lex_state = 8, .external_lex_state = 14}, - [1752] = {.lex_state = 52, .external_lex_state = 12}, - [1753] = {.lex_state = 52, .external_lex_state = 12}, - [1754] = {.lex_state = 52, .external_lex_state = 12}, - [1755] = {.lex_state = 52, .external_lex_state = 12}, - [1756] = {.lex_state = 8, .external_lex_state = 14}, - [1757] = {.lex_state = 8, .external_lex_state = 15}, - [1758] = {.lex_state = 52, .external_lex_state = 12}, - [1759] = {.lex_state = 52, .external_lex_state = 12}, - [1760] = {.lex_state = 8, .external_lex_state = 14}, - [1761] = {.lex_state = 8, .external_lex_state = 15}, - [1762] = {.lex_state = 52, .external_lex_state = 12}, + [1686] = {.lex_state = 0, .external_lex_state = 16}, + [1687] = {.lex_state = 8, .external_lex_state = 14}, + [1688] = {.lex_state = 0, .external_lex_state = 16}, + [1689] = {.lex_state = 8, .external_lex_state = 14}, + [1690] = {.lex_state = 8, .external_lex_state = 13}, + [1691] = {.lex_state = 8, .external_lex_state = 13}, + [1692] = {.lex_state = 8, .external_lex_state = 13}, + [1693] = {.lex_state = 8, .external_lex_state = 14}, + [1694] = {.lex_state = 8, .external_lex_state = 14}, + [1695] = {.lex_state = 8, .external_lex_state = 13}, + [1696] = {.lex_state = 13, .external_lex_state = 9}, + [1697] = {.lex_state = 8, .external_lex_state = 14}, + [1698] = {.lex_state = 0, .external_lex_state = 16}, + [1699] = {.lex_state = 8, .external_lex_state = 14}, + [1700] = {.lex_state = 8, .external_lex_state = 13}, + [1701] = {.lex_state = 13, .external_lex_state = 13}, + [1702] = {.lex_state = 13, .external_lex_state = 13}, + [1703] = {.lex_state = 13, .external_lex_state = 15}, + [1704] = {.lex_state = 13, .external_lex_state = 13}, + [1705] = {.lex_state = 13, .external_lex_state = 12}, + [1706] = {.lex_state = 13, .external_lex_state = 13}, + [1707] = {.lex_state = 13, .external_lex_state = 13}, + [1708] = {.lex_state = 13, .external_lex_state = 15}, + [1709] = {.lex_state = 13, .external_lex_state = 15}, + [1710] = {.lex_state = 13, .external_lex_state = 15}, + [1711] = {.lex_state = 13, .external_lex_state = 13}, + [1712] = {.lex_state = 13, .external_lex_state = 15}, + [1713] = {.lex_state = 13, .external_lex_state = 15}, + [1714] = {.lex_state = 13, .external_lex_state = 13}, + [1715] = {.lex_state = 13, .external_lex_state = 13}, + [1716] = {.lex_state = 13, .external_lex_state = 12}, + [1717] = {.lex_state = 13, .external_lex_state = 9}, + [1718] = {.lex_state = 13, .external_lex_state = 15}, + [1719] = {.lex_state = 13, .external_lex_state = 13}, + [1720] = {.lex_state = 13, .external_lex_state = 15}, + [1721] = {.lex_state = 13, .external_lex_state = 15}, + [1722] = {.lex_state = 13, .external_lex_state = 13}, + [1723] = {.lex_state = 13, .external_lex_state = 15}, + [1724] = {.lex_state = 13, .external_lex_state = 14}, + [1725] = {.lex_state = 13, .external_lex_state = 14}, + [1726] = {.lex_state = 13, .external_lex_state = 14}, + [1727] = {.lex_state = 13, .external_lex_state = 14}, + [1728] = {.lex_state = 13, .external_lex_state = 14}, + [1729] = {.lex_state = 13, .external_lex_state = 14}, + [1730] = {.lex_state = 13, .external_lex_state = 15}, + [1731] = {.lex_state = 13, .external_lex_state = 12}, + [1732] = {.lex_state = 13, .external_lex_state = 14}, + [1733] = {.lex_state = 13, .external_lex_state = 12}, + [1734] = {.lex_state = 13, .external_lex_state = 12}, + [1735] = {.lex_state = 13, .external_lex_state = 12}, + [1736] = {.lex_state = 13, .external_lex_state = 12}, + [1737] = {.lex_state = 13, .external_lex_state = 12}, + [1738] = {.lex_state = 13, .external_lex_state = 12}, + [1739] = {.lex_state = 8, .external_lex_state = 9}, + [1740] = {.lex_state = 13, .external_lex_state = 15}, + [1741] = {.lex_state = 13, .external_lex_state = 12}, + [1742] = {.lex_state = 13, .external_lex_state = 12}, + [1743] = {.lex_state = 13, .external_lex_state = 15}, + [1744] = {.lex_state = 13, .external_lex_state = 12}, + [1745] = {.lex_state = 13, .external_lex_state = 12}, + [1746] = {.lex_state = 13, .external_lex_state = 14}, + [1747] = {.lex_state = 13, .external_lex_state = 12}, + [1748] = {.lex_state = 13, .external_lex_state = 12}, + [1749] = {.lex_state = 13, .external_lex_state = 12}, + [1750] = {.lex_state = 13, .external_lex_state = 12}, + [1751] = {.lex_state = 13, .external_lex_state = 14}, + [1752] = {.lex_state = 13, .external_lex_state = 12}, + [1753] = {.lex_state = 13, .external_lex_state = 12}, + [1754] = {.lex_state = 13, .external_lex_state = 12}, + [1755] = {.lex_state = 13, .external_lex_state = 12}, + [1756] = {.lex_state = 13, .external_lex_state = 14}, + [1757] = {.lex_state = 13, .external_lex_state = 15}, + [1758] = {.lex_state = 13, .external_lex_state = 12}, + [1759] = {.lex_state = 8, .external_lex_state = 13}, + [1760] = {.lex_state = 8, .external_lex_state = 9}, + [1761] = {.lex_state = 13, .external_lex_state = 2}, + [1762] = {.lex_state = 8, .external_lex_state = 13}, [1763] = {.lex_state = 8, .external_lex_state = 14}, - [1764] = {.lex_state = 8, .external_lex_state = 14}, - [1765] = {.lex_state = 8, .external_lex_state = 14}, + [1764] = {.lex_state = 8, .external_lex_state = 12}, + [1765] = {.lex_state = 13, .external_lex_state = 14}, [1766] = {.lex_state = 8, .external_lex_state = 14}, - [1767] = {.lex_state = 52, .external_lex_state = 12}, + [1767] = {.lex_state = 13, .external_lex_state = 14}, [1768] = {.lex_state = 8, .external_lex_state = 14}, - [1769] = {.lex_state = 52, .external_lex_state = 12}, - [1770] = {.lex_state = 8, .external_lex_state = 15}, - [1771] = {.lex_state = 52, .external_lex_state = 12}, + [1769] = {.lex_state = 13, .external_lex_state = 14}, + [1770] = {.lex_state = 8, .external_lex_state = 12}, + [1771] = {.lex_state = 8, .external_lex_state = 14}, [1772] = {.lex_state = 8, .external_lex_state = 14}, [1773] = {.lex_state = 8, .external_lex_state = 14}, - [1774] = {.lex_state = 52, .external_lex_state = 12}, - [1775] = {.lex_state = 0, .external_lex_state = 16}, - [1776] = {.lex_state = 9, .external_lex_state = 17}, - [1777] = {.lex_state = 52, .external_lex_state = 14}, - [1778] = {.lex_state = 52, .external_lex_state = 9}, - [1779] = {.lex_state = 52, .external_lex_state = 14}, - [1780] = {.lex_state = 52, .external_lex_state = 9}, - [1781] = {.lex_state = 52, .external_lex_state = 9}, - [1782] = {.lex_state = 52, .external_lex_state = 9}, - [1783] = {.lex_state = 52, .external_lex_state = 13}, - [1784] = {.lex_state = 52, .external_lex_state = 14}, - [1785] = {.lex_state = 52, .external_lex_state = 13}, - [1786] = {.lex_state = 7, .external_lex_state = 12}, - [1787] = {.lex_state = 52, .external_lex_state = 14}, - [1788] = {.lex_state = 9, .external_lex_state = 17}, - [1789] = {.lex_state = 52, .external_lex_state = 9}, - [1790] = {.lex_state = 52, .external_lex_state = 14}, - [1791] = {.lex_state = 52, .external_lex_state = 15}, - [1792] = {.lex_state = 52, .external_lex_state = 12}, - [1793] = {.lex_state = 52, .external_lex_state = 14}, - [1794] = {.lex_state = 52, .external_lex_state = 12}, - [1795] = {.lex_state = 52, .external_lex_state = 14}, - [1796] = {.lex_state = 52, .external_lex_state = 15}, - [1797] = {.lex_state = 52, .external_lex_state = 14}, - [1798] = {.lex_state = 52, .external_lex_state = 13}, - [1799] = {.lex_state = 9, .external_lex_state = 17}, - [1800] = {.lex_state = 52, .external_lex_state = 14}, - [1801] = {.lex_state = 52, .external_lex_state = 14}, - [1802] = {.lex_state = 52, .external_lex_state = 14}, - [1803] = {.lex_state = 52, .external_lex_state = 14}, - [1804] = {.lex_state = 52, .external_lex_state = 12}, - [1805] = {.lex_state = 52, .external_lex_state = 9}, - [1806] = {.lex_state = 52, .external_lex_state = 13}, - [1807] = {.lex_state = 52, .external_lex_state = 13}, - [1808] = {.lex_state = 52, .external_lex_state = 13}, - [1809] = {.lex_state = 52, .external_lex_state = 13}, - [1810] = {.lex_state = 52, .external_lex_state = 14}, - [1811] = {.lex_state = 7, .external_lex_state = 13}, - [1812] = {.lex_state = 0, .external_lex_state = 16}, - [1813] = {.lex_state = 52, .external_lex_state = 13}, - [1814] = {.lex_state = 52, .external_lex_state = 14}, - [1815] = {.lex_state = 52, .external_lex_state = 9}, - [1816] = {.lex_state = 52, .external_lex_state = 14}, - [1817] = {.lex_state = 52, .external_lex_state = 14}, - [1818] = {.lex_state = 52, .external_lex_state = 2}, - [1819] = {.lex_state = 8, .external_lex_state = 15}, - [1820] = {.lex_state = 52, .external_lex_state = 14}, - [1821] = {.lex_state = 52, .external_lex_state = 14}, - [1822] = {.lex_state = 9, .external_lex_state = 17}, - [1823] = {.lex_state = 52, .external_lex_state = 14}, - [1824] = {.lex_state = 52, .external_lex_state = 12}, - [1825] = {.lex_state = 52, .external_lex_state = 14}, - [1826] = {.lex_state = 52, .external_lex_state = 14}, - [1827] = {.lex_state = 52, .external_lex_state = 13}, - [1828] = {.lex_state = 52, .external_lex_state = 9}, - [1829] = {.lex_state = 52, .external_lex_state = 9}, - [1830] = {.lex_state = 52, .external_lex_state = 13}, - [1831] = {.lex_state = 52, .external_lex_state = 14}, - [1832] = {.lex_state = 52, .external_lex_state = 13}, - [1833] = {.lex_state = 7, .external_lex_state = 14}, - [1834] = {.lex_state = 52, .external_lex_state = 13}, - [1835] = {.lex_state = 52, .external_lex_state = 15}, - [1836] = {.lex_state = 52, .external_lex_state = 12}, - [1837] = {.lex_state = 52, .external_lex_state = 14}, - [1838] = {.lex_state = 7, .external_lex_state = 14}, - [1839] = {.lex_state = 52, .external_lex_state = 15}, - [1840] = {.lex_state = 7, .external_lex_state = 13}, - [1841] = {.lex_state = 7, .external_lex_state = 12}, - [1842] = {.lex_state = 52, .external_lex_state = 7}, - [1843] = {.lex_state = 52, .external_lex_state = 13}, - [1844] = {.lex_state = 52, .external_lex_state = 14}, - [1845] = {.lex_state = 52, .external_lex_state = 12}, - [1846] = {.lex_state = 52, .external_lex_state = 15}, - [1847] = {.lex_state = 52, .external_lex_state = 6}, - [1848] = {.lex_state = 52, .external_lex_state = 13}, - [1849] = {.lex_state = 7, .external_lex_state = 14}, - [1850] = {.lex_state = 52, .external_lex_state = 14}, - [1851] = {.lex_state = 52, .external_lex_state = 14}, - [1852] = {.lex_state = 52, .external_lex_state = 13}, - [1853] = {.lex_state = 52, .external_lex_state = 14}, - [1854] = {.lex_state = 7, .external_lex_state = 13}, - [1855] = {.lex_state = 52, .external_lex_state = 12}, - [1856] = {.lex_state = 52, .external_lex_state = 15}, - [1857] = {.lex_state = 52, .external_lex_state = 15}, - [1858] = {.lex_state = 52, .external_lex_state = 8}, - [1859] = {.lex_state = 52, .external_lex_state = 12}, - [1860] = {.lex_state = 52, .external_lex_state = 9}, - [1861] = {.lex_state = 52, .external_lex_state = 14}, - [1862] = {.lex_state = 52, .external_lex_state = 12}, - [1863] = {.lex_state = 52, .external_lex_state = 15}, - [1864] = {.lex_state = 7, .external_lex_state = 13}, - [1865] = {.lex_state = 52, .external_lex_state = 12}, - [1866] = {.lex_state = 52, .external_lex_state = 12}, - [1867] = {.lex_state = 52, .external_lex_state = 13}, - [1868] = {.lex_state = 52, .external_lex_state = 15}, - [1869] = {.lex_state = 52, .external_lex_state = 15}, - [1870] = {.lex_state = 7, .external_lex_state = 14}, - [1871] = {.lex_state = 7, .external_lex_state = 12}, - [1872] = {.lex_state = 52, .external_lex_state = 12}, - [1873] = {.lex_state = 7, .external_lex_state = 15}, - [1874] = {.lex_state = 52, .external_lex_state = 13}, - [1875] = {.lex_state = 52, .external_lex_state = 12}, - [1876] = {.lex_state = 7, .external_lex_state = 12}, - [1877] = {.lex_state = 52, .external_lex_state = 9}, - [1878] = {.lex_state = 52, .external_lex_state = 12}, - [1879] = {.lex_state = 52, .external_lex_state = 13}, - [1880] = {.lex_state = 52, .external_lex_state = 12}, - [1881] = {.lex_state = 52, .external_lex_state = 15}, - [1882] = {.lex_state = 52, .external_lex_state = 14}, - [1883] = {.lex_state = 52, .external_lex_state = 14}, - [1884] = {.lex_state = 52, .external_lex_state = 12}, - [1885] = {.lex_state = 0, .external_lex_state = 16}, - [1886] = {.lex_state = 52, .external_lex_state = 12}, - [1887] = {.lex_state = 52, .external_lex_state = 12}, - [1888] = {.lex_state = 8, .external_lex_state = 13}, - [1889] = {.lex_state = 8, .external_lex_state = 9}, - [1890] = {.lex_state = 8, .external_lex_state = 9}, - [1891] = {.lex_state = 52, .external_lex_state = 14}, - [1892] = {.lex_state = 52, .external_lex_state = 12}, - [1893] = {.lex_state = 52, .external_lex_state = 15}, - [1894] = {.lex_state = 8, .external_lex_state = 9}, - [1895] = {.lex_state = 7, .external_lex_state = 13}, - [1896] = {.lex_state = 8, .external_lex_state = 15}, - [1897] = {.lex_state = 52, .external_lex_state = 13}, - [1898] = {.lex_state = 7, .external_lex_state = 9}, - [1899] = {.lex_state = 52, .external_lex_state = 13}, - [1900] = {.lex_state = 52, .external_lex_state = 12}, - [1901] = {.lex_state = 52, .external_lex_state = 14}, - [1902] = {.lex_state = 52, .external_lex_state = 12}, - [1903] = {.lex_state = 52, .external_lex_state = 12}, - [1904] = {.lex_state = 8, .external_lex_state = 14}, - [1905] = {.lex_state = 52, .external_lex_state = 12}, - [1906] = {.lex_state = 7, .external_lex_state = 9}, - [1907] = {.lex_state = 52, .external_lex_state = 13}, - [1908] = {.lex_state = 52, .external_lex_state = 15}, - [1909] = {.lex_state = 52, .external_lex_state = 14}, - [1910] = {.lex_state = 52, .external_lex_state = 13}, - [1911] = {.lex_state = 52, .external_lex_state = 15}, - [1912] = {.lex_state = 52, .external_lex_state = 15}, - [1913] = {.lex_state = 52, .external_lex_state = 15}, - [1914] = {.lex_state = 52, .external_lex_state = 14}, - [1915] = {.lex_state = 52, .external_lex_state = 15}, - [1916] = {.lex_state = 52, .external_lex_state = 13}, - [1917] = {.lex_state = 52, .external_lex_state = 12}, - [1918] = {.lex_state = 8, .external_lex_state = 13}, - [1919] = {.lex_state = 52, .external_lex_state = 15}, - [1920] = {.lex_state = 52, .external_lex_state = 13}, - [1921] = {.lex_state = 52, .external_lex_state = 13}, + [1774] = {.lex_state = 8, .external_lex_state = 13}, + [1775] = {.lex_state = 8, .external_lex_state = 13}, + [1776] = {.lex_state = 8, .external_lex_state = 9}, + [1777] = {.lex_state = 8, .external_lex_state = 15}, + [1778] = {.lex_state = 13, .external_lex_state = 14}, + [1779] = {.lex_state = 8, .external_lex_state = 9}, + [1780] = {.lex_state = 8, .external_lex_state = 13}, + [1781] = {.lex_state = 8, .external_lex_state = 9}, + [1782] = {.lex_state = 8, .external_lex_state = 14}, + [1783] = {.lex_state = 13, .external_lex_state = 14}, + [1784] = {.lex_state = 55, .external_lex_state = 17}, + [1785] = {.lex_state = 13, .external_lex_state = 14}, + [1786] = {.lex_state = 8, .external_lex_state = 14}, + [1787] = {.lex_state = 13, .external_lex_state = 14}, + [1788] = {.lex_state = 55, .external_lex_state = 17}, + [1789] = {.lex_state = 0, .external_lex_state = 16}, + [1790] = {.lex_state = 8, .external_lex_state = 9}, + [1791] = {.lex_state = 8, .external_lex_state = 14}, + [1792] = {.lex_state = 13, .external_lex_state = 14}, + [1793] = {.lex_state = 8, .external_lex_state = 9}, + [1794] = {.lex_state = 55, .external_lex_state = 17}, + [1795] = {.lex_state = 8, .external_lex_state = 14}, + [1796] = {.lex_state = 13, .external_lex_state = 14}, + [1797] = {.lex_state = 8, .external_lex_state = 13}, + [1798] = {.lex_state = 8, .external_lex_state = 13}, + [1799] = {.lex_state = 8, .external_lex_state = 9}, + [1800] = {.lex_state = 8, .external_lex_state = 13}, + [1801] = {.lex_state = 8, .external_lex_state = 14}, + [1802] = {.lex_state = 8, .external_lex_state = 12}, + [1803] = {.lex_state = 8, .external_lex_state = 14}, + [1804] = {.lex_state = 8, .external_lex_state = 15}, + [1805] = {.lex_state = 0, .external_lex_state = 16}, + [1806] = {.lex_state = 8, .external_lex_state = 13}, + [1807] = {.lex_state = 8, .external_lex_state = 9}, + [1808] = {.lex_state = 8, .external_lex_state = 13}, + [1809] = {.lex_state = 8, .external_lex_state = 13}, + [1810] = {.lex_state = 8, .external_lex_state = 13}, + [1811] = {.lex_state = 8, .external_lex_state = 12}, + [1812] = {.lex_state = 13, .external_lex_state = 14}, + [1813] = {.lex_state = 13, .external_lex_state = 15}, + [1814] = {.lex_state = 8, .external_lex_state = 12}, + [1815] = {.lex_state = 8, .external_lex_state = 14}, + [1816] = {.lex_state = 55, .external_lex_state = 17}, + [1817] = {.lex_state = 8, .external_lex_state = 9}, + [1818] = {.lex_state = 8, .external_lex_state = 13}, + [1819] = {.lex_state = 8, .external_lex_state = 13}, + [1820] = {.lex_state = 8, .external_lex_state = 12}, + [1821] = {.lex_state = 8, .external_lex_state = 12}, + [1822] = {.lex_state = 8, .external_lex_state = 12}, + [1823] = {.lex_state = 8, .external_lex_state = 8}, + [1824] = {.lex_state = 8, .external_lex_state = 9}, + [1825] = {.lex_state = 8, .external_lex_state = 14}, + [1826] = {.lex_state = 13, .external_lex_state = 15}, + [1827] = {.lex_state = 8, .external_lex_state = 12}, + [1828] = {.lex_state = 8, .external_lex_state = 14}, + [1829] = {.lex_state = 8, .external_lex_state = 13}, + [1830] = {.lex_state = 8, .external_lex_state = 9}, + [1831] = {.lex_state = 8, .external_lex_state = 12}, + [1832] = {.lex_state = 8, .external_lex_state = 12}, + [1833] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1834] = {.lex_state = 8, .external_lex_state = 13}, + [1835] = {.lex_state = 8, .external_lex_state = 14}, + [1836] = {.lex_state = 8, .external_lex_state = 14}, + [1837] = {.lex_state = 7, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1838] = {.lex_state = 8, .external_lex_state = 12}, + [1839] = {.lex_state = 8, .external_lex_state = 12}, + [1840] = {.lex_state = 8, .external_lex_state = 14}, + [1841] = {.lex_state = 8, .external_lex_state = 13}, + [1842] = {.lex_state = 8, .external_lex_state = 13}, + [1843] = {.lex_state = 8, .external_lex_state = 12}, + [1844] = {.lex_state = 8, .external_lex_state = 12}, + [1845] = {.lex_state = 13, .external_lex_state = 15}, + [1846] = {.lex_state = 8, .external_lex_state = 13}, + [1847] = {.lex_state = 8, .external_lex_state = 12}, + [1848] = {.lex_state = 13, .external_lex_state = 14}, + [1849] = {.lex_state = 13, .external_lex_state = 15}, + [1850] = {.lex_state = 8, .external_lex_state = 12}, + [1851] = {.lex_state = 8, .external_lex_state = 12}, + [1852] = {.lex_state = 8, .external_lex_state = 14}, + [1853] = {.lex_state = 8, .external_lex_state = 14}, + [1854] = {.lex_state = 8, .external_lex_state = 12}, + [1855] = {.lex_state = 13, .external_lex_state = 15}, + [1856] = {.lex_state = 13, .external_lex_state = 15}, + [1857] = {.lex_state = 8, .external_lex_state = 13}, + [1858] = {.lex_state = 8, .external_lex_state = 7}, + [1859] = {.lex_state = 13, .external_lex_state = 15}, + [1860] = {.lex_state = 13, .external_lex_state = 14}, + [1861] = {.lex_state = 13, .external_lex_state = 15}, + [1862] = {.lex_state = 8, .external_lex_state = 13}, + [1863] = {.lex_state = 13, .external_lex_state = 15}, + [1864] = {.lex_state = 8, .external_lex_state = 12}, + [1865] = {.lex_state = 13, .external_lex_state = 14}, + [1866] = {.lex_state = 8, .external_lex_state = 14}, + [1867] = {.lex_state = 8, .external_lex_state = 6}, + [1868] = {.lex_state = 8, .external_lex_state = 13}, + [1869] = {.lex_state = 54, .external_lex_state = 12}, + [1870] = {.lex_state = 8, .external_lex_state = 14}, + [1871] = {.lex_state = 8, .external_lex_state = 12}, + [1872] = {.lex_state = 13, .external_lex_state = 13}, + [1873] = {.lex_state = 8, .external_lex_state = 14}, + [1874] = {.lex_state = 8, .external_lex_state = 13}, + [1875] = {.lex_state = 54, .external_lex_state = 12}, + [1876] = {.lex_state = 13, .external_lex_state = 9}, + [1877] = {.lex_state = 8, .external_lex_state = 9}, + [1878] = {.lex_state = 8, .external_lex_state = 13}, + [1879] = {.lex_state = 8, .external_lex_state = 13}, + [1880] = {.lex_state = 8, .external_lex_state = 13}, + [1881] = {.lex_state = 0, .external_lex_state = 16}, + [1882] = {.lex_state = 13, .external_lex_state = 14}, + [1883] = {.lex_state = 8, .external_lex_state = 9}, + [1884] = {.lex_state = 13, .external_lex_state = 15}, + [1885] = {.lex_state = 13, .external_lex_state = 15}, + [1886] = {.lex_state = 8, .external_lex_state = 12}, + [1887] = {.lex_state = 13, .external_lex_state = 15}, + [1888] = {.lex_state = 13, .external_lex_state = 15}, + [1889] = {.lex_state = 8, .external_lex_state = 12}, + [1890] = {.lex_state = 8, .external_lex_state = 14}, + [1891] = {.lex_state = 8, .external_lex_state = 13}, + [1892] = {.lex_state = 13, .external_lex_state = 15}, + [1893] = {.lex_state = 8, .external_lex_state = 9}, + [1894] = {.lex_state = 8, .external_lex_state = 12}, + [1895] = {.lex_state = 13, .external_lex_state = 13}, + [1896] = {.lex_state = 13, .external_lex_state = 13}, + [1897] = {.lex_state = 8, .external_lex_state = 13}, + [1898] = {.lex_state = 13, .external_lex_state = 15}, + [1899] = {.lex_state = 13, .external_lex_state = 9}, + [1900] = {.lex_state = 8, .external_lex_state = 12}, + [1901] = {.lex_state = 13, .external_lex_state = 9}, + [1902] = {.lex_state = 13, .external_lex_state = 15}, + [1903] = {.lex_state = 13, .external_lex_state = 15}, + [1904] = {.lex_state = 13, .external_lex_state = 15}, + [1905] = {.lex_state = 13, .external_lex_state = 9}, + [1906] = {.lex_state = 8, .external_lex_state = 13}, + [1907] = {.lex_state = 8, .external_lex_state = 13}, + [1908] = {.lex_state = 8, .external_lex_state = 14}, + [1909] = {.lex_state = 8, .external_lex_state = 13}, + [1910] = {.lex_state = 8, .external_lex_state = 14}, + [1911] = {.lex_state = 8, .external_lex_state = 13}, + [1912] = {.lex_state = 13, .external_lex_state = 15}, + [1913] = {.lex_state = 54, .external_lex_state = 12}, + [1914] = {.lex_state = 8, .external_lex_state = 13}, + [1915] = {.lex_state = 13, .external_lex_state = 9}, + [1916] = {.lex_state = 8, .external_lex_state = 12}, + [1917] = {.lex_state = 0, .external_lex_state = 16}, + [1918] = {.lex_state = 13, .external_lex_state = 9}, + [1919] = {.lex_state = 8, .external_lex_state = 13}, + [1920] = {.lex_state = 13, .external_lex_state = 15}, + [1921] = {.lex_state = 8, .external_lex_state = 14}, [1922] = {.lex_state = 8, .external_lex_state = 14}, - [1923] = {.lex_state = 7, .external_lex_state = 12}, - [1924] = {.lex_state = 0, .external_lex_state = 16}, - [1925] = {.lex_state = 8, .external_lex_state = 13}, - [1926] = {.lex_state = 0, .external_lex_state = 16}, - [1927] = {.lex_state = 52, .external_lex_state = 9}, - [1928] = {.lex_state = 52, .external_lex_state = 14}, - [1929] = {.lex_state = 52, .external_lex_state = 14}, - [1930] = {.lex_state = 52, .external_lex_state = 15}, - [1931] = {.lex_state = 52, .external_lex_state = 14}, + [1923] = {.lex_state = 13, .external_lex_state = 15}, + [1924] = {.lex_state = 8, .external_lex_state = 13}, + [1925] = {.lex_state = 0, .external_lex_state = 16}, + [1926] = {.lex_state = 54, .external_lex_state = 12}, + [1927] = {.lex_state = 8, .external_lex_state = 14}, + [1928] = {.lex_state = 13, .external_lex_state = 13}, + [1929] = {.lex_state = 13, .external_lex_state = 13}, + [1930] = {.lex_state = 13, .external_lex_state = 13}, + [1931] = {.lex_state = 13, .external_lex_state = 14}, [1932] = {.lex_state = 8, .external_lex_state = 13}, - [1933] = {.lex_state = 52, .external_lex_state = 12}, - [1934] = {.lex_state = 0, .external_lex_state = 16}, - [1935] = {.lex_state = 52, .external_lex_state = 12}, - [1936] = {.lex_state = 52, .external_lex_state = 13}, - [1937] = {.lex_state = 52, .external_lex_state = 14}, - [1938] = {.lex_state = 0, .external_lex_state = 16}, - [1939] = {.lex_state = 52, .external_lex_state = 14}, - [1940] = {.lex_state = 0, .external_lex_state = 16}, - [1941] = {.lex_state = 52, .external_lex_state = 15}, - [1942] = {.lex_state = 52, .external_lex_state = 15}, - [1943] = {.lex_state = 52, .external_lex_state = 15}, - [1944] = {.lex_state = 52, .external_lex_state = 14}, - [1945] = {.lex_state = 8, .external_lex_state = 13}, - [1946] = {.lex_state = 7, .external_lex_state = 9}, - [1947] = {.lex_state = 52, .external_lex_state = 15}, - [1948] = {.lex_state = 52, .external_lex_state = 13}, - [1949] = {.lex_state = 52, .external_lex_state = 13}, - [1950] = {.lex_state = 8, .external_lex_state = 9}, - [1951] = {.lex_state = 52, .external_lex_state = 12}, - [1952] = {.lex_state = 8, .external_lex_state = 13}, - [1953] = {.lex_state = 52, .external_lex_state = 13}, - [1954] = {.lex_state = 52, .external_lex_state = 15}, - [1955] = {.lex_state = 52, .external_lex_state = 13}, - [1956] = {.lex_state = 52, .external_lex_state = 14}, + [1933] = {.lex_state = 8, .external_lex_state = 14}, + [1934] = {.lex_state = 8, .external_lex_state = 13}, + [1935] = {.lex_state = 8, .external_lex_state = 12}, + [1936] = {.lex_state = 13, .external_lex_state = 15}, + [1937] = {.lex_state = 13, .external_lex_state = 15}, + [1938] = {.lex_state = 8, .external_lex_state = 13}, + [1939] = {.lex_state = 13, .external_lex_state = 13}, + [1940] = {.lex_state = 8, .external_lex_state = 9}, + [1941] = {.lex_state = 8, .external_lex_state = 14}, + [1942] = {.lex_state = 8, .external_lex_state = 12}, + [1943] = {.lex_state = 13, .external_lex_state = 15}, + [1944] = {.lex_state = 8, .external_lex_state = 15}, + [1945] = {.lex_state = 13, .external_lex_state = 14}, + [1946] = {.lex_state = 13, .external_lex_state = 9}, + [1947] = {.lex_state = 13, .external_lex_state = 15}, + [1948] = {.lex_state = 8, .external_lex_state = 12}, + [1949] = {.lex_state = 8, .external_lex_state = 14}, + [1950] = {.lex_state = 8, .external_lex_state = 12}, + [1951] = {.lex_state = 8, .external_lex_state = 14}, + [1952] = {.lex_state = 13, .external_lex_state = 15}, + [1953] = {.lex_state = 13, .external_lex_state = 9}, + [1954] = {.lex_state = 0, .external_lex_state = 16}, + [1955] = {.lex_state = 8, .external_lex_state = 14}, + [1956] = {.lex_state = 13, .external_lex_state = 9}, [1957] = {.lex_state = 8, .external_lex_state = 13}, - [1958] = {.lex_state = 8, .external_lex_state = 14}, - [1959] = {.lex_state = 52, .external_lex_state = 15}, - [1960] = {.lex_state = 8, .external_lex_state = 13}, - [1961] = {.lex_state = 52, .external_lex_state = 13}, - [1962] = {.lex_state = 52, .external_lex_state = 13}, - [1963] = {.lex_state = 8, .external_lex_state = 15}, - [1964] = {.lex_state = 52, .external_lex_state = 12}, - [1965] = {.lex_state = 52, .external_lex_state = 9}, + [1958] = {.lex_state = 0, .external_lex_state = 16}, + [1959] = {.lex_state = 13, .external_lex_state = 13}, + [1960] = {.lex_state = 0, .external_lex_state = 16}, + [1961] = {.lex_state = 8, .external_lex_state = 13}, + [1962] = {.lex_state = 0, .external_lex_state = 16}, + [1963] = {.lex_state = 13, .external_lex_state = 13}, + [1964] = {.lex_state = 13, .external_lex_state = 15}, + [1965] = {.lex_state = 0, .external_lex_state = 16}, [1966] = {.lex_state = 8, .external_lex_state = 9}, - [1967] = {.lex_state = 52, .external_lex_state = 15}, - [1968] = {.lex_state = 52, .external_lex_state = 12}, - [1969] = {.lex_state = 52, .external_lex_state = 13}, - [1970] = {.lex_state = 52, .external_lex_state = 9}, - [1971] = {.lex_state = 8, .external_lex_state = 9}, - [1972] = {.lex_state = 8, .external_lex_state = 9}, - [1973] = {.lex_state = 52, .external_lex_state = 14}, - [1974] = {.lex_state = 8, .external_lex_state = 9}, - [1975] = {.lex_state = 0, .external_lex_state = 16}, - [1976] = {.lex_state = 0, .external_lex_state = 16}, - [1977] = {.lex_state = 52, .external_lex_state = 13}, - [1978] = {.lex_state = 52, .external_lex_state = 12}, - [1979] = {.lex_state = 8, .external_lex_state = 9}, - [1980] = {.lex_state = 52, .external_lex_state = 14}, - [1981] = {.lex_state = 8, .external_lex_state = 13}, - [1982] = {.lex_state = 52, .external_lex_state = 13}, - [1983] = {.lex_state = 7, .external_lex_state = 14}, - [1984] = {.lex_state = 52, .external_lex_state = 15}, - [1985] = {.lex_state = 8, .external_lex_state = 14}, - [1986] = {.lex_state = 52, .external_lex_state = 14}, - [1987] = {.lex_state = 52, .external_lex_state = 13}, - [1988] = {.lex_state = 52, .external_lex_state = 12}, - [1989] = {.lex_state = 8, .external_lex_state = 9}, - [1990] = {.lex_state = 8, .external_lex_state = 15}, - [1991] = {.lex_state = 8, .external_lex_state = 13}, - [1992] = {.lex_state = 52, .external_lex_state = 15}, - [1993] = {.lex_state = 52, .external_lex_state = 13}, - [1994] = {.lex_state = 8, .external_lex_state = 9}, - [1995] = {.lex_state = 8, .external_lex_state = 15}, - [1996] = {.lex_state = 52, .external_lex_state = 14}, - [1997] = {.lex_state = 52, .external_lex_state = 12}, - [1998] = {.lex_state = 52, .external_lex_state = 14}, - [1999] = {.lex_state = 52, .external_lex_state = 15}, - [2000] = {.lex_state = 52, .external_lex_state = 15}, - [2001] = {.lex_state = 52, .external_lex_state = 12}, - [2002] = {.lex_state = 52, .external_lex_state = 15}, - [2003] = {.lex_state = 52, .external_lex_state = 15}, - [2004] = {.lex_state = 52, .external_lex_state = 13}, - [2005] = {.lex_state = 52, .external_lex_state = 9}, - [2006] = {.lex_state = 52, .external_lex_state = 15}, - [2007] = {.lex_state = 52, .external_lex_state = 15}, - [2008] = {.lex_state = 52, .external_lex_state = 15}, - [2009] = {.lex_state = 52, .external_lex_state = 12}, - [2010] = {.lex_state = 52, .external_lex_state = 15}, - [2011] = {.lex_state = 52, .external_lex_state = 15}, - [2012] = {.lex_state = 8, .external_lex_state = 14}, - [2013] = {.lex_state = 52, .external_lex_state = 15}, - [2014] = {.lex_state = 52, .external_lex_state = 15}, - [2015] = {.lex_state = 52, .external_lex_state = 9}, - [2016] = {.lex_state = 8, .external_lex_state = 15}, - [2017] = {.lex_state = 8, .external_lex_state = 15}, - [2018] = {.lex_state = 8, .external_lex_state = 15}, - [2019] = {.lex_state = 52, .external_lex_state = 15}, - [2020] = {.lex_state = 52, .external_lex_state = 13}, - [2021] = {.lex_state = 52, .external_lex_state = 15}, - [2022] = {.lex_state = 52, .external_lex_state = 13}, - [2023] = {.lex_state = 52, .external_lex_state = 15}, - [2024] = {.lex_state = 52, .external_lex_state = 13}, - [2025] = {.lex_state = 52, .external_lex_state = 15}, - [2026] = {.lex_state = 52, .external_lex_state = 15}, - [2027] = {.lex_state = 52, .external_lex_state = 15}, - [2028] = {.lex_state = 52, .external_lex_state = 15}, - [2029] = {.lex_state = 52, .external_lex_state = 15}, - [2030] = {.lex_state = 52, .external_lex_state = 15}, - [2031] = {.lex_state = 52, .external_lex_state = 12}, + [1967] = {.lex_state = 8, .external_lex_state = 9}, + [1968] = {.lex_state = 8, .external_lex_state = 13}, + [1969] = {.lex_state = 13, .external_lex_state = 13}, + [1970] = {.lex_state = 13, .external_lex_state = 14}, + [1971] = {.lex_state = 8, .external_lex_state = 12}, + [1972] = {.lex_state = 8, .external_lex_state = 14}, + [1973] = {.lex_state = 8, .external_lex_state = 12}, + [1974] = {.lex_state = 13, .external_lex_state = 9}, + [1975] = {.lex_state = 8, .external_lex_state = 14}, + [1976] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1977] = {.lex_state = 54, .external_lex_state = 12}, + [1978] = {.lex_state = 13, .external_lex_state = 14}, + [1979] = {.lex_state = 13, .external_lex_state = 15}, + [1980] = {.lex_state = 8, .external_lex_state = 15}, + [1981] = {.lex_state = 13, .external_lex_state = 15}, + [1982] = {.lex_state = 13, .external_lex_state = 14}, + [1983] = {.lex_state = 8, .external_lex_state = 9}, + [1984] = {.lex_state = 8, .external_lex_state = 9}, + [1985] = {.lex_state = 13, .external_lex_state = 15}, + [1986] = {.lex_state = 54, .external_lex_state = 12}, + [1987] = {.lex_state = 13, .external_lex_state = 15}, + [1988] = {.lex_state = 13, .external_lex_state = 15}, + [1989] = {.lex_state = 13, .external_lex_state = 15}, + [1990] = {.lex_state = 54, .external_lex_state = 12}, + [1991] = {.lex_state = 8, .external_lex_state = 15}, + [1992] = {.lex_state = 13, .external_lex_state = 15}, + [1993] = {.lex_state = 13, .external_lex_state = 15}, + [1994] = {.lex_state = 13, .external_lex_state = 15}, + [1995] = {.lex_state = 13, .external_lex_state = 13}, + [1996] = {.lex_state = 13, .external_lex_state = 14}, + [1997] = {.lex_state = 13, .external_lex_state = 14}, + [1998] = {.lex_state = 13, .external_lex_state = 15}, + [1999] = {.lex_state = 13, .external_lex_state = 15}, + [2000] = {.lex_state = 3, .external_lex_state = 12}, + [2001] = {.lex_state = 8, .external_lex_state = 9}, + [2002] = {.lex_state = 54, .external_lex_state = 12}, + [2003] = {.lex_state = 13, .external_lex_state = 9}, + [2004] = {.lex_state = 8, .external_lex_state = 13}, + [2005] = {.lex_state = 13, .external_lex_state = 14}, + [2006] = {.lex_state = 13, .external_lex_state = 14}, + [2007] = {.lex_state = 13, .external_lex_state = 14}, + [2008] = {.lex_state = 8, .external_lex_state = 13}, + [2009] = {.lex_state = 54, .external_lex_state = 9, .reserved_word_set_id = 1}, + [2010] = {.lex_state = 54, .external_lex_state = 9, .reserved_word_set_id = 1}, + [2011] = {.lex_state = 13, .external_lex_state = 15}, + [2012] = {.lex_state = 3, .external_lex_state = 12}, + [2013] = {.lex_state = 13, .external_lex_state = 14}, + [2014] = {.lex_state = 13, .external_lex_state = 15}, + [2015] = {.lex_state = 13, .external_lex_state = 15}, + [2016] = {.lex_state = 8, .external_lex_state = 14}, + [2017] = {.lex_state = 8, .external_lex_state = 14}, + [2018] = {.lex_state = 13, .external_lex_state = 14}, + [2019] = {.lex_state = 8, .external_lex_state = 15}, + [2020] = {.lex_state = 13, .external_lex_state = 15}, + [2021] = {.lex_state = 13, .external_lex_state = 15}, + [2022] = {.lex_state = 13, .external_lex_state = 15}, + [2023] = {.lex_state = 8, .external_lex_state = 14}, + [2024] = {.lex_state = 13, .external_lex_state = 14}, + [2025] = {.lex_state = 13, .external_lex_state = 15}, + [2026] = {.lex_state = 8, .external_lex_state = 12}, + [2027] = {.lex_state = 54, .external_lex_state = 12}, + [2028] = {.lex_state = 8, .external_lex_state = 12}, + [2029] = {.lex_state = 13, .external_lex_state = 15}, + [2030] = {.lex_state = 8, .external_lex_state = 14}, + [2031] = {.lex_state = 8, .external_lex_state = 14}, [2032] = {.lex_state = 8, .external_lex_state = 14}, - [2033] = {.lex_state = 8, .external_lex_state = 14}, - [2034] = {.lex_state = 52, .external_lex_state = 9}, - [2035] = {.lex_state = 52, .external_lex_state = 12}, - [2036] = {.lex_state = 52, .external_lex_state = 15}, - [2037] = {.lex_state = 3, .external_lex_state = 12}, - [2038] = {.lex_state = 52, .external_lex_state = 15}, - [2039] = {.lex_state = 52, .external_lex_state = 15}, - [2040] = {.lex_state = 52, .external_lex_state = 15}, - [2041] = {.lex_state = 52, .external_lex_state = 12}, - [2042] = {.lex_state = 52, .external_lex_state = 15}, - [2043] = {.lex_state = 52, .external_lex_state = 15}, - [2044] = {.lex_state = 3, .external_lex_state = 12}, - [2045] = {.lex_state = 52, .external_lex_state = 15}, - [2046] = {.lex_state = 52, .external_lex_state = 12}, - [2047] = {.lex_state = 7, .external_lex_state = 9}, - [2048] = {.lex_state = 52, .external_lex_state = 14}, - [2049] = {.lex_state = 52, .external_lex_state = 15}, - [2050] = {.lex_state = 52, .external_lex_state = 9}, - [2051] = {.lex_state = 52, .external_lex_state = 15}, - [2052] = {.lex_state = 52, .external_lex_state = 12}, - [2053] = {.lex_state = 8, .external_lex_state = 15}, - [2054] = {.lex_state = 52, .external_lex_state = 15}, - [2055] = {.lex_state = 52, .external_lex_state = 15}, - [2056] = {.lex_state = 52, .external_lex_state = 9}, - [2057] = {.lex_state = 52, .external_lex_state = 15}, - [2058] = {.lex_state = 3, .external_lex_state = 12}, - [2059] = {.lex_state = 8, .external_lex_state = 14}, - [2060] = {.lex_state = 8, .external_lex_state = 14}, - [2061] = {.lex_state = 8, .external_lex_state = 14}, - [2062] = {.lex_state = 52, .external_lex_state = 12}, - [2063] = {.lex_state = 52, .external_lex_state = 15}, - [2064] = {.lex_state = 52, .external_lex_state = 15}, - [2065] = {.lex_state = 52, .external_lex_state = 15}, - [2066] = {.lex_state = 52, .external_lex_state = 12}, - [2067] = {.lex_state = 52, .external_lex_state = 12}, - [2068] = {.lex_state = 52, .external_lex_state = 12}, - [2069] = {.lex_state = 8, .external_lex_state = 14}, - [2070] = {.lex_state = 52, .external_lex_state = 15}, - [2071] = {.lex_state = 52, .external_lex_state = 12}, - [2072] = {.lex_state = 52, .external_lex_state = 12}, - [2073] = {.lex_state = 52, .external_lex_state = 12}, - [2074] = {.lex_state = 52, .external_lex_state = 12}, - [2075] = {.lex_state = 52, .external_lex_state = 12}, - [2076] = {.lex_state = 52, .external_lex_state = 15}, - [2077] = {.lex_state = 52, .external_lex_state = 9}, - [2078] = {.lex_state = 8, .external_lex_state = 15}, - [2079] = {.lex_state = 52, .external_lex_state = 15}, - [2080] = {.lex_state = 52, .external_lex_state = 14}, - [2081] = {.lex_state = 52, .external_lex_state = 14}, - [2082] = {.lex_state = 8, .external_lex_state = 14}, - [2083] = {.lex_state = 52, .external_lex_state = 15}, - [2084] = {.lex_state = 52, .external_lex_state = 15}, - [2085] = {.lex_state = 8, .external_lex_state = 15}, - [2086] = {.lex_state = 52, .external_lex_state = 14}, - [2087] = {.lex_state = 8, .external_lex_state = 14}, - [2088] = {.lex_state = 52, .external_lex_state = 15}, - [2089] = {.lex_state = 52, .external_lex_state = 13}, - [2090] = {.lex_state = 52, .external_lex_state = 12}, - [2091] = {.lex_state = 52, .external_lex_state = 15}, - [2092] = {.lex_state = 52, .external_lex_state = 9}, - [2093] = {.lex_state = 52, .external_lex_state = 12}, - [2094] = {.lex_state = 52, .external_lex_state = 15}, - [2095] = {.lex_state = 52, .external_lex_state = 15}, - [2096] = {.lex_state = 52, .external_lex_state = 15}, - [2097] = {.lex_state = 52, .external_lex_state = 13}, - [2098] = {.lex_state = 52, .external_lex_state = 14}, - [2099] = {.lex_state = 52, .external_lex_state = 15}, - [2100] = {.lex_state = 52, .external_lex_state = 15}, - [2101] = {.lex_state = 52, .external_lex_state = 15}, - [2102] = {.lex_state = 52, .external_lex_state = 14}, - [2103] = {.lex_state = 52, .external_lex_state = 14}, - [2104] = {.lex_state = 52, .external_lex_state = 12}, - [2105] = {.lex_state = 52, .external_lex_state = 13}, - [2106] = {.lex_state = 52, .external_lex_state = 13}, - [2107] = {.lex_state = 8, .external_lex_state = 14}, - [2108] = {.lex_state = 8, .external_lex_state = 13}, - [2109] = {.lex_state = 52, .external_lex_state = 12}, - [2110] = {.lex_state = 52, .external_lex_state = 14}, - [2111] = {.lex_state = 52, .external_lex_state = 9}, - [2112] = {.lex_state = 52, .external_lex_state = 13}, - [2113] = {.lex_state = 52, .external_lex_state = 12}, - [2114] = {.lex_state = 52, .external_lex_state = 13}, - [2115] = {.lex_state = 52, .external_lex_state = 13}, - [2116] = {.lex_state = 52, .external_lex_state = 13}, - [2117] = {.lex_state = 52, .external_lex_state = 15}, - [2118] = {.lex_state = 52, .external_lex_state = 13}, - [2119] = {.lex_state = 52, .external_lex_state = 14}, - [2120] = {.lex_state = 52, .external_lex_state = 13}, - [2121] = {.lex_state = 52, .external_lex_state = 13}, - [2122] = {.lex_state = 52, .external_lex_state = 9}, - [2123] = {.lex_state = 52, .external_lex_state = 13}, - [2124] = {.lex_state = 52, .external_lex_state = 13}, - [2125] = {.lex_state = 52, .external_lex_state = 12}, - [2126] = {.lex_state = 52, .external_lex_state = 13}, - [2127] = {.lex_state = 8, .external_lex_state = 15}, - [2128] = {.lex_state = 52, .external_lex_state = 9}, - [2129] = {.lex_state = 52, .external_lex_state = 12}, - [2130] = {.lex_state = 8, .external_lex_state = 15}, - [2131] = {.lex_state = 52, .external_lex_state = 13}, - [2132] = {.lex_state = 52, .external_lex_state = 12}, - [2133] = {.lex_state = 52, .external_lex_state = 12}, - [2134] = {.lex_state = 52, .external_lex_state = 9}, - [2135] = {.lex_state = 52, .external_lex_state = 9}, - [2136] = {.lex_state = 52, .external_lex_state = 9}, - [2137] = {.lex_state = 52, .external_lex_state = 12}, - [2138] = {.lex_state = 52, .external_lex_state = 12}, - [2139] = {.lex_state = 52, .external_lex_state = 12}, - [2140] = {.lex_state = 52, .external_lex_state = 13}, - [2141] = {.lex_state = 52, .external_lex_state = 12}, - [2142] = {.lex_state = 52, .external_lex_state = 12}, - [2143] = {.lex_state = 52, .external_lex_state = 13}, - [2144] = {.lex_state = 52, .external_lex_state = 12}, - [2145] = {.lex_state = 52, .external_lex_state = 13}, - [2146] = {.lex_state = 52, .external_lex_state = 13}, - [2147] = {.lex_state = 52, .external_lex_state = 12}, - [2148] = {.lex_state = 52, .external_lex_state = 12}, - [2149] = {.lex_state = 52, .external_lex_state = 9}, - [2150] = {.lex_state = 52, .external_lex_state = 9}, - [2151] = {.lex_state = 52, .external_lex_state = 12}, - [2152] = {.lex_state = 52, .external_lex_state = 12}, - [2153] = {.lex_state = 52, .external_lex_state = 12}, - [2154] = {.lex_state = 52, .external_lex_state = 12}, - [2155] = {.lex_state = 52, .external_lex_state = 12}, - [2156] = {.lex_state = 52, .external_lex_state = 12}, - [2157] = {.lex_state = 52, .external_lex_state = 12}, - [2158] = {.lex_state = 52, .external_lex_state = 12}, - [2159] = {.lex_state = 52, .external_lex_state = 12}, - [2160] = {.lex_state = 52, .external_lex_state = 12}, - [2161] = {.lex_state = 52, .external_lex_state = 12}, - [2162] = {.lex_state = 52, .external_lex_state = 12}, - [2163] = {.lex_state = 52, .external_lex_state = 13}, - [2164] = {.lex_state = 52, .external_lex_state = 18}, - [2165] = {.lex_state = 52, .external_lex_state = 13}, - [2166] = {.lex_state = 52, .external_lex_state = 13}, - [2167] = {.lex_state = 52, .external_lex_state = 13}, - [2168] = {.lex_state = 52, .external_lex_state = 13}, - [2169] = {.lex_state = 52, .external_lex_state = 13}, - [2170] = {.lex_state = 52, .external_lex_state = 13}, - [2171] = {.lex_state = 52, .external_lex_state = 13}, - [2172] = {.lex_state = 52, .external_lex_state = 13}, - [2173] = {.lex_state = 52, .external_lex_state = 14}, - [2174] = {.lex_state = 52, .external_lex_state = 14}, - [2175] = {.lex_state = 52, .external_lex_state = 14}, - [2176] = {.lex_state = 52, .external_lex_state = 13}, - [2177] = {.lex_state = 52, .external_lex_state = 14}, - [2178] = {.lex_state = 52, .external_lex_state = 15}, - [2179] = {.lex_state = 52, .external_lex_state = 9}, - [2180] = {.lex_state = 52, .external_lex_state = 13}, - [2181] = {.lex_state = 52, .external_lex_state = 13}, - [2182] = {.lex_state = 52, .external_lex_state = 18}, - [2183] = {.lex_state = 52, .external_lex_state = 13}, - [2184] = {.lex_state = 52, .external_lex_state = 14}, - [2185] = {.lex_state = 52, .external_lex_state = 9}, - [2186] = {.lex_state = 52, .external_lex_state = 9}, - [2187] = {.lex_state = 52, .external_lex_state = 15}, - [2188] = {.lex_state = 52, .external_lex_state = 13}, - [2189] = {.lex_state = 52, .external_lex_state = 9}, - [2190] = {.lex_state = 52, .external_lex_state = 9}, - [2191] = {.lex_state = 52, .external_lex_state = 13}, - [2192] = {.lex_state = 52, .external_lex_state = 13}, - [2193] = {.lex_state = 52, .external_lex_state = 13}, - [2194] = {.lex_state = 52, .external_lex_state = 13}, - [2195] = {.lex_state = 52, .external_lex_state = 14}, - [2196] = {.lex_state = 52, .external_lex_state = 14}, - [2197] = {.lex_state = 52, .external_lex_state = 9}, - [2198] = {.lex_state = 52, .external_lex_state = 14}, - [2199] = {.lex_state = 52, .external_lex_state = 14}, - [2200] = {.lex_state = 52, .external_lex_state = 14}, - [2201] = {.lex_state = 52, .external_lex_state = 14}, - [2202] = {.lex_state = 52, .external_lex_state = 15}, - [2203] = {.lex_state = 52, .external_lex_state = 18}, - [2204] = {.lex_state = 52, .external_lex_state = 14}, - [2205] = {.lex_state = 7, .external_lex_state = 15}, - [2206] = {.lex_state = 7, .external_lex_state = 15}, - [2207] = {.lex_state = 52, .external_lex_state = 14}, - [2208] = {.lex_state = 52, .external_lex_state = 15}, - [2209] = {.lex_state = 52, .external_lex_state = 13}, - [2210] = {.lex_state = 52, .external_lex_state = 13}, - [2211] = {.lex_state = 52, .external_lex_state = 12}, - [2212] = {.lex_state = 52, .external_lex_state = 15}, - [2213] = {.lex_state = 52, .external_lex_state = 9}, - [2214] = {.lex_state = 52, .external_lex_state = 15}, - [2215] = {.lex_state = 52, .external_lex_state = 14}, - [2216] = {.lex_state = 52, .external_lex_state = 14}, - [2217] = {.lex_state = 52, .external_lex_state = 18}, - [2218] = {.lex_state = 52, .external_lex_state = 9}, - [2219] = {.lex_state = 52, .external_lex_state = 14}, - [2220] = {.lex_state = 52, .external_lex_state = 14}, - [2221] = {.lex_state = 52, .external_lex_state = 14}, - [2222] = {.lex_state = 52, .external_lex_state = 14}, - [2223] = {.lex_state = 52, .external_lex_state = 18}, - [2224] = {.lex_state = 52, .external_lex_state = 14}, - [2225] = {.lex_state = 52, .external_lex_state = 9}, - [2226] = {.lex_state = 52, .external_lex_state = 14}, - [2227] = {.lex_state = 52, .external_lex_state = 14}, - [2228] = {.lex_state = 52, .external_lex_state = 14}, - [2229] = {.lex_state = 52, .external_lex_state = 14}, - [2230] = {.lex_state = 52, .external_lex_state = 14}, - [2231] = {.lex_state = 52, .external_lex_state = 14}, - [2232] = {.lex_state = 52, .external_lex_state = 15}, - [2233] = {.lex_state = 52, .external_lex_state = 15}, - [2234] = {.lex_state = 52, .external_lex_state = 15}, - [2235] = {.lex_state = 52, .external_lex_state = 13}, - [2236] = {.lex_state = 52, .external_lex_state = 15}, - [2237] = {.lex_state = 52, .external_lex_state = 13}, - [2238] = {.lex_state = 52, .external_lex_state = 15}, - [2239] = {.lex_state = 52, .external_lex_state = 15}, - [2240] = {.lex_state = 52, .external_lex_state = 14}, - [2241] = {.lex_state = 52, .external_lex_state = 14}, - [2242] = {.lex_state = 52, .external_lex_state = 13}, - [2243] = {.lex_state = 52, .external_lex_state = 12}, - [2244] = {.lex_state = 52, .external_lex_state = 13}, - [2245] = {.lex_state = 52, .external_lex_state = 12}, - [2246] = {.lex_state = 52, .external_lex_state = 14}, - [2247] = {.lex_state = 52, .external_lex_state = 13}, - [2248] = {.lex_state = 52, .external_lex_state = 14}, - [2249] = {.lex_state = 52, .external_lex_state = 15}, - [2250] = {.lex_state = 52, .external_lex_state = 12}, - [2251] = {.lex_state = 52, .external_lex_state = 12}, - [2252] = {.lex_state = 52, .external_lex_state = 12}, - [2253] = {.lex_state = 52, .external_lex_state = 12}, - [2254] = {.lex_state = 52, .external_lex_state = 13}, - [2255] = {.lex_state = 52, .external_lex_state = 13}, - [2256] = {.lex_state = 52, .external_lex_state = 12}, - [2257] = {.lex_state = 52, .external_lex_state = 12}, - [2258] = {.lex_state = 52, .external_lex_state = 15}, - [2259] = {.lex_state = 9, .external_lex_state = 17}, - [2260] = {.lex_state = 52, .external_lex_state = 9}, - [2261] = {.lex_state = 52, .external_lex_state = 13}, - [2262] = {.lex_state = 8, .external_lex_state = 15}, - [2263] = {.lex_state = 52, .external_lex_state = 9}, - [2264] = {.lex_state = 52, .external_lex_state = 13}, - [2265] = {.lex_state = 3, .external_lex_state = 12}, - [2266] = {.lex_state = 52, .external_lex_state = 13}, - [2267] = {.lex_state = 52, .external_lex_state = 12}, - [2268] = {.lex_state = 52, .external_lex_state = 9}, - [2269] = {.lex_state = 52, .external_lex_state = 15}, - [2270] = {.lex_state = 52, .external_lex_state = 15}, - [2271] = {.lex_state = 52, .external_lex_state = 12}, - [2272] = {.lex_state = 52, .external_lex_state = 15}, - [2273] = {.lex_state = 52, .external_lex_state = 13}, - [2274] = {.lex_state = 52, .external_lex_state = 13}, - [2275] = {.lex_state = 52, .external_lex_state = 15}, - [2276] = {.lex_state = 52, .external_lex_state = 13}, - [2277] = {.lex_state = 52, .external_lex_state = 14}, - [2278] = {.lex_state = 3, .external_lex_state = 12}, - [2279] = {.lex_state = 52, .external_lex_state = 12}, - [2280] = {.lex_state = 9, .external_lex_state = 17}, - [2281] = {.lex_state = 3, .external_lex_state = 12}, - [2282] = {.lex_state = 52, .external_lex_state = 13}, - [2283] = {.lex_state = 52, .external_lex_state = 12}, - [2284] = {.lex_state = 52, .external_lex_state = 13}, - [2285] = {.lex_state = 52, .external_lex_state = 14}, - [2286] = {.lex_state = 52, .external_lex_state = 14}, - [2287] = {.lex_state = 52, .external_lex_state = 14}, + [2033] = {.lex_state = 8, .external_lex_state = 12}, + [2034] = {.lex_state = 13, .external_lex_state = 15}, + [2035] = {.lex_state = 8, .external_lex_state = 15}, + [2036] = {.lex_state = 8, .external_lex_state = 12}, + [2037] = {.lex_state = 54, .external_lex_state = 12}, + [2038] = {.lex_state = 54, .external_lex_state = 15}, + [2039] = {.lex_state = 8, .external_lex_state = 13}, + [2040] = {.lex_state = 8, .external_lex_state = 13}, + [2041] = {.lex_state = 13, .external_lex_state = 15}, + [2042] = {.lex_state = 13, .external_lex_state = 15}, + [2043] = {.lex_state = 13, .external_lex_state = 15}, + [2044] = {.lex_state = 8, .external_lex_state = 13}, + [2045] = {.lex_state = 3, .external_lex_state = 12}, + [2046] = {.lex_state = 8, .external_lex_state = 15}, + [2047] = {.lex_state = 54, .external_lex_state = 12}, + [2048] = {.lex_state = 13, .external_lex_state = 15}, + [2049] = {.lex_state = 13, .external_lex_state = 15}, + [2050] = {.lex_state = 13, .external_lex_state = 15}, + [2051] = {.lex_state = 13, .external_lex_state = 15}, + [2052] = {.lex_state = 13, .external_lex_state = 15}, + [2053] = {.lex_state = 13, .external_lex_state = 15}, + [2054] = {.lex_state = 13, .external_lex_state = 15}, + [2055] = {.lex_state = 13, .external_lex_state = 15}, + [2056] = {.lex_state = 54, .external_lex_state = 9, .reserved_word_set_id = 1}, + [2057] = {.lex_state = 8, .external_lex_state = 15}, + [2058] = {.lex_state = 54, .external_lex_state = 12}, + [2059] = {.lex_state = 13, .external_lex_state = 15}, + [2060] = {.lex_state = 54, .external_lex_state = 12}, + [2061] = {.lex_state = 8, .external_lex_state = 9}, + [2062] = {.lex_state = 8, .external_lex_state = 15}, + [2063] = {.lex_state = 54, .external_lex_state = 12}, + [2064] = {.lex_state = 8, .external_lex_state = 13}, + [2065] = {.lex_state = 13, .external_lex_state = 15}, + [2066] = {.lex_state = 13, .external_lex_state = 15}, + [2067] = {.lex_state = 8, .external_lex_state = 9}, + [2068] = {.lex_state = 13, .external_lex_state = 15}, + [2069] = {.lex_state = 13, .external_lex_state = 15}, + [2070] = {.lex_state = 13, .external_lex_state = 15}, + [2071] = {.lex_state = 8, .external_lex_state = 15}, + [2072] = {.lex_state = 8, .external_lex_state = 14}, + [2073] = {.lex_state = 8, .external_lex_state = 14}, + [2074] = {.lex_state = 13, .external_lex_state = 15}, + [2075] = {.lex_state = 13, .external_lex_state = 15}, + [2076] = {.lex_state = 13, .external_lex_state = 15}, + [2077] = {.lex_state = 54, .external_lex_state = 15}, + [2078] = {.lex_state = 13, .external_lex_state = 15}, + [2079] = {.lex_state = 13, .external_lex_state = 15}, + [2080] = {.lex_state = 8, .external_lex_state = 13}, + [2081] = {.lex_state = 13, .external_lex_state = 15}, + [2082] = {.lex_state = 13, .external_lex_state = 15}, + [2083] = {.lex_state = 13, .external_lex_state = 15}, + [2084] = {.lex_state = 8, .external_lex_state = 13}, + [2085] = {.lex_state = 8, .external_lex_state = 13}, + [2086] = {.lex_state = 8, .external_lex_state = 12}, + [2087] = {.lex_state = 8, .external_lex_state = 12}, + [2088] = {.lex_state = 8, .external_lex_state = 14}, + [2089] = {.lex_state = 13, .external_lex_state = 12}, + [2090] = {.lex_state = 8, .external_lex_state = 12}, + [2091] = {.lex_state = 8, .external_lex_state = 12}, + [2092] = {.lex_state = 8, .external_lex_state = 12}, + [2093] = {.lex_state = 54, .external_lex_state = 12}, + [2094] = {.lex_state = 8, .external_lex_state = 13}, + [2095] = {.lex_state = 8, .external_lex_state = 9}, + [2096] = {.lex_state = 8, .external_lex_state = 14}, + [2097] = {.lex_state = 8, .external_lex_state = 14}, + [2098] = {.lex_state = 8, .external_lex_state = 14}, + [2099] = {.lex_state = 13, .external_lex_state = 15}, + [2100] = {.lex_state = 13, .external_lex_state = 15}, + [2101] = {.lex_state = 8, .external_lex_state = 13}, + [2102] = {.lex_state = 13, .external_lex_state = 15}, + [2103] = {.lex_state = 54, .external_lex_state = 9}, + [2104] = {.lex_state = 54, .external_lex_state = 9}, + [2105] = {.lex_state = 8, .external_lex_state = 13}, + [2106] = {.lex_state = 8, .external_lex_state = 14}, + [2107] = {.lex_state = 8, .external_lex_state = 13}, + [2108] = {.lex_state = 54, .external_lex_state = 9}, + [2109] = {.lex_state = 8, .external_lex_state = 13}, + [2110] = {.lex_state = 54, .external_lex_state = 9}, + [2111] = {.lex_state = 8, .external_lex_state = 12}, + [2112] = {.lex_state = 54, .external_lex_state = 12}, + [2113] = {.lex_state = 8, .external_lex_state = 12}, + [2114] = {.lex_state = 8, .external_lex_state = 18}, + [2115] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2116] = {.lex_state = 54, .external_lex_state = 9}, + [2117] = {.lex_state = 8, .external_lex_state = 13}, + [2118] = {.lex_state = 54, .external_lex_state = 13}, + [2119] = {.lex_state = 54, .external_lex_state = 9}, + [2120] = {.lex_state = 8, .external_lex_state = 12}, + [2121] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2122] = {.lex_state = 13, .external_lex_state = 15}, + [2123] = {.lex_state = 8, .external_lex_state = 13}, + [2124] = {.lex_state = 54, .external_lex_state = 15}, + [2125] = {.lex_state = 13, .external_lex_state = 15}, + [2126] = {.lex_state = 8, .external_lex_state = 13}, + [2127] = {.lex_state = 8, .external_lex_state = 18}, + [2128] = {.lex_state = 54, .external_lex_state = 12}, + [2129] = {.lex_state = 54, .external_lex_state = 13, .reserved_word_set_id = 1}, + [2130] = {.lex_state = 8, .external_lex_state = 13}, + [2131] = {.lex_state = 54, .external_lex_state = 9}, + [2132] = {.lex_state = 54, .external_lex_state = 9}, + [2133] = {.lex_state = 8, .external_lex_state = 14}, + [2134] = {.lex_state = 8, .external_lex_state = 18}, + [2135] = {.lex_state = 8, .external_lex_state = 14}, + [2136] = {.lex_state = 54, .external_lex_state = 9}, + [2137] = {.lex_state = 54, .external_lex_state = 9}, + [2138] = {.lex_state = 8, .external_lex_state = 14}, + [2139] = {.lex_state = 8, .external_lex_state = 14}, + [2140] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2141] = {.lex_state = 54, .external_lex_state = 12}, + [2142] = {.lex_state = 8, .external_lex_state = 13}, + [2143] = {.lex_state = 8, .external_lex_state = 13}, + [2144] = {.lex_state = 8, .external_lex_state = 13}, + [2145] = {.lex_state = 8, .external_lex_state = 13}, + [2146] = {.lex_state = 8, .external_lex_state = 13}, + [2147] = {.lex_state = 54, .external_lex_state = 9}, + [2148] = {.lex_state = 54, .external_lex_state = 9}, + [2149] = {.lex_state = 8, .external_lex_state = 13}, + [2150] = {.lex_state = 8, .external_lex_state = 14}, + [2151] = {.lex_state = 8, .external_lex_state = 12}, + [2152] = {.lex_state = 8, .external_lex_state = 13}, + [2153] = {.lex_state = 8, .external_lex_state = 14}, + [2154] = {.lex_state = 8, .external_lex_state = 13}, + [2155] = {.lex_state = 54, .external_lex_state = 15}, + [2156] = {.lex_state = 54, .external_lex_state = 9}, + [2157] = {.lex_state = 8, .external_lex_state = 12}, + [2158] = {.lex_state = 8, .external_lex_state = 14}, + [2159] = {.lex_state = 8, .external_lex_state = 14}, + [2160] = {.lex_state = 13, .external_lex_state = 15}, + [2161] = {.lex_state = 8, .external_lex_state = 15}, + [2162] = {.lex_state = 8, .external_lex_state = 14}, + [2163] = {.lex_state = 8, .external_lex_state = 13}, + [2164] = {.lex_state = 8, .external_lex_state = 18}, + [2165] = {.lex_state = 8, .external_lex_state = 18}, + [2166] = {.lex_state = 54, .external_lex_state = 13, .reserved_word_set_id = 1}, + [2167] = {.lex_state = 8, .external_lex_state = 13}, + [2168] = {.lex_state = 8, .external_lex_state = 14}, + [2169] = {.lex_state = 8, .external_lex_state = 13}, + [2170] = {.lex_state = 7, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2171] = {.lex_state = 8, .external_lex_state = 14}, + [2172] = {.lex_state = 54, .external_lex_state = 9}, + [2173] = {.lex_state = 8, .external_lex_state = 13}, + [2174] = {.lex_state = 8, .external_lex_state = 13}, + [2175] = {.lex_state = 8, .external_lex_state = 13}, + [2176] = {.lex_state = 8, .external_lex_state = 13}, + [2177] = {.lex_state = 8, .external_lex_state = 13}, + [2178] = {.lex_state = 8, .external_lex_state = 14}, + [2179] = {.lex_state = 8, .external_lex_state = 13}, + [2180] = {.lex_state = 8, .external_lex_state = 14}, + [2181] = {.lex_state = 8, .external_lex_state = 14}, + [2182] = {.lex_state = 8, .external_lex_state = 14}, + [2183] = {.lex_state = 8, .external_lex_state = 14}, + [2184] = {.lex_state = 8, .external_lex_state = 14}, + [2185] = {.lex_state = 8, .external_lex_state = 14}, + [2186] = {.lex_state = 54, .external_lex_state = 9}, + [2187] = {.lex_state = 8, .external_lex_state = 14}, + [2188] = {.lex_state = 8, .external_lex_state = 12}, + [2189] = {.lex_state = 8, .external_lex_state = 13}, + [2190] = {.lex_state = 8, .external_lex_state = 13}, + [2191] = {.lex_state = 8, .external_lex_state = 13}, + [2192] = {.lex_state = 8, .external_lex_state = 13}, + [2193] = {.lex_state = 8, .external_lex_state = 13}, + [2194] = {.lex_state = 8, .external_lex_state = 13}, + [2195] = {.lex_state = 8, .external_lex_state = 12}, + [2196] = {.lex_state = 8, .external_lex_state = 13}, + [2197] = {.lex_state = 8, .external_lex_state = 14}, + [2198] = {.lex_state = 8, .external_lex_state = 12}, + [2199] = {.lex_state = 8, .external_lex_state = 12}, + [2200] = {.lex_state = 54, .external_lex_state = 13, .reserved_word_set_id = 1}, + [2201] = {.lex_state = 8, .external_lex_state = 12}, + [2202] = {.lex_state = 7, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2203] = {.lex_state = 54, .external_lex_state = 9}, + [2204] = {.lex_state = 54, .external_lex_state = 15}, + [2205] = {.lex_state = 54, .external_lex_state = 15}, + [2206] = {.lex_state = 8, .external_lex_state = 12}, + [2207] = {.lex_state = 8, .external_lex_state = 12}, + [2208] = {.lex_state = 8, .external_lex_state = 12}, + [2209] = {.lex_state = 8, .external_lex_state = 12}, + [2210] = {.lex_state = 8, .external_lex_state = 12}, + [2211] = {.lex_state = 8, .external_lex_state = 14}, + [2212] = {.lex_state = 8, .external_lex_state = 12}, + [2213] = {.lex_state = 8, .external_lex_state = 14}, + [2214] = {.lex_state = 8, .external_lex_state = 14}, + [2215] = {.lex_state = 8, .external_lex_state = 12}, + [2216] = {.lex_state = 8, .external_lex_state = 12}, + [2217] = {.lex_state = 8, .external_lex_state = 12}, + [2218] = {.lex_state = 8, .external_lex_state = 12}, + [2219] = {.lex_state = 8, .external_lex_state = 12}, + [2220] = {.lex_state = 8, .external_lex_state = 12}, + [2221] = {.lex_state = 8, .external_lex_state = 12}, + [2222] = {.lex_state = 8, .external_lex_state = 14}, + [2223] = {.lex_state = 8, .external_lex_state = 13}, + [2224] = {.lex_state = 54, .external_lex_state = 13}, + [2225] = {.lex_state = 54, .external_lex_state = 12}, + [2226] = {.lex_state = 54, .external_lex_state = 13}, + [2227] = {.lex_state = 54, .external_lex_state = 12}, + [2228] = {.lex_state = 54, .external_lex_state = 13}, + [2229] = {.lex_state = 54, .external_lex_state = 9}, + [2230] = {.lex_state = 8, .external_lex_state = 14}, + [2231] = {.lex_state = 54, .external_lex_state = 13}, + [2232] = {.lex_state = 54, .external_lex_state = 13}, + [2233] = {.lex_state = 54, .external_lex_state = 12}, + [2234] = {.lex_state = 54, .external_lex_state = 14}, + [2235] = {.lex_state = 54, .external_lex_state = 13}, + [2236] = {.lex_state = 54, .external_lex_state = 13}, + [2237] = {.lex_state = 54, .external_lex_state = 13}, + [2238] = {.lex_state = 54, .external_lex_state = 14}, + [2239] = {.lex_state = 54, .external_lex_state = 9}, + [2240] = {.lex_state = 54, .external_lex_state = 12}, + [2241] = {.lex_state = 54, .external_lex_state = 13}, + [2242] = {.lex_state = 8, .external_lex_state = 15}, + [2243] = {.lex_state = 54, .external_lex_state = 13}, + [2244] = {.lex_state = 54, .external_lex_state = 13}, + [2245] = {.lex_state = 54, .external_lex_state = 14}, + [2246] = {.lex_state = 54, .external_lex_state = 14}, + [2247] = {.lex_state = 54, .external_lex_state = 12}, + [2248] = {.lex_state = 54, .external_lex_state = 14}, + [2249] = {.lex_state = 54, .external_lex_state = 12}, + [2250] = {.lex_state = 54, .external_lex_state = 13}, + [2251] = {.lex_state = 54, .external_lex_state = 13}, + [2252] = {.lex_state = 13, .external_lex_state = 15}, + [2253] = {.lex_state = 54, .external_lex_state = 19}, + [2254] = {.lex_state = 54, .external_lex_state = 15}, + [2255] = {.lex_state = 54, .external_lex_state = 12}, + [2256] = {.lex_state = 54, .external_lex_state = 13}, + [2257] = {.lex_state = 54, .external_lex_state = 13}, + [2258] = {.lex_state = 54, .external_lex_state = 14}, + [2259] = {.lex_state = 54, .external_lex_state = 19}, + [2260] = {.lex_state = 54, .external_lex_state = 12}, + [2261] = {.lex_state = 54, .external_lex_state = 12}, + [2262] = {.lex_state = 54, .external_lex_state = 12}, + [2263] = {.lex_state = 54, .external_lex_state = 15}, + [2264] = {.lex_state = 8, .external_lex_state = 14}, + [2265] = {.lex_state = 8, .external_lex_state = 14}, + [2266] = {.lex_state = 54, .external_lex_state = 13}, + [2267] = {.lex_state = 54, .external_lex_state = 14}, + [2268] = {.lex_state = 54, .external_lex_state = 12}, + [2269] = {.lex_state = 8, .external_lex_state = 15}, + [2270] = {.lex_state = 54, .external_lex_state = 13}, + [2271] = {.lex_state = 3, .external_lex_state = 12}, + [2272] = {.lex_state = 54, .external_lex_state = 13}, + [2273] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2274] = {.lex_state = 54, .external_lex_state = 9}, + [2275] = {.lex_state = 54, .external_lex_state = 13}, + [2276] = {.lex_state = 54, .external_lex_state = 13}, + [2277] = {.lex_state = 55, .external_lex_state = 17}, + [2278] = {.lex_state = 54, .external_lex_state = 14}, + [2279] = {.lex_state = 54, .external_lex_state = 15}, + [2280] = {.lex_state = 54, .external_lex_state = 12}, + [2281] = {.lex_state = 54, .external_lex_state = 12}, + [2282] = {.lex_state = 54, .external_lex_state = 9}, + [2283] = {.lex_state = 54, .external_lex_state = 12}, + [2284] = {.lex_state = 54, .external_lex_state = 15}, + [2285] = {.lex_state = 54, .external_lex_state = 19}, + [2286] = {.lex_state = 54, .external_lex_state = 13}, + [2287] = {.lex_state = 54, .external_lex_state = 13}, [2288] = {.lex_state = 3, .external_lex_state = 12}, - [2289] = {.lex_state = 52, .external_lex_state = 12}, - [2290] = {.lex_state = 52, .external_lex_state = 15}, - [2291] = {.lex_state = 52, .external_lex_state = 12}, - [2292] = {.lex_state = 52, .external_lex_state = 13}, - [2293] = {.lex_state = 8, .external_lex_state = 15}, - [2294] = {.lex_state = 52, .external_lex_state = 9}, - [2295] = {.lex_state = 52, .external_lex_state = 13}, - [2296] = {.lex_state = 52, .external_lex_state = 13}, - [2297] = {.lex_state = 52, .external_lex_state = 12}, - [2298] = {.lex_state = 52, .external_lex_state = 13}, - [2299] = {.lex_state = 52, .external_lex_state = 9}, - [2300] = {.lex_state = 52, .external_lex_state = 9}, - [2301] = {.lex_state = 52, .external_lex_state = 13}, - [2302] = {.lex_state = 52, .external_lex_state = 12}, - [2303] = {.lex_state = 52, .external_lex_state = 13}, - [2304] = {.lex_state = 52, .external_lex_state = 15}, - [2305] = {.lex_state = 52, .external_lex_state = 12}, - [2306] = {.lex_state = 52, .external_lex_state = 9}, - [2307] = {.lex_state = 52, .external_lex_state = 12}, - [2308] = {.lex_state = 52, .external_lex_state = 9}, - [2309] = {.lex_state = 52, .external_lex_state = 13}, - [2310] = {.lex_state = 52, .external_lex_state = 9}, - [2311] = {.lex_state = 52, .external_lex_state = 14}, - [2312] = {.lex_state = 52, .external_lex_state = 13}, - [2313] = {.lex_state = 52, .external_lex_state = 12}, - [2314] = {.lex_state = 52, .external_lex_state = 13}, - [2315] = {.lex_state = 52, .external_lex_state = 13}, - [2316] = {.lex_state = 52, .external_lex_state = 13}, - [2317] = {.lex_state = 52, .external_lex_state = 13}, - [2318] = {.lex_state = 52, .external_lex_state = 13}, - [2319] = {.lex_state = 52, .external_lex_state = 12}, - [2320] = {.lex_state = 52, .external_lex_state = 14}, - [2321] = {.lex_state = 52, .external_lex_state = 14}, - [2322] = {.lex_state = 52, .external_lex_state = 14}, - [2323] = {.lex_state = 52, .external_lex_state = 13}, - [2324] = {.lex_state = 52, .external_lex_state = 13}, - [2325] = {.lex_state = 52, .external_lex_state = 13}, - [2326] = {.lex_state = 52, .external_lex_state = 13}, - [2327] = {.lex_state = 52, .external_lex_state = 14}, - [2328] = {.lex_state = 52, .external_lex_state = 14}, - [2329] = {.lex_state = 52, .external_lex_state = 14}, - [2330] = {.lex_state = 52, .external_lex_state = 14}, - [2331] = {.lex_state = 52, .external_lex_state = 19}, - [2332] = {.lex_state = 52, .external_lex_state = 12}, - [2333] = {.lex_state = 52, .external_lex_state = 14}, - [2334] = {.lex_state = 52, .external_lex_state = 9}, - [2335] = {.lex_state = 52, .external_lex_state = 13}, - [2336] = {.lex_state = 52, .external_lex_state = 13}, - [2337] = {.lex_state = 52, .external_lex_state = 13}, - [2338] = {.lex_state = 52, .external_lex_state = 13}, - [2339] = {.lex_state = 52, .external_lex_state = 9}, - [2340] = {.lex_state = 52, .external_lex_state = 13}, - [2341] = {.lex_state = 52, .external_lex_state = 9}, - [2342] = {.lex_state = 52, .external_lex_state = 14}, - [2343] = {.lex_state = 52, .external_lex_state = 14}, - [2344] = {.lex_state = 52, .external_lex_state = 13}, - [2345] = {.lex_state = 52, .external_lex_state = 13}, - [2346] = {.lex_state = 52, .external_lex_state = 15}, - [2347] = {.lex_state = 52, .external_lex_state = 12}, - [2348] = {.lex_state = 52, .external_lex_state = 12}, - [2349] = {.lex_state = 52, .external_lex_state = 14}, - [2350] = {.lex_state = 52, .external_lex_state = 9}, - [2351] = {.lex_state = 52, .external_lex_state = 13}, - [2352] = {.lex_state = 52, .external_lex_state = 12}, - [2353] = {.lex_state = 52, .external_lex_state = 13}, - [2354] = {.lex_state = 52, .external_lex_state = 13}, - [2355] = {.lex_state = 52, .external_lex_state = 13}, - [2356] = {.lex_state = 52, .external_lex_state = 13}, - [2357] = {.lex_state = 52, .external_lex_state = 12}, - [2358] = {.lex_state = 52, .external_lex_state = 14}, - [2359] = {.lex_state = 52, .external_lex_state = 9}, - [2360] = {.lex_state = 52, .external_lex_state = 14}, - [2361] = {.lex_state = 52, .external_lex_state = 13}, - [2362] = {.lex_state = 52, .external_lex_state = 13}, - [2363] = {.lex_state = 52, .external_lex_state = 15}, - [2364] = {.lex_state = 52, .external_lex_state = 14}, - [2365] = {.lex_state = 52, .external_lex_state = 14}, - [2366] = {.lex_state = 52, .external_lex_state = 19}, - [2367] = {.lex_state = 52, .external_lex_state = 13}, - [2368] = {.lex_state = 52, .external_lex_state = 13}, - [2369] = {.lex_state = 52, .external_lex_state = 15}, - [2370] = {.lex_state = 52, .external_lex_state = 13}, - [2371] = {.lex_state = 9, .external_lex_state = 17}, - [2372] = {.lex_state = 52, .external_lex_state = 14}, - [2373] = {.lex_state = 52, .external_lex_state = 13}, - [2374] = {.lex_state = 52, .external_lex_state = 9}, - [2375] = {.lex_state = 52, .external_lex_state = 13}, - [2376] = {.lex_state = 52, .external_lex_state = 9}, - [2377] = {.lex_state = 52, .external_lex_state = 13}, - [2378] = {.lex_state = 52, .external_lex_state = 14}, - [2379] = {.lex_state = 52, .external_lex_state = 13}, - [2380] = {.lex_state = 52, .external_lex_state = 12}, - [2381] = {.lex_state = 52, .external_lex_state = 13}, - [2382] = {.lex_state = 52, .external_lex_state = 14}, - [2383] = {.lex_state = 52, .external_lex_state = 13}, - [2384] = {.lex_state = 52, .external_lex_state = 14}, - [2385] = {.lex_state = 52, .external_lex_state = 9}, - [2386] = {.lex_state = 52, .external_lex_state = 12}, - [2387] = {.lex_state = 52, .external_lex_state = 19}, - [2388] = {.lex_state = 52, .external_lex_state = 13}, - [2389] = {.lex_state = 52, .external_lex_state = 13}, - [2390] = {.lex_state = 52, .external_lex_state = 19}, - [2391] = {.lex_state = 52, .external_lex_state = 14}, - [2392] = {.lex_state = 52, .external_lex_state = 15}, - [2393] = {.lex_state = 52, .external_lex_state = 12}, - [2394] = {.lex_state = 52, .external_lex_state = 13}, - [2395] = {.lex_state = 52, .external_lex_state = 13}, - [2396] = {.lex_state = 52, .external_lex_state = 12}, - [2397] = {.lex_state = 52, .external_lex_state = 14}, - [2398] = {.lex_state = 52, .external_lex_state = 14}, - [2399] = {.lex_state = 52, .external_lex_state = 15}, - [2400] = {.lex_state = 52, .external_lex_state = 9}, - [2401] = {.lex_state = 52, .external_lex_state = 19}, - [2402] = {.lex_state = 52, .external_lex_state = 13}, - [2403] = {.lex_state = 52, .external_lex_state = 15}, - [2404] = {.lex_state = 52, .external_lex_state = 14}, - [2405] = {.lex_state = 52, .external_lex_state = 9}, - [2406] = {.lex_state = 52, .external_lex_state = 12}, - [2407] = {.lex_state = 52, .external_lex_state = 14}, - [2408] = {.lex_state = 52, .external_lex_state = 14}, - [2409] = {.lex_state = 52, .external_lex_state = 14}, - [2410] = {.lex_state = 52, .external_lex_state = 14}, - [2411] = {.lex_state = 52, .external_lex_state = 15}, - [2412] = {.lex_state = 3, .external_lex_state = 12}, - [2413] = {.lex_state = 52, .external_lex_state = 12}, - [2414] = {.lex_state = 52, .external_lex_state = 14}, - [2415] = {.lex_state = 52, .external_lex_state = 14}, - [2416] = {.lex_state = 52, .external_lex_state = 14}, - [2417] = {.lex_state = 52, .external_lex_state = 13}, - [2418] = {.lex_state = 52, .external_lex_state = 13}, - [2419] = {.lex_state = 52, .external_lex_state = 13}, - [2420] = {.lex_state = 52, .external_lex_state = 12}, - [2421] = {.lex_state = 52, .external_lex_state = 12}, - [2422] = {.lex_state = 52, .external_lex_state = 13}, - [2423] = {.lex_state = 52, .external_lex_state = 13}, - [2424] = {.lex_state = 52, .external_lex_state = 15}, - [2425] = {.lex_state = 52, .external_lex_state = 13}, + [2289] = {.lex_state = 3, .external_lex_state = 12}, + [2290] = {.lex_state = 54, .external_lex_state = 14}, + [2291] = {.lex_state = 54, .external_lex_state = 13}, + [2292] = {.lex_state = 54, .external_lex_state = 13}, + [2293] = {.lex_state = 54, .external_lex_state = 13}, + [2294] = {.lex_state = 54, .external_lex_state = 13}, + [2295] = {.lex_state = 54, .external_lex_state = 13}, + [2296] = {.lex_state = 54, .external_lex_state = 13}, + [2297] = {.lex_state = 54, .external_lex_state = 14}, + [2298] = {.lex_state = 54, .external_lex_state = 14}, + [2299] = {.lex_state = 54, .external_lex_state = 14}, + [2300] = {.lex_state = 54, .external_lex_state = 14}, + [2301] = {.lex_state = 8, .external_lex_state = 9}, + [2302] = {.lex_state = 54, .external_lex_state = 19}, + [2303] = {.lex_state = 54, .external_lex_state = 13}, + [2304] = {.lex_state = 54, .external_lex_state = 12}, + [2305] = {.lex_state = 55, .external_lex_state = 17}, + [2306] = {.lex_state = 54, .external_lex_state = 13}, + [2307] = {.lex_state = 54, .external_lex_state = 14}, + [2308] = {.lex_state = 54, .external_lex_state = 13}, + [2309] = {.lex_state = 54, .external_lex_state = 12}, + [2310] = {.lex_state = 54, .external_lex_state = 13}, + [2311] = {.lex_state = 54, .external_lex_state = 12}, + [2312] = {.lex_state = 54, .external_lex_state = 12}, + [2313] = {.lex_state = 8, .external_lex_state = 15}, + [2314] = {.lex_state = 54, .external_lex_state = 9}, + [2315] = {.lex_state = 54, .external_lex_state = 13}, + [2316] = {.lex_state = 54, .external_lex_state = 13}, + [2317] = {.lex_state = 8, .external_lex_state = 13}, + [2318] = {.lex_state = 8, .external_lex_state = 15}, + [2319] = {.lex_state = 54, .external_lex_state = 13}, + [2320] = {.lex_state = 54, .external_lex_state = 9}, + [2321] = {.lex_state = 54, .external_lex_state = 13}, + [2322] = {.lex_state = 54, .external_lex_state = 14}, + [2323] = {.lex_state = 54, .external_lex_state = 14}, + [2324] = {.lex_state = 54, .external_lex_state = 13}, + [2325] = {.lex_state = 54, .external_lex_state = 14}, + [2326] = {.lex_state = 54, .external_lex_state = 12}, + [2327] = {.lex_state = 54, .external_lex_state = 12}, + [2328] = {.lex_state = 54, .external_lex_state = 14}, + [2329] = {.lex_state = 54, .external_lex_state = 9}, + [2330] = {.lex_state = 54, .external_lex_state = 12}, + [2331] = {.lex_state = 54, .external_lex_state = 13}, + [2332] = {.lex_state = 54, .external_lex_state = 13}, + [2333] = {.lex_state = 54, .external_lex_state = 15}, + [2334] = {.lex_state = 54, .external_lex_state = 15}, + [2335] = {.lex_state = 54, .external_lex_state = 14}, + [2336] = {.lex_state = 54, .external_lex_state = 15}, + [2337] = {.lex_state = 54, .external_lex_state = 9}, + [2338] = {.lex_state = 54, .external_lex_state = 13}, + [2339] = {.lex_state = 55, .external_lex_state = 17}, + [2340] = {.lex_state = 54, .external_lex_state = 13}, + [2341] = {.lex_state = 13, .external_lex_state = 15}, + [2342] = {.lex_state = 54, .external_lex_state = 14}, + [2343] = {.lex_state = 54, .external_lex_state = 14}, + [2344] = {.lex_state = 54, .external_lex_state = 13}, + [2345] = {.lex_state = 8, .external_lex_state = 12}, + [2346] = {.lex_state = 54, .external_lex_state = 14}, + [2347] = {.lex_state = 54, .external_lex_state = 19}, + [2348] = {.lex_state = 54, .external_lex_state = 12}, + [2349] = {.lex_state = 54, .external_lex_state = 14}, + [2350] = {.lex_state = 54, .external_lex_state = 13}, + [2351] = {.lex_state = 54, .external_lex_state = 9}, + [2352] = {.lex_state = 54, .external_lex_state = 13}, + [2353] = {.lex_state = 54, .external_lex_state = 13}, + [2354] = {.lex_state = 54, .external_lex_state = 13}, + [2355] = {.lex_state = 54, .external_lex_state = 13}, + [2356] = {.lex_state = 54, .external_lex_state = 12}, + [2357] = {.lex_state = 54, .external_lex_state = 9}, + [2358] = {.lex_state = 8, .external_lex_state = 9}, + [2359] = {.lex_state = 54, .external_lex_state = 12}, + [2360] = {.lex_state = 54, .external_lex_state = 13}, + [2361] = {.lex_state = 54, .external_lex_state = 13}, + [2362] = {.lex_state = 55, .external_lex_state = 17}, + [2363] = {.lex_state = 54, .external_lex_state = 14}, + [2364] = {.lex_state = 54, .external_lex_state = 15}, + [2365] = {.lex_state = 8, .external_lex_state = 15}, + [2366] = {.lex_state = 54, .external_lex_state = 13}, + [2367] = {.lex_state = 54, .external_lex_state = 13}, + [2368] = {.lex_state = 54, .external_lex_state = 14}, + [2369] = {.lex_state = 54, .external_lex_state = 14}, + [2370] = {.lex_state = 54, .external_lex_state = 19}, + [2371] = {.lex_state = 54, .external_lex_state = 15}, + [2372] = {.lex_state = 54, .external_lex_state = 14}, + [2373] = {.lex_state = 3, .external_lex_state = 12}, + [2374] = {.lex_state = 54, .external_lex_state = 15}, + [2375] = {.lex_state = 54, .external_lex_state = 14}, + [2376] = {.lex_state = 54, .external_lex_state = 13}, + [2377] = {.lex_state = 54, .external_lex_state = 12}, + [2378] = {.lex_state = 54, .external_lex_state = 13}, + [2379] = {.lex_state = 54, .external_lex_state = 12}, + [2380] = {.lex_state = 54, .external_lex_state = 13}, + [2381] = {.lex_state = 54, .external_lex_state = 13}, + [2382] = {.lex_state = 54, .external_lex_state = 14}, + [2383] = {.lex_state = 54, .external_lex_state = 14}, + [2384] = {.lex_state = 54, .external_lex_state = 13}, + [2385] = {.lex_state = 54, .external_lex_state = 13}, + [2386] = {.lex_state = 3, .external_lex_state = 12}, + [2387] = {.lex_state = 54, .external_lex_state = 14}, + [2388] = {.lex_state = 54, .external_lex_state = 14}, + [2389] = {.lex_state = 54, .external_lex_state = 14}, + [2390] = {.lex_state = 54, .external_lex_state = 15}, + [2391] = {.lex_state = 3, .external_lex_state = 12}, + [2392] = {.lex_state = 3, .external_lex_state = 12}, + [2393] = {.lex_state = 54, .external_lex_state = 14}, + [2394] = {.lex_state = 54, .external_lex_state = 13}, + [2395] = {.lex_state = 54, .external_lex_state = 13}, + [2396] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2397] = {.lex_state = 54, .external_lex_state = 13}, + [2398] = {.lex_state = 54, .external_lex_state = 9}, + [2399] = {.lex_state = 54, .external_lex_state = 14}, + [2400] = {.lex_state = 54, .external_lex_state = 12}, + [2401] = {.lex_state = 54, .external_lex_state = 12}, + [2402] = {.lex_state = 54, .external_lex_state = 12}, + [2403] = {.lex_state = 54, .external_lex_state = 13}, + [2404] = {.lex_state = 54, .external_lex_state = 13}, + [2405] = {.lex_state = 54, .external_lex_state = 13}, + [2406] = {.lex_state = 54, .external_lex_state = 13}, + [2407] = {.lex_state = 8, .external_lex_state = 15}, + [2408] = {.lex_state = 54, .external_lex_state = 14}, + [2409] = {.lex_state = 54, .external_lex_state = 13}, + [2410] = {.lex_state = 54, .external_lex_state = 13}, + [2411] = {.lex_state = 54, .external_lex_state = 14}, + [2412] = {.lex_state = 54, .external_lex_state = 14}, + [2413] = {.lex_state = 54, .external_lex_state = 12}, + [2414] = {.lex_state = 55, .external_lex_state = 17}, + [2415] = {.lex_state = 54, .external_lex_state = 14}, + [2416] = {.lex_state = 54, .external_lex_state = 15}, + [2417] = {.lex_state = 54, .external_lex_state = 14}, + [2418] = {.lex_state = 54, .external_lex_state = 14}, + [2419] = {.lex_state = 54, .external_lex_state = 19}, + [2420] = {.lex_state = 54, .external_lex_state = 14}, + [2421] = {.lex_state = 54, .external_lex_state = 12}, + [2422] = {.lex_state = 54, .external_lex_state = 14}, + [2423] = {.lex_state = 54, .external_lex_state = 14}, + [2424] = {.lex_state = 54, .external_lex_state = 9}, + [2425] = {.lex_state = 54, .external_lex_state = 9}, [2426] = {.lex_state = 3, .external_lex_state = 12}, - [2427] = {.lex_state = 52, .external_lex_state = 12}, - [2428] = {.lex_state = 52, .external_lex_state = 14}, - [2429] = {.lex_state = 52, .external_lex_state = 15}, - [2430] = {.lex_state = 52, .external_lex_state = 15}, - [2431] = {.lex_state = 52, .external_lex_state = 9}, - [2432] = {.lex_state = 52, .external_lex_state = 13}, - [2433] = {.lex_state = 52, .external_lex_state = 15}, - [2434] = {.lex_state = 52, .external_lex_state = 13}, - [2435] = {.lex_state = 52, .external_lex_state = 13}, - [2436] = {.lex_state = 52, .external_lex_state = 9}, - [2437] = {.lex_state = 8, .external_lex_state = 15}, - [2438] = {.lex_state = 52, .external_lex_state = 13}, - [2439] = {.lex_state = 52, .external_lex_state = 13}, - [2440] = {.lex_state = 8, .external_lex_state = 15}, - [2441] = {.lex_state = 8, .external_lex_state = 15}, - [2442] = {.lex_state = 8, .external_lex_state = 15}, - [2443] = {.lex_state = 52, .external_lex_state = 13}, - [2444] = {.lex_state = 52, .external_lex_state = 14}, - [2445] = {.lex_state = 52, .external_lex_state = 14}, - [2446] = {.lex_state = 52, .external_lex_state = 14}, - [2447] = {.lex_state = 52, .external_lex_state = 13}, - [2448] = {.lex_state = 52, .external_lex_state = 13}, + [2427] = {.lex_state = 54, .external_lex_state = 14}, + [2428] = {.lex_state = 54, .external_lex_state = 13}, + [2429] = {.lex_state = 54, .external_lex_state = 15}, + [2430] = {.lex_state = 8, .external_lex_state = 15}, + [2431] = {.lex_state = 8, .external_lex_state = 15}, + [2432] = {.lex_state = 54, .external_lex_state = 13}, + [2433] = {.lex_state = 13, .external_lex_state = 15}, + [2434] = {.lex_state = 54, .external_lex_state = 12}, + [2435] = {.lex_state = 13, .external_lex_state = 15}, + [2436] = {.lex_state = 54, .external_lex_state = 9}, + [2437] = {.lex_state = 54, .external_lex_state = 19}, + [2438] = {.lex_state = 13, .external_lex_state = 15}, + [2439] = {.lex_state = 13, .external_lex_state = 15}, + [2440] = {.lex_state = 13, .external_lex_state = 15}, + [2441] = {.lex_state = 54, .external_lex_state = 13}, + [2442] = {.lex_state = 8, .external_lex_state = 13}, + [2443] = {.lex_state = 8, .external_lex_state = 13}, + [2444] = {.lex_state = 54, .external_lex_state = 13}, + [2445] = {.lex_state = 54, .external_lex_state = 15}, + [2446] = {.lex_state = 54, .external_lex_state = 14}, + [2447] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2448] = {.lex_state = 8, .external_lex_state = 15}, [2449] = {.lex_state = 8, .external_lex_state = 15}, - [2450] = {.lex_state = 52, .external_lex_state = 15}, - [2451] = {.lex_state = 52, .external_lex_state = 15}, - [2452] = {.lex_state = 52, .external_lex_state = 9}, - [2453] = {.lex_state = 52, .external_lex_state = 15}, - [2454] = {.lex_state = 52, .external_lex_state = 12}, - [2455] = {.lex_state = 52, .external_lex_state = 14}, - [2456] = {.lex_state = 52, .external_lex_state = 19}, - [2457] = {.lex_state = 52, .external_lex_state = 15}, - [2458] = {.lex_state = 52, .external_lex_state = 15}, - [2459] = {.lex_state = 52, .external_lex_state = 12}, - [2460] = {.lex_state = 52, .external_lex_state = 9}, - [2461] = {.lex_state = 52, .external_lex_state = 14}, - [2462] = {.lex_state = 52, .external_lex_state = 12}, - [2463] = {.lex_state = 52, .external_lex_state = 14}, - [2464] = {.lex_state = 52, .external_lex_state = 12}, - [2465] = {.lex_state = 52, .external_lex_state = 13}, - [2466] = {.lex_state = 52, .external_lex_state = 13}, - [2467] = {.lex_state = 52, .external_lex_state = 12}, - [2468] = {.lex_state = 52, .external_lex_state = 13}, - [2469] = {.lex_state = 52, .external_lex_state = 14}, - [2470] = {.lex_state = 52, .external_lex_state = 15}, - [2471] = {.lex_state = 52, .external_lex_state = 19}, - [2472] = {.lex_state = 52, .external_lex_state = 13}, - [2473] = {.lex_state = 52, .external_lex_state = 13}, - [2474] = {.lex_state = 52, .external_lex_state = 14}, - [2475] = {.lex_state = 52, .external_lex_state = 14}, - [2476] = {.lex_state = 9, .external_lex_state = 17}, - [2477] = {.lex_state = 52, .external_lex_state = 14}, - [2478] = {.lex_state = 52, .external_lex_state = 15}, - [2479] = {.lex_state = 52, .external_lex_state = 13}, - [2480] = {.lex_state = 52, .external_lex_state = 14}, - [2481] = {.lex_state = 52, .external_lex_state = 19}, - [2482] = {.lex_state = 52, .external_lex_state = 13}, - [2483] = {.lex_state = 52, .external_lex_state = 15}, - [2484] = {.lex_state = 8, .external_lex_state = 15}, - [2485] = {.lex_state = 52, .external_lex_state = 15}, - [2486] = {.lex_state = 52, .external_lex_state = 13}, - [2487] = {.lex_state = 52, .external_lex_state = 13}, - [2488] = {.lex_state = 9, .external_lex_state = 17}, - [2489] = {.lex_state = 52, .external_lex_state = 13}, - [2490] = {.lex_state = 3, .external_lex_state = 12}, - [2491] = {.lex_state = 3, .external_lex_state = 12}, - [2492] = {.lex_state = 3, .external_lex_state = 12}, - [2493] = {.lex_state = 52, .external_lex_state = 15}, - [2494] = {.lex_state = 52, .external_lex_state = 15}, - [2495] = {.lex_state = 52, .external_lex_state = 15}, - [2496] = {.lex_state = 52, .external_lex_state = 14}, - [2497] = {.lex_state = 52, .external_lex_state = 12}, - [2498] = {.lex_state = 52, .external_lex_state = 9}, - [2499] = {.lex_state = 9, .external_lex_state = 15}, - [2500] = {.lex_state = 52, .external_lex_state = 15}, - [2501] = {.lex_state = 52, .external_lex_state = 15}, - [2502] = {.lex_state = 52, .external_lex_state = 14}, - [2503] = {.lex_state = 52, .external_lex_state = 14}, - [2504] = {.lex_state = 52, .external_lex_state = 15}, - [2505] = {.lex_state = 52, .external_lex_state = 12}, - [2506] = {.lex_state = 52, .external_lex_state = 12}, - [2507] = {.lex_state = 52, .external_lex_state = 9}, - [2508] = {.lex_state = 52, .external_lex_state = 9}, - [2509] = {.lex_state = 52, .external_lex_state = 12}, - [2510] = {.lex_state = 52, .external_lex_state = 15}, - [2511] = {.lex_state = 52, .external_lex_state = 18}, - [2512] = {.lex_state = 52, .external_lex_state = 15}, - [2513] = {.lex_state = 52, .external_lex_state = 9}, - [2514] = {.lex_state = 52, .external_lex_state = 14}, - [2515] = {.lex_state = 52, .external_lex_state = 13}, - [2516] = {.lex_state = 52, .external_lex_state = 18}, - [2517] = {.lex_state = 52, .external_lex_state = 18}, - [2518] = {.lex_state = 52, .external_lex_state = 18}, - [2519] = {.lex_state = 52, .external_lex_state = 9}, - [2520] = {.lex_state = 9, .external_lex_state = 15}, - [2521] = {.lex_state = 52, .external_lex_state = 9}, - [2522] = {.lex_state = 52, .external_lex_state = 15}, - [2523] = {.lex_state = 52, .external_lex_state = 18}, - [2524] = {.lex_state = 52, .external_lex_state = 18}, - [2525] = {.lex_state = 52, .external_lex_state = 18}, - [2526] = {.lex_state = 52, .external_lex_state = 18}, - [2527] = {.lex_state = 52, .external_lex_state = 9}, - [2528] = {.lex_state = 52, .external_lex_state = 13}, - [2529] = {.lex_state = 52, .external_lex_state = 15}, - [2530] = {.lex_state = 52, .external_lex_state = 9}, - [2531] = {.lex_state = 52, .external_lex_state = 18}, - [2532] = {.lex_state = 52, .external_lex_state = 9}, - [2533] = {.lex_state = 52, .external_lex_state = 13}, - [2534] = {.lex_state = 52, .external_lex_state = 9}, - [2535] = {.lex_state = 52, .external_lex_state = 18}, + [2450] = {.lex_state = 54, .external_lex_state = 12}, + [2451] = {.lex_state = 13, .external_lex_state = 15}, + [2452] = {.lex_state = 54, .external_lex_state = 13}, + [2453] = {.lex_state = 54, .external_lex_state = 12}, + [2454] = {.lex_state = 54, .external_lex_state = 15}, + [2455] = {.lex_state = 8, .external_lex_state = 12}, + [2456] = {.lex_state = 3, .external_lex_state = 12}, + [2457] = {.lex_state = 54, .external_lex_state = 14}, + [2458] = {.lex_state = 54, .external_lex_state = 13}, + [2459] = {.lex_state = 54, .external_lex_state = 13}, + [2460] = {.lex_state = 54, .external_lex_state = 12}, + [2461] = {.lex_state = 54, .external_lex_state = 13}, + [2462] = {.lex_state = 54, .external_lex_state = 14}, + [2463] = {.lex_state = 54, .external_lex_state = 15}, + [2464] = {.lex_state = 54, .external_lex_state = 9}, + [2465] = {.lex_state = 54, .external_lex_state = 13}, + [2466] = {.lex_state = 8, .external_lex_state = 9}, + [2467] = {.lex_state = 54, .external_lex_state = 13}, + [2468] = {.lex_state = 54, .external_lex_state = 13}, + [2469] = {.lex_state = 54, .external_lex_state = 13}, + [2470] = {.lex_state = 54, .external_lex_state = 14}, + [2471] = {.lex_state = 8, .external_lex_state = 12}, + [2472] = {.lex_state = 54, .external_lex_state = 12}, + [2473] = {.lex_state = 8, .external_lex_state = 9}, + [2474] = {.lex_state = 54, .external_lex_state = 9}, + [2475] = {.lex_state = 54, .external_lex_state = 15}, + [2476] = {.lex_state = 8, .external_lex_state = 15}, + [2477] = {.lex_state = 8, .external_lex_state = 15}, + [2478] = {.lex_state = 54, .external_lex_state = 12}, + [2479] = {.lex_state = 54, .external_lex_state = 9}, + [2480] = {.lex_state = 54, .external_lex_state = 15}, + [2481] = {.lex_state = 54, .external_lex_state = 9}, + [2482] = {.lex_state = 8, .external_lex_state = 18}, + [2483] = {.lex_state = 54, .external_lex_state = 14}, + [2484] = {.lex_state = 54, .external_lex_state = 9}, + [2485] = {.lex_state = 9, .external_lex_state = 15}, + [2486] = {.lex_state = 54, .external_lex_state = 9}, + [2487] = {.lex_state = 54, .external_lex_state = 14}, + [2488] = {.lex_state = 54, .external_lex_state = 15}, + [2489] = {.lex_state = 8, .external_lex_state = 18}, + [2490] = {.lex_state = 8, .external_lex_state = 18}, + [2491] = {.lex_state = 54, .external_lex_state = 9}, + [2492] = {.lex_state = 8, .external_lex_state = 18}, + [2493] = {.lex_state = 54, .external_lex_state = 13}, + [2494] = {.lex_state = 9, .external_lex_state = 15}, + [2495] = {.lex_state = 54, .external_lex_state = 15}, + [2496] = {.lex_state = 54, .external_lex_state = 15}, + [2497] = {.lex_state = 54, .external_lex_state = 9}, + [2498] = {.lex_state = 9, .external_lex_state = 15}, + [2499] = {.lex_state = 54, .external_lex_state = 13}, + [2500] = {.lex_state = 54, .external_lex_state = 14}, + [2501] = {.lex_state = 54, .external_lex_state = 13}, + [2502] = {.lex_state = 54, .external_lex_state = 13}, + [2503] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2504] = {.lex_state = 9, .external_lex_state = 15}, + [2505] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2506] = {.lex_state = 54, .external_lex_state = 9}, + [2507] = {.lex_state = 54, .external_lex_state = 15}, + [2508] = {.lex_state = 54, .external_lex_state = 15}, + [2509] = {.lex_state = 54, .external_lex_state = 13}, + [2510] = {.lex_state = 54, .external_lex_state = 13}, + [2511] = {.lex_state = 54, .external_lex_state = 15}, + [2512] = {.lex_state = 54, .external_lex_state = 9}, + [2513] = {.lex_state = 8, .external_lex_state = 18}, + [2514] = {.lex_state = 54, .external_lex_state = 15}, + [2515] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2516] = {.lex_state = 54, .external_lex_state = 15}, + [2517] = {.lex_state = 54, .external_lex_state = 9}, + [2518] = {.lex_state = 54, .external_lex_state = 15}, + [2519] = {.lex_state = 54, .external_lex_state = 15}, + [2520] = {.lex_state = 54, .external_lex_state = 13}, + [2521] = {.lex_state = 54, .external_lex_state = 14}, + [2522] = {.lex_state = 8, .external_lex_state = 18}, + [2523] = {.lex_state = 54, .external_lex_state = 13}, + [2524] = {.lex_state = 8, .external_lex_state = 18}, + [2525] = {.lex_state = 54, .external_lex_state = 15}, + [2526] = {.lex_state = 54, .external_lex_state = 14}, + [2527] = {.lex_state = 8, .external_lex_state = 18}, + [2528] = {.lex_state = 8, .external_lex_state = 18}, + [2529] = {.lex_state = 8, .external_lex_state = 18}, + [2530] = {.lex_state = 54, .external_lex_state = 15}, + [2531] = {.lex_state = 54, .external_lex_state = 15}, + [2532] = {.lex_state = 54, .external_lex_state = 13}, + [2533] = {.lex_state = 54, .external_lex_state = 9}, + [2534] = {.lex_state = 54, .external_lex_state = 15}, + [2535] = {.lex_state = 8, .external_lex_state = 18}, [2536] = {.lex_state = 9, .external_lex_state = 15}, - [2537] = {.lex_state = 52, .external_lex_state = 13}, - [2538] = {.lex_state = 52, .external_lex_state = 15}, - [2539] = {.lex_state = 52, .external_lex_state = 15}, - [2540] = {.lex_state = 52, .external_lex_state = 12}, - [2541] = {.lex_state = 52, .external_lex_state = 9}, - [2542] = {.lex_state = 52, .external_lex_state = 13}, - [2543] = {.lex_state = 9, .external_lex_state = 15}, - [2544] = {.lex_state = 52, .external_lex_state = 15}, + [2537] = {.lex_state = 8, .external_lex_state = 18}, + [2538] = {.lex_state = 8, .external_lex_state = 18}, + [2539] = {.lex_state = 54, .external_lex_state = 15}, + [2540] = {.lex_state = 8, .external_lex_state = 18}, + [2541] = {.lex_state = 8, .external_lex_state = 18}, + [2542] = {.lex_state = 54, .external_lex_state = 12}, + [2543] = {.lex_state = 54, .external_lex_state = 9}, + [2544] = {.lex_state = 54, .external_lex_state = 9}, [2545] = {.lex_state = 9, .external_lex_state = 15}, - [2546] = {.lex_state = 52, .external_lex_state = 15}, - [2547] = {.lex_state = 52, .external_lex_state = 15}, - [2548] = {.lex_state = 52, .external_lex_state = 14}, - [2549] = {.lex_state = 52, .external_lex_state = 15}, - [2550] = {.lex_state = 52, .external_lex_state = 15}, + [2546] = {.lex_state = 9, .external_lex_state = 15}, + [2547] = {.lex_state = 54, .external_lex_state = 12}, + [2548] = {.lex_state = 54, .external_lex_state = 12}, + [2549] = {.lex_state = 9, .external_lex_state = 15}, + [2550] = {.lex_state = 54, .external_lex_state = 13}, [2551] = {.lex_state = 9, .external_lex_state = 15}, - [2552] = {.lex_state = 52, .external_lex_state = 13}, - [2553] = {.lex_state = 52, .external_lex_state = 9}, - [2554] = {.lex_state = 52, .external_lex_state = 15}, - [2555] = {.lex_state = 52, .external_lex_state = 13}, - [2556] = {.lex_state = 52, .external_lex_state = 14}, - [2557] = {.lex_state = 52, .external_lex_state = 13}, - [2558] = {.lex_state = 52, .external_lex_state = 13}, - [2559] = {.lex_state = 52, .external_lex_state = 14}, - [2560] = {.lex_state = 52, .external_lex_state = 14}, + [2552] = {.lex_state = 54, .external_lex_state = 13}, + [2553] = {.lex_state = 54, .external_lex_state = 15}, + [2554] = {.lex_state = 54, .external_lex_state = 9}, + [2555] = {.lex_state = 8, .external_lex_state = 18}, + [2556] = {.lex_state = 54, .external_lex_state = 15}, + [2557] = {.lex_state = 54, .external_lex_state = 15}, + [2558] = {.lex_state = 54, .external_lex_state = 13}, + [2559] = {.lex_state = 54, .external_lex_state = 13}, + [2560] = {.lex_state = 54, .external_lex_state = 9}, [2561] = {.lex_state = 9, .external_lex_state = 15}, - [2562] = {.lex_state = 52, .external_lex_state = 18}, - [2563] = {.lex_state = 9, .external_lex_state = 15}, - [2564] = {.lex_state = 9, .external_lex_state = 15}, - [2565] = {.lex_state = 52, .external_lex_state = 15}, - [2566] = {.lex_state = 52, .external_lex_state = 15}, - [2567] = {.lex_state = 9, .external_lex_state = 15}, - [2568] = {.lex_state = 52, .external_lex_state = 15}, - [2569] = {.lex_state = 52, .external_lex_state = 13}, - [2570] = {.lex_state = 52, .external_lex_state = 14}, - [2571] = {.lex_state = 52, .external_lex_state = 9}, - [2572] = {.lex_state = 52, .external_lex_state = 18}, - [2573] = {.lex_state = 52, .external_lex_state = 13}, - [2574] = {.lex_state = 52, .external_lex_state = 18}, - [2575] = {.lex_state = 52, .external_lex_state = 12}, - [2576] = {.lex_state = 52, .external_lex_state = 18}, - [2577] = {.lex_state = 52, .external_lex_state = 15}, - [2578] = {.lex_state = 52, .external_lex_state = 9}, - [2579] = {.lex_state = 52, .external_lex_state = 18}, - [2580] = {.lex_state = 52, .external_lex_state = 15}, - [2581] = {.lex_state = 52, .external_lex_state = 18}, - [2582] = {.lex_state = 52, .external_lex_state = 13}, - [2583] = {.lex_state = 52, .external_lex_state = 13}, - [2584] = {.lex_state = 52, .external_lex_state = 9}, - [2585] = {.lex_state = 52, .external_lex_state = 9}, - [2586] = {.lex_state = 52, .external_lex_state = 9}, - [2587] = {.lex_state = 52, .external_lex_state = 15}, - [2588] = {.lex_state = 52, .external_lex_state = 15}, - [2589] = {.lex_state = 52, .external_lex_state = 18}, - [2590] = {.lex_state = 52, .external_lex_state = 15}, - [2591] = {.lex_state = 52, .external_lex_state = 15}, - [2592] = {.lex_state = 52, .external_lex_state = 14}, - [2593] = {.lex_state = 52, .external_lex_state = 13}, - [2594] = {.lex_state = 52, .external_lex_state = 15}, - [2595] = {.lex_state = 52, .external_lex_state = 9}, - [2596] = {.lex_state = 52, .external_lex_state = 9}, - [2597] = {.lex_state = 52, .external_lex_state = 15}, - [2598] = {.lex_state = 52, .external_lex_state = 18}, - [2599] = {.lex_state = 52, .external_lex_state = 13}, - [2600] = {.lex_state = 52, .external_lex_state = 15}, - [2601] = {.lex_state = 52, .external_lex_state = 13}, - [2602] = {.lex_state = 52, .external_lex_state = 13}, - [2603] = {.lex_state = 52, .external_lex_state = 12}, - [2604] = {.lex_state = 52, .external_lex_state = 14}, - [2605] = {.lex_state = 52, .external_lex_state = 12}, - [2606] = {.lex_state = 52, .external_lex_state = 13}, - [2607] = {.lex_state = 52, .external_lex_state = 12}, - [2608] = {.lex_state = 52, .external_lex_state = 12}, - [2609] = {.lex_state = 52, .external_lex_state = 15}, - [2610] = {.lex_state = 52, .external_lex_state = 13}, - [2611] = {.lex_state = 4, .external_lex_state = 15}, - [2612] = {.lex_state = 52, .external_lex_state = 15}, - [2613] = {.lex_state = 52, .external_lex_state = 13}, - [2614] = {.lex_state = 52, .external_lex_state = 13}, - [2615] = {.lex_state = 52, .external_lex_state = 14}, - [2616] = {.lex_state = 52, .external_lex_state = 12}, - [2617] = {.lex_state = 52, .external_lex_state = 15}, - [2618] = {.lex_state = 52, .external_lex_state = 12}, - [2619] = {.lex_state = 52, .external_lex_state = 12}, - [2620] = {.lex_state = 52, .external_lex_state = 15}, - [2621] = {.lex_state = 52, .external_lex_state = 12}, - [2622] = {.lex_state = 52, .external_lex_state = 13}, - [2623] = {.lex_state = 52, .external_lex_state = 13}, - [2624] = {.lex_state = 52, .external_lex_state = 15}, - [2625] = {.lex_state = 52, .external_lex_state = 13}, - [2626] = {.lex_state = 52, .external_lex_state = 14}, - [2627] = {.lex_state = 52, .external_lex_state = 13}, - [2628] = {.lex_state = 52, .external_lex_state = 14}, - [2629] = {.lex_state = 52, .external_lex_state = 15}, - [2630] = {.lex_state = 52, .external_lex_state = 15}, - [2631] = {.lex_state = 52, .external_lex_state = 13}, - [2632] = {.lex_state = 52, .external_lex_state = 15}, - [2633] = {.lex_state = 52, .external_lex_state = 13}, - [2634] = {.lex_state = 52, .external_lex_state = 12}, - [2635] = {.lex_state = 52, .external_lex_state = 13}, - [2636] = {.lex_state = 52, .external_lex_state = 15}, - [2637] = {.lex_state = 52, .external_lex_state = 12}, + [2562] = {.lex_state = 54, .external_lex_state = 14}, + [2563] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2564] = {.lex_state = 54, .external_lex_state = 14}, + [2565] = {.lex_state = 54, .external_lex_state = 9}, + [2566] = {.lex_state = 8, .external_lex_state = 18}, + [2567] = {.lex_state = 54, .external_lex_state = 13}, + [2568] = {.lex_state = 54, .external_lex_state = 15}, + [2569] = {.lex_state = 54, .external_lex_state = 12}, + [2570] = {.lex_state = 54, .external_lex_state = 13}, + [2571] = {.lex_state = 54, .external_lex_state = 15}, + [2572] = {.lex_state = 54, .external_lex_state = 9}, + [2573] = {.lex_state = 54, .external_lex_state = 9}, + [2574] = {.lex_state = 54, .external_lex_state = 12}, + [2575] = {.lex_state = 54, .external_lex_state = 15}, + [2576] = {.lex_state = 54, .external_lex_state = 14}, + [2577] = {.lex_state = 8, .external_lex_state = 18}, + [2578] = {.lex_state = 54, .external_lex_state = 9}, + [2579] = {.lex_state = 54, .external_lex_state = 14}, + [2580] = {.lex_state = 4, .external_lex_state = 15}, + [2581] = {.lex_state = 4, .external_lex_state = 15}, + [2582] = {.lex_state = 8, .external_lex_state = 15}, + [2583] = {.lex_state = 54, .external_lex_state = 15}, + [2584] = {.lex_state = 54, .external_lex_state = 12}, + [2585] = {.lex_state = 54, .external_lex_state = 13}, + [2586] = {.lex_state = 54, .external_lex_state = 12}, + [2587] = {.lex_state = 54, .external_lex_state = 12}, + [2588] = {.lex_state = 54, .external_lex_state = 14}, + [2589] = {.lex_state = 54, .external_lex_state = 12}, + [2590] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2591] = {.lex_state = 54, .external_lex_state = 15}, + [2592] = {.lex_state = 54, .external_lex_state = 12}, + [2593] = {.lex_state = 54, .external_lex_state = 15}, + [2594] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2595] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2596] = {.lex_state = 54, .external_lex_state = 13}, + [2597] = {.lex_state = 54, .external_lex_state = 14}, + [2598] = {.lex_state = 54, .external_lex_state = 15}, + [2599] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2600] = {.lex_state = 54, .external_lex_state = 12}, + [2601] = {.lex_state = 54, .external_lex_state = 12}, + [2602] = {.lex_state = 54, .external_lex_state = 12}, + [2603] = {.lex_state = 54, .external_lex_state = 13}, + [2604] = {.lex_state = 54, .external_lex_state = 13}, + [2605] = {.lex_state = 54, .external_lex_state = 15}, + [2606] = {.lex_state = 54, .external_lex_state = 13}, + [2607] = {.lex_state = 8, .external_lex_state = 15}, + [2608] = {.lex_state = 54, .external_lex_state = 12}, + [2609] = {.lex_state = 54, .external_lex_state = 15}, + [2610] = {.lex_state = 54, .external_lex_state = 12}, + [2611] = {.lex_state = 54, .external_lex_state = 15}, + [2612] = {.lex_state = 54, .external_lex_state = 12}, + [2613] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2614] = {.lex_state = 8, .external_lex_state = 15}, + [2615] = {.lex_state = 54, .external_lex_state = 14}, + [2616] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2617] = {.lex_state = 8, .external_lex_state = 15}, + [2618] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2619] = {.lex_state = 54, .external_lex_state = 14}, + [2620] = {.lex_state = 8, .external_lex_state = 15}, + [2621] = {.lex_state = 54, .external_lex_state = 15}, + [2622] = {.lex_state = 54, .external_lex_state = 13}, + [2623] = {.lex_state = 8, .external_lex_state = 15}, + [2624] = {.lex_state = 54, .external_lex_state = 15}, + [2625] = {.lex_state = 54, .external_lex_state = 12}, + [2626] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2627] = {.lex_state = 54, .external_lex_state = 13}, + [2628] = {.lex_state = 54, .external_lex_state = 13}, + [2629] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2630] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2631] = {.lex_state = 54, .external_lex_state = 13}, + [2632] = {.lex_state = 54, .external_lex_state = 15}, + [2633] = {.lex_state = 4, .external_lex_state = 15}, + [2634] = {.lex_state = 8, .external_lex_state = 15}, + [2635] = {.lex_state = 54, .external_lex_state = 14}, + [2636] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2637] = {.lex_state = 54, .external_lex_state = 12}, [2638] = {.lex_state = 4, .external_lex_state = 15}, - [2639] = {.lex_state = 52, .external_lex_state = 15}, - [2640] = {.lex_state = 52, .external_lex_state = 15}, - [2641] = {.lex_state = 52, .external_lex_state = 15}, - [2642] = {.lex_state = 52, .external_lex_state = 15}, - [2643] = {.lex_state = 52, .external_lex_state = 12}, - [2644] = {.lex_state = 52, .external_lex_state = 15}, - [2645] = {.lex_state = 52, .external_lex_state = 15}, - [2646] = {.lex_state = 52, .external_lex_state = 15}, - [2647] = {.lex_state = 52, .external_lex_state = 13}, - [2648] = {.lex_state = 52, .external_lex_state = 14}, - [2649] = {.lex_state = 52, .external_lex_state = 14}, - [2650] = {.lex_state = 52, .external_lex_state = 15}, - [2651] = {.lex_state = 52, .external_lex_state = 15}, - [2652] = {.lex_state = 52, .external_lex_state = 13}, - [2653] = {.lex_state = 52, .external_lex_state = 12}, - [2654] = {.lex_state = 52, .external_lex_state = 14}, - [2655] = {.lex_state = 52, .external_lex_state = 15}, - [2656] = {.lex_state = 52, .external_lex_state = 15}, - [2657] = {.lex_state = 52, .external_lex_state = 15}, - [2658] = {.lex_state = 52, .external_lex_state = 15}, - [2659] = {.lex_state = 52, .external_lex_state = 12}, - [2660] = {.lex_state = 52, .external_lex_state = 13}, - [2661] = {.lex_state = 52, .external_lex_state = 14}, - [2662] = {.lex_state = 52, .external_lex_state = 15}, - [2663] = {.lex_state = 52, .external_lex_state = 14}, - [2664] = {.lex_state = 52, .external_lex_state = 14}, - [2665] = {.lex_state = 52, .external_lex_state = 12}, - [2666] = {.lex_state = 52, .external_lex_state = 12}, - [2667] = {.lex_state = 52, .external_lex_state = 15}, - [2668] = {.lex_state = 52, .external_lex_state = 12}, - [2669] = {.lex_state = 52, .external_lex_state = 12}, - [2670] = {.lex_state = 52, .external_lex_state = 12}, - [2671] = {.lex_state = 52, .external_lex_state = 15}, - [2672] = {.lex_state = 52, .external_lex_state = 15}, - [2673] = {.lex_state = 52, .external_lex_state = 12}, - [2674] = {.lex_state = 52, .external_lex_state = 15}, - [2675] = {.lex_state = 52, .external_lex_state = 12}, - [2676] = {.lex_state = 52, .external_lex_state = 15}, - [2677] = {.lex_state = 52, .external_lex_state = 15}, - [2678] = {.lex_state = 52, .external_lex_state = 12}, - [2679] = {.lex_state = 52, .external_lex_state = 15}, - [2680] = {.lex_state = 52, .external_lex_state = 13}, - [2681] = {.lex_state = 52, .external_lex_state = 14}, - [2682] = {.lex_state = 52, .external_lex_state = 15}, - [2683] = {.lex_state = 4, .external_lex_state = 15}, - [2684] = {.lex_state = 52, .external_lex_state = 15}, - [2685] = {.lex_state = 52, .external_lex_state = 15}, - [2686] = {.lex_state = 52, .external_lex_state = 15}, - [2687] = {.lex_state = 52, .external_lex_state = 14}, - [2688] = {.lex_state = 52, .external_lex_state = 15}, - [2689] = {.lex_state = 52, .external_lex_state = 13}, - [2690] = {.lex_state = 52, .external_lex_state = 12}, - [2691] = {.lex_state = 52, .external_lex_state = 15}, - [2692] = {.lex_state = 52, .external_lex_state = 13}, - [2693] = {.lex_state = 52, .external_lex_state = 15}, - [2694] = {.lex_state = 52, .external_lex_state = 12}, - [2695] = {.lex_state = 52, .external_lex_state = 15}, - [2696] = {.lex_state = 52, .external_lex_state = 15}, - [2697] = {.lex_state = 52, .external_lex_state = 15}, - [2698] = {.lex_state = 52, .external_lex_state = 12}, - [2699] = {.lex_state = 52, .external_lex_state = 15}, - [2700] = {.lex_state = 52, .external_lex_state = 13}, - [2701] = {.lex_state = 52, .external_lex_state = 13}, - [2702] = {.lex_state = 52, .external_lex_state = 12}, - [2703] = {.lex_state = 52, .external_lex_state = 14}, - [2704] = {.lex_state = 52, .external_lex_state = 14}, - [2705] = {.lex_state = 52, .external_lex_state = 15}, - [2706] = {.lex_state = 52, .external_lex_state = 12}, - [2707] = {.lex_state = 52, .external_lex_state = 13}, - [2708] = {.lex_state = 52, .external_lex_state = 15}, - [2709] = {.lex_state = 52, .external_lex_state = 15}, - [2710] = {.lex_state = 52, .external_lex_state = 12}, - [2711] = {.lex_state = 52, .external_lex_state = 15}, - [2712] = {.lex_state = 52, .external_lex_state = 15}, - [2713] = {.lex_state = 52, .external_lex_state = 13}, - [2714] = {.lex_state = 52, .external_lex_state = 12}, - [2715] = {.lex_state = 52, .external_lex_state = 15}, - [2716] = {.lex_state = 52, .external_lex_state = 15}, - [2717] = {.lex_state = 52, .external_lex_state = 15}, - [2718] = {.lex_state = 52, .external_lex_state = 15}, - [2719] = {.lex_state = 52, .external_lex_state = 15}, - [2720] = {.lex_state = 52, .external_lex_state = 15}, - [2721] = {.lex_state = 52, .external_lex_state = 13}, - [2722] = {.lex_state = 52, .external_lex_state = 15}, - [2723] = {.lex_state = 52, .external_lex_state = 14}, - [2724] = {.lex_state = 52, .external_lex_state = 15}, - [2725] = {.lex_state = 52, .external_lex_state = 14}, - [2726] = {.lex_state = 52, .external_lex_state = 13}, - [2727] = {.lex_state = 52, .external_lex_state = 12}, - [2728] = {.lex_state = 52, .external_lex_state = 12}, - [2729] = {.lex_state = 52, .external_lex_state = 15}, - [2730] = {.lex_state = 52, .external_lex_state = 15}, - [2731] = {.lex_state = 52, .external_lex_state = 13}, - [2732] = {.lex_state = 52, .external_lex_state = 15}, - [2733] = {.lex_state = 52, .external_lex_state = 14}, - [2734] = {.lex_state = 52, .external_lex_state = 15}, - [2735] = {.lex_state = 52, .external_lex_state = 15}, - [2736] = {.lex_state = 52, .external_lex_state = 13}, - [2737] = {.lex_state = 52, .external_lex_state = 14}, - [2738] = {.lex_state = 52, .external_lex_state = 15}, - [2739] = {.lex_state = 52, .external_lex_state = 12}, - [2740] = {.lex_state = 52, .external_lex_state = 15}, - [2741] = {.lex_state = 52, .external_lex_state = 12}, - [2742] = {.lex_state = 52, .external_lex_state = 12}, - [2743] = {.lex_state = 52, .external_lex_state = 14}, - [2744] = {.lex_state = 52, .external_lex_state = 12}, - [2745] = {.lex_state = 52, .external_lex_state = 15}, - [2746] = {.lex_state = 52, .external_lex_state = 12}, - [2747] = {.lex_state = 52, .external_lex_state = 15}, - [2748] = {.lex_state = 52, .external_lex_state = 15}, - [2749] = {.lex_state = 52, .external_lex_state = 13}, - [2750] = {.lex_state = 52, .external_lex_state = 15}, - [2751] = {.lex_state = 4, .external_lex_state = 15}, - [2752] = {.lex_state = 52, .external_lex_state = 15}, - [2753] = {.lex_state = 52, .external_lex_state = 15}, - [2754] = {.lex_state = 52, .external_lex_state = 14}, - [2755] = {.lex_state = 52, .external_lex_state = 15}, - [2756] = {.lex_state = 52, .external_lex_state = 15}, - [2757] = {.lex_state = 52, .external_lex_state = 12}, - [2758] = {.lex_state = 52, .external_lex_state = 15}, - [2759] = {.lex_state = 52, .external_lex_state = 12}, - [2760] = {.lex_state = 52, .external_lex_state = 15}, - [2761] = {.lex_state = 52, .external_lex_state = 15}, - [2762] = {.lex_state = 52, .external_lex_state = 12}, - [2763] = {.lex_state = 52, .external_lex_state = 13}, - [2764] = {.lex_state = 52, .external_lex_state = 15}, - [2765] = {.lex_state = 52, .external_lex_state = 15}, - [2766] = {.lex_state = 52, .external_lex_state = 12}, - [2767] = {.lex_state = 52, .external_lex_state = 15}, - [2768] = {.lex_state = 52, .external_lex_state = 12}, - [2769] = {.lex_state = 52, .external_lex_state = 15}, - [2770] = {.lex_state = 52, .external_lex_state = 15}, - [2771] = {.lex_state = 4, .external_lex_state = 15}, - [2772] = {.lex_state = 52, .external_lex_state = 15}, - [2773] = {.lex_state = 4, .external_lex_state = 15}, - [2774] = {.lex_state = 52, .external_lex_state = 15}, - [2775] = {.lex_state = 4, .external_lex_state = 15}, - [2776] = {.lex_state = 52, .external_lex_state = 15}, - [2777] = {.lex_state = 4, .external_lex_state = 15}, - [2778] = {.lex_state = 52, .external_lex_state = 15}, - [2779] = {.lex_state = 52, .external_lex_state = 15}, - [2780] = {.lex_state = 52, .external_lex_state = 15}, - [2781] = {.lex_state = 52, .external_lex_state = 15}, - [2782] = {.lex_state = 52, .external_lex_state = 13}, - [2783] = {.lex_state = 52, .external_lex_state = 15}, - [2784] = {.lex_state = 52, .external_lex_state = 15}, - [2785] = {.lex_state = 52, .external_lex_state = 15}, - [2786] = {.lex_state = 52, .external_lex_state = 15}, - [2787] = {.lex_state = 52, .external_lex_state = 15}, - [2788] = {.lex_state = 52, .external_lex_state = 15}, - [2789] = {.lex_state = 52, .external_lex_state = 15}, - [2790] = {.lex_state = 52, .external_lex_state = 15}, - [2791] = {.lex_state = 52, .external_lex_state = 15}, - [2792] = {.lex_state = 52, .external_lex_state = 14}, - [2793] = {.lex_state = 52, .external_lex_state = 13}, - [2794] = {.lex_state = 52, .external_lex_state = 13}, + [2639] = {.lex_state = 54, .external_lex_state = 15}, + [2640] = {.lex_state = 54, .external_lex_state = 12}, + [2641] = {.lex_state = 54, .external_lex_state = 13}, + [2642] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2643] = {.lex_state = 54, .external_lex_state = 13}, + [2644] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2645] = {.lex_state = 54, .external_lex_state = 15}, + [2646] = {.lex_state = 54, .external_lex_state = 15}, + [2647] = {.lex_state = 4, .external_lex_state = 15}, + [2648] = {.lex_state = 54, .external_lex_state = 14}, + [2649] = {.lex_state = 54, .external_lex_state = 13}, + [2650] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2651] = {.lex_state = 54, .external_lex_state = 12}, + [2652] = {.lex_state = 54, .external_lex_state = 15}, + [2653] = {.lex_state = 54, .external_lex_state = 13}, + [2654] = {.lex_state = 54, .external_lex_state = 13}, + [2655] = {.lex_state = 54, .external_lex_state = 15}, + [2656] = {.lex_state = 54, .external_lex_state = 13}, + [2657] = {.lex_state = 54, .external_lex_state = 14}, + [2658] = {.lex_state = 4, .external_lex_state = 15}, + [2659] = {.lex_state = 54, .external_lex_state = 15}, + [2660] = {.lex_state = 54, .external_lex_state = 12}, + [2661] = {.lex_state = 54, .external_lex_state = 15}, + [2662] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2663] = {.lex_state = 54, .external_lex_state = 14}, + [2664] = {.lex_state = 54, .external_lex_state = 15}, + [2665] = {.lex_state = 54, .external_lex_state = 14}, + [2666] = {.lex_state = 8, .external_lex_state = 15}, + [2667] = {.lex_state = 54, .external_lex_state = 13}, + [2668] = {.lex_state = 54, .external_lex_state = 15}, + [2669] = {.lex_state = 54, .external_lex_state = 13}, + [2670] = {.lex_state = 54, .external_lex_state = 14}, + [2671] = {.lex_state = 54, .external_lex_state = 15}, + [2672] = {.lex_state = 54, .external_lex_state = 13}, + [2673] = {.lex_state = 54, .external_lex_state = 15}, + [2674] = {.lex_state = 54, .external_lex_state = 12}, + [2675] = {.lex_state = 8, .external_lex_state = 15}, + [2676] = {.lex_state = 54, .external_lex_state = 15}, + [2677] = {.lex_state = 54, .external_lex_state = 15}, + [2678] = {.lex_state = 54, .external_lex_state = 12}, + [2679] = {.lex_state = 54, .external_lex_state = 12}, + [2680] = {.lex_state = 54, .external_lex_state = 13}, + [2681] = {.lex_state = 54, .external_lex_state = 12}, + [2682] = {.lex_state = 54, .external_lex_state = 12}, + [2683] = {.lex_state = 54, .external_lex_state = 15}, + [2684] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2685] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2686] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2687] = {.lex_state = 54, .external_lex_state = 15}, + [2688] = {.lex_state = 4, .external_lex_state = 15}, + [2689] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2690] = {.lex_state = 54, .external_lex_state = 13}, + [2691] = {.lex_state = 54, .external_lex_state = 13}, + [2692] = {.lex_state = 54, .external_lex_state = 13}, + [2693] = {.lex_state = 54, .external_lex_state = 14}, + [2694] = {.lex_state = 54, .external_lex_state = 14}, + [2695] = {.lex_state = 54, .external_lex_state = 12}, + [2696] = {.lex_state = 54, .external_lex_state = 13}, + [2697] = {.lex_state = 54, .external_lex_state = 12}, + [2698] = {.lex_state = 54, .external_lex_state = 12}, + [2699] = {.lex_state = 54, .external_lex_state = 12}, + [2700] = {.lex_state = 8, .external_lex_state = 15}, + [2701] = {.lex_state = 54, .external_lex_state = 12}, + [2702] = {.lex_state = 8, .external_lex_state = 15}, + [2703] = {.lex_state = 54, .external_lex_state = 13}, + [2704] = {.lex_state = 54, .external_lex_state = 15}, + [2705] = {.lex_state = 8, .external_lex_state = 15}, + [2706] = {.lex_state = 54, .external_lex_state = 12}, + [2707] = {.lex_state = 54, .external_lex_state = 12}, + [2708] = {.lex_state = 54, .external_lex_state = 12}, + [2709] = {.lex_state = 54, .external_lex_state = 15}, + [2710] = {.lex_state = 54, .external_lex_state = 15}, + [2711] = {.lex_state = 54, .external_lex_state = 12}, + [2712] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2713] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2714] = {.lex_state = 54, .external_lex_state = 14}, + [2715] = {.lex_state = 54, .external_lex_state = 14}, + [2716] = {.lex_state = 54, .external_lex_state = 12}, + [2717] = {.lex_state = 54, .external_lex_state = 12}, + [2718] = {.lex_state = 54, .external_lex_state = 12}, + [2719] = {.lex_state = 54, .external_lex_state = 15}, + [2720] = {.lex_state = 54, .external_lex_state = 13}, + [2721] = {.lex_state = 54, .external_lex_state = 12}, + [2722] = {.lex_state = 54, .external_lex_state = 12}, + [2723] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2724] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2725] = {.lex_state = 54, .external_lex_state = 13}, + [2726] = {.lex_state = 54, .external_lex_state = 13}, + [2727] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2728] = {.lex_state = 54, .external_lex_state = 15}, + [2729] = {.lex_state = 54, .external_lex_state = 15}, + [2730] = {.lex_state = 54, .external_lex_state = 13}, + [2731] = {.lex_state = 54, .external_lex_state = 15}, + [2732] = {.lex_state = 54, .external_lex_state = 14}, + [2733] = {.lex_state = 54, .external_lex_state = 12}, + [2734] = {.lex_state = 54, .external_lex_state = 15}, + [2735] = {.lex_state = 54, .external_lex_state = 13}, + [2736] = {.lex_state = 54, .external_lex_state = 14}, + [2737] = {.lex_state = 54, .external_lex_state = 12}, + [2738] = {.lex_state = 54, .external_lex_state = 15}, + [2739] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2740] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2741] = {.lex_state = 54, .external_lex_state = 14}, + [2742] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2743] = {.lex_state = 54, .external_lex_state = 12}, + [2744] = {.lex_state = 54, .external_lex_state = 14}, + [2745] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2746] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2747] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2748] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2749] = {.lex_state = 54, .external_lex_state = 15}, + [2750] = {.lex_state = 54, .external_lex_state = 12}, + [2751] = {.lex_state = 54, .external_lex_state = 14}, + [2752] = {.lex_state = 54, .external_lex_state = 13}, + [2753] = {.lex_state = 54, .external_lex_state = 15}, + [2754] = {.lex_state = 54, .external_lex_state = 14}, + [2755] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2756] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2757] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2758] = {.lex_state = 54, .external_lex_state = 13}, + [2759] = {.lex_state = 4, .external_lex_state = 15}, + [2760] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2761] = {.lex_state = 54, .external_lex_state = 15}, + [2762] = {.lex_state = 54, .external_lex_state = 13}, + [2763] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2764] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2765] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2766] = {.lex_state = 8, .external_lex_state = 15}, + [2767] = {.lex_state = 8, .external_lex_state = 15}, + [2768] = {.lex_state = 8, .external_lex_state = 15}, + [2769] = {.lex_state = 54, .external_lex_state = 14}, + [2770] = {.lex_state = 8, .external_lex_state = 15}, + [2771] = {.lex_state = 8, .external_lex_state = 15}, + [2772] = {.lex_state = 54, .external_lex_state = 12}, + [2773] = {.lex_state = 8, .external_lex_state = 15}, + [2774] = {.lex_state = 8, .external_lex_state = 15}, +}; + +static const TSSymbol ts_reserved_words[16][MAX_RESERVED_WORD_SET_SIZE] = { + [1] = { + anon_sym_import, + anon_sym_from, + anon_sym_as, + 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_elif, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_class, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_lambda, + anon_sym_yield, + anon_sym_await, + sym_true, + sym_false, + sym_none, + }, + [2] = { + anon_sym_as, + anon_sym_elif, + anon_sym_else, + anon_sym_in, + anon_sym_except, + anon_sym_finally, + anon_sym_and, + anon_sym_or, + anon_sym_is, + }, + [3] = { + anon_sym_as, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_for, + anon_sym_in, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_class, + anon_sym_and, + anon_sym_or, + anon_sym_is, + }, + [4] = { + anon_sym_import, + anon_sym_from, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_elif, + anon_sym_else, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_class, + anon_sym_lambda, + anon_sym_yield, + }, + [5] = { + anon_sym_import, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_elif, + anon_sym_else, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_class, + anon_sym_lambda, + anon_sym_yield, + }, + [6] = { + anon_sym_import, + anon_sym_from, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_elif, + anon_sym_else, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_class, + anon_sym_lambda, + anon_sym_yield, + }, + [7] = { + anon_sym_import, + anon_sym_from, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_elif, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_class, + anon_sym_lambda, + anon_sym_yield, + }, + [8] = { + anon_sym_import, + anon_sym_from, + anon_sym_as, + 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_elif, + anon_sym_else, + anon_sym_for, + anon_sym_in, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_class, + anon_sym_and, + anon_sym_or, + anon_sym_is, + }, + [9] = { + anon_sym_import, + anon_sym_from, + anon_sym_as, + 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_elif, + anon_sym_else, + anon_sym_for, + anon_sym_in, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_class, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_yield, + }, + [10] = { + anon_sym_import, + anon_sym_as, + 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_elif, + anon_sym_else, + anon_sym_for, + anon_sym_in, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_class, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_yield, + }, + [11] = { + anon_sym_as, + anon_sym_in, + anon_sym_and, + anon_sym_or, + anon_sym_is, + }, + [12] = { + anon_sym_as, + anon_sym_elif, + anon_sym_else, + anon_sym_in, + anon_sym_except, + anon_sym_and, + anon_sym_or, + anon_sym_is, + }, + [13] = { + anon_sym_import, + anon_sym_from, + anon_sym_as, + 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_elif, + anon_sym_else, + anon_sym_for, + anon_sym_in, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_class, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_lambda, + anon_sym_yield, + }, + [14] = { + anon_sym_import, + anon_sym_from, + anon_sym_as, + 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_elif, + anon_sym_else, + anon_sym_for, + anon_sym_in, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_class, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_lambda, + anon_sym_yield, + }, + [15] = { + anon_sym_import, + anon_sym_from, + anon_sym_as, + 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_elif, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_class, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_lambda, + anon_sym_yield, + anon_sym_await, + }, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { - [0] = { + [STATE(0)] = { [ts_builtin_sym_end] = ACTIONS(1), [sym_identifier] = ACTIONS(1), [anon_sym_SEMI] = ACTIONS(1), @@ -10374,73 +10684,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_escape_interpolation] = ACTIONS(1), [sym_string_end] = ACTIONS(1), }, - [1] = { - [sym_module] = STATE(2753), - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2376), - [sym_future_import_statement] = STATE(2376), - [sym_import_from_statement] = STATE(2376), - [sym_print_statement] = STATE(2376), - [sym_assert_statement] = STATE(2376), - [sym_expression_statement] = STATE(2376), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2376), - [sym_delete_statement] = STATE(2376), - [sym_raise_statement] = STATE(2376), - [sym_pass_statement] = STATE(2376), - [sym_break_statement] = STATE(2376), - [sym_continue_statement] = STATE(2376), - [sym_if_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_global_statement] = STATE(2376), - [sym_nonlocal_statement] = STATE(2376), - [sym_exec_statement] = STATE(2376), - [sym_type_alias_statement] = STATE(2376), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1791), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1791), + [STATE(1)] = { + [sym_module] = STATE(2605), + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(2314), + [sym_future_import_statement] = STATE(2314), + [sym_import_from_statement] = STATE(2314), + [sym_print_statement] = STATE(2314), + [sym_assert_statement] = STATE(2314), + [sym_expression_statement] = STATE(2314), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2314), + [sym_delete_statement] = STATE(2314), + [sym_raise_statement] = STATE(2314), + [sym_pass_statement] = STATE(2314), + [sym_break_statement] = STATE(2314), + [sym_continue_statement] = STATE(2314), + [sym_if_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_global_statement] = STATE(2314), + [sym_nonlocal_statement] = STATE(2314), + [sym_exec_statement] = STATE(2314), + [sym_type_alias_statement] = STATE(2314), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1804), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1804), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -10488,23 +10798,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(81), }, - [2] = { + [STATE(2)] = { [sym__statement] = STATE(68), [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), [sym_if_statement] = STATE(68), [sym_match_statement] = STATE(68), [sym_for_statement] = STATE(68), @@ -10512,49 +10822,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(68), [sym_with_statement] = STATE(68), [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), [sym_class_definition] = STATE(68), [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(727), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(2540), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -10602,73 +10912,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, - [3] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(706), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [STATE(3)] = { + [sym__statement] = STATE(70), + [sym__simple_statements] = STATE(70), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(70), + [sym_match_statement] = STATE(70), + [sym_for_statement] = STATE(70), + [sym_while_statement] = STATE(70), + [sym_try_statement] = STATE(70), + [sym_with_statement] = STATE(70), + [sym_function_definition] = STATE(70), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(70), + [sym_decorated_definition] = STATE(70), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(607), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(70), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -10716,73 +11026,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [4] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(755), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [STATE(4)] = { + [sym__statement] = STATE(70), + [sym__simple_statements] = STATE(70), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(70), + [sym_match_statement] = STATE(70), + [sym_for_statement] = STATE(70), + [sym_while_statement] = STATE(70), + [sym_try_statement] = STATE(70), + [sym_with_statement] = STATE(70), + [sym_function_definition] = STATE(70), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(70), + [sym_decorated_definition] = STATE(70), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(687), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(70), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -10830,73 +11140,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [5] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(809), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [STATE(5)] = { + [sym__statement] = STATE(70), + [sym__simple_statements] = STATE(70), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(70), + [sym_match_statement] = STATE(70), + [sym_for_statement] = STATE(70), + [sym_while_statement] = STATE(70), + [sym_try_statement] = STATE(70), + [sym_with_statement] = STATE(70), + [sym_function_definition] = STATE(70), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(70), + [sym_decorated_definition] = STATE(70), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(744), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(70), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -10944,73 +11254,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [6] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(738), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [STATE(6)] = { + [sym__statement] = STATE(70), + [sym__simple_statements] = STATE(70), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(70), + [sym_match_statement] = STATE(70), + [sym_for_statement] = STATE(70), + [sym_while_statement] = STATE(70), + [sym_try_statement] = STATE(70), + [sym_with_statement] = STATE(70), + [sym_function_definition] = STATE(70), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(70), + [sym_decorated_definition] = STATE(70), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(747), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(70), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11058,73 +11368,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [7] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(748), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [STATE(7)] = { + [sym__statement] = STATE(70), + [sym__simple_statements] = STATE(70), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(70), + [sym_match_statement] = STATE(70), + [sym_for_statement] = STATE(70), + [sym_while_statement] = STATE(70), + [sym_try_statement] = STATE(70), + [sym_with_statement] = STATE(70), + [sym_function_definition] = STATE(70), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(70), + [sym_decorated_definition] = STATE(70), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(766), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(70), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11172,73 +11482,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [8] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(750), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [STATE(8)] = { + [sym__statement] = STATE(70), + [sym__simple_statements] = STATE(70), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(70), + [sym_match_statement] = STATE(70), + [sym_for_statement] = STATE(70), + [sym_while_statement] = STATE(70), + [sym_try_statement] = STATE(70), + [sym_with_statement] = STATE(70), + [sym_function_definition] = STATE(70), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(70), + [sym_decorated_definition] = STATE(70), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(777), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(70), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11286,73 +11596,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [9] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(753), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [STATE(9)] = { + [sym__statement] = STATE(70), + [sym__simple_statements] = STATE(70), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(70), + [sym_match_statement] = STATE(70), + [sym_for_statement] = STATE(70), + [sym_while_statement] = STATE(70), + [sym_try_statement] = STATE(70), + [sym_with_statement] = STATE(70), + [sym_function_definition] = STATE(70), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(70), + [sym_decorated_definition] = STATE(70), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(780), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(70), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11400,73 +11710,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [10] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(758), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [STATE(10)] = { + [sym__statement] = STATE(70), + [sym__simple_statements] = STATE(70), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(70), + [sym_match_statement] = STATE(70), + [sym_for_statement] = STATE(70), + [sym_while_statement] = STATE(70), + [sym_try_statement] = STATE(70), + [sym_with_statement] = STATE(70), + [sym_function_definition] = STATE(70), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(70), + [sym_decorated_definition] = STATE(70), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(782), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(70), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11514,73 +11824,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [11] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(702), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [STATE(11)] = { + [sym__statement] = STATE(70), + [sym__simple_statements] = STATE(70), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(70), + [sym_match_statement] = STATE(70), + [sym_for_statement] = STATE(70), + [sym_while_statement] = STATE(70), + [sym_try_statement] = STATE(70), + [sym_with_statement] = STATE(70), + [sym_function_definition] = STATE(70), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(70), + [sym_decorated_definition] = STATE(70), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(791), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(70), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11628,23 +11938,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [12] = { + [STATE(12)] = { [sym__statement] = STATE(70), [sym__simple_statements] = STATE(70), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), [sym_if_statement] = STATE(70), [sym_match_statement] = STATE(70), [sym_for_statement] = STATE(70), @@ -11652,49 +11962,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(70), [sym_with_statement] = STATE(70), [sym_function_definition] = STATE(70), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), [sym_class_definition] = STATE(70), [sym_decorated_definition] = STATE(70), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(674), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(701), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [aux_sym_module_repeat1] = STATE(70), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11739,76 +12049,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [13] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(762), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [STATE(13)] = { + [sym__statement] = STATE(70), + [sym__simple_statements] = STATE(70), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(70), + [sym_match_statement] = STATE(70), + [sym_for_statement] = STATE(70), + [sym_while_statement] = STATE(70), + [sym_try_statement] = STATE(70), + [sym_with_statement] = STATE(70), + [sym_function_definition] = STATE(70), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(70), + [sym_decorated_definition] = STATE(70), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(665), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(70), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11856,73 +12166,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [14] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(765), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [STATE(14)] = { + [sym__statement] = STATE(70), + [sym__simple_statements] = STATE(70), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(70), + [sym_match_statement] = STATE(70), + [sym_for_statement] = STATE(70), + [sym_while_statement] = STATE(70), + [sym_try_statement] = STATE(70), + [sym_with_statement] = STATE(70), + [sym_function_definition] = STATE(70), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(70), + [sym_decorated_definition] = STATE(70), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(798), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(70), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11970,73 +12280,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [15] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(766), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [STATE(15)] = { + [sym__statement] = STATE(70), + [sym__simple_statements] = STATE(70), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(70), + [sym_match_statement] = STATE(70), + [sym_for_statement] = STATE(70), + [sym_while_statement] = STATE(70), + [sym_try_statement] = STATE(70), + [sym_with_statement] = STATE(70), + [sym_function_definition] = STATE(70), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(70), + [sym_decorated_definition] = STATE(70), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(803), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(70), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12084,73 +12394,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [16] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(723), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [STATE(16)] = { + [sym__statement] = STATE(70), + [sym__simple_statements] = STATE(70), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(70), + [sym_match_statement] = STATE(70), + [sym_for_statement] = STATE(70), + [sym_while_statement] = STATE(70), + [sym_try_statement] = STATE(70), + [sym_with_statement] = STATE(70), + [sym_function_definition] = STATE(70), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(70), + [sym_decorated_definition] = STATE(70), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(805), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(70), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12198,73 +12508,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [17] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(711), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [STATE(17)] = { + [sym__statement] = STATE(70), + [sym__simple_statements] = STATE(70), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(70), + [sym_match_statement] = STATE(70), + [sym_for_statement] = STATE(70), + [sym_while_statement] = STATE(70), + [sym_try_statement] = STATE(70), + [sym_with_statement] = STATE(70), + [sym_function_definition] = STATE(70), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(70), + [sym_decorated_definition] = STATE(70), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(709), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(70), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12312,73 +12622,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [18] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(773), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [STATE(18)] = { + [sym__statement] = STATE(70), + [sym__simple_statements] = STATE(70), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(70), + [sym_match_statement] = STATE(70), + [sym_for_statement] = STATE(70), + [sym_while_statement] = STATE(70), + [sym_try_statement] = STATE(70), + [sym_with_statement] = STATE(70), + [sym_function_definition] = STATE(70), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(70), + [sym_decorated_definition] = STATE(70), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(704), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(70), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12426,23 +12736,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [19] = { + [STATE(19)] = { [sym__statement] = STATE(70), [sym__simple_statements] = STATE(70), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), [sym_if_statement] = STATE(70), [sym_match_statement] = STATE(70), [sym_for_statement] = STATE(70), @@ -12450,49 +12760,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(70), [sym_with_statement] = STATE(70), [sym_function_definition] = STATE(70), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), [sym_class_definition] = STATE(70), [sym_decorated_definition] = STATE(70), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(681), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(814), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [aux_sym_module_repeat1] = STATE(70), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12537,76 +12847,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [20] = { - [sym__statement] = STATE(69), - [sym__simple_statements] = STATE(69), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(69), - [sym_match_statement] = STATE(69), - [sym_for_statement] = STATE(69), - [sym_while_statement] = STATE(69), - [sym_try_statement] = STATE(69), - [sym_with_statement] = STATE(69), - [sym_function_definition] = STATE(69), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(69), - [sym_decorated_definition] = STATE(69), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(682), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(69), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [STATE(20)] = { + [sym__statement] = STATE(70), + [sym__simple_statements] = STATE(70), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(70), + [sym_match_statement] = STATE(70), + [sym_for_statement] = STATE(70), + [sym_while_statement] = STATE(70), + [sym_try_statement] = STATE(70), + [sym_with_statement] = STATE(70), + [sym_function_definition] = STATE(70), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(70), + [sym_decorated_definition] = STATE(70), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(669), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(70), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12651,26 +12961,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [21] = { + [STATE(21)] = { [sym__statement] = STATE(66), [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), [sym_if_statement] = STATE(66), [sym_match_statement] = STATE(66), [sym_for_statement] = STATE(66), @@ -12678,49 +12988,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(66), [sym_with_statement] = STATE(66), [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), [sym_class_definition] = STATE(66), [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(777), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(670), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [aux_sym_decorated_definition_repeat1] = STATE(1777), + [sym_identifier] = 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(83), + [anon_sym_match] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_def] = ACTIONS(97), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_type] = ACTIONS(57), + [anon_sym_class] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_AT] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), + [sym_integer] = ACTIONS(77), + [sym_float] = ACTIONS(75), + [anon_sym_await] = ACTIONS(79), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_none] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(105), + [sym_string_start] = ACTIONS(81), + }, + [STATE(22)] = { + [sym__statement] = STATE(70), + [sym__simple_statements] = STATE(70), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(70), + [sym_match_statement] = STATE(70), + [sym_for_statement] = STATE(70), + [sym_while_statement] = STATE(70), + [sym_try_statement] = STATE(70), + [sym_with_statement] = STATE(70), + [sym_function_definition] = STATE(70), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(70), + [sym_decorated_definition] = STATE(70), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(816), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(70), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12768,73 +13192,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [22] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(714), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [STATE(23)] = { + [sym__statement] = STATE(70), + [sym__simple_statements] = STATE(70), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(70), + [sym_match_statement] = STATE(70), + [sym_for_statement] = STATE(70), + [sym_while_statement] = STATE(70), + [sym_try_statement] = STATE(70), + [sym_with_statement] = STATE(70), + [sym_function_definition] = STATE(70), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(70), + [sym_decorated_definition] = STATE(70), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(703), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(70), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12882,73 +13306,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [23] = { - [sym__statement] = STATE(71), - [sym__simple_statements] = STATE(71), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(71), - [sym_match_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_with_statement] = STATE(71), - [sym_function_definition] = STATE(71), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(71), - [sym_decorated_definition] = STATE(71), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(2579), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(71), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [STATE(24)] = { + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(2489), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12993,76 +13417,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(109), + [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, - [24] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(783), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [STATE(25)] = { + [sym__statement] = STATE(70), + [sym__simple_statements] = STATE(70), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(70), + [sym_match_statement] = STATE(70), + [sym_for_statement] = STATE(70), + [sym_while_statement] = STATE(70), + [sym_try_statement] = STATE(70), + [sym_with_statement] = STATE(70), + [sym_function_definition] = STATE(70), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(70), + [sym_decorated_definition] = STATE(70), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(819), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(70), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13110,73 +13534,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [25] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(789), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [STATE(26)] = { + [sym__statement] = STATE(70), + [sym__simple_statements] = STATE(70), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(70), + [sym_match_statement] = STATE(70), + [sym_for_statement] = STATE(70), + [sym_while_statement] = STATE(70), + [sym_try_statement] = STATE(70), + [sym_with_statement] = STATE(70), + [sym_function_definition] = STATE(70), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(70), + [sym_decorated_definition] = STATE(70), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(832), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(70), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13224,73 +13648,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [26] = { - [sym__statement] = STATE(71), - [sym__simple_statements] = STATE(71), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(71), - [sym_match_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_with_statement] = STATE(71), - [sym_function_definition] = STATE(71), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(71), - [sym_decorated_definition] = STATE(71), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(2511), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(71), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [STATE(27)] = { + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(2522), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13335,76 +13759,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(109), + [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, - [27] = { - [sym__statement] = STATE(71), - [sym__simple_statements] = STATE(71), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(71), - [sym_match_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_with_statement] = STATE(71), - [sym_function_definition] = STATE(71), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(71), - [sym_decorated_definition] = STATE(71), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(2517), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(71), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [STATE(28)] = { + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(2527), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13449,76 +13873,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(109), + [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, - [28] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(792), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [STATE(29)] = { + [sym__statement] = STATE(70), + [sym__simple_statements] = STATE(70), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(70), + [sym_match_statement] = STATE(70), + [sym_for_statement] = STATE(70), + [sym_while_statement] = STATE(70), + [sym_try_statement] = STATE(70), + [sym_with_statement] = STATE(70), + [sym_function_definition] = STATE(70), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(70), + [sym_decorated_definition] = STATE(70), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(802), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(70), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13566,23 +13990,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [29] = { + [STATE(30)] = { [sym__statement] = STATE(70), [sym__simple_statements] = STATE(70), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), [sym_if_statement] = STATE(70), [sym_match_statement] = STATE(70), [sym_for_statement] = STATE(70), @@ -13590,49 +14014,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(70), [sym_with_statement] = STATE(70), [sym_function_definition] = STATE(70), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), [sym_class_definition] = STATE(70), [sym_decorated_definition] = STATE(70), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(687), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(668), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [aux_sym_module_repeat1] = STATE(70), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13677,26 +14101,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [30] = { + [STATE(31)] = { [sym__statement] = STATE(66), [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), [sym_if_statement] = STATE(66), [sym_match_statement] = STATE(66), [sym_for_statement] = STATE(66), @@ -13704,49 +14128,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(66), [sym_with_statement] = STATE(66), [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), [sym_class_definition] = STATE(66), [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(611), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(652), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13791,76 +14215,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, - [31] = { - [sym__statement] = STATE(71), - [sym__simple_statements] = STATE(71), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(71), - [sym_match_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_with_statement] = STATE(71), - [sym_function_definition] = STATE(71), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(71), - [sym_decorated_definition] = STATE(71), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(2523), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(71), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [STATE(32)] = { + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(2535), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13905,76 +14329,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(109), + [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, - [32] = { - [sym__statement] = STATE(71), - [sym__simple_statements] = STATE(71), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(71), - [sym_match_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_with_statement] = STATE(71), - [sym_function_definition] = STATE(71), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(71), - [sym_decorated_definition] = STATE(71), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(2524), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(71), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [STATE(33)] = { + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(2537), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14019,76 +14443,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(109), + [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, - [33] = { - [sym__statement] = STATE(71), - [sym__simple_statements] = STATE(71), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(71), - [sym_match_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_with_statement] = STATE(71), - [sym_function_definition] = STATE(71), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(71), - [sym_decorated_definition] = STATE(71), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(2535), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(71), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [STATE(34)] = { + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(1784), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14133,76 +14557,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(109), + [sym__dedent] = ACTIONS(107), [sym_string_start] = ACTIONS(81), }, - [34] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(620), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [STATE(35)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(694), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14247,76 +14671,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(109), [sym_string_start] = ACTIONS(81), }, - [35] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(717), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [STATE(36)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(765), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14361,76 +14785,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(109), [sym_string_start] = ACTIONS(81), }, - [36] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(820), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [STATE(37)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(769), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14475,76 +14899,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(109), [sym_string_start] = ACTIONS(81), }, - [37] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(822), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [STATE(38)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(787), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14589,76 +15013,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(109), [sym_string_start] = ACTIONS(81), }, - [38] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(829), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [STATE(39)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(808), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14703,76 +15127,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(109), [sym_string_start] = ACTIONS(81), }, - [39] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(835), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [STATE(40)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(812), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14817,76 +15241,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(109), [sym_string_start] = ACTIONS(81), }, - [40] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(837), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [STATE(41)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(820), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14931,76 +15355,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(109), [sym_string_start] = ACTIONS(81), }, - [41] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(839), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [STATE(42)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(824), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15045,76 +15469,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(109), [sym_string_start] = ACTIONS(81), }, - [42] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(843), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [STATE(43)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(685), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15159,76 +15583,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(109), [sym_string_start] = ACTIONS(81), }, - [43] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(721), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [STATE(44)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(674), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15273,76 +15697,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(109), [sym_string_start] = ACTIONS(81), }, - [44] = { - [sym__statement] = STATE(72), - [sym__simple_statements] = STATE(72), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(72), - [sym_match_statement] = STATE(72), - [sym_for_statement] = STATE(72), - [sym_while_statement] = STATE(72), - [sym_try_statement] = STATE(72), - [sym_with_statement] = STATE(72), - [sym_function_definition] = STATE(72), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(72), - [sym_decorated_definition] = STATE(72), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(651), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(72), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [STATE(45)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(831), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15387,76 +15811,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(111), + [sym__dedent] = ACTIONS(109), [sym_string_start] = ACTIONS(81), }, - [45] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(790), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [STATE(46)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(796), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15501,76 +15925,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(109), [sym_string_start] = ACTIONS(81), }, - [46] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(787), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [STATE(47)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(712), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15615,76 +16039,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(109), [sym_string_start] = ACTIONS(81), }, - [47] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(788), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [STATE(48)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(706), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15729,76 +16153,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(109), [sym_string_start] = ACTIONS(81), }, - [48] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(1776), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [STATE(49)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(688), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15843,76 +16267,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(113), + [sym__dedent] = ACTIONS(109), [sym_string_start] = ACTIONS(81), }, - [49] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(708), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [STATE(50)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(716), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15957,76 +16381,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(109), [sym_string_start] = ACTIONS(81), }, - [50] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(761), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [STATE(51)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(654), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16071,76 +16495,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(109), [sym_string_start] = ACTIONS(81), }, - [51] = { - [sym__statement] = STATE(72), - [sym__simple_statements] = STATE(72), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(72), - [sym_match_statement] = STATE(72), - [sym_for_statement] = STATE(72), - [sym_while_statement] = STATE(72), - [sym_try_statement] = STATE(72), - [sym_with_statement] = STATE(72), - [sym_function_definition] = STATE(72), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(72), - [sym_decorated_definition] = STATE(72), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(665), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(72), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [STATE(52)] = { + [sym__statement] = STATE(69), + [sym__simple_statements] = STATE(69), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(69), + [sym_match_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_with_statement] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(69), + [sym_decorated_definition] = STATE(69), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(662), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(69), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16188,73 +16612,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(111), [sym_string_start] = ACTIONS(81), }, - [52] = { - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(62), - [sym_match_statement] = STATE(62), - [sym_for_statement] = STATE(62), - [sym_while_statement] = STATE(62), - [sym_try_statement] = STATE(62), - [sym_with_statement] = STATE(62), - [sym_function_definition] = STATE(62), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(666), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [STATE(53)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(718), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16299,76 +16723,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(115), + [sym__dedent] = ACTIONS(109), [sym_string_start] = ACTIONS(81), }, - [53] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(842), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [STATE(54)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(689), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16413,76 +16837,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(109), [sym_string_start] = ACTIONS(81), }, - [54] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(707), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [STATE(55)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(721), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16527,76 +16951,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(109), [sym_string_start] = ACTIONS(81), }, - [55] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(739), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [STATE(56)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(724), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16641,76 +17065,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(109), [sym_string_start] = ACTIONS(81), }, - [56] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(752), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [STATE(57)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(725), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16755,76 +17179,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(109), [sym_string_start] = ACTIONS(81), }, - [57] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(754), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [STATE(58)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(676), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16869,76 +17293,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(109), [sym_string_start] = ACTIONS(81), }, - [58] = { - [sym__statement] = STATE(72), - [sym__simple_statements] = STATE(72), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(72), - [sym_match_statement] = STATE(72), - [sym_for_statement] = STATE(72), - [sym_while_statement] = STATE(72), - [sym_try_statement] = STATE(72), - [sym_with_statement] = STATE(72), - [sym_function_definition] = STATE(72), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(72), - [sym_decorated_definition] = STATE(72), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(672), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(72), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [STATE(59)] = { + [sym__statement] = STATE(69), + [sym__simple_statements] = STATE(69), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(69), + [sym_match_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_with_statement] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(69), + [sym_decorated_definition] = STATE(69), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(681), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(69), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16986,73 +17410,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(111), [sym_string_start] = ACTIONS(81), }, - [59] = { - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(62), - [sym_match_statement] = STATE(62), - [sym_for_statement] = STATE(62), - [sym_while_statement] = STATE(62), - [sym_try_statement] = STATE(62), - [sym_with_statement] = STATE(62), - [sym_function_definition] = STATE(62), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(677), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [STATE(60)] = { + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(1794), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17097,76 +17521,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(115), + [sym__dedent] = ACTIONS(107), [sym_string_start] = ACTIONS(81), }, - [60] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(1822), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [STATE(61)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1777), + [sym_block] = STATE(611), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17211,76 +17635,188 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(113), + [sym__dedent] = ACTIONS(109), [sym_string_start] = ACTIONS(81), }, - [61] = { - [sym__statement] = STATE(69), - [sym__simple_statements] = STATE(69), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(69), - [sym_match_statement] = STATE(69), - [sym_for_statement] = STATE(69), - [sym_while_statement] = STATE(69), - [sym_try_statement] = STATE(69), - [sym_with_statement] = STATE(69), - [sym_function_definition] = STATE(69), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(69), - [sym_decorated_definition] = STATE(69), - [sym_decorator] = STATE(1796), - [sym_block] = STATE(688), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(69), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [STATE(62)] = { + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(1777), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(1777), + [sym_identifier] = ACTIONS(113), + [anon_sym_import] = ACTIONS(116), + [anon_sym_from] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_print] = ACTIONS(128), + [anon_sym_assert] = ACTIONS(131), + [anon_sym_return] = ACTIONS(134), + [anon_sym_del] = ACTIONS(137), + [anon_sym_raise] = ACTIONS(140), + [anon_sym_pass] = ACTIONS(143), + [anon_sym_break] = ACTIONS(146), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_if] = ACTIONS(152), + [anon_sym_match] = ACTIONS(155), + [anon_sym_async] = ACTIONS(158), + [anon_sym_for] = ACTIONS(161), + [anon_sym_while] = ACTIONS(164), + [anon_sym_try] = ACTIONS(167), + [anon_sym_with] = ACTIONS(170), + [anon_sym_def] = ACTIONS(173), + [anon_sym_global] = ACTIONS(176), + [anon_sym_nonlocal] = ACTIONS(179), + [anon_sym_exec] = ACTIONS(182), + [anon_sym_type] = ACTIONS(185), + [anon_sym_class] = ACTIONS(188), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_AT] = ACTIONS(194), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_LBRACE] = ACTIONS(200), + [anon_sym_PLUS] = ACTIONS(197), + [anon_sym_not] = ACTIONS(203), + [anon_sym_TILDE] = ACTIONS(197), + [anon_sym_lambda] = ACTIONS(206), + [anon_sym_yield] = ACTIONS(209), + [sym_ellipsis] = ACTIONS(212), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(212), + [anon_sym_await] = ACTIONS(218), + [sym_true] = ACTIONS(215), + [sym_false] = ACTIONS(215), + [sym_none] = ACTIONS(215), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(221), + [sym_string_start] = ACTIONS(223), + }, + [STATE(63)] = { + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(1777), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17325,75 +17861,189 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), + [sym__dedent] = ACTIONS(226), [sym_string_start] = ACTIONS(81), }, - [62] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1796), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [STATE(64)] = { + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2314), + [sym_future_import_statement] = STATE(2314), + [sym_import_from_statement] = STATE(2314), + [sym_print_statement] = STATE(2314), + [sym_assert_statement] = STATE(2314), + [sym_expression_statement] = STATE(2314), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2314), + [sym_delete_statement] = STATE(2314), + [sym_raise_statement] = STATE(2314), + [sym_pass_statement] = STATE(2314), + [sym_break_statement] = STATE(2314), + [sym_continue_statement] = STATE(2314), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2314), + [sym_nonlocal_statement] = STATE(2314), + [sym_exec_statement] = STATE(2314), + [sym_type_alias_statement] = STATE(2314), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1804), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1804), + [ts_builtin_sym_end] = ACTIONS(221), + [sym_identifier] = ACTIONS(113), + [anon_sym_import] = ACTIONS(116), + [anon_sym_from] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_print] = ACTIONS(128), + [anon_sym_assert] = ACTIONS(131), + [anon_sym_return] = ACTIONS(134), + [anon_sym_del] = ACTIONS(137), + [anon_sym_raise] = ACTIONS(140), + [anon_sym_pass] = ACTIONS(143), + [anon_sym_break] = ACTIONS(146), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_if] = ACTIONS(228), + [anon_sym_match] = ACTIONS(231), + [anon_sym_async] = ACTIONS(234), + [anon_sym_for] = ACTIONS(237), + [anon_sym_while] = ACTIONS(240), + [anon_sym_try] = ACTIONS(243), + [anon_sym_with] = ACTIONS(246), + [anon_sym_def] = ACTIONS(249), + [anon_sym_global] = ACTIONS(176), + [anon_sym_nonlocal] = ACTIONS(179), + [anon_sym_exec] = ACTIONS(182), + [anon_sym_type] = ACTIONS(185), + [anon_sym_class] = ACTIONS(252), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_AT] = ACTIONS(194), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_LBRACE] = ACTIONS(200), + [anon_sym_PLUS] = ACTIONS(197), + [anon_sym_not] = ACTIONS(203), + [anon_sym_TILDE] = ACTIONS(197), + [anon_sym_lambda] = ACTIONS(206), + [anon_sym_yield] = ACTIONS(209), + [sym_ellipsis] = ACTIONS(212), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(212), + [anon_sym_await] = ACTIONS(218), + [sym_true] = ACTIONS(215), + [sym_false] = ACTIONS(215), + [sym_none] = ACTIONS(215), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(223), + }, + [STATE(65)] = { + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2314), + [sym_future_import_statement] = STATE(2314), + [sym_import_from_statement] = STATE(2314), + [sym_print_statement] = STATE(2314), + [sym_assert_statement] = STATE(2314), + [sym_expression_statement] = STATE(2314), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2314), + [sym_delete_statement] = STATE(2314), + [sym_raise_statement] = STATE(2314), + [sym_pass_statement] = STATE(2314), + [sym_break_statement] = STATE(2314), + [sym_continue_statement] = STATE(2314), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2314), + [sym_nonlocal_statement] = STATE(2314), + [sym_exec_statement] = STATE(2314), + [sym_type_alias_statement] = STATE(2314), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1804), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1804), + [ts_builtin_sym_end] = ACTIONS(255), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17407,19 +18057,19 @@ 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(83), - [anon_sym_match] = ACTIONS(85), - [anon_sym_async] = ACTIONS(87), - [anon_sym_for] = ACTIONS(89), - [anon_sym_while] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [anon_sym_with] = ACTIONS(95), - [anon_sym_def] = ACTIONS(97), + [anon_sym_if] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_async] = ACTIONS(39), + [anon_sym_for] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_with] = ACTIONS(47), + [anon_sym_def] = ACTIONS(49), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(59), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -17438,75 +18088,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(117), [sym_string_start] = ACTIONS(81), }, - [63] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1796), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [STATE(66)] = { + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(1777), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17551,76 +18200,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(119), + [sym__dedent] = ACTIONS(257), [sym_string_start] = ACTIONS(81), }, - [64] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2376), - [sym_future_import_statement] = STATE(2376), - [sym_import_from_statement] = STATE(2376), - [sym_print_statement] = STATE(2376), - [sym_assert_statement] = STATE(2376), - [sym_expression_statement] = STATE(2376), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2376), - [sym_delete_statement] = STATE(2376), - [sym_raise_statement] = STATE(2376), - [sym_pass_statement] = STATE(2376), - [sym_break_statement] = STATE(2376), - [sym_continue_statement] = STATE(2376), - [sym_if_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_global_statement] = STATE(2376), - [sym_nonlocal_statement] = STATE(2376), - [sym_exec_statement] = STATE(2376), - [sym_type_alias_statement] = STATE(2376), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1791), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1791), - [ts_builtin_sym_end] = ACTIONS(121), + [STATE(67)] = { + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(1777), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17634,19 +18282,19 @@ 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_match] = ACTIONS(37), - [anon_sym_async] = ACTIONS(39), - [anon_sym_for] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(47), - [anon_sym_def] = ACTIONS(49), + [anon_sym_if] = ACTIONS(83), + [anon_sym_match] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_def] = ACTIONS(97), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), + [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -17665,187 +18313,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(259), [sym_string_start] = ACTIONS(81), }, - [65] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1796), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1796), - [sym_identifier] = ACTIONS(123), - [anon_sym_import] = ACTIONS(126), - [anon_sym_from] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(132), - [anon_sym_STAR] = ACTIONS(135), - [anon_sym_print] = ACTIONS(138), - [anon_sym_assert] = ACTIONS(141), - [anon_sym_return] = ACTIONS(144), - [anon_sym_del] = ACTIONS(147), - [anon_sym_raise] = ACTIONS(150), - [anon_sym_pass] = ACTIONS(153), - [anon_sym_break] = ACTIONS(156), - [anon_sym_continue] = ACTIONS(159), - [anon_sym_if] = ACTIONS(162), - [anon_sym_match] = ACTIONS(165), - [anon_sym_async] = ACTIONS(168), - [anon_sym_for] = ACTIONS(171), - [anon_sym_while] = ACTIONS(174), - [anon_sym_try] = ACTIONS(177), - [anon_sym_with] = ACTIONS(180), - [anon_sym_def] = ACTIONS(183), - [anon_sym_global] = ACTIONS(186), - [anon_sym_nonlocal] = ACTIONS(189), - [anon_sym_exec] = ACTIONS(192), - [anon_sym_type] = ACTIONS(195), - [anon_sym_class] = ACTIONS(198), - [anon_sym_LBRACK] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(204), - [anon_sym_DASH] = ACTIONS(207), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_PLUS] = ACTIONS(207), - [anon_sym_not] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(207), - [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), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(231), - [sym_string_start] = ACTIONS(233), - }, - [66] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1796), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [STATE(68)] = { + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(1777), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17890,188 +18426,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(236), + [sym__dedent] = ACTIONS(261), [sym_string_start] = ACTIONS(81), }, - [67] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2376), - [sym_future_import_statement] = STATE(2376), - [sym_import_from_statement] = STATE(2376), - [sym_print_statement] = STATE(2376), - [sym_assert_statement] = STATE(2376), - [sym_expression_statement] = STATE(2376), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2376), - [sym_delete_statement] = STATE(2376), - [sym_raise_statement] = STATE(2376), - [sym_pass_statement] = STATE(2376), - [sym_break_statement] = STATE(2376), - [sym_continue_statement] = STATE(2376), - [sym_if_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_global_statement] = STATE(2376), - [sym_nonlocal_statement] = STATE(2376), - [sym_exec_statement] = STATE(2376), - [sym_type_alias_statement] = STATE(2376), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1791), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1791), - [ts_builtin_sym_end] = ACTIONS(231), - [sym_identifier] = ACTIONS(123), - [anon_sym_import] = ACTIONS(126), - [anon_sym_from] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(132), - [anon_sym_STAR] = ACTIONS(135), - [anon_sym_print] = ACTIONS(138), - [anon_sym_assert] = ACTIONS(141), - [anon_sym_return] = ACTIONS(144), - [anon_sym_del] = ACTIONS(147), - [anon_sym_raise] = ACTIONS(150), - [anon_sym_pass] = ACTIONS(153), - [anon_sym_break] = ACTIONS(156), - [anon_sym_continue] = ACTIONS(159), - [anon_sym_if] = ACTIONS(238), - [anon_sym_match] = ACTIONS(241), - [anon_sym_async] = ACTIONS(244), - [anon_sym_for] = ACTIONS(247), - [anon_sym_while] = ACTIONS(250), - [anon_sym_try] = ACTIONS(253), - [anon_sym_with] = ACTIONS(256), - [anon_sym_def] = ACTIONS(259), - [anon_sym_global] = ACTIONS(186), - [anon_sym_nonlocal] = ACTIONS(189), - [anon_sym_exec] = ACTIONS(192), - [anon_sym_type] = ACTIONS(195), - [anon_sym_class] = ACTIONS(262), - [anon_sym_LBRACK] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(204), - [anon_sym_DASH] = ACTIONS(207), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_PLUS] = ACTIONS(207), - [anon_sym_not] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(207), - [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), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(233), - }, - [68] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1796), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [STATE(69)] = { + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(1777), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18116,75 +18539,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(265), + [sym__dedent] = ACTIONS(263), [sym_string_start] = ACTIONS(81), }, - [69] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1796), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1796), + [STATE(70)] = { + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_if_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(1777), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18229,81 +18652,282 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(267), + [sym__dedent] = ACTIONS(265), [sym_string_start] = ACTIONS(81), }, - [70] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1796), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1796), - [sym_identifier] = ACTIONS(9), + [STATE(71)] = { + [sym_named_expression] = STATE(1720), + [sym__named_expression_lhs] = STATE(2759), + [sym_list_splat_pattern] = STATE(1333), + [sym_as_pattern] = STATE(1720), + [sym_expression] = STATE(1743), + [sym_primary_expression] = STATE(953), + [sym_not_operator] = STATE(1720), + [sym_boolean_operator] = STATE(1720), + [sym_binary_operator] = STATE(1276), + [sym_unary_operator] = STATE(1276), + [sym_comparison_operator] = STATE(1720), + [sym_lambda] = STATE(1720), + [sym_attribute] = STATE(1276), + [sym_subscript] = STATE(1276), + [sym_call] = STATE(1276), + [sym_type] = STATE(2122), + [sym_splat_type] = STATE(2015), + [sym_generic_type] = STATE(2015), + [sym_union_type] = STATE(2015), + [sym_constrained_type] = STATE(2015), + [sym_member_type] = STATE(2015), + [sym_list] = STATE(1276), + [sym_set] = STATE(1276), + [sym_tuple] = STATE(1276), + [sym_dictionary] = STATE(1276), + [sym_list_comprehension] = STATE(1276), + [sym_dictionary_comprehension] = STATE(1276), + [sym_set_comprehension] = STATE(1276), + [sym_generator_expression] = STATE(1276), + [sym_parenthesized_expression] = STATE(1276), + [sym_conditional_expression] = STATE(1720), + [sym_concatenated_string] = STATE(1276), + [sym_string] = STATE(975), + [sym_await] = STATE(1276), + [sym_identifier] = ACTIONS(267), + [anon_sym_SEMI] = ACTIONS(269), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(273), + [anon_sym_COMMA] = ACTIONS(276), + [anon_sym_as] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(279), + [anon_sym_print] = ACTIONS(282), + [anon_sym_GT_GT] = ACTIONS(271), + [anon_sym_COLON_EQ] = ACTIONS(284), + [anon_sym_if] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(286), + [anon_sym_match] = ACTIONS(289), + [anon_sym_async] = ACTIONS(282), + [anon_sym_in] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(291), + [anon_sym_exec] = ACTIONS(282), + [anon_sym_type] = ACTIONS(289), + [anon_sym_EQ] = ACTIONS(294), + [anon_sym_LBRACK] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_LBRACE] = ACTIONS(302), + [anon_sym_PLUS] = ACTIONS(299), + [anon_sym_not] = ACTIONS(304), + [anon_sym_and] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(271), + [anon_sym_SLASH_SLASH] = ACTIONS(271), + [anon_sym_AMP] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym_LT_LT] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(307), + [anon_sym_is] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(269), + [anon_sym_lambda] = ACTIONS(309), + [anon_sym_PLUS_EQ] = ACTIONS(311), + [anon_sym_DASH_EQ] = ACTIONS(311), + [anon_sym_STAR_EQ] = ACTIONS(311), + [anon_sym_SLASH_EQ] = ACTIONS(311), + [anon_sym_AT_EQ] = ACTIONS(311), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(311), + [anon_sym_PERCENT_EQ] = ACTIONS(311), + [anon_sym_STAR_STAR_EQ] = ACTIONS(311), + [anon_sym_GT_GT_EQ] = ACTIONS(311), + [anon_sym_LT_LT_EQ] = ACTIONS(311), + [anon_sym_AMP_EQ] = ACTIONS(311), + [anon_sym_CARET_EQ] = ACTIONS(311), + [anon_sym_PIPE_EQ] = ACTIONS(311), + [sym_ellipsis] = ACTIONS(313), + [sym_integer] = ACTIONS(315), + [sym_float] = ACTIONS(313), + [anon_sym_await] = ACTIONS(317), + [sym_true] = ACTIONS(315), + [sym_false] = ACTIONS(315), + [sym_none] = ACTIONS(315), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(269), + [sym_string_start] = ACTIONS(319), + }, + [STATE(72)] = { + [sym_named_expression] = STATE(1720), + [sym__named_expression_lhs] = STATE(2759), + [sym_list_splat_pattern] = STATE(1333), + [sym_as_pattern] = STATE(1720), + [sym_expression] = STATE(1743), + [sym_primary_expression] = STATE(953), + [sym_not_operator] = STATE(1720), + [sym_boolean_operator] = STATE(1720), + [sym_binary_operator] = STATE(1276), + [sym_unary_operator] = STATE(1276), + [sym_comparison_operator] = STATE(1720), + [sym_lambda] = STATE(1720), + [sym_attribute] = STATE(1276), + [sym_subscript] = STATE(1276), + [sym_call] = STATE(1276), + [sym_type] = STATE(2122), + [sym_splat_type] = STATE(2015), + [sym_generic_type] = STATE(2015), + [sym_union_type] = STATE(2015), + [sym_constrained_type] = STATE(2015), + [sym_member_type] = STATE(2015), + [sym_list] = STATE(1276), + [sym_set] = STATE(1276), + [sym_tuple] = STATE(1276), + [sym_dictionary] = STATE(1276), + [sym_list_comprehension] = STATE(1276), + [sym_dictionary_comprehension] = STATE(1276), + [sym_set_comprehension] = STATE(1276), + [sym_generator_expression] = STATE(1276), + [sym_parenthesized_expression] = STATE(1276), + [sym_conditional_expression] = STATE(1720), + [sym_concatenated_string] = STATE(1276), + [sym_string] = STATE(975), + [sym_await] = STATE(1276), + [sym_identifier] = ACTIONS(267), + [anon_sym_SEMI] = ACTIONS(269), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(273), + [anon_sym_COMMA] = ACTIONS(276), + [anon_sym_as] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(279), + [anon_sym_print] = ACTIONS(282), + [anon_sym_GT_GT] = ACTIONS(271), + [anon_sym_COLON_EQ] = ACTIONS(284), + [anon_sym_if] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(294), + [anon_sym_match] = ACTIONS(289), + [anon_sym_async] = ACTIONS(282), + [anon_sym_in] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(291), + [anon_sym_exec] = ACTIONS(282), + [anon_sym_type] = ACTIONS(289), + [anon_sym_EQ] = ACTIONS(294), + [anon_sym_LBRACK] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_LBRACE] = ACTIONS(302), + [anon_sym_PLUS] = ACTIONS(299), + [anon_sym_not] = ACTIONS(304), + [anon_sym_and] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(271), + [anon_sym_SLASH_SLASH] = ACTIONS(271), + [anon_sym_AMP] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym_LT_LT] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(307), + [anon_sym_is] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(269), + [anon_sym_lambda] = ACTIONS(309), + [anon_sym_PLUS_EQ] = ACTIONS(311), + [anon_sym_DASH_EQ] = ACTIONS(311), + [anon_sym_STAR_EQ] = ACTIONS(311), + [anon_sym_SLASH_EQ] = ACTIONS(311), + [anon_sym_AT_EQ] = ACTIONS(311), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(311), + [anon_sym_PERCENT_EQ] = ACTIONS(311), + [anon_sym_STAR_STAR_EQ] = ACTIONS(311), + [anon_sym_GT_GT_EQ] = ACTIONS(311), + [anon_sym_LT_LT_EQ] = ACTIONS(311), + [anon_sym_AMP_EQ] = ACTIONS(311), + [anon_sym_CARET_EQ] = ACTIONS(311), + [anon_sym_PIPE_EQ] = ACTIONS(311), + [sym_ellipsis] = ACTIONS(313), + [sym_integer] = ACTIONS(315), + [sym_float] = ACTIONS(313), + [anon_sym_await] = ACTIONS(317), + [sym_true] = ACTIONS(315), + [sym_false] = ACTIONS(315), + [sym_none] = ACTIONS(315), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(269), + [sym_string_start] = ACTIONS(319), + }, + [STATE(73)] = { + [sym__simple_statements] = STATE(730), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(624), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1696), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(645), + [sym_subscript] = STATE(645), + [sym_call] = STATE(1063), + [sym_type] = STATE(1994), + [sym_splat_type] = STATE(2015), + [sym_generic_type] = STATE(2015), + [sym_union_type] = STATE(2015), + [sym_constrained_type] = STATE(2015), + [sym_member_type] = STATE(2015), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [sym_identifier] = ACTIONS(321), [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_LPAREN] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(325), + [anon_sym_print] = ACTIONS(327), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -18311,21 +18935,14 @@ 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(83), - [anon_sym_match] = ACTIONS(85), - [anon_sym_async] = ACTIONS(87), - [anon_sym_for] = ACTIONS(89), - [anon_sym_while] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [anon_sym_with] = ACTIONS(95), - [anon_sym_def] = ACTIONS(97), + [anon_sym_match] = ACTIONS(329), + [anon_sym_async] = ACTIONS(331), + [anon_sym_STAR_STAR] = ACTIONS(333), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(99), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_AT] = ACTIONS(63), + [anon_sym_exec] = ACTIONS(335), + [anon_sym_type] = ACTIONS(337), + [anon_sym_LBRACK] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -18336,87 +18953,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(79), + [anon_sym_await] = ACTIONS(341), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(269), + [sym__newline] = ACTIONS(343), + [sym__indent] = ACTIONS(345), [sym_string_start] = ACTIONS(81), }, - [71] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1796), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1796), - [sym_identifier] = ACTIONS(9), + [STATE(74)] = { + [sym__simple_statements] = STATE(722), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(624), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1696), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(645), + [sym_subscript] = STATE(645), + [sym_call] = STATE(1063), + [sym_type] = STATE(1994), + [sym_splat_type] = STATE(2015), + [sym_generic_type] = STATE(2015), + [sym_union_type] = STATE(2015), + [sym_constrained_type] = STATE(2015), + [sym_member_type] = STATE(2015), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [sym_identifier] = ACTIONS(321), [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_LPAREN] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(325), + [anon_sym_print] = ACTIONS(327), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -18424,21 +19035,14 @@ 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(83), - [anon_sym_match] = ACTIONS(85), - [anon_sym_async] = ACTIONS(87), - [anon_sym_for] = ACTIONS(89), - [anon_sym_while] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [anon_sym_with] = ACTIONS(95), - [anon_sym_def] = ACTIONS(97), + [anon_sym_match] = ACTIONS(329), + [anon_sym_async] = ACTIONS(331), + [anon_sym_STAR_STAR] = ACTIONS(333), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(99), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_AT] = ACTIONS(63), + [anon_sym_exec] = ACTIONS(335), + [anon_sym_type] = ACTIONS(337), + [anon_sym_LBRACK] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -18449,87 +19053,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(79), + [anon_sym_await] = ACTIONS(341), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(271), + [sym__newline] = ACTIONS(347), + [sym__indent] = ACTIONS(349), [sym_string_start] = ACTIONS(81), }, - [72] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1796), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1796), - [sym_identifier] = ACTIONS(9), + [STATE(75)] = { + [sym__simple_statements] = STATE(817), + [sym_import_statement] = STATE(2314), + [sym_future_import_statement] = STATE(2314), + [sym_import_from_statement] = STATE(2314), + [sym_print_statement] = STATE(2314), + [sym_assert_statement] = STATE(2314), + [sym_expression_statement] = STATE(2314), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2314), + [sym_delete_statement] = STATE(2314), + [sym_raise_statement] = STATE(2314), + [sym_pass_statement] = STATE(2314), + [sym_break_statement] = STATE(2314), + [sym_continue_statement] = STATE(2314), + [sym_global_statement] = STATE(2314), + [sym_nonlocal_statement] = STATE(2314), + [sym_exec_statement] = STATE(2314), + [sym_type_alias_statement] = STATE(2314), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(624), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1696), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(645), + [sym_subscript] = STATE(645), + [sym_call] = STATE(1063), + [sym_type] = STATE(1994), + [sym_splat_type] = STATE(2015), + [sym_generic_type] = STATE(2015), + [sym_union_type] = STATE(2015), + [sym_constrained_type] = STATE(2015), + [sym_member_type] = STATE(2015), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [sym_identifier] = ACTIONS(321), [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_LPAREN] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(325), + [anon_sym_print] = ACTIONS(327), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -18537,21 +19135,14 @@ 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(83), - [anon_sym_match] = ACTIONS(85), - [anon_sym_async] = ACTIONS(87), - [anon_sym_for] = ACTIONS(89), - [anon_sym_while] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [anon_sym_with] = ACTIONS(95), - [anon_sym_def] = ACTIONS(97), + [anon_sym_match] = ACTIONS(329), + [anon_sym_async] = ACTIONS(331), + [anon_sym_STAR_STAR] = ACTIONS(333), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(99), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_AT] = ACTIONS(63), + [anon_sym_exec] = ACTIONS(335), + [anon_sym_type] = ACTIONS(337), + [anon_sym_LBRACK] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -18562,288 +19153,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(79), + [anon_sym_await] = ACTIONS(341), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(273), + [sym__newline] = ACTIONS(351), + [sym__indent] = ACTIONS(353), [sym_string_start] = ACTIONS(81), }, - [73] = { - [sym_named_expression] = STATE(1717), - [sym__named_expression_lhs] = STATE(2775), - [sym_list_splat_pattern] = STATE(1342), - [sym_as_pattern] = STATE(1717), - [sym_expression] = STATE(1761), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1717), - [sym_boolean_operator] = STATE(1717), - [sym_binary_operator] = STATE(1268), - [sym_unary_operator] = STATE(1268), - [sym_comparison_operator] = STATE(1717), - [sym_lambda] = STATE(1717), - [sym_attribute] = STATE(1268), - [sym_subscript] = STATE(1268), - [sym_call] = STATE(1268), - [sym_type] = STATE(2130), - [sym_splat_type] = STATE(2016), - [sym_generic_type] = STATE(2016), - [sym_union_type] = STATE(2016), - [sym_constrained_type] = STATE(2016), - [sym_member_type] = STATE(2016), - [sym_list] = STATE(1268), - [sym_set] = STATE(1268), - [sym_tuple] = STATE(1268), - [sym_dictionary] = STATE(1268), - [sym_list_comprehension] = STATE(1268), - [sym_dictionary_comprehension] = STATE(1268), - [sym_set_comprehension] = STATE(1268), - [sym_generator_expression] = STATE(1268), - [sym_parenthesized_expression] = STATE(1268), - [sym_conditional_expression] = STATE(1717), - [sym_concatenated_string] = STATE(1268), - [sym_string] = STATE(1010), - [sym_await] = STATE(1268), - [sym_identifier] = ACTIONS(275), - [anon_sym_SEMI] = ACTIONS(277), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(281), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(287), - [anon_sym_print] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(294), - [anon_sym_match] = ACTIONS(297), - [anon_sym_async] = ACTIONS(290), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_exec] = ACTIONS(290), - [anon_sym_type] = ACTIONS(297), - [anon_sym_EQ] = ACTIONS(302), - [anon_sym_LBRACK] = ACTIONS(304), - [anon_sym_AT] = ACTIONS(279), - [anon_sym_DASH] = ACTIONS(307), - [anon_sym_PIPE] = ACTIONS(279), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_PLUS] = ACTIONS(307), - [anon_sym_not] = ACTIONS(312), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(279), - [anon_sym_SLASH_SLASH] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(279), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_TILDE] = ACTIONS(315), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [anon_sym_lambda] = ACTIONS(317), - [anon_sym_PLUS_EQ] = ACTIONS(319), - [anon_sym_DASH_EQ] = ACTIONS(319), - [anon_sym_STAR_EQ] = ACTIONS(319), - [anon_sym_SLASH_EQ] = ACTIONS(319), - [anon_sym_AT_EQ] = ACTIONS(319), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(319), - [anon_sym_PERCENT_EQ] = ACTIONS(319), - [anon_sym_STAR_STAR_EQ] = ACTIONS(319), - [anon_sym_GT_GT_EQ] = ACTIONS(319), - [anon_sym_LT_LT_EQ] = ACTIONS(319), - [anon_sym_AMP_EQ] = ACTIONS(319), - [anon_sym_CARET_EQ] = ACTIONS(319), - [anon_sym_PIPE_EQ] = ACTIONS(319), - [sym_ellipsis] = ACTIONS(321), - [sym_integer] = ACTIONS(323), - [sym_float] = ACTIONS(321), - [anon_sym_await] = ACTIONS(325), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [sym_none] = ACTIONS(323), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(277), - [sym_string_start] = ACTIONS(327), - }, - [74] = { - [sym_named_expression] = STATE(1717), - [sym__named_expression_lhs] = STATE(2775), - [sym_list_splat_pattern] = STATE(1342), - [sym_as_pattern] = STATE(1717), - [sym_expression] = STATE(1761), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1717), - [sym_boolean_operator] = STATE(1717), - [sym_binary_operator] = STATE(1268), - [sym_unary_operator] = STATE(1268), - [sym_comparison_operator] = STATE(1717), - [sym_lambda] = STATE(1717), - [sym_attribute] = STATE(1268), - [sym_subscript] = STATE(1268), - [sym_call] = STATE(1268), - [sym_type] = STATE(2130), - [sym_splat_type] = STATE(2016), - [sym_generic_type] = STATE(2016), - [sym_union_type] = STATE(2016), - [sym_constrained_type] = STATE(2016), - [sym_member_type] = STATE(2016), - [sym_list] = STATE(1268), - [sym_set] = STATE(1268), - [sym_tuple] = STATE(1268), - [sym_dictionary] = STATE(1268), - [sym_list_comprehension] = STATE(1268), - [sym_dictionary_comprehension] = STATE(1268), - [sym_set_comprehension] = STATE(1268), - [sym_generator_expression] = STATE(1268), - [sym_parenthesized_expression] = STATE(1268), - [sym_conditional_expression] = STATE(1717), - [sym_concatenated_string] = STATE(1268), - [sym_string] = STATE(1010), - [sym_await] = STATE(1268), - [sym_identifier] = ACTIONS(275), - [anon_sym_SEMI] = ACTIONS(277), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(281), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(287), - [anon_sym_print] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(302), - [anon_sym_match] = ACTIONS(297), - [anon_sym_async] = ACTIONS(290), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_exec] = ACTIONS(290), - [anon_sym_type] = ACTIONS(297), - [anon_sym_EQ] = ACTIONS(302), - [anon_sym_LBRACK] = ACTIONS(304), - [anon_sym_AT] = ACTIONS(279), - [anon_sym_DASH] = ACTIONS(307), - [anon_sym_PIPE] = ACTIONS(279), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_PLUS] = ACTIONS(307), - [anon_sym_not] = ACTIONS(312), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(279), - [anon_sym_SLASH_SLASH] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(279), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_TILDE] = ACTIONS(315), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [anon_sym_lambda] = ACTIONS(317), - [anon_sym_PLUS_EQ] = ACTIONS(319), - [anon_sym_DASH_EQ] = ACTIONS(319), - [anon_sym_STAR_EQ] = ACTIONS(319), - [anon_sym_SLASH_EQ] = ACTIONS(319), - [anon_sym_AT_EQ] = ACTIONS(319), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(319), - [anon_sym_PERCENT_EQ] = ACTIONS(319), - [anon_sym_STAR_STAR_EQ] = ACTIONS(319), - [anon_sym_GT_GT_EQ] = ACTIONS(319), - [anon_sym_LT_LT_EQ] = ACTIONS(319), - [anon_sym_AMP_EQ] = ACTIONS(319), - [anon_sym_CARET_EQ] = ACTIONS(319), - [anon_sym_PIPE_EQ] = ACTIONS(319), - [sym_ellipsis] = ACTIONS(321), - [sym_integer] = ACTIONS(323), - [sym_float] = ACTIONS(321), - [anon_sym_await] = ACTIONS(325), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [sym_none] = ACTIONS(323), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(277), - [sym_string_start] = ACTIONS(327), - }, - [75] = { - [sym__simple_statements] = STATE(764), - [sym_import_statement] = STATE(2376), - [sym_future_import_statement] = STATE(2376), - [sym_import_from_statement] = STATE(2376), - [sym_print_statement] = STATE(2376), - [sym_assert_statement] = STATE(2376), - [sym_expression_statement] = STATE(2376), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2376), - [sym_delete_statement] = STATE(2376), - [sym_raise_statement] = STATE(2376), - [sym_pass_statement] = STATE(2376), - [sym_break_statement] = STATE(2376), - [sym_continue_statement] = STATE(2376), - [sym_global_statement] = STATE(2376), - [sym_nonlocal_statement] = STATE(2376), - [sym_exec_statement] = STATE(2376), - [sym_type_alias_statement] = STATE(2376), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1716), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(629), - [sym_subscript] = STATE(629), - [sym_call] = STATE(1035), - [sym_type] = STATE(2085), - [sym_splat_type] = STATE(2016), - [sym_generic_type] = STATE(2016), - [sym_union_type] = STATE(2016), - [sym_constrained_type] = STATE(2016), - [sym_member_type] = STATE(2016), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [sym_identifier] = ACTIONS(329), + [STATE(76)] = { + [sym__simple_statements] = STATE(719), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(624), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1696), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(645), + [sym_subscript] = STATE(645), + [sym_call] = STATE(1063), + [sym_type] = STATE(1994), + [sym_splat_type] = STATE(2015), + [sym_generic_type] = STATE(2015), + [sym_union_type] = STATE(2015), + [sym_constrained_type] = STATE(2015), + [sym_member_type] = STATE(2015), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [sym_identifier] = ACTIONS(321), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(331), - [anon_sym_STAR] = ACTIONS(333), - [anon_sym_print] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(325), + [anon_sym_print] = ACTIONS(327), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -18851,14 +19235,14 @@ 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_match] = ACTIONS(337), - [anon_sym_async] = ACTIONS(339), - [anon_sym_STAR_STAR] = ACTIONS(341), + [anon_sym_match] = ACTIONS(329), + [anon_sym_async] = ACTIONS(331), + [anon_sym_STAR_STAR] = ACTIONS(333), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(343), - [anon_sym_type] = ACTIONS(345), - [anon_sym_LBRACK] = ACTIONS(347), + [anon_sym_exec] = ACTIONS(335), + [anon_sym_type] = ACTIONS(337), + [anon_sym_LBRACK] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -18869,81 +19253,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(349), + [anon_sym_await] = ACTIONS(341), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(351), - [sym__indent] = ACTIONS(353), + [sym__newline] = ACTIONS(355), + [sym__indent] = ACTIONS(357), [sym_string_start] = ACTIONS(81), }, - [76] = { - [sym__simple_statements] = STATE(772), - [sym_import_statement] = STATE(2376), - [sym_future_import_statement] = STATE(2376), - [sym_import_from_statement] = STATE(2376), - [sym_print_statement] = STATE(2376), - [sym_assert_statement] = STATE(2376), - [sym_expression_statement] = STATE(2376), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2376), - [sym_delete_statement] = STATE(2376), - [sym_raise_statement] = STATE(2376), - [sym_pass_statement] = STATE(2376), - [sym_break_statement] = STATE(2376), - [sym_continue_statement] = STATE(2376), - [sym_global_statement] = STATE(2376), - [sym_nonlocal_statement] = STATE(2376), - [sym_exec_statement] = STATE(2376), - [sym_type_alias_statement] = STATE(2376), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1716), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(629), - [sym_subscript] = STATE(629), - [sym_call] = STATE(1035), - [sym_type] = STATE(2085), - [sym_splat_type] = STATE(2016), - [sym_generic_type] = STATE(2016), - [sym_union_type] = STATE(2016), - [sym_constrained_type] = STATE(2016), - [sym_member_type] = STATE(2016), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [sym_identifier] = ACTIONS(329), + [STATE(77)] = { + [sym__simple_statements] = STATE(800), + [sym_import_statement] = STATE(2314), + [sym_future_import_statement] = STATE(2314), + [sym_import_from_statement] = STATE(2314), + [sym_print_statement] = STATE(2314), + [sym_assert_statement] = STATE(2314), + [sym_expression_statement] = STATE(2314), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2314), + [sym_delete_statement] = STATE(2314), + [sym_raise_statement] = STATE(2314), + [sym_pass_statement] = STATE(2314), + [sym_break_statement] = STATE(2314), + [sym_continue_statement] = STATE(2314), + [sym_global_statement] = STATE(2314), + [sym_nonlocal_statement] = STATE(2314), + [sym_exec_statement] = STATE(2314), + [sym_type_alias_statement] = STATE(2314), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(624), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1696), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(645), + [sym_subscript] = STATE(645), + [sym_call] = STATE(1063), + [sym_type] = STATE(1994), + [sym_splat_type] = STATE(2015), + [sym_generic_type] = STATE(2015), + [sym_union_type] = STATE(2015), + [sym_constrained_type] = STATE(2015), + [sym_member_type] = STATE(2015), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [sym_identifier] = ACTIONS(321), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(331), - [anon_sym_STAR] = ACTIONS(333), - [anon_sym_print] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(325), + [anon_sym_print] = ACTIONS(327), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -18951,14 +19335,14 @@ 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_match] = ACTIONS(337), - [anon_sym_async] = ACTIONS(339), - [anon_sym_STAR_STAR] = ACTIONS(341), + [anon_sym_match] = ACTIONS(329), + [anon_sym_async] = ACTIONS(331), + [anon_sym_STAR_STAR] = ACTIONS(333), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(343), - [anon_sym_type] = ACTIONS(345), - [anon_sym_LBRACK] = ACTIONS(347), + [anon_sym_exec] = ACTIONS(335), + [anon_sym_type] = ACTIONS(337), + [anon_sym_LBRACK] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -18969,81 +19353,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(349), + [anon_sym_await] = ACTIONS(341), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(355), - [sym__indent] = ACTIONS(357), + [sym__newline] = ACTIONS(359), + [sym__indent] = ACTIONS(361), [sym_string_start] = ACTIONS(81), }, - [77] = { - [sym__simple_statements] = STATE(770), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1716), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(629), - [sym_subscript] = STATE(629), - [sym_call] = STATE(1035), - [sym_type] = STATE(2085), - [sym_splat_type] = STATE(2016), - [sym_generic_type] = STATE(2016), - [sym_union_type] = STATE(2016), - [sym_constrained_type] = STATE(2016), - [sym_member_type] = STATE(2016), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [sym_identifier] = ACTIONS(329), + [STATE(78)] = { + [sym__simple_statements] = STATE(715), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(624), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1696), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(645), + [sym_subscript] = STATE(645), + [sym_call] = STATE(1063), + [sym_type] = STATE(1994), + [sym_splat_type] = STATE(2015), + [sym_generic_type] = STATE(2015), + [sym_union_type] = STATE(2015), + [sym_constrained_type] = STATE(2015), + [sym_member_type] = STATE(2015), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [sym_identifier] = ACTIONS(321), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(331), - [anon_sym_STAR] = ACTIONS(333), - [anon_sym_print] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(325), + [anon_sym_print] = ACTIONS(327), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -19051,14 +19435,14 @@ 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_match] = ACTIONS(337), - [anon_sym_async] = ACTIONS(339), - [anon_sym_STAR_STAR] = ACTIONS(341), + [anon_sym_match] = ACTIONS(329), + [anon_sym_async] = ACTIONS(331), + [anon_sym_STAR_STAR] = ACTIONS(333), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(343), - [anon_sym_type] = ACTIONS(345), - [anon_sym_LBRACK] = ACTIONS(347), + [anon_sym_exec] = ACTIONS(335), + [anon_sym_type] = ACTIONS(337), + [anon_sym_LBRACK] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -19069,81 +19453,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(349), + [anon_sym_await] = ACTIONS(341), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(359), - [sym__indent] = ACTIONS(361), + [sym__newline] = ACTIONS(363), + [sym__indent] = ACTIONS(365), [sym_string_start] = ACTIONS(81), }, - [78] = { - [sym__simple_statements] = STATE(728), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1716), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(629), - [sym_subscript] = STATE(629), - [sym_call] = STATE(1035), - [sym_type] = STATE(2085), - [sym_splat_type] = STATE(2016), - [sym_generic_type] = STATE(2016), - [sym_union_type] = STATE(2016), - [sym_constrained_type] = STATE(2016), - [sym_member_type] = STATE(2016), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [sym_identifier] = ACTIONS(329), + [STATE(79)] = { + [sym__simple_statements] = STATE(811), + [sym_import_statement] = STATE(2314), + [sym_future_import_statement] = STATE(2314), + [sym_import_from_statement] = STATE(2314), + [sym_print_statement] = STATE(2314), + [sym_assert_statement] = STATE(2314), + [sym_expression_statement] = STATE(2314), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2314), + [sym_delete_statement] = STATE(2314), + [sym_raise_statement] = STATE(2314), + [sym_pass_statement] = STATE(2314), + [sym_break_statement] = STATE(2314), + [sym_continue_statement] = STATE(2314), + [sym_global_statement] = STATE(2314), + [sym_nonlocal_statement] = STATE(2314), + [sym_exec_statement] = STATE(2314), + [sym_type_alias_statement] = STATE(2314), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(624), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1696), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(645), + [sym_subscript] = STATE(645), + [sym_call] = STATE(1063), + [sym_type] = STATE(1994), + [sym_splat_type] = STATE(2015), + [sym_generic_type] = STATE(2015), + [sym_union_type] = STATE(2015), + [sym_constrained_type] = STATE(2015), + [sym_member_type] = STATE(2015), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [sym_identifier] = ACTIONS(321), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(331), - [anon_sym_STAR] = ACTIONS(333), - [anon_sym_print] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(325), + [anon_sym_print] = ACTIONS(327), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -19151,14 +19535,14 @@ 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_match] = ACTIONS(337), - [anon_sym_async] = ACTIONS(339), - [anon_sym_STAR_STAR] = ACTIONS(341), + [anon_sym_match] = ACTIONS(329), + [anon_sym_async] = ACTIONS(331), + [anon_sym_STAR_STAR] = ACTIONS(333), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(343), - [anon_sym_type] = ACTIONS(345), - [anon_sym_LBRACK] = ACTIONS(347), + [anon_sym_exec] = ACTIONS(335), + [anon_sym_type] = ACTIONS(337), + [anon_sym_LBRACK] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -19169,81 +19553,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(349), + [anon_sym_await] = ACTIONS(341), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(363), - [sym__indent] = ACTIONS(365), + [sym__newline] = ACTIONS(367), + [sym__indent] = ACTIONS(369), [sym_string_start] = ACTIONS(81), }, - [79] = { - [sym__simple_statements] = STATE(731), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1716), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(629), - [sym_subscript] = STATE(629), - [sym_call] = STATE(1035), - [sym_type] = STATE(2085), - [sym_splat_type] = STATE(2016), - [sym_generic_type] = STATE(2016), - [sym_union_type] = STATE(2016), - [sym_constrained_type] = STATE(2016), - [sym_member_type] = STATE(2016), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [sym_identifier] = ACTIONS(329), + [STATE(80)] = { + [sym__simple_statements] = STATE(821), + [sym_import_statement] = STATE(2314), + [sym_future_import_statement] = STATE(2314), + [sym_import_from_statement] = STATE(2314), + [sym_print_statement] = STATE(2314), + [sym_assert_statement] = STATE(2314), + [sym_expression_statement] = STATE(2314), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2314), + [sym_delete_statement] = STATE(2314), + [sym_raise_statement] = STATE(2314), + [sym_pass_statement] = STATE(2314), + [sym_break_statement] = STATE(2314), + [sym_continue_statement] = STATE(2314), + [sym_global_statement] = STATE(2314), + [sym_nonlocal_statement] = STATE(2314), + [sym_exec_statement] = STATE(2314), + [sym_type_alias_statement] = STATE(2314), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(624), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1696), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(645), + [sym_subscript] = STATE(645), + [sym_call] = STATE(1063), + [sym_type] = STATE(1994), + [sym_splat_type] = STATE(2015), + [sym_generic_type] = STATE(2015), + [sym_union_type] = STATE(2015), + [sym_constrained_type] = STATE(2015), + [sym_member_type] = STATE(2015), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [sym_identifier] = ACTIONS(321), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(331), - [anon_sym_STAR] = ACTIONS(333), - [anon_sym_print] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(325), + [anon_sym_print] = ACTIONS(327), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -19251,14 +19635,14 @@ 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_match] = ACTIONS(337), - [anon_sym_async] = ACTIONS(339), - [anon_sym_STAR_STAR] = ACTIONS(341), + [anon_sym_match] = ACTIONS(329), + [anon_sym_async] = ACTIONS(331), + [anon_sym_STAR_STAR] = ACTIONS(333), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(343), - [anon_sym_type] = ACTIONS(345), - [anon_sym_LBRACK] = ACTIONS(347), + [anon_sym_exec] = ACTIONS(335), + [anon_sym_type] = ACTIONS(337), + [anon_sym_LBRACK] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -19269,181 +19653,469 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(349), + [anon_sym_await] = ACTIONS(341), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(367), - [sym__indent] = ACTIONS(369), + [sym__newline] = ACTIONS(371), + [sym__indent] = ACTIONS(373), [sym_string_start] = ACTIONS(81), }, - [80] = { - [sym__simple_statements] = STATE(784), - [sym_import_statement] = STATE(2376), - [sym_future_import_statement] = STATE(2376), - [sym_import_from_statement] = STATE(2376), - [sym_print_statement] = STATE(2376), - [sym_assert_statement] = STATE(2376), - [sym_expression_statement] = STATE(2376), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2376), - [sym_delete_statement] = STATE(2376), - [sym_raise_statement] = STATE(2376), - [sym_pass_statement] = STATE(2376), - [sym_break_statement] = STATE(2376), - [sym_continue_statement] = STATE(2376), - [sym_global_statement] = STATE(2376), - [sym_nonlocal_statement] = STATE(2376), - [sym_exec_statement] = STATE(2376), - [sym_type_alias_statement] = STATE(2376), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1716), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(629), - [sym_subscript] = STATE(629), - [sym_call] = STATE(1035), - [sym_type] = STATE(2085), - [sym_splat_type] = STATE(2016), - [sym_generic_type] = STATE(2016), - [sym_union_type] = STATE(2016), - [sym_constrained_type] = STATE(2016), - [sym_member_type] = STATE(2016), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [sym_identifier] = ACTIONS(329), - [anon_sym_import] = ACTIONS(11), - [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(331), - [anon_sym_STAR] = ACTIONS(333), - [anon_sym_print] = ACTIONS(335), - [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_match] = ACTIONS(337), - [anon_sym_async] = ACTIONS(339), - [anon_sym_STAR_STAR] = ACTIONS(341), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(343), - [anon_sym_type] = ACTIONS(345), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_DASH] = ACTIONS(65), + [STATE(81)] = { + [sym_chevron] = STATE(2156), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_list_splat_pattern] = STATE(1046), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1779), + [sym_primary_expression] = STATE(851), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_attribute] = STATE(1063), + [sym_subscript] = STATE(1063), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [sym_identifier] = ACTIONS(375), + [anon_sym_SEMI] = ACTIONS(269), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(377), + [anon_sym_COMMA] = ACTIONS(276), + [anon_sym_as] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(380), + [anon_sym_print] = ACTIONS(383), + [anon_sym_GT_GT] = ACTIONS(385), + [anon_sym_COLON_EQ] = ACTIONS(284), + [anon_sym_if] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(286), + [anon_sym_match] = ACTIONS(387), + [anon_sym_async] = ACTIONS(383), + [anon_sym_in] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(271), + [anon_sym_exec] = ACTIONS(383), + [anon_sym_type] = ACTIONS(387), + [anon_sym_EQ] = ACTIONS(294), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_AT] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(392), + [anon_sym_PIPE] = ACTIONS(271), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(392), + [anon_sym_not] = ACTIONS(395), + [anon_sym_and] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(271), + [anon_sym_SLASH_SLASH] = ACTIONS(271), + [anon_sym_AMP] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym_LT_LT] = ACTIONS(271), [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_is] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(269), [anon_sym_lambda] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), + [anon_sym_PLUS_EQ] = ACTIONS(311), + [anon_sym_DASH_EQ] = ACTIONS(311), + [anon_sym_STAR_EQ] = ACTIONS(311), + [anon_sym_SLASH_EQ] = ACTIONS(311), + [anon_sym_AT_EQ] = ACTIONS(311), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(311), + [anon_sym_PERCENT_EQ] = ACTIONS(311), + [anon_sym_STAR_STAR_EQ] = ACTIONS(311), + [anon_sym_GT_GT_EQ] = ACTIONS(311), + [anon_sym_LT_LT_EQ] = ACTIONS(311), + [anon_sym_AMP_EQ] = ACTIONS(311), + [anon_sym_CARET_EQ] = ACTIONS(311), + [anon_sym_PIPE_EQ] = ACTIONS(311), [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(349), + [anon_sym_await] = ACTIONS(398), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(371), - [sym__indent] = ACTIONS(373), + [sym__newline] = ACTIONS(269), [sym_string_start] = ACTIONS(81), }, - [81] = { - [sym__simple_statements] = STATE(778), - [sym_import_statement] = STATE(2376), - [sym_future_import_statement] = STATE(2376), - [sym_import_from_statement] = STATE(2376), - [sym_print_statement] = STATE(2376), - [sym_assert_statement] = STATE(2376), - [sym_expression_statement] = STATE(2376), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2376), - [sym_delete_statement] = STATE(2376), - [sym_raise_statement] = STATE(2376), - [sym_pass_statement] = STATE(2376), - [sym_break_statement] = STATE(2376), - [sym_continue_statement] = STATE(2376), - [sym_global_statement] = STATE(2376), - [sym_nonlocal_statement] = STATE(2376), - [sym_exec_statement] = STATE(2376), - [sym_type_alias_statement] = STATE(2376), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1716), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(629), - [sym_subscript] = STATE(629), - [sym_call] = STATE(1035), - [sym_type] = STATE(2085), - [sym_splat_type] = STATE(2016), - [sym_generic_type] = STATE(2016), - [sym_union_type] = STATE(2016), - [sym_constrained_type] = STATE(2016), - [sym_member_type] = STATE(2016), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [sym_identifier] = ACTIONS(329), + [STATE(82)] = { + [sym_chevron] = STATE(2156), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_list_splat_pattern] = STATE(1046), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1779), + [sym_primary_expression] = STATE(851), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_attribute] = STATE(1063), + [sym_subscript] = STATE(1063), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [sym_identifier] = ACTIONS(375), + [anon_sym_SEMI] = ACTIONS(269), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(377), + [anon_sym_COMMA] = ACTIONS(276), + [anon_sym_as] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(380), + [anon_sym_print] = ACTIONS(383), + [anon_sym_GT_GT] = ACTIONS(385), + [anon_sym_COLON_EQ] = ACTIONS(284), + [anon_sym_if] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(294), + [anon_sym_match] = ACTIONS(387), + [anon_sym_async] = ACTIONS(383), + [anon_sym_in] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(271), + [anon_sym_exec] = ACTIONS(383), + [anon_sym_type] = ACTIONS(387), + [anon_sym_EQ] = ACTIONS(294), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_AT] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(392), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(392), + [anon_sym_not] = ACTIONS(395), + [anon_sym_and] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(271), + [anon_sym_SLASH_SLASH] = ACTIONS(271), + [anon_sym_AMP] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym_LT_LT] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_is] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(269), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_PLUS_EQ] = ACTIONS(311), + [anon_sym_DASH_EQ] = ACTIONS(311), + [anon_sym_STAR_EQ] = ACTIONS(311), + [anon_sym_SLASH_EQ] = ACTIONS(311), + [anon_sym_AT_EQ] = ACTIONS(311), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(311), + [anon_sym_PERCENT_EQ] = ACTIONS(311), + [anon_sym_STAR_STAR_EQ] = ACTIONS(311), + [anon_sym_GT_GT_EQ] = ACTIONS(311), + [anon_sym_LT_LT_EQ] = ACTIONS(311), + [anon_sym_AMP_EQ] = ACTIONS(311), + [anon_sym_CARET_EQ] = ACTIONS(311), + [anon_sym_PIPE_EQ] = ACTIONS(311), + [sym_ellipsis] = ACTIONS(75), + [sym_integer] = ACTIONS(77), + [sym_float] = ACTIONS(75), + [anon_sym_await] = ACTIONS(398), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_none] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(269), + [sym_string_start] = ACTIONS(81), + }, + [STATE(83)] = { + [sym_named_expression] = STATE(1720), + [sym__named_expression_lhs] = STATE(2759), + [sym_list_splat_pattern] = STATE(1333), + [sym_as_pattern] = STATE(1720), + [sym_expression] = STATE(1849), + [sym_primary_expression] = STATE(953), + [sym_not_operator] = STATE(1720), + [sym_boolean_operator] = STATE(1720), + [sym_binary_operator] = STATE(1276), + [sym_unary_operator] = STATE(1276), + [sym_comparison_operator] = STATE(1720), + [sym_lambda] = STATE(1720), + [sym_attribute] = STATE(1276), + [sym_subscript] = STATE(1276), + [sym_call] = STATE(1276), + [sym_list] = STATE(1276), + [sym_set] = STATE(1276), + [sym_tuple] = STATE(1276), + [sym_dictionary] = STATE(1276), + [sym_list_comprehension] = STATE(1276), + [sym_dictionary_comprehension] = STATE(1276), + [sym_set_comprehension] = STATE(1276), + [sym_generator_expression] = STATE(1276), + [sym_parenthesized_expression] = STATE(1276), + [sym_conditional_expression] = STATE(1720), + [sym_concatenated_string] = STATE(1276), + [sym_string] = STATE(975), + [sym_await] = STATE(1276), + [sym_identifier] = ACTIONS(400), + [anon_sym_SEMI] = ACTIONS(269), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(273), + [anon_sym_COMMA] = ACTIONS(276), + [anon_sym_as] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(402), + [anon_sym_print] = ACTIONS(282), + [anon_sym_GT_GT] = ACTIONS(271), + [anon_sym_COLON_EQ] = ACTIONS(284), + [anon_sym_if] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(294), + [anon_sym_match] = ACTIONS(289), + [anon_sym_async] = ACTIONS(282), + [anon_sym_in] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(271), + [anon_sym_exec] = ACTIONS(282), + [anon_sym_type] = ACTIONS(289), + [anon_sym_EQ] = ACTIONS(294), + [anon_sym_LBRACK] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_LBRACE] = ACTIONS(302), + [anon_sym_PLUS] = ACTIONS(299), + [anon_sym_not] = ACTIONS(304), + [anon_sym_and] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(271), + [anon_sym_SLASH_SLASH] = ACTIONS(271), + [anon_sym_AMP] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym_LT_LT] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(307), + [anon_sym_is] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(269), + [anon_sym_lambda] = ACTIONS(309), + [anon_sym_PLUS_EQ] = ACTIONS(311), + [anon_sym_DASH_EQ] = ACTIONS(311), + [anon_sym_STAR_EQ] = ACTIONS(311), + [anon_sym_SLASH_EQ] = ACTIONS(311), + [anon_sym_AT_EQ] = ACTIONS(311), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(311), + [anon_sym_PERCENT_EQ] = ACTIONS(311), + [anon_sym_STAR_STAR_EQ] = ACTIONS(311), + [anon_sym_GT_GT_EQ] = ACTIONS(311), + [anon_sym_LT_LT_EQ] = ACTIONS(311), + [anon_sym_AMP_EQ] = ACTIONS(311), + [anon_sym_CARET_EQ] = ACTIONS(311), + [anon_sym_PIPE_EQ] = ACTIONS(311), + [sym_ellipsis] = ACTIONS(313), + [sym_integer] = ACTIONS(315), + [sym_float] = ACTIONS(313), + [anon_sym_await] = ACTIONS(317), + [sym_true] = ACTIONS(315), + [sym_false] = ACTIONS(315), + [sym_none] = ACTIONS(315), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(269), + [sym_string_start] = ACTIONS(319), + }, + [STATE(84)] = { + [sym_named_expression] = STATE(1720), + [sym__named_expression_lhs] = STATE(2759), + [sym_list_splat_pattern] = STATE(1333), + [sym_as_pattern] = STATE(1720), + [sym_expression] = STATE(1855), + [sym_primary_expression] = STATE(953), + [sym_not_operator] = STATE(1720), + [sym_boolean_operator] = STATE(1720), + [sym_binary_operator] = STATE(1276), + [sym_unary_operator] = STATE(1276), + [sym_comparison_operator] = STATE(1720), + [sym_lambda] = STATE(1720), + [sym_attribute] = STATE(1276), + [sym_subscript] = STATE(1276), + [sym_call] = STATE(1276), + [sym_list] = STATE(1276), + [sym_set] = STATE(1276), + [sym_tuple] = STATE(1276), + [sym_dictionary] = STATE(1276), + [sym_list_comprehension] = STATE(1276), + [sym_dictionary_comprehension] = STATE(1276), + [sym_set_comprehension] = STATE(1276), + [sym_generator_expression] = STATE(1276), + [sym_parenthesized_expression] = STATE(1276), + [sym_conditional_expression] = STATE(1720), + [sym_concatenated_string] = STATE(1276), + [sym_string] = STATE(975), + [sym_await] = STATE(1276), + [sym_identifier] = ACTIONS(400), + [anon_sym_SEMI] = ACTIONS(269), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(273), + [anon_sym_COMMA] = ACTIONS(276), + [anon_sym_as] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(402), + [anon_sym_print] = ACTIONS(282), + [anon_sym_GT_GT] = ACTIONS(271), + [anon_sym_COLON_EQ] = ACTIONS(284), + [anon_sym_if] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(294), + [anon_sym_match] = ACTIONS(289), + [anon_sym_async] = ACTIONS(282), + [anon_sym_in] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(271), + [anon_sym_exec] = ACTIONS(282), + [anon_sym_type] = ACTIONS(289), + [anon_sym_EQ] = ACTIONS(294), + [anon_sym_LBRACK] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_LBRACE] = ACTIONS(302), + [anon_sym_PLUS] = ACTIONS(299), + [anon_sym_not] = ACTIONS(304), + [anon_sym_and] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(271), + [anon_sym_SLASH_SLASH] = ACTIONS(271), + [anon_sym_AMP] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym_LT_LT] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(307), + [anon_sym_is] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(269), + [anon_sym_lambda] = ACTIONS(309), + [anon_sym_PLUS_EQ] = ACTIONS(311), + [anon_sym_DASH_EQ] = ACTIONS(311), + [anon_sym_STAR_EQ] = ACTIONS(311), + [anon_sym_SLASH_EQ] = ACTIONS(311), + [anon_sym_AT_EQ] = ACTIONS(311), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(311), + [anon_sym_PERCENT_EQ] = ACTIONS(311), + [anon_sym_STAR_STAR_EQ] = ACTIONS(311), + [anon_sym_GT_GT_EQ] = ACTIONS(311), + [anon_sym_LT_LT_EQ] = ACTIONS(311), + [anon_sym_AMP_EQ] = ACTIONS(311), + [anon_sym_CARET_EQ] = ACTIONS(311), + [anon_sym_PIPE_EQ] = ACTIONS(311), + [sym_ellipsis] = ACTIONS(313), + [sym_integer] = ACTIONS(315), + [sym_float] = ACTIONS(313), + [anon_sym_await] = ACTIONS(317), + [sym_true] = ACTIONS(315), + [sym_false] = ACTIONS(315), + [sym_none] = ACTIONS(315), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(269), + [sym_string_start] = ACTIONS(319), + }, + [STATE(85)] = { + [sym__simple_statements] = STATE(823), + [sym_import_statement] = STATE(2314), + [sym_future_import_statement] = STATE(2314), + [sym_import_from_statement] = STATE(2314), + [sym_print_statement] = STATE(2314), + [sym_assert_statement] = STATE(2314), + [sym_expression_statement] = STATE(2314), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2314), + [sym_delete_statement] = STATE(2314), + [sym_raise_statement] = STATE(2314), + [sym_pass_statement] = STATE(2314), + [sym_break_statement] = STATE(2314), + [sym_continue_statement] = STATE(2314), + [sym_global_statement] = STATE(2314), + [sym_nonlocal_statement] = STATE(2314), + [sym_exec_statement] = STATE(2314), + [sym_type_alias_statement] = STATE(2314), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(331), - [anon_sym_STAR] = ACTIONS(333), - [anon_sym_print] = ACTIONS(335), + [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), @@ -19451,14 +20123,13 @@ 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_match] = ACTIONS(337), - [anon_sym_async] = ACTIONS(339), - [anon_sym_STAR_STAR] = ACTIONS(341), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(343), - [anon_sym_type] = ACTIONS(345), - [anon_sym_LBRACK] = ACTIONS(347), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_type] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -19469,81 +20140,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(349), + [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(375), - [sym__indent] = ACTIONS(377), + [sym__newline] = ACTIONS(409), + [sym__indent] = ACTIONS(411), [sym_string_start] = ACTIONS(81), }, - [82] = { - [sym__simple_statements] = STATE(741), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1716), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(629), - [sym_subscript] = STATE(629), - [sym_call] = STATE(1035), - [sym_type] = STATE(2085), - [sym_splat_type] = STATE(2016), - [sym_generic_type] = STATE(2016), - [sym_union_type] = STATE(2016), - [sym_constrained_type] = STATE(2016), - [sym_member_type] = STATE(2016), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [sym_identifier] = ACTIONS(329), + [STATE(86)] = { + [sym__simple_statements] = STATE(736), + [sym_import_statement] = STATE(2314), + [sym_future_import_statement] = STATE(2314), + [sym_import_from_statement] = STATE(2314), + [sym_print_statement] = STATE(2314), + [sym_assert_statement] = STATE(2314), + [sym_expression_statement] = STATE(2314), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2314), + [sym_delete_statement] = STATE(2314), + [sym_raise_statement] = STATE(2314), + [sym_pass_statement] = STATE(2314), + [sym_break_statement] = STATE(2314), + [sym_continue_statement] = STATE(2314), + [sym_global_statement] = STATE(2314), + [sym_nonlocal_statement] = STATE(2314), + [sym_exec_statement] = STATE(2314), + [sym_type_alias_statement] = STATE(2314), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(331), - [anon_sym_STAR] = ACTIONS(333), - [anon_sym_print] = ACTIONS(335), + [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), @@ -19551,14 +20216,13 @@ 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_match] = ACTIONS(337), - [anon_sym_async] = ACTIONS(339), - [anon_sym_STAR_STAR] = ACTIONS(341), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(343), - [anon_sym_type] = ACTIONS(345), - [anon_sym_LBRACK] = ACTIONS(347), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_type] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -19569,463 +20233,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(349), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(379), - [sym__indent] = ACTIONS(381), - [sym_string_start] = ACTIONS(81), - }, - [83] = { - [sym_chevron] = STATE(2186), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_list_splat_pattern] = STATE(1119), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1828), - [sym_primary_expression] = STATE(865), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_attribute] = STATE(1035), - [sym_subscript] = STATE(1035), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [sym_identifier] = ACTIONS(383), - [anon_sym_SEMI] = ACTIONS(277), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(385), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(388), - [anon_sym_print] = ACTIONS(391), - [anon_sym_GT_GT] = ACTIONS(393), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(302), - [anon_sym_match] = ACTIONS(395), - [anon_sym_async] = ACTIONS(391), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(279), - [anon_sym_exec] = ACTIONS(391), - [anon_sym_type] = ACTIONS(395), - [anon_sym_EQ] = ACTIONS(302), - [anon_sym_LBRACK] = ACTIONS(397), - [anon_sym_AT] = ACTIONS(279), - [anon_sym_DASH] = ACTIONS(400), - [anon_sym_PIPE] = ACTIONS(279), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(400), - [anon_sym_not] = ACTIONS(403), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(279), - [anon_sym_SLASH_SLASH] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(279), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [anon_sym_lambda] = ACTIONS(71), - [anon_sym_PLUS_EQ] = ACTIONS(319), - [anon_sym_DASH_EQ] = ACTIONS(319), - [anon_sym_STAR_EQ] = ACTIONS(319), - [anon_sym_SLASH_EQ] = ACTIONS(319), - [anon_sym_AT_EQ] = ACTIONS(319), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(319), - [anon_sym_PERCENT_EQ] = ACTIONS(319), - [anon_sym_STAR_STAR_EQ] = ACTIONS(319), - [anon_sym_GT_GT_EQ] = ACTIONS(319), - [anon_sym_LT_LT_EQ] = ACTIONS(319), - [anon_sym_AMP_EQ] = ACTIONS(319), - [anon_sym_CARET_EQ] = ACTIONS(319), - [anon_sym_PIPE_EQ] = ACTIONS(319), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(406), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(277), - [sym_string_start] = ACTIONS(81), - }, - [84] = { - [sym_chevron] = STATE(2186), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_list_splat_pattern] = STATE(1119), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1828), - [sym_primary_expression] = STATE(865), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_attribute] = STATE(1035), - [sym_subscript] = STATE(1035), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [sym_identifier] = ACTIONS(383), - [anon_sym_SEMI] = ACTIONS(277), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(385), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(388), - [anon_sym_print] = ACTIONS(391), - [anon_sym_GT_GT] = ACTIONS(393), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(294), - [anon_sym_match] = ACTIONS(395), - [anon_sym_async] = ACTIONS(391), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(279), - [anon_sym_exec] = ACTIONS(391), - [anon_sym_type] = ACTIONS(395), - [anon_sym_EQ] = ACTIONS(302), - [anon_sym_LBRACK] = ACTIONS(397), - [anon_sym_AT] = ACTIONS(279), - [anon_sym_DASH] = ACTIONS(400), - [anon_sym_PIPE] = ACTIONS(279), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(400), - [anon_sym_not] = ACTIONS(403), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(279), - [anon_sym_SLASH_SLASH] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(279), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [anon_sym_lambda] = ACTIONS(71), - [anon_sym_PLUS_EQ] = ACTIONS(319), - [anon_sym_DASH_EQ] = ACTIONS(319), - [anon_sym_STAR_EQ] = ACTIONS(319), - [anon_sym_SLASH_EQ] = ACTIONS(319), - [anon_sym_AT_EQ] = ACTIONS(319), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(319), - [anon_sym_PERCENT_EQ] = ACTIONS(319), - [anon_sym_STAR_STAR_EQ] = ACTIONS(319), - [anon_sym_GT_GT_EQ] = ACTIONS(319), - [anon_sym_LT_LT_EQ] = ACTIONS(319), - [anon_sym_AMP_EQ] = ACTIONS(319), - [anon_sym_CARET_EQ] = ACTIONS(319), - [anon_sym_PIPE_EQ] = ACTIONS(319), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(406), + [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(277), + [sym__newline] = ACTIONS(413), + [sym__indent] = ACTIONS(415), [sym_string_start] = ACTIONS(81), }, - [85] = { - [sym_named_expression] = STATE(1717), - [sym__named_expression_lhs] = STATE(2775), - [sym_list_splat_pattern] = STATE(1342), - [sym_as_pattern] = STATE(1717), - [sym_expression] = STATE(1856), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1717), - [sym_boolean_operator] = STATE(1717), - [sym_binary_operator] = STATE(1268), - [sym_unary_operator] = STATE(1268), - [sym_comparison_operator] = STATE(1717), - [sym_lambda] = STATE(1717), - [sym_attribute] = STATE(1268), - [sym_subscript] = STATE(1268), - [sym_call] = STATE(1268), - [sym_list] = STATE(1268), - [sym_set] = STATE(1268), - [sym_tuple] = STATE(1268), - [sym_dictionary] = STATE(1268), - [sym_list_comprehension] = STATE(1268), - [sym_dictionary_comprehension] = STATE(1268), - [sym_set_comprehension] = STATE(1268), - [sym_generator_expression] = STATE(1268), - [sym_parenthesized_expression] = STATE(1268), - [sym_conditional_expression] = STATE(1717), - [sym_concatenated_string] = STATE(1268), - [sym_string] = STATE(1010), - [sym_await] = STATE(1268), - [sym_identifier] = ACTIONS(408), - [anon_sym_SEMI] = ACTIONS(277), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(281), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(410), - [anon_sym_print] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(302), - [anon_sym_match] = ACTIONS(297), - [anon_sym_async] = ACTIONS(290), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(279), - [anon_sym_exec] = ACTIONS(290), - [anon_sym_type] = ACTIONS(297), - [anon_sym_EQ] = ACTIONS(302), - [anon_sym_LBRACK] = ACTIONS(304), - [anon_sym_AT] = ACTIONS(279), - [anon_sym_DASH] = ACTIONS(307), - [anon_sym_PIPE] = ACTIONS(279), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_PLUS] = ACTIONS(307), - [anon_sym_not] = ACTIONS(312), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(279), - [anon_sym_SLASH_SLASH] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(279), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_TILDE] = ACTIONS(315), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [anon_sym_lambda] = ACTIONS(317), - [anon_sym_PLUS_EQ] = ACTIONS(319), - [anon_sym_DASH_EQ] = ACTIONS(319), - [anon_sym_STAR_EQ] = ACTIONS(319), - [anon_sym_SLASH_EQ] = ACTIONS(319), - [anon_sym_AT_EQ] = ACTIONS(319), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(319), - [anon_sym_PERCENT_EQ] = ACTIONS(319), - [anon_sym_STAR_STAR_EQ] = ACTIONS(319), - [anon_sym_GT_GT_EQ] = ACTIONS(319), - [anon_sym_LT_LT_EQ] = ACTIONS(319), - [anon_sym_AMP_EQ] = ACTIONS(319), - [anon_sym_CARET_EQ] = ACTIONS(319), - [anon_sym_PIPE_EQ] = ACTIONS(319), - [sym_ellipsis] = ACTIONS(321), - [sym_integer] = ACTIONS(323), - [sym_float] = ACTIONS(321), - [anon_sym_await] = ACTIONS(325), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [sym_none] = ACTIONS(323), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(277), - [sym_string_start] = ACTIONS(327), - }, - [86] = { - [sym_named_expression] = STATE(1717), - [sym__named_expression_lhs] = STATE(2775), - [sym_list_splat_pattern] = STATE(1342), - [sym_as_pattern] = STATE(1717), - [sym_expression] = STATE(1868), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1717), - [sym_boolean_operator] = STATE(1717), - [sym_binary_operator] = STATE(1268), - [sym_unary_operator] = STATE(1268), - [sym_comparison_operator] = STATE(1717), - [sym_lambda] = STATE(1717), - [sym_attribute] = STATE(1268), - [sym_subscript] = STATE(1268), - [sym_call] = STATE(1268), - [sym_list] = STATE(1268), - [sym_set] = STATE(1268), - [sym_tuple] = STATE(1268), - [sym_dictionary] = STATE(1268), - [sym_list_comprehension] = STATE(1268), - [sym_dictionary_comprehension] = STATE(1268), - [sym_set_comprehension] = STATE(1268), - [sym_generator_expression] = STATE(1268), - [sym_parenthesized_expression] = STATE(1268), - [sym_conditional_expression] = STATE(1717), - [sym_concatenated_string] = STATE(1268), - [sym_string] = STATE(1010), - [sym_await] = STATE(1268), - [sym_identifier] = ACTIONS(408), - [anon_sym_SEMI] = ACTIONS(277), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(281), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(410), - [anon_sym_print] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(302), - [anon_sym_match] = ACTIONS(297), - [anon_sym_async] = ACTIONS(290), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(279), - [anon_sym_exec] = ACTIONS(290), - [anon_sym_type] = ACTIONS(297), - [anon_sym_EQ] = ACTIONS(302), - [anon_sym_LBRACK] = ACTIONS(304), - [anon_sym_AT] = ACTIONS(279), - [anon_sym_DASH] = ACTIONS(307), - [anon_sym_PIPE] = ACTIONS(279), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_PLUS] = ACTIONS(307), - [anon_sym_not] = ACTIONS(312), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(279), - [anon_sym_SLASH_SLASH] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(279), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_TILDE] = ACTIONS(315), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [anon_sym_lambda] = ACTIONS(317), - [anon_sym_PLUS_EQ] = ACTIONS(319), - [anon_sym_DASH_EQ] = ACTIONS(319), - [anon_sym_STAR_EQ] = ACTIONS(319), - [anon_sym_SLASH_EQ] = ACTIONS(319), - [anon_sym_AT_EQ] = ACTIONS(319), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(319), - [anon_sym_PERCENT_EQ] = ACTIONS(319), - [anon_sym_STAR_STAR_EQ] = ACTIONS(319), - [anon_sym_GT_GT_EQ] = ACTIONS(319), - [anon_sym_LT_LT_EQ] = ACTIONS(319), - [anon_sym_AMP_EQ] = ACTIONS(319), - [anon_sym_CARET_EQ] = ACTIONS(319), - [anon_sym_PIPE_EQ] = ACTIONS(319), - [sym_ellipsis] = ACTIONS(321), - [sym_integer] = ACTIONS(323), - [sym_float] = ACTIONS(321), - [anon_sym_await] = ACTIONS(325), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [sym_none] = ACTIONS(323), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(277), - [sym_string_start] = ACTIONS(327), - }, - [87] = { - [sym__simple_statements] = STATE(2526), - [sym_import_statement] = STATE(2299), - [sym_future_import_statement] = STATE(2299), - [sym_import_from_statement] = STATE(2299), - [sym_print_statement] = STATE(2299), - [sym_assert_statement] = STATE(2299), - [sym_expression_statement] = STATE(2299), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2299), - [sym_delete_statement] = STATE(2299), - [sym_raise_statement] = STATE(2299), - [sym_pass_statement] = STATE(2299), - [sym_break_statement] = STATE(2299), - [sym_continue_statement] = STATE(2299), - [sym_global_statement] = STATE(2299), - [sym_nonlocal_statement] = STATE(2299), - [sym_exec_statement] = STATE(2299), - [sym_type_alias_statement] = STATE(2299), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(87)] = { + [sym__simple_statements] = STATE(615), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20039,8 +20309,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -20066,59 +20336,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(419), [sym_string_start] = ACTIONS(81), }, - [88] = { - [sym__simple_statements] = STATE(725), - [sym_import_statement] = STATE(2376), - [sym_future_import_statement] = STATE(2376), - [sym_import_from_statement] = STATE(2376), - [sym_print_statement] = STATE(2376), - [sym_assert_statement] = STATE(2376), - [sym_expression_statement] = STATE(2376), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2376), - [sym_delete_statement] = STATE(2376), - [sym_raise_statement] = STATE(2376), - [sym_pass_statement] = STATE(2376), - [sym_break_statement] = STATE(2376), - [sym_continue_statement] = STATE(2376), - [sym_global_statement] = STATE(2376), - [sym_nonlocal_statement] = STATE(2376), - [sym_exec_statement] = STATE(2376), - [sym_type_alias_statement] = STATE(2376), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(88)] = { + [sym__simple_statements] = STATE(692), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20132,8 +20402,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -20159,59 +20429,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(423), [sym_string_start] = ACTIONS(81), }, - [89] = { - [sym__simple_statements] = STATE(830), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(89)] = { + [sym__simple_statements] = STATE(741), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20225,8 +20495,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -20252,59 +20522,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(427), [sym_string_start] = ACTIONS(81), }, - [90] = { - [sym__simple_statements] = STATE(719), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(90)] = { + [sym__simple_statements] = STATE(743), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20318,8 +20588,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -20345,59 +20615,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(431), [sym_string_start] = ACTIONS(81), }, - [91] = { - [sym__simple_statements] = STATE(698), - [sym_import_statement] = STATE(2341), - [sym_future_import_statement] = STATE(2341), - [sym_import_from_statement] = STATE(2341), - [sym_print_statement] = STATE(2341), - [sym_assert_statement] = STATE(2341), - [sym_expression_statement] = STATE(2341), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2341), - [sym_delete_statement] = STATE(2341), - [sym_raise_statement] = STATE(2341), - [sym_pass_statement] = STATE(2341), - [sym_break_statement] = STATE(2341), - [sym_continue_statement] = STATE(2341), - [sym_global_statement] = STATE(2341), - [sym_nonlocal_statement] = STATE(2341), - [sym_exec_statement] = STATE(2341), - [sym_type_alias_statement] = STATE(2341), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(91)] = { + [sym__simple_statements] = STATE(753), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20411,8 +20681,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -20438,59 +20708,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(435), [sym_string_start] = ACTIONS(81), }, - [92] = { - [sym__simple_statements] = STATE(832), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(92)] = { + [sym__simple_statements] = STATE(702), + [sym_import_statement] = STATE(2314), + [sym_future_import_statement] = STATE(2314), + [sym_import_from_statement] = STATE(2314), + [sym_print_statement] = STATE(2314), + [sym_assert_statement] = STATE(2314), + [sym_expression_statement] = STATE(2314), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2314), + [sym_delete_statement] = STATE(2314), + [sym_raise_statement] = STATE(2314), + [sym_pass_statement] = STATE(2314), + [sym_break_statement] = STATE(2314), + [sym_continue_statement] = STATE(2314), + [sym_global_statement] = STATE(2314), + [sym_nonlocal_statement] = STATE(2314), + [sym_exec_statement] = STATE(2314), + [sym_type_alias_statement] = STATE(2314), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20504,8 +20774,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -20531,59 +20801,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(439), [sym_string_start] = ACTIONS(81), }, - [93] = { - [sym__simple_statements] = STATE(715), - [sym_import_statement] = STATE(2376), - [sym_future_import_statement] = STATE(2376), - [sym_import_from_statement] = STATE(2376), - [sym_print_statement] = STATE(2376), - [sym_assert_statement] = STATE(2376), - [sym_expression_statement] = STATE(2376), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2376), - [sym_delete_statement] = STATE(2376), - [sym_raise_statement] = STATE(2376), - [sym_pass_statement] = STATE(2376), - [sym_break_statement] = STATE(2376), - [sym_continue_statement] = STATE(2376), - [sym_global_statement] = STATE(2376), - [sym_nonlocal_statement] = STATE(2376), - [sym_exec_statement] = STATE(2376), - [sym_type_alias_statement] = STATE(2376), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(93)] = { + [sym__simple_statements] = STATE(768), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20597,8 +20867,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -20624,59 +20894,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(443), [sym_string_start] = ACTIONS(81), }, - [94] = { - [sym__simple_statements] = STATE(836), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(94)] = { + [sym__simple_statements] = STATE(2492), + [sym_import_statement] = STATE(2320), + [sym_future_import_statement] = STATE(2320), + [sym_import_from_statement] = STATE(2320), + [sym_print_statement] = STATE(2320), + [sym_assert_statement] = STATE(2320), + [sym_expression_statement] = STATE(2320), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2320), + [sym_delete_statement] = STATE(2320), + [sym_raise_statement] = STATE(2320), + [sym_pass_statement] = STATE(2320), + [sym_break_statement] = STATE(2320), + [sym_continue_statement] = STATE(2320), + [sym_global_statement] = STATE(2320), + [sym_nonlocal_statement] = STATE(2320), + [sym_exec_statement] = STATE(2320), + [sym_type_alias_statement] = STATE(2320), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20690,8 +20960,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -20717,59 +20987,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(447), [sym_string_start] = ACTIONS(81), }, - [95] = { - [sym__simple_statements] = STATE(779), - [sym_import_statement] = STATE(2376), - [sym_future_import_statement] = STATE(2376), - [sym_import_from_statement] = STATE(2376), - [sym_print_statement] = STATE(2376), - [sym_assert_statement] = STATE(2376), - [sym_expression_statement] = STATE(2376), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2376), - [sym_delete_statement] = STATE(2376), - [sym_raise_statement] = STATE(2376), - [sym_pass_statement] = STATE(2376), - [sym_break_statement] = STATE(2376), - [sym_continue_statement] = STATE(2376), - [sym_global_statement] = STATE(2376), - [sym_nonlocal_statement] = STATE(2376), - [sym_exec_statement] = STATE(2376), - [sym_type_alias_statement] = STATE(2376), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(95)] = { + [sym__simple_statements] = STATE(771), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20783,8 +21053,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -20810,59 +21080,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(451), [sym_string_start] = ACTIONS(81), }, - [96] = { - [sym__simple_statements] = STATE(838), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(96)] = { + [sym__simple_statements] = STATE(772), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20876,8 +21146,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -20903,59 +21173,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(455), [sym_string_start] = ACTIONS(81), }, - [97] = { - [sym__simple_statements] = STATE(709), - [sym_import_statement] = STATE(2376), - [sym_future_import_statement] = STATE(2376), - [sym_import_from_statement] = STATE(2376), - [sym_print_statement] = STATE(2376), - [sym_assert_statement] = STATE(2376), - [sym_expression_statement] = STATE(2376), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2376), - [sym_delete_statement] = STATE(2376), - [sym_raise_statement] = STATE(2376), - [sym_pass_statement] = STATE(2376), - [sym_break_statement] = STATE(2376), - [sym_continue_statement] = STATE(2376), - [sym_global_statement] = STATE(2376), - [sym_nonlocal_statement] = STATE(2376), - [sym_exec_statement] = STATE(2376), - [sym_type_alias_statement] = STATE(2376), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(97)] = { + [sym__simple_statements] = STATE(745), + [sym_import_statement] = STATE(2314), + [sym_future_import_statement] = STATE(2314), + [sym_import_from_statement] = STATE(2314), + [sym_print_statement] = STATE(2314), + [sym_assert_statement] = STATE(2314), + [sym_expression_statement] = STATE(2314), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2314), + [sym_delete_statement] = STATE(2314), + [sym_raise_statement] = STATE(2314), + [sym_pass_statement] = STATE(2314), + [sym_break_statement] = STATE(2314), + [sym_continue_statement] = STATE(2314), + [sym_global_statement] = STATE(2314), + [sym_nonlocal_statement] = STATE(2314), + [sym_exec_statement] = STATE(2314), + [sym_type_alias_statement] = STATE(2314), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20969,8 +21239,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -20996,59 +21266,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(459), [sym_string_start] = ACTIONS(81), }, - [98] = { - [sym__simple_statements] = STATE(726), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(98)] = { + [sym__simple_statements] = STATE(795), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21062,8 +21332,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21089,59 +21359,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(463), [sym_string_start] = ACTIONS(81), }, - [99] = { - [sym__simple_statements] = STATE(712), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(99)] = { + [sym__simple_statements] = STATE(700), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21155,8 +21425,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21182,59 +21452,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(467), [sym_string_start] = ACTIONS(81), }, - [100] = { - [sym__simple_statements] = STATE(618), - [sym_import_statement] = STATE(2376), - [sym_future_import_statement] = STATE(2376), - [sym_import_from_statement] = STATE(2376), - [sym_print_statement] = STATE(2376), - [sym_assert_statement] = STATE(2376), - [sym_expression_statement] = STATE(2376), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2376), - [sym_delete_statement] = STATE(2376), - [sym_raise_statement] = STATE(2376), - [sym_pass_statement] = STATE(2376), - [sym_break_statement] = STATE(2376), - [sym_continue_statement] = STATE(2376), - [sym_global_statement] = STATE(2376), - [sym_nonlocal_statement] = STATE(2376), - [sym_exec_statement] = STATE(2376), - [sym_type_alias_statement] = STATE(2376), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(100)] = { + [sym__simple_statements] = STATE(666), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21248,8 +21518,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21275,59 +21545,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(471), [sym_string_start] = ACTIONS(81), }, - [101] = { - [sym__simple_statements] = STATE(846), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(101)] = { + [sym__simple_statements] = STATE(804), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21341,8 +21611,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21368,59 +21638,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(475), [sym_string_start] = ACTIONS(81), }, - [102] = { - [sym__simple_statements] = STATE(751), - [sym_import_statement] = STATE(2376), - [sym_future_import_statement] = STATE(2376), - [sym_import_from_statement] = STATE(2376), - [sym_print_statement] = STATE(2376), - [sym_assert_statement] = STATE(2376), - [sym_expression_statement] = STATE(2376), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2376), - [sym_delete_statement] = STATE(2376), - [sym_raise_statement] = STATE(2376), - [sym_pass_statement] = STATE(2376), - [sym_break_statement] = STATE(2376), - [sym_continue_statement] = STATE(2376), - [sym_global_statement] = STATE(2376), - [sym_nonlocal_statement] = STATE(2376), - [sym_exec_statement] = STATE(2376), - [sym_type_alias_statement] = STATE(2376), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(102)] = { + [sym__simple_statements] = STATE(619), + [sym_import_statement] = STATE(2314), + [sym_future_import_statement] = STATE(2314), + [sym_import_from_statement] = STATE(2314), + [sym_print_statement] = STATE(2314), + [sym_assert_statement] = STATE(2314), + [sym_expression_statement] = STATE(2314), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2314), + [sym_delete_statement] = STATE(2314), + [sym_raise_statement] = STATE(2314), + [sym_pass_statement] = STATE(2314), + [sym_break_statement] = STATE(2314), + [sym_continue_statement] = STATE(2314), + [sym_global_statement] = STATE(2314), + [sym_nonlocal_statement] = STATE(2314), + [sym_exec_statement] = STATE(2314), + [sym_type_alias_statement] = STATE(2314), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21434,8 +21704,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21461,59 +21731,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(479), [sym_string_start] = ACTIONS(81), }, - [103] = { - [sym__simple_statements] = STATE(810), - [sym_import_statement] = STATE(2376), - [sym_future_import_statement] = STATE(2376), - [sym_import_from_statement] = STATE(2376), - [sym_print_statement] = STATE(2376), - [sym_assert_statement] = STATE(2376), - [sym_expression_statement] = STATE(2376), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2376), - [sym_delete_statement] = STATE(2376), - [sym_raise_statement] = STATE(2376), - [sym_pass_statement] = STATE(2376), - [sym_break_statement] = STATE(2376), - [sym_continue_statement] = STATE(2376), - [sym_global_statement] = STATE(2376), - [sym_nonlocal_statement] = STATE(2376), - [sym_exec_statement] = STATE(2376), - [sym_type_alias_statement] = STATE(2376), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(103)] = { + [sym__simple_statements] = STATE(809), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21527,8 +21797,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21554,59 +21824,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(483), [sym_string_start] = ACTIONS(81), }, - [104] = { - [sym__simple_statements] = STATE(676), - [sym_import_statement] = STATE(2341), - [sym_future_import_statement] = STATE(2341), - [sym_import_from_statement] = STATE(2341), - [sym_print_statement] = STATE(2341), - [sym_assert_statement] = STATE(2341), - [sym_expression_statement] = STATE(2341), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2341), - [sym_delete_statement] = STATE(2341), - [sym_raise_statement] = STATE(2341), - [sym_pass_statement] = STATE(2341), - [sym_break_statement] = STATE(2341), - [sym_continue_statement] = STATE(2341), - [sym_global_statement] = STATE(2341), - [sym_nonlocal_statement] = STATE(2341), - [sym_exec_statement] = STATE(2341), - [sym_type_alias_statement] = STATE(2341), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(104)] = { + [sym__simple_statements] = STATE(748), + [sym_import_statement] = STATE(2314), + [sym_future_import_statement] = STATE(2314), + [sym_import_from_statement] = STATE(2314), + [sym_print_statement] = STATE(2314), + [sym_assert_statement] = STATE(2314), + [sym_expression_statement] = STATE(2314), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2314), + [sym_delete_statement] = STATE(2314), + [sym_raise_statement] = STATE(2314), + [sym_pass_statement] = STATE(2314), + [sym_break_statement] = STATE(2314), + [sym_continue_statement] = STATE(2314), + [sym_global_statement] = STATE(2314), + [sym_nonlocal_statement] = STATE(2314), + [sym_exec_statement] = STATE(2314), + [sym_type_alias_statement] = STATE(2314), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21620,8 +21890,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21647,59 +21917,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(487), [sym_string_start] = ACTIONS(81), }, - [105] = { - [sym__simple_statements] = STATE(650), - [sym_import_statement] = STATE(2374), - [sym_future_import_statement] = STATE(2374), - [sym_import_from_statement] = STATE(2374), - [sym_print_statement] = STATE(2374), - [sym_assert_statement] = STATE(2374), - [sym_expression_statement] = STATE(2374), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2374), - [sym_delete_statement] = STATE(2374), - [sym_raise_statement] = STATE(2374), - [sym_pass_statement] = STATE(2374), - [sym_break_statement] = STATE(2374), - [sym_continue_statement] = STATE(2374), - [sym_global_statement] = STATE(2374), - [sym_nonlocal_statement] = STATE(2374), - [sym_exec_statement] = STATE(2374), - [sym_type_alias_statement] = STATE(2374), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(105)] = { + [sym__simple_statements] = STATE(813), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21713,8 +21983,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21740,59 +22010,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(491), [sym_string_start] = ACTIONS(81), }, - [106] = { - [sym__simple_statements] = STATE(793), - [sym_import_statement] = STATE(2376), - [sym_future_import_statement] = STATE(2376), - [sym_import_from_statement] = STATE(2376), - [sym_print_statement] = STATE(2376), - [sym_assert_statement] = STATE(2376), - [sym_expression_statement] = STATE(2376), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2376), - [sym_delete_statement] = STATE(2376), - [sym_raise_statement] = STATE(2376), - [sym_pass_statement] = STATE(2376), - [sym_break_statement] = STATE(2376), - [sym_continue_statement] = STATE(2376), - [sym_global_statement] = STATE(2376), - [sym_nonlocal_statement] = STATE(2376), - [sym_exec_statement] = STATE(2376), - [sym_type_alias_statement] = STATE(2376), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(106)] = { + [sym__simple_statements] = STATE(751), + [sym_import_statement] = STATE(2314), + [sym_future_import_statement] = STATE(2314), + [sym_import_from_statement] = STATE(2314), + [sym_print_statement] = STATE(2314), + [sym_assert_statement] = STATE(2314), + [sym_expression_statement] = STATE(2314), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2314), + [sym_delete_statement] = STATE(2314), + [sym_raise_statement] = STATE(2314), + [sym_pass_statement] = STATE(2314), + [sym_break_statement] = STATE(2314), + [sym_continue_statement] = STATE(2314), + [sym_global_statement] = STATE(2314), + [sym_nonlocal_statement] = STATE(2314), + [sym_exec_statement] = STATE(2314), + [sym_type_alias_statement] = STATE(2314), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21806,8 +22076,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21833,59 +22103,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(495), [sym_string_start] = ACTIONS(81), }, - [107] = { - [sym__simple_statements] = STATE(759), - [sym_import_statement] = STATE(2376), - [sym_future_import_statement] = STATE(2376), - [sym_import_from_statement] = STATE(2376), - [sym_print_statement] = STATE(2376), - [sym_assert_statement] = STATE(2376), - [sym_expression_statement] = STATE(2376), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2376), - [sym_delete_statement] = STATE(2376), - [sym_raise_statement] = STATE(2376), - [sym_pass_statement] = STATE(2376), - [sym_break_statement] = STATE(2376), - [sym_continue_statement] = STATE(2376), - [sym_global_statement] = STATE(2376), - [sym_nonlocal_statement] = STATE(2376), - [sym_exec_statement] = STATE(2376), - [sym_type_alias_statement] = STATE(2376), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(107)] = { + [sym__simple_statements] = STATE(711), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21899,8 +22169,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21926,59 +22196,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(499), [sym_string_start] = ACTIONS(81), }, - [108] = { - [sym__simple_statements] = STATE(797), - [sym_import_statement] = STATE(2376), - [sym_future_import_statement] = STATE(2376), - [sym_import_from_statement] = STATE(2376), - [sym_print_statement] = STATE(2376), - [sym_assert_statement] = STATE(2376), - [sym_expression_statement] = STATE(2376), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2376), - [sym_delete_statement] = STATE(2376), - [sym_raise_statement] = STATE(2376), - [sym_pass_statement] = STATE(2376), - [sym_break_statement] = STATE(2376), - [sym_continue_statement] = STATE(2376), - [sym_global_statement] = STATE(2376), - [sym_nonlocal_statement] = STATE(2376), - [sym_exec_statement] = STATE(2376), - [sym_type_alias_statement] = STATE(2376), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(108)] = { + [sym__simple_statements] = STATE(705), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21992,8 +22262,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22019,59 +22289,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(503), [sym_string_start] = ACTIONS(81), }, - [109] = { - [sym__simple_statements] = STATE(700), - [sym_import_statement] = STATE(2376), - [sym_future_import_statement] = STATE(2376), - [sym_import_from_statement] = STATE(2376), - [sym_print_statement] = STATE(2376), - [sym_assert_statement] = STATE(2376), - [sym_expression_statement] = STATE(2376), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2376), - [sym_delete_statement] = STATE(2376), - [sym_raise_statement] = STATE(2376), - [sym_pass_statement] = STATE(2376), - [sym_break_statement] = STATE(2376), - [sym_continue_statement] = STATE(2376), - [sym_global_statement] = STATE(2376), - [sym_nonlocal_statement] = STATE(2376), - [sym_exec_statement] = STATE(2376), - [sym_type_alias_statement] = STATE(2376), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(109)] = { + [sym__simple_statements] = STATE(1788), + [sym_import_statement] = STATE(2424), + [sym_future_import_statement] = STATE(2424), + [sym_import_from_statement] = STATE(2424), + [sym_print_statement] = STATE(2424), + [sym_assert_statement] = STATE(2424), + [sym_expression_statement] = STATE(2424), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2424), + [sym_delete_statement] = STATE(2424), + [sym_raise_statement] = STATE(2424), + [sym_pass_statement] = STATE(2424), + [sym_break_statement] = STATE(2424), + [sym_continue_statement] = STATE(2424), + [sym_global_statement] = STATE(2424), + [sym_nonlocal_statement] = STATE(2424), + [sym_exec_statement] = STATE(2424), + [sym_type_alias_statement] = STATE(2424), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22085,8 +22355,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22112,59 +22382,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(507), [sym_string_start] = ACTIONS(81), }, - [110] = { - [sym__simple_statements] = STATE(710), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(110)] = { + [sym__simple_statements] = STATE(695), + [sym_import_statement] = STATE(2314), + [sym_future_import_statement] = STATE(2314), + [sym_import_from_statement] = STATE(2314), + [sym_print_statement] = STATE(2314), + [sym_assert_statement] = STATE(2314), + [sym_expression_statement] = STATE(2314), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2314), + [sym_delete_statement] = STATE(2314), + [sym_raise_statement] = STATE(2314), + [sym_pass_statement] = STATE(2314), + [sym_break_statement] = STATE(2314), + [sym_continue_statement] = STATE(2314), + [sym_global_statement] = STATE(2314), + [sym_nonlocal_statement] = STATE(2314), + [sym_exec_statement] = STATE(2314), + [sym_type_alias_statement] = STATE(2314), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22178,8 +22448,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22205,59 +22475,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(511), [sym_string_start] = ACTIONS(81), }, - [111] = { - [sym__simple_statements] = STATE(2518), - [sym_import_statement] = STATE(2299), - [sym_future_import_statement] = STATE(2299), - [sym_import_from_statement] = STATE(2299), - [sym_print_statement] = STATE(2299), - [sym_assert_statement] = STATE(2299), - [sym_expression_statement] = STATE(2299), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2299), - [sym_delete_statement] = STATE(2299), - [sym_raise_statement] = STATE(2299), - [sym_pass_statement] = STATE(2299), - [sym_break_statement] = STATE(2299), - [sym_continue_statement] = STATE(2299), - [sym_global_statement] = STATE(2299), - [sym_nonlocal_statement] = STATE(2299), - [sym_exec_statement] = STATE(2299), - [sym_type_alias_statement] = STATE(2299), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(111)] = { + [sym__simple_statements] = STATE(767), + [sym_import_statement] = STATE(2314), + [sym_future_import_statement] = STATE(2314), + [sym_import_from_statement] = STATE(2314), + [sym_print_statement] = STATE(2314), + [sym_assert_statement] = STATE(2314), + [sym_expression_statement] = STATE(2314), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2314), + [sym_delete_statement] = STATE(2314), + [sym_raise_statement] = STATE(2314), + [sym_pass_statement] = STATE(2314), + [sym_break_statement] = STATE(2314), + [sym_continue_statement] = STATE(2314), + [sym_global_statement] = STATE(2314), + [sym_nonlocal_statement] = STATE(2314), + [sym_exec_statement] = STATE(2314), + [sym_type_alias_statement] = STATE(2314), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22271,8 +22541,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22298,59 +22568,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(515), [sym_string_start] = ACTIONS(81), }, - [112] = { - [sym__simple_statements] = STATE(703), - [sym_import_statement] = STATE(2376), - [sym_future_import_statement] = STATE(2376), - [sym_import_from_statement] = STATE(2376), - [sym_print_statement] = STATE(2376), - [sym_assert_statement] = STATE(2376), - [sym_expression_statement] = STATE(2376), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2376), - [sym_delete_statement] = STATE(2376), - [sym_raise_statement] = STATE(2376), - [sym_pass_statement] = STATE(2376), - [sym_break_statement] = STATE(2376), - [sym_continue_statement] = STATE(2376), - [sym_global_statement] = STATE(2376), - [sym_nonlocal_statement] = STATE(2376), - [sym_exec_statement] = STATE(2376), - [sym_type_alias_statement] = STATE(2376), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(112)] = { + [sym__simple_statements] = STATE(677), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22364,8 +22634,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22391,59 +22661,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(519), [sym_string_start] = ACTIONS(81), }, - [113] = { - [sym__simple_statements] = STATE(615), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(113)] = { + [sym__simple_statements] = STATE(653), + [sym_import_statement] = STATE(2351), + [sym_future_import_statement] = STATE(2351), + [sym_import_from_statement] = STATE(2351), + [sym_print_statement] = STATE(2351), + [sym_assert_statement] = STATE(2351), + [sym_expression_statement] = STATE(2351), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2351), + [sym_delete_statement] = STATE(2351), + [sym_raise_statement] = STATE(2351), + [sym_pass_statement] = STATE(2351), + [sym_break_statement] = STATE(2351), + [sym_continue_statement] = STATE(2351), + [sym_global_statement] = STATE(2351), + [sym_nonlocal_statement] = STATE(2351), + [sym_exec_statement] = STATE(2351), + [sym_type_alias_statement] = STATE(2351), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22457,8 +22727,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22484,59 +22754,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(523), [sym_string_start] = ACTIONS(81), }, - [114] = { - [sym__simple_statements] = STATE(713), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(114)] = { + [sym__simple_statements] = STATE(696), + [sym_import_statement] = STATE(2314), + [sym_future_import_statement] = STATE(2314), + [sym_import_from_statement] = STATE(2314), + [sym_print_statement] = STATE(2314), + [sym_assert_statement] = STATE(2314), + [sym_expression_statement] = STATE(2314), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2314), + [sym_delete_statement] = STATE(2314), + [sym_raise_statement] = STATE(2314), + [sym_pass_statement] = STATE(2314), + [sym_break_statement] = STATE(2314), + [sym_continue_statement] = STATE(2314), + [sym_global_statement] = STATE(2314), + [sym_nonlocal_statement] = STATE(2314), + [sym_exec_statement] = STATE(2314), + [sym_type_alias_statement] = STATE(2314), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22550,8 +22820,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22577,59 +22847,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(527), [sym_string_start] = ACTIONS(81), }, - [115] = { - [sym__simple_statements] = STATE(669), - [sym_import_statement] = STATE(2436), - [sym_future_import_statement] = STATE(2436), - [sym_import_from_statement] = STATE(2436), - [sym_print_statement] = STATE(2436), - [sym_assert_statement] = STATE(2436), - [sym_expression_statement] = STATE(2436), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2436), - [sym_delete_statement] = STATE(2436), - [sym_raise_statement] = STATE(2436), - [sym_pass_statement] = STATE(2436), - [sym_break_statement] = STATE(2436), - [sym_continue_statement] = STATE(2436), - [sym_global_statement] = STATE(2436), - [sym_nonlocal_statement] = STATE(2436), - [sym_exec_statement] = STATE(2436), - [sym_type_alias_statement] = STATE(2436), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(115)] = { + [sym__simple_statements] = STATE(2482), + [sym_import_statement] = STATE(2320), + [sym_future_import_statement] = STATE(2320), + [sym_import_from_statement] = STATE(2320), + [sym_print_statement] = STATE(2320), + [sym_assert_statement] = STATE(2320), + [sym_expression_statement] = STATE(2320), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2320), + [sym_delete_statement] = STATE(2320), + [sym_raise_statement] = STATE(2320), + [sym_pass_statement] = STATE(2320), + [sym_break_statement] = STATE(2320), + [sym_continue_statement] = STATE(2320), + [sym_global_statement] = STATE(2320), + [sym_nonlocal_statement] = STATE(2320), + [sym_exec_statement] = STATE(2320), + [sym_type_alias_statement] = STATE(2320), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22643,8 +22913,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22670,59 +22940,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(531), [sym_string_start] = ACTIONS(81), }, - [116] = { - [sym__simple_statements] = STATE(2576), - [sym_import_statement] = STATE(2299), - [sym_future_import_statement] = STATE(2299), - [sym_import_from_statement] = STATE(2299), - [sym_print_statement] = STATE(2299), - [sym_assert_statement] = STATE(2299), - [sym_expression_statement] = STATE(2299), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2299), - [sym_delete_statement] = STATE(2299), - [sym_raise_statement] = STATE(2299), - [sym_pass_statement] = STATE(2299), - [sym_break_statement] = STATE(2299), - [sym_continue_statement] = STATE(2299), - [sym_global_statement] = STATE(2299), - [sym_nonlocal_statement] = STATE(2299), - [sym_exec_statement] = STATE(2299), - [sym_type_alias_statement] = STATE(2299), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(116)] = { + [sym__simple_statements] = STATE(659), + [sym_import_statement] = STATE(2314), + [sym_future_import_statement] = STATE(2314), + [sym_import_from_statement] = STATE(2314), + [sym_print_statement] = STATE(2314), + [sym_assert_statement] = STATE(2314), + [sym_expression_statement] = STATE(2314), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2314), + [sym_delete_statement] = STATE(2314), + [sym_raise_statement] = STATE(2314), + [sym_pass_statement] = STATE(2314), + [sym_break_statement] = STATE(2314), + [sym_continue_statement] = STATE(2314), + [sym_global_statement] = STATE(2314), + [sym_nonlocal_statement] = STATE(2314), + [sym_exec_statement] = STATE(2314), + [sym_type_alias_statement] = STATE(2314), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22736,8 +23006,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22763,59 +23033,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(535), [sym_string_start] = ACTIONS(81), }, - [117] = { - [sym__simple_statements] = STATE(745), - [sym_import_statement] = STATE(2376), - [sym_future_import_statement] = STATE(2376), - [sym_import_from_statement] = STATE(2376), - [sym_print_statement] = STATE(2376), - [sym_assert_statement] = STATE(2376), - [sym_expression_statement] = STATE(2376), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2376), - [sym_delete_statement] = STATE(2376), - [sym_raise_statement] = STATE(2376), - [sym_pass_statement] = STATE(2376), - [sym_break_statement] = STATE(2376), - [sym_continue_statement] = STATE(2376), - [sym_global_statement] = STATE(2376), - [sym_nonlocal_statement] = STATE(2376), - [sym_exec_statement] = STATE(2376), - [sym_type_alias_statement] = STATE(2376), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(117)] = { + [sym__simple_statements] = STATE(2490), + [sym_import_statement] = STATE(2320), + [sym_future_import_statement] = STATE(2320), + [sym_import_from_statement] = STATE(2320), + [sym_print_statement] = STATE(2320), + [sym_assert_statement] = STATE(2320), + [sym_expression_statement] = STATE(2320), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2320), + [sym_delete_statement] = STATE(2320), + [sym_raise_statement] = STATE(2320), + [sym_pass_statement] = STATE(2320), + [sym_break_statement] = STATE(2320), + [sym_continue_statement] = STATE(2320), + [sym_global_statement] = STATE(2320), + [sym_nonlocal_statement] = STATE(2320), + [sym_exec_statement] = STATE(2320), + [sym_type_alias_statement] = STATE(2320), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22829,8 +23099,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22856,59 +23126,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(539), [sym_string_start] = ACTIONS(81), }, - [118] = { - [sym__simple_statements] = STATE(806), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(118)] = { + [sym__simple_statements] = STATE(686), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22922,8 +23192,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22949,59 +23219,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(543), [sym_string_start] = ACTIONS(81), }, - [119] = { - [sym__simple_statements] = STATE(2581), - [sym_import_statement] = STATE(2299), - [sym_future_import_statement] = STATE(2299), - [sym_import_from_statement] = STATE(2299), - [sym_print_statement] = STATE(2299), - [sym_assert_statement] = STATE(2299), - [sym_expression_statement] = STATE(2299), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2299), - [sym_delete_statement] = STATE(2299), - [sym_raise_statement] = STATE(2299), - [sym_pass_statement] = STATE(2299), - [sym_break_statement] = STATE(2299), - [sym_continue_statement] = STATE(2299), - [sym_global_statement] = STATE(2299), - [sym_nonlocal_statement] = STATE(2299), - [sym_exec_statement] = STATE(2299), - [sym_type_alias_statement] = STATE(2299), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(119)] = { + [sym__simple_statements] = STATE(773), + [sym_import_statement] = STATE(2314), + [sym_future_import_statement] = STATE(2314), + [sym_import_from_statement] = STATE(2314), + [sym_print_statement] = STATE(2314), + [sym_assert_statement] = STATE(2314), + [sym_expression_statement] = STATE(2314), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2314), + [sym_delete_statement] = STATE(2314), + [sym_raise_statement] = STATE(2314), + [sym_pass_statement] = STATE(2314), + [sym_break_statement] = STATE(2314), + [sym_continue_statement] = STATE(2314), + [sym_global_statement] = STATE(2314), + [sym_nonlocal_statement] = STATE(2314), + [sym_exec_statement] = STATE(2314), + [sym_type_alias_statement] = STATE(2314), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23015,8 +23285,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23042,59 +23312,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(547), [sym_string_start] = ACTIONS(81), }, - [120] = { - [sym__simple_statements] = STATE(807), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(120)] = { + [sym__simple_statements] = STATE(658), + [sym_import_statement] = STATE(2314), + [sym_future_import_statement] = STATE(2314), + [sym_import_from_statement] = STATE(2314), + [sym_print_statement] = STATE(2314), + [sym_assert_statement] = STATE(2314), + [sym_expression_statement] = STATE(2314), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2314), + [sym_delete_statement] = STATE(2314), + [sym_raise_statement] = STATE(2314), + [sym_pass_statement] = STATE(2314), + [sym_break_statement] = STATE(2314), + [sym_continue_statement] = STATE(2314), + [sym_global_statement] = STATE(2314), + [sym_nonlocal_statement] = STATE(2314), + [sym_exec_statement] = STATE(2314), + [sym_type_alias_statement] = STATE(2314), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23108,8 +23378,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23135,59 +23405,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(551), [sym_string_start] = ACTIONS(81), }, - [121] = { - [sym__simple_statements] = STATE(1788), - [sym_import_statement] = STATE(2452), - [sym_future_import_statement] = STATE(2452), - [sym_import_from_statement] = STATE(2452), - [sym_print_statement] = STATE(2452), - [sym_assert_statement] = STATE(2452), - [sym_expression_statement] = STATE(2452), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2452), - [sym_delete_statement] = STATE(2452), - [sym_raise_statement] = STATE(2452), - [sym_pass_statement] = STATE(2452), - [sym_break_statement] = STATE(2452), - [sym_continue_statement] = STATE(2452), - [sym_global_statement] = STATE(2452), - [sym_nonlocal_statement] = STATE(2452), - [sym_exec_statement] = STATE(2452), - [sym_type_alias_statement] = STATE(2452), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(121)] = { + [sym__simple_statements] = STATE(778), + [sym_import_statement] = STATE(2314), + [sym_future_import_statement] = STATE(2314), + [sym_import_from_statement] = STATE(2314), + [sym_print_statement] = STATE(2314), + [sym_assert_statement] = STATE(2314), + [sym_expression_statement] = STATE(2314), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2314), + [sym_delete_statement] = STATE(2314), + [sym_raise_statement] = STATE(2314), + [sym_pass_statement] = STATE(2314), + [sym_break_statement] = STATE(2314), + [sym_continue_statement] = STATE(2314), + [sym_global_statement] = STATE(2314), + [sym_nonlocal_statement] = STATE(2314), + [sym_exec_statement] = STATE(2314), + [sym_type_alias_statement] = STATE(2314), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23201,8 +23471,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23228,59 +23498,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(555), [sym_string_start] = ACTIONS(81), }, - [122] = { - [sym__simple_statements] = STATE(668), - [sym_import_statement] = STATE(2341), - [sym_future_import_statement] = STATE(2341), - [sym_import_from_statement] = STATE(2341), - [sym_print_statement] = STATE(2341), - [sym_assert_statement] = STATE(2341), - [sym_expression_statement] = STATE(2341), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2341), - [sym_delete_statement] = STATE(2341), - [sym_raise_statement] = STATE(2341), - [sym_pass_statement] = STATE(2341), - [sym_break_statement] = STATE(2341), - [sym_continue_statement] = STATE(2341), - [sym_global_statement] = STATE(2341), - [sym_nonlocal_statement] = STATE(2341), - [sym_exec_statement] = STATE(2341), - [sym_type_alias_statement] = STATE(2341), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(122)] = { + [sym__simple_statements] = STATE(2524), + [sym_import_statement] = STATE(2320), + [sym_future_import_statement] = STATE(2320), + [sym_import_from_statement] = STATE(2320), + [sym_print_statement] = STATE(2320), + [sym_assert_statement] = STATE(2320), + [sym_expression_statement] = STATE(2320), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2320), + [sym_delete_statement] = STATE(2320), + [sym_raise_statement] = STATE(2320), + [sym_pass_statement] = STATE(2320), + [sym_break_statement] = STATE(2320), + [sym_continue_statement] = STATE(2320), + [sym_global_statement] = STATE(2320), + [sym_nonlocal_statement] = STATE(2320), + [sym_exec_statement] = STATE(2320), + [sym_type_alias_statement] = STATE(2320), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23294,8 +23564,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23321,59 +23591,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(559), [sym_string_start] = ACTIONS(81), }, - [123] = { - [sym__simple_statements] = STATE(815), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(123)] = { + [sym__simple_statements] = STATE(781), + [sym_import_statement] = STATE(2314), + [sym_future_import_statement] = STATE(2314), + [sym_import_from_statement] = STATE(2314), + [sym_print_statement] = STATE(2314), + [sym_assert_statement] = STATE(2314), + [sym_expression_statement] = STATE(2314), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2314), + [sym_delete_statement] = STATE(2314), + [sym_raise_statement] = STATE(2314), + [sym_pass_statement] = STATE(2314), + [sym_break_statement] = STATE(2314), + [sym_continue_statement] = STATE(2314), + [sym_global_statement] = STATE(2314), + [sym_nonlocal_statement] = STATE(2314), + [sym_exec_statement] = STATE(2314), + [sym_type_alias_statement] = STATE(2314), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23387,8 +23657,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23414,59 +23684,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(563), [sym_string_start] = ACTIONS(81), }, - [124] = { - [sym__simple_statements] = STATE(685), - [sym_import_statement] = STATE(2436), - [sym_future_import_statement] = STATE(2436), - [sym_import_from_statement] = STATE(2436), - [sym_print_statement] = STATE(2436), - [sym_assert_statement] = STATE(2436), - [sym_expression_statement] = STATE(2436), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2436), - [sym_delete_statement] = STATE(2436), - [sym_raise_statement] = STATE(2436), - [sym_pass_statement] = STATE(2436), - [sym_break_statement] = STATE(2436), - [sym_continue_statement] = STATE(2436), - [sym_global_statement] = STATE(2436), - [sym_nonlocal_statement] = STATE(2436), - [sym_exec_statement] = STATE(2436), - [sym_type_alias_statement] = STATE(2436), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(124)] = { + [sym__simple_statements] = STATE(2528), + [sym_import_statement] = STATE(2320), + [sym_future_import_statement] = STATE(2320), + [sym_import_from_statement] = STATE(2320), + [sym_print_statement] = STATE(2320), + [sym_assert_statement] = STATE(2320), + [sym_expression_statement] = STATE(2320), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2320), + [sym_delete_statement] = STATE(2320), + [sym_raise_statement] = STATE(2320), + [sym_pass_statement] = STATE(2320), + [sym_break_statement] = STATE(2320), + [sym_continue_statement] = STATE(2320), + [sym_global_statement] = STATE(2320), + [sym_nonlocal_statement] = STATE(2320), + [sym_exec_statement] = STATE(2320), + [sym_type_alias_statement] = STATE(2320), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23480,8 +23750,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23507,59 +23777,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(567), [sym_string_start] = ACTIONS(81), }, - [125] = { - [sym__simple_statements] = STATE(749), - [sym_import_statement] = STATE(2376), - [sym_future_import_statement] = STATE(2376), - [sym_import_from_statement] = STATE(2376), - [sym_print_statement] = STATE(2376), - [sym_assert_statement] = STATE(2376), - [sym_expression_statement] = STATE(2376), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2376), - [sym_delete_statement] = STATE(2376), - [sym_raise_statement] = STATE(2376), - [sym_pass_statement] = STATE(2376), - [sym_break_statement] = STATE(2376), - [sym_continue_statement] = STATE(2376), - [sym_global_statement] = STATE(2376), - [sym_nonlocal_statement] = STATE(2376), - [sym_exec_statement] = STATE(2376), - [sym_type_alias_statement] = STATE(2376), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(125)] = { + [sym__simple_statements] = STATE(713), + [sym_import_statement] = STATE(2314), + [sym_future_import_statement] = STATE(2314), + [sym_import_from_statement] = STATE(2314), + [sym_print_statement] = STATE(2314), + [sym_assert_statement] = STATE(2314), + [sym_expression_statement] = STATE(2314), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2314), + [sym_delete_statement] = STATE(2314), + [sym_raise_statement] = STATE(2314), + [sym_pass_statement] = STATE(2314), + [sym_break_statement] = STATE(2314), + [sym_continue_statement] = STATE(2314), + [sym_global_statement] = STATE(2314), + [sym_nonlocal_statement] = STATE(2314), + [sym_exec_statement] = STATE(2314), + [sym_type_alias_statement] = STATE(2314), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23573,8 +23843,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23600,59 +23870,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(571), [sym_string_start] = ACTIONS(81), }, - [126] = { - [sym__simple_statements] = STATE(791), - [sym_import_statement] = STATE(2376), - [sym_future_import_statement] = STATE(2376), - [sym_import_from_statement] = STATE(2376), - [sym_print_statement] = STATE(2376), - [sym_assert_statement] = STATE(2376), - [sym_expression_statement] = STATE(2376), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2376), - [sym_delete_statement] = STATE(2376), - [sym_raise_statement] = STATE(2376), - [sym_pass_statement] = STATE(2376), - [sym_break_statement] = STATE(2376), - [sym_continue_statement] = STATE(2376), - [sym_global_statement] = STATE(2376), - [sym_nonlocal_statement] = STATE(2376), - [sym_exec_statement] = STATE(2376), - [sym_type_alias_statement] = STATE(2376), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(126)] = { + [sym__simple_statements] = STATE(710), + [sym_import_statement] = STATE(2314), + [sym_future_import_statement] = STATE(2314), + [sym_import_from_statement] = STATE(2314), + [sym_print_statement] = STATE(2314), + [sym_assert_statement] = STATE(2314), + [sym_expression_statement] = STATE(2314), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2314), + [sym_delete_statement] = STATE(2314), + [sym_raise_statement] = STATE(2314), + [sym_pass_statement] = STATE(2314), + [sym_break_statement] = STATE(2314), + [sym_continue_statement] = STATE(2314), + [sym_global_statement] = STATE(2314), + [sym_nonlocal_statement] = STATE(2314), + [sym_exec_statement] = STATE(2314), + [sym_type_alias_statement] = STATE(2314), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23666,8 +23936,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23693,59 +23963,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(575), [sym_string_start] = ACTIONS(81), }, - [127] = { - [sym__simple_statements] = STATE(675), - [sym_import_statement] = STATE(2436), - [sym_future_import_statement] = STATE(2436), - [sym_import_from_statement] = STATE(2436), - [sym_print_statement] = STATE(2436), - [sym_assert_statement] = STATE(2436), - [sym_expression_statement] = STATE(2436), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2436), - [sym_delete_statement] = STATE(2436), - [sym_raise_statement] = STATE(2436), - [sym_pass_statement] = STATE(2436), - [sym_break_statement] = STATE(2436), - [sym_continue_statement] = STATE(2436), - [sym_global_statement] = STATE(2436), - [sym_nonlocal_statement] = STATE(2436), - [sym_exec_statement] = STATE(2436), - [sym_type_alias_statement] = STATE(2436), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(127)] = { + [sym__simple_statements] = STATE(699), + [sym_import_statement] = STATE(2314), + [sym_future_import_statement] = STATE(2314), + [sym_import_from_statement] = STATE(2314), + [sym_print_statement] = STATE(2314), + [sym_assert_statement] = STATE(2314), + [sym_expression_statement] = STATE(2314), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2314), + [sym_delete_statement] = STATE(2314), + [sym_raise_statement] = STATE(2314), + [sym_pass_statement] = STATE(2314), + [sym_break_statement] = STATE(2314), + [sym_continue_statement] = STATE(2314), + [sym_global_statement] = STATE(2314), + [sym_nonlocal_statement] = STATE(2314), + [sym_exec_statement] = STATE(2314), + [sym_type_alias_statement] = STATE(2314), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23759,8 +24029,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23786,59 +24056,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(579), [sym_string_start] = ACTIONS(81), }, - [128] = { - [sym__simple_statements] = STATE(2531), - [sym_import_statement] = STATE(2299), - [sym_future_import_statement] = STATE(2299), - [sym_import_from_statement] = STATE(2299), - [sym_print_statement] = STATE(2299), - [sym_assert_statement] = STATE(2299), - [sym_expression_statement] = STATE(2299), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2299), - [sym_delete_statement] = STATE(2299), - [sym_raise_statement] = STATE(2299), - [sym_pass_statement] = STATE(2299), - [sym_break_statement] = STATE(2299), - [sym_continue_statement] = STATE(2299), - [sym_global_statement] = STATE(2299), - [sym_nonlocal_statement] = STATE(2299), - [sym_exec_statement] = STATE(2299), - [sym_type_alias_statement] = STATE(2299), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(128)] = { + [sym__simple_statements] = STATE(663), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23852,8 +24122,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23879,59 +24149,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(583), [sym_string_start] = ACTIONS(81), }, - [129] = { - [sym__simple_statements] = STATE(648), - [sym_import_statement] = STATE(2260), - [sym_future_import_statement] = STATE(2260), - [sym_import_from_statement] = STATE(2260), - [sym_print_statement] = STATE(2260), - [sym_assert_statement] = STATE(2260), - [sym_expression_statement] = STATE(2260), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2260), - [sym_delete_statement] = STATE(2260), - [sym_raise_statement] = STATE(2260), - [sym_pass_statement] = STATE(2260), - [sym_break_statement] = STATE(2260), - [sym_continue_statement] = STATE(2260), - [sym_global_statement] = STATE(2260), - [sym_nonlocal_statement] = STATE(2260), - [sym_exec_statement] = STATE(2260), - [sym_type_alias_statement] = STATE(2260), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(129)] = { + [sym__simple_statements] = STATE(792), + [sym_import_statement] = STATE(2314), + [sym_future_import_statement] = STATE(2314), + [sym_import_from_statement] = STATE(2314), + [sym_print_statement] = STATE(2314), + [sym_assert_statement] = STATE(2314), + [sym_expression_statement] = STATE(2314), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2314), + [sym_delete_statement] = STATE(2314), + [sym_raise_statement] = STATE(2314), + [sym_pass_statement] = STATE(2314), + [sym_break_statement] = STATE(2314), + [sym_continue_statement] = STATE(2314), + [sym_global_statement] = STATE(2314), + [sym_nonlocal_statement] = STATE(2314), + [sym_exec_statement] = STATE(2314), + [sym_type_alias_statement] = STATE(2314), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23945,8 +24215,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23972,59 +24242,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(587), [sym_string_start] = ACTIONS(81), }, - [130] = { - [sym__simple_statements] = STATE(821), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(130)] = { + [sym__simple_statements] = STATE(2538), + [sym_import_statement] = STATE(2320), + [sym_future_import_statement] = STATE(2320), + [sym_import_from_statement] = STATE(2320), + [sym_print_statement] = STATE(2320), + [sym_assert_statement] = STATE(2320), + [sym_expression_statement] = STATE(2320), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2320), + [sym_delete_statement] = STATE(2320), + [sym_raise_statement] = STATE(2320), + [sym_pass_statement] = STATE(2320), + [sym_break_statement] = STATE(2320), + [sym_continue_statement] = STATE(2320), + [sym_global_statement] = STATE(2320), + [sym_nonlocal_statement] = STATE(2320), + [sym_exec_statement] = STATE(2320), + [sym_type_alias_statement] = STATE(2320), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24038,8 +24308,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24065,59 +24335,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(591), [sym_string_start] = ACTIONS(81), }, - [131] = { - [sym__simple_statements] = STATE(757), - [sym_import_statement] = STATE(2376), - [sym_future_import_statement] = STATE(2376), - [sym_import_from_statement] = STATE(2376), - [sym_print_statement] = STATE(2376), - [sym_assert_statement] = STATE(2376), - [sym_expression_statement] = STATE(2376), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2376), - [sym_delete_statement] = STATE(2376), - [sym_raise_statement] = STATE(2376), - [sym_pass_statement] = STATE(2376), - [sym_break_statement] = STATE(2376), - [sym_continue_statement] = STATE(2376), - [sym_global_statement] = STATE(2376), - [sym_nonlocal_statement] = STATE(2376), - [sym_exec_statement] = STATE(2376), - [sym_type_alias_statement] = STATE(2376), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(131)] = { + [sym__simple_statements] = STATE(1816), + [sym_import_statement] = STATE(2424), + [sym_future_import_statement] = STATE(2424), + [sym_import_from_statement] = STATE(2424), + [sym_print_statement] = STATE(2424), + [sym_assert_statement] = STATE(2424), + [sym_expression_statement] = STATE(2424), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2424), + [sym_delete_statement] = STATE(2424), + [sym_raise_statement] = STATE(2424), + [sym_pass_statement] = STATE(2424), + [sym_break_statement] = STATE(2424), + [sym_continue_statement] = STATE(2424), + [sym_global_statement] = STATE(2424), + [sym_nonlocal_statement] = STATE(2424), + [sym_exec_statement] = STATE(2424), + [sym_type_alias_statement] = STATE(2424), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24131,8 +24401,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24158,59 +24428,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(595), [sym_string_start] = ACTIONS(81), }, - [132] = { - [sym__simple_statements] = STATE(823), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(132)] = { + [sym__simple_statements] = STATE(671), + [sym_import_statement] = STATE(2314), + [sym_future_import_statement] = STATE(2314), + [sym_import_from_statement] = STATE(2314), + [sym_print_statement] = STATE(2314), + [sym_assert_statement] = STATE(2314), + [sym_expression_statement] = STATE(2314), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2314), + [sym_delete_statement] = STATE(2314), + [sym_raise_statement] = STATE(2314), + [sym_pass_statement] = STATE(2314), + [sym_break_statement] = STATE(2314), + [sym_continue_statement] = STATE(2314), + [sym_global_statement] = STATE(2314), + [sym_nonlocal_statement] = STATE(2314), + [sym_exec_statement] = STATE(2314), + [sym_type_alias_statement] = STATE(2314), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24224,8 +24494,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24251,59 +24521,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(599), [sym_string_start] = ACTIONS(81), }, - [133] = { - [sym__simple_statements] = STATE(1799), - [sym_import_statement] = STATE(2452), - [sym_future_import_statement] = STATE(2452), - [sym_import_from_statement] = STATE(2452), - [sym_print_statement] = STATE(2452), - [sym_assert_statement] = STATE(2452), - [sym_expression_statement] = STATE(2452), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2452), - [sym_delete_statement] = STATE(2452), - [sym_raise_statement] = STATE(2452), - [sym_pass_statement] = STATE(2452), - [sym_break_statement] = STATE(2452), - [sym_continue_statement] = STATE(2452), - [sym_global_statement] = STATE(2452), - [sym_nonlocal_statement] = STATE(2452), - [sym_exec_statement] = STATE(2452), - [sym_type_alias_statement] = STATE(2452), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(133)] = { + [sym__simple_statements] = STATE(675), + [sym_import_statement] = STATE(2274), + [sym_future_import_statement] = STATE(2274), + [sym_import_from_statement] = STATE(2274), + [sym_print_statement] = STATE(2274), + [sym_assert_statement] = STATE(2274), + [sym_expression_statement] = STATE(2274), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2274), + [sym_delete_statement] = STATE(2274), + [sym_raise_statement] = STATE(2274), + [sym_pass_statement] = STATE(2274), + [sym_break_statement] = STATE(2274), + [sym_continue_statement] = STATE(2274), + [sym_global_statement] = STATE(2274), + [sym_nonlocal_statement] = STATE(2274), + [sym_exec_statement] = STATE(2274), + [sym_type_alias_statement] = STATE(2274), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24317,8 +24587,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24344,59 +24614,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(603), [sym_string_start] = ACTIONS(81), }, - [134] = { - [sym__simple_statements] = STATE(2516), - [sym_import_statement] = STATE(2299), - [sym_future_import_statement] = STATE(2299), - [sym_import_from_statement] = STATE(2299), - [sym_print_statement] = STATE(2299), - [sym_assert_statement] = STATE(2299), - [sym_expression_statement] = STATE(2299), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2299), - [sym_delete_statement] = STATE(2299), - [sym_raise_statement] = STATE(2299), - [sym_pass_statement] = STATE(2299), - [sym_break_statement] = STATE(2299), - [sym_continue_statement] = STATE(2299), - [sym_global_statement] = STATE(2299), - [sym_nonlocal_statement] = STATE(2299), - [sym_exec_statement] = STATE(2299), - [sym_type_alias_statement] = STATE(2299), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(134)] = { + [sym__simple_statements] = STATE(825), + [sym_import_statement] = STATE(2474), + [sym_future_import_statement] = STATE(2474), + [sym_import_from_statement] = STATE(2474), + [sym_print_statement] = STATE(2474), + [sym_assert_statement] = STATE(2474), + [sym_expression_statement] = STATE(2474), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2474), + [sym_delete_statement] = STATE(2474), + [sym_raise_statement] = STATE(2474), + [sym_pass_statement] = STATE(2474), + [sym_break_statement] = STATE(2474), + [sym_continue_statement] = STATE(2474), + [sym_global_statement] = STATE(2474), + [sym_nonlocal_statement] = STATE(2474), + [sym_exec_statement] = STATE(2474), + [sym_type_alias_statement] = STATE(2474), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24410,8 +24680,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24437,59 +24707,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(607), [sym_string_start] = ACTIONS(81), }, - [135] = { - [sym__simple_statements] = STATE(824), - [sym_import_statement] = STATE(2294), - [sym_future_import_statement] = STATE(2294), - [sym_import_from_statement] = STATE(2294), - [sym_print_statement] = STATE(2294), - [sym_assert_statement] = STATE(2294), - [sym_expression_statement] = STATE(2294), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2294), - [sym_delete_statement] = STATE(2294), - [sym_raise_statement] = STATE(2294), - [sym_pass_statement] = STATE(2294), - [sym_break_statement] = STATE(2294), - [sym_continue_statement] = STATE(2294), - [sym_global_statement] = STATE(2294), - [sym_nonlocal_statement] = STATE(2294), - [sym_exec_statement] = STATE(2294), - [sym_type_alias_statement] = STATE(2294), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(135)] = { + [sym_import_statement] = STATE(2484), + [sym_future_import_statement] = STATE(2484), + [sym_import_from_statement] = STATE(2484), + [sym_print_statement] = STATE(2484), + [sym_assert_statement] = STATE(2484), + [sym_expression_statement] = STATE(2484), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2484), + [sym_delete_statement] = STATE(2484), + [sym_raise_statement] = STATE(2484), + [sym_pass_statement] = STATE(2484), + [sym_break_statement] = STATE(2484), + [sym_continue_statement] = STATE(2484), + [sym_global_statement] = STATE(2484), + [sym_nonlocal_statement] = STATE(2484), + [sym_exec_statement] = STATE(2484), + [sym_type_alias_statement] = STATE(2484), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24503,8 +24772,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24527,62 +24796,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(609), - [sym__indent] = ACTIONS(611), [sym_string_start] = ACTIONS(81), }, - [136] = { - [sym__simple_statements] = STATE(740), - [sym_import_statement] = STATE(2376), - [sym_future_import_statement] = STATE(2376), - [sym_import_from_statement] = STATE(2376), - [sym_print_statement] = STATE(2376), - [sym_assert_statement] = STATE(2376), - [sym_expression_statement] = STATE(2376), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2376), - [sym_delete_statement] = STATE(2376), - [sym_raise_statement] = STATE(2376), - [sym_pass_statement] = STATE(2376), - [sym_break_statement] = STATE(2376), - [sym_continue_statement] = STATE(2376), - [sym_global_statement] = STATE(2376), - [sym_nonlocal_statement] = STATE(2376), - [sym_exec_statement] = STATE(2376), - [sym_type_alias_statement] = STATE(2376), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(136)] = { + [sym_import_statement] = STATE(2484), + [sym_future_import_statement] = STATE(2484), + [sym_import_from_statement] = STATE(2484), + [sym_print_statement] = STATE(2484), + [sym_assert_statement] = STATE(2484), + [sym_expression_statement] = STATE(2484), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2484), + [sym_delete_statement] = STATE(2484), + [sym_raise_statement] = STATE(2484), + [sym_pass_statement] = STATE(2484), + [sym_break_statement] = STATE(2484), + [sym_continue_statement] = STATE(2484), + [sym_global_statement] = STATE(2484), + [sym_nonlocal_statement] = STATE(2484), + [sym_exec_statement] = STATE(2484), + [sym_type_alias_statement] = STATE(2484), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), + [sym_identifier] = 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_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_type] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), + [sym_integer] = ACTIONS(77), + [sym_float] = ACTIONS(75), + [anon_sym_await] = ACTIONS(79), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_none] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(611), + [sym_string_start] = ACTIONS(81), + }, + [STATE(137)] = { + [sym_import_statement] = STATE(2484), + [sym_future_import_statement] = STATE(2484), + [sym_import_from_statement] = STATE(2484), + [sym_print_statement] = STATE(2484), + [sym_assert_statement] = STATE(2484), + [sym_expression_statement] = STATE(2484), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2484), + [sym_delete_statement] = STATE(2484), + [sym_raise_statement] = STATE(2484), + [sym_pass_statement] = STATE(2484), + [sym_break_statement] = STATE(2484), + [sym_continue_statement] = STATE(2484), + [sym_global_statement] = STATE(2484), + [sym_nonlocal_statement] = STATE(2484), + [sym_exec_statement] = STATE(2484), + [sym_type_alias_statement] = STATE(2484), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24596,8 +24954,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24620,61 +24978,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(613), - [sym__indent] = ACTIONS(615), [sym_string_start] = ACTIONS(81), }, - [137] = { - [sym_import_statement] = STATE(2541), - [sym_future_import_statement] = STATE(2541), - [sym_import_from_statement] = STATE(2541), - [sym_print_statement] = STATE(2541), - [sym_assert_statement] = STATE(2541), - [sym_expression_statement] = STATE(2541), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2541), - [sym_delete_statement] = STATE(2541), - [sym_raise_statement] = STATE(2541), - [sym_pass_statement] = STATE(2541), - [sym_break_statement] = STATE(2541), - [sym_continue_statement] = STATE(2541), - [sym_global_statement] = STATE(2541), - [sym_nonlocal_statement] = STATE(2541), - [sym_exec_statement] = STATE(2541), - [sym_type_alias_statement] = STATE(2541), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(138)] = { + [sym_import_statement] = STATE(2484), + [sym_future_import_statement] = STATE(2484), + [sym_import_from_statement] = STATE(2484), + [sym_print_statement] = STATE(2484), + [sym_assert_statement] = STATE(2484), + [sym_expression_statement] = STATE(2484), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2484), + [sym_delete_statement] = STATE(2484), + [sym_raise_statement] = STATE(2484), + [sym_pass_statement] = STATE(2484), + [sym_break_statement] = STATE(2484), + [sym_continue_statement] = STATE(2484), + [sym_global_statement] = STATE(2484), + [sym_nonlocal_statement] = STATE(2484), + [sym_exec_statement] = STATE(2484), + [sym_type_alias_statement] = STATE(2484), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24688,8 +25045,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24711,61 +25068,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(617), + [sym__newline] = ACTIONS(615), [sym_string_start] = ACTIONS(81), }, - [138] = { - [sym_import_statement] = STATE(2541), - [sym_future_import_statement] = STATE(2541), - [sym_import_from_statement] = STATE(2541), - [sym_print_statement] = STATE(2541), - [sym_assert_statement] = STATE(2541), - [sym_expression_statement] = STATE(2541), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2541), - [sym_delete_statement] = STATE(2541), - [sym_raise_statement] = STATE(2541), - [sym_pass_statement] = STATE(2541), - [sym_break_statement] = STATE(2541), - [sym_continue_statement] = STATE(2541), - [sym_global_statement] = STATE(2541), - [sym_nonlocal_statement] = STATE(2541), - [sym_exec_statement] = STATE(2541), - [sym_type_alias_statement] = STATE(2541), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(139)] = { + [sym_import_statement] = STATE(2484), + [sym_future_import_statement] = STATE(2484), + [sym_import_from_statement] = STATE(2484), + [sym_print_statement] = STATE(2484), + [sym_assert_statement] = STATE(2484), + [sym_expression_statement] = STATE(2484), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2484), + [sym_delete_statement] = STATE(2484), + [sym_raise_statement] = STATE(2484), + [sym_pass_statement] = STATE(2484), + [sym_break_statement] = STATE(2484), + [sym_continue_statement] = STATE(2484), + [sym_global_statement] = STATE(2484), + [sym_nonlocal_statement] = STATE(2484), + [sym_exec_statement] = STATE(2484), + [sym_type_alias_statement] = STATE(2484), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24779,8 +25136,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24802,61 +25159,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(619), + [sym__newline] = ACTIONS(617), [sym_string_start] = ACTIONS(81), }, - [139] = { - [sym_import_statement] = STATE(2541), - [sym_future_import_statement] = STATE(2541), - [sym_import_from_statement] = STATE(2541), - [sym_print_statement] = STATE(2541), - [sym_assert_statement] = STATE(2541), - [sym_expression_statement] = STATE(2541), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2541), - [sym_delete_statement] = STATE(2541), - [sym_raise_statement] = STATE(2541), - [sym_pass_statement] = STATE(2541), - [sym_break_statement] = STATE(2541), - [sym_continue_statement] = STATE(2541), - [sym_global_statement] = STATE(2541), - [sym_nonlocal_statement] = STATE(2541), - [sym_exec_statement] = STATE(2541), - [sym_type_alias_statement] = STATE(2541), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(140)] = { + [sym_import_statement] = STATE(2484), + [sym_future_import_statement] = STATE(2484), + [sym_import_from_statement] = STATE(2484), + [sym_print_statement] = STATE(2484), + [sym_assert_statement] = STATE(2484), + [sym_expression_statement] = STATE(2484), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2484), + [sym_delete_statement] = STATE(2484), + [sym_raise_statement] = STATE(2484), + [sym_pass_statement] = STATE(2484), + [sym_break_statement] = STATE(2484), + [sym_continue_statement] = STATE(2484), + [sym_global_statement] = STATE(2484), + [sym_nonlocal_statement] = STATE(2484), + [sym_exec_statement] = STATE(2484), + [sym_type_alias_statement] = STATE(2484), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24870,8 +25227,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24893,61 +25250,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(621), + [sym__newline] = ACTIONS(619), [sym_string_start] = ACTIONS(81), }, - [140] = { - [sym_import_statement] = STATE(2541), - [sym_future_import_statement] = STATE(2541), - [sym_import_from_statement] = STATE(2541), - [sym_print_statement] = STATE(2541), - [sym_assert_statement] = STATE(2541), - [sym_expression_statement] = STATE(2541), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2541), - [sym_delete_statement] = STATE(2541), - [sym_raise_statement] = STATE(2541), - [sym_pass_statement] = STATE(2541), - [sym_break_statement] = STATE(2541), - [sym_continue_statement] = STATE(2541), - [sym_global_statement] = STATE(2541), - [sym_nonlocal_statement] = STATE(2541), - [sym_exec_statement] = STATE(2541), - [sym_type_alias_statement] = STATE(2541), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(141)] = { + [sym_import_statement] = STATE(2484), + [sym_future_import_statement] = STATE(2484), + [sym_import_from_statement] = STATE(2484), + [sym_print_statement] = STATE(2484), + [sym_assert_statement] = STATE(2484), + [sym_expression_statement] = STATE(2484), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2484), + [sym_delete_statement] = STATE(2484), + [sym_raise_statement] = STATE(2484), + [sym_pass_statement] = STATE(2484), + [sym_break_statement] = STATE(2484), + [sym_continue_statement] = STATE(2484), + [sym_global_statement] = STATE(2484), + [sym_nonlocal_statement] = STATE(2484), + [sym_exec_statement] = STATE(2484), + [sym_type_alias_statement] = STATE(2484), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24961,8 +25318,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24984,61 +25341,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(623), + [sym__newline] = ACTIONS(621), [sym_string_start] = ACTIONS(81), }, - [141] = { - [sym_import_statement] = STATE(2541), - [sym_future_import_statement] = STATE(2541), - [sym_import_from_statement] = STATE(2541), - [sym_print_statement] = STATE(2541), - [sym_assert_statement] = STATE(2541), - [sym_expression_statement] = STATE(2541), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2541), - [sym_delete_statement] = STATE(2541), - [sym_raise_statement] = STATE(2541), - [sym_pass_statement] = STATE(2541), - [sym_break_statement] = STATE(2541), - [sym_continue_statement] = STATE(2541), - [sym_global_statement] = STATE(2541), - [sym_nonlocal_statement] = STATE(2541), - [sym_exec_statement] = STATE(2541), - [sym_type_alias_statement] = STATE(2541), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(142)] = { + [sym_import_statement] = STATE(2484), + [sym_future_import_statement] = STATE(2484), + [sym_import_from_statement] = STATE(2484), + [sym_print_statement] = STATE(2484), + [sym_assert_statement] = STATE(2484), + [sym_expression_statement] = STATE(2484), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2484), + [sym_delete_statement] = STATE(2484), + [sym_raise_statement] = STATE(2484), + [sym_pass_statement] = STATE(2484), + [sym_break_statement] = STATE(2484), + [sym_continue_statement] = STATE(2484), + [sym_global_statement] = STATE(2484), + [sym_nonlocal_statement] = STATE(2484), + [sym_exec_statement] = STATE(2484), + [sym_type_alias_statement] = STATE(2484), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25052,8 +25409,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -25075,61 +25432,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(625), + [sym__newline] = ACTIONS(623), [sym_string_start] = ACTIONS(81), }, - [142] = { - [sym_import_statement] = STATE(2541), - [sym_future_import_statement] = STATE(2541), - [sym_import_from_statement] = STATE(2541), - [sym_print_statement] = STATE(2541), - [sym_assert_statement] = STATE(2541), - [sym_expression_statement] = STATE(2541), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2541), - [sym_delete_statement] = STATE(2541), - [sym_raise_statement] = STATE(2541), - [sym_pass_statement] = STATE(2541), - [sym_break_statement] = STATE(2541), - [sym_continue_statement] = STATE(2541), - [sym_global_statement] = STATE(2541), - [sym_nonlocal_statement] = STATE(2541), - [sym_exec_statement] = STATE(2541), - [sym_type_alias_statement] = STATE(2541), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(143)] = { + [sym_import_statement] = STATE(2484), + [sym_future_import_statement] = STATE(2484), + [sym_import_from_statement] = STATE(2484), + [sym_print_statement] = STATE(2484), + [sym_assert_statement] = STATE(2484), + [sym_expression_statement] = STATE(2484), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2484), + [sym_delete_statement] = STATE(2484), + [sym_raise_statement] = STATE(2484), + [sym_pass_statement] = STATE(2484), + [sym_break_statement] = STATE(2484), + [sym_continue_statement] = STATE(2484), + [sym_global_statement] = STATE(2484), + [sym_nonlocal_statement] = STATE(2484), + [sym_exec_statement] = STATE(2484), + [sym_type_alias_statement] = STATE(2484), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25143,8 +25500,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -25166,61 +25523,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(627), + [sym__newline] = ACTIONS(625), [sym_string_start] = ACTIONS(81), }, - [143] = { - [sym_import_statement] = STATE(2541), - [sym_future_import_statement] = STATE(2541), - [sym_import_from_statement] = STATE(2541), - [sym_print_statement] = STATE(2541), - [sym_assert_statement] = STATE(2541), - [sym_expression_statement] = STATE(2541), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2541), - [sym_delete_statement] = STATE(2541), - [sym_raise_statement] = STATE(2541), - [sym_pass_statement] = STATE(2541), - [sym_break_statement] = STATE(2541), - [sym_continue_statement] = STATE(2541), - [sym_global_statement] = STATE(2541), - [sym_nonlocal_statement] = STATE(2541), - [sym_exec_statement] = STATE(2541), - [sym_type_alias_statement] = STATE(2541), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(144)] = { + [sym_import_statement] = STATE(2484), + [sym_future_import_statement] = STATE(2484), + [sym_import_from_statement] = STATE(2484), + [sym_print_statement] = STATE(2484), + [sym_assert_statement] = STATE(2484), + [sym_expression_statement] = STATE(2484), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2484), + [sym_delete_statement] = STATE(2484), + [sym_raise_statement] = STATE(2484), + [sym_pass_statement] = STATE(2484), + [sym_break_statement] = STATE(2484), + [sym_continue_statement] = STATE(2484), + [sym_global_statement] = STATE(2484), + [sym_nonlocal_statement] = STATE(2484), + [sym_exec_statement] = STATE(2484), + [sym_type_alias_statement] = STATE(2484), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25234,8 +25591,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -25257,698 +25614,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(629), - [sym_string_start] = ACTIONS(81), - }, - [144] = { - [sym_import_statement] = STATE(2541), - [sym_future_import_statement] = STATE(2541), - [sym_import_from_statement] = STATE(2541), - [sym_print_statement] = STATE(2541), - [sym_assert_statement] = STATE(2541), - [sym_expression_statement] = STATE(2541), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2541), - [sym_delete_statement] = STATE(2541), - [sym_raise_statement] = STATE(2541), - [sym_pass_statement] = STATE(2541), - [sym_break_statement] = STATE(2541), - [sym_continue_statement] = STATE(2541), - [sym_global_statement] = STATE(2541), - [sym_nonlocal_statement] = STATE(2541), - [sym_exec_statement] = STATE(2541), - [sym_type_alias_statement] = STATE(2541), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [sym_identifier] = 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_lambda] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(79), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(631), - [sym_string_start] = ACTIONS(81), - }, - [145] = { - [sym_import_statement] = STATE(2541), - [sym_future_import_statement] = STATE(2541), - [sym_import_from_statement] = STATE(2541), - [sym_print_statement] = STATE(2541), - [sym_assert_statement] = STATE(2541), - [sym_expression_statement] = STATE(2541), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2541), - [sym_delete_statement] = STATE(2541), - [sym_raise_statement] = STATE(2541), - [sym_pass_statement] = STATE(2541), - [sym_break_statement] = STATE(2541), - [sym_continue_statement] = STATE(2541), - [sym_global_statement] = STATE(2541), - [sym_nonlocal_statement] = STATE(2541), - [sym_exec_statement] = STATE(2541), - [sym_type_alias_statement] = STATE(2541), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [sym_identifier] = 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_lambda] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(79), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(633), - [sym_string_start] = ACTIONS(81), - }, - [146] = { - [sym_import_statement] = STATE(2541), - [sym_future_import_statement] = STATE(2541), - [sym_import_from_statement] = STATE(2541), - [sym_print_statement] = STATE(2541), - [sym_assert_statement] = STATE(2541), - [sym_expression_statement] = STATE(2541), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2541), - [sym_delete_statement] = STATE(2541), - [sym_raise_statement] = STATE(2541), - [sym_pass_statement] = STATE(2541), - [sym_break_statement] = STATE(2541), - [sym_continue_statement] = STATE(2541), - [sym_global_statement] = STATE(2541), - [sym_nonlocal_statement] = STATE(2541), - [sym_exec_statement] = STATE(2541), - [sym_type_alias_statement] = STATE(2541), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [sym_identifier] = 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_lambda] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(79), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(635), - [sym_string_start] = ACTIONS(81), - }, - [147] = { - [sym_import_statement] = STATE(2541), - [sym_future_import_statement] = STATE(2541), - [sym_import_from_statement] = STATE(2541), - [sym_print_statement] = STATE(2541), - [sym_assert_statement] = STATE(2541), - [sym_expression_statement] = STATE(2541), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2541), - [sym_delete_statement] = STATE(2541), - [sym_raise_statement] = STATE(2541), - [sym_pass_statement] = STATE(2541), - [sym_break_statement] = STATE(2541), - [sym_continue_statement] = STATE(2541), - [sym_global_statement] = STATE(2541), - [sym_nonlocal_statement] = STATE(2541), - [sym_exec_statement] = STATE(2541), - [sym_type_alias_statement] = STATE(2541), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [sym_identifier] = 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_lambda] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(79), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(637), - [sym_string_start] = ACTIONS(81), - }, - [148] = { - [sym_import_statement] = STATE(2541), - [sym_future_import_statement] = STATE(2541), - [sym_import_from_statement] = STATE(2541), - [sym_print_statement] = STATE(2541), - [sym_assert_statement] = STATE(2541), - [sym_expression_statement] = STATE(2541), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2541), - [sym_delete_statement] = STATE(2541), - [sym_raise_statement] = STATE(2541), - [sym_pass_statement] = STATE(2541), - [sym_break_statement] = STATE(2541), - [sym_continue_statement] = STATE(2541), - [sym_global_statement] = STATE(2541), - [sym_nonlocal_statement] = STATE(2541), - [sym_exec_statement] = STATE(2541), - [sym_type_alias_statement] = STATE(2541), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [sym_identifier] = 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_lambda] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(79), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(639), - [sym_string_start] = ACTIONS(81), - }, - [149] = { - [sym_import_statement] = STATE(2541), - [sym_future_import_statement] = STATE(2541), - [sym_import_from_statement] = STATE(2541), - [sym_print_statement] = STATE(2541), - [sym_assert_statement] = STATE(2541), - [sym_expression_statement] = STATE(2541), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2541), - [sym_delete_statement] = STATE(2541), - [sym_raise_statement] = STATE(2541), - [sym_pass_statement] = STATE(2541), - [sym_break_statement] = STATE(2541), - [sym_continue_statement] = STATE(2541), - [sym_global_statement] = STATE(2541), - [sym_nonlocal_statement] = STATE(2541), - [sym_exec_statement] = STATE(2541), - [sym_type_alias_statement] = STATE(2541), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [sym_identifier] = 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_lambda] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(79), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(641), - [sym_string_start] = ACTIONS(81), - }, - [150] = { - [sym_import_statement] = STATE(2541), - [sym_future_import_statement] = STATE(2541), - [sym_import_from_statement] = STATE(2541), - [sym_print_statement] = STATE(2541), - [sym_assert_statement] = STATE(2541), - [sym_expression_statement] = STATE(2541), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2541), - [sym_delete_statement] = STATE(2541), - [sym_raise_statement] = STATE(2541), - [sym_pass_statement] = STATE(2541), - [sym_break_statement] = STATE(2541), - [sym_continue_statement] = STATE(2541), - [sym_global_statement] = STATE(2541), - [sym_nonlocal_statement] = STATE(2541), - [sym_exec_statement] = STATE(2541), - [sym_type_alias_statement] = STATE(2541), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), - [sym_identifier] = 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_lambda] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(79), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(643), + [sym__newline] = ACTIONS(627), [sym_string_start] = ACTIONS(81), }, - [151] = { - [sym_import_statement] = STATE(2541), - [sym_future_import_statement] = STATE(2541), - [sym_import_from_statement] = STATE(2541), - [sym_print_statement] = STATE(2541), - [sym_assert_statement] = STATE(2541), - [sym_expression_statement] = STATE(2541), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2541), - [sym_delete_statement] = STATE(2541), - [sym_raise_statement] = STATE(2541), - [sym_pass_statement] = STATE(2541), - [sym_break_statement] = STATE(2541), - [sym_continue_statement] = STATE(2541), - [sym_global_statement] = STATE(2541), - [sym_nonlocal_statement] = STATE(2541), - [sym_exec_statement] = STATE(2541), - [sym_type_alias_statement] = STATE(2541), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(145)] = { + [sym_import_statement] = STATE(2484), + [sym_future_import_statement] = STATE(2484), + [sym_import_from_statement] = STATE(2484), + [sym_print_statement] = STATE(2484), + [sym_assert_statement] = STATE(2484), + [sym_expression_statement] = STATE(2484), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2484), + [sym_delete_statement] = STATE(2484), + [sym_raise_statement] = STATE(2484), + [sym_pass_statement] = STATE(2484), + [sym_break_statement] = STATE(2484), + [sym_continue_statement] = STATE(2484), + [sym_global_statement] = STATE(2484), + [sym_nonlocal_statement] = STATE(2484), + [sym_exec_statement] = STATE(2484), + [sym_type_alias_statement] = STATE(2484), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25962,8 +25682,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -25985,61 +25705,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(645), + [sym__newline] = ACTIONS(629), [sym_string_start] = ACTIONS(81), }, - [152] = { - [sym_import_statement] = STATE(2541), - [sym_future_import_statement] = STATE(2541), - [sym_import_from_statement] = STATE(2541), - [sym_print_statement] = STATE(2541), - [sym_assert_statement] = STATE(2541), - [sym_expression_statement] = STATE(2541), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2541), - [sym_delete_statement] = STATE(2541), - [sym_raise_statement] = STATE(2541), - [sym_pass_statement] = STATE(2541), - [sym_break_statement] = STATE(2541), - [sym_continue_statement] = STATE(2541), - [sym_global_statement] = STATE(2541), - [sym_nonlocal_statement] = STATE(2541), - [sym_exec_statement] = STATE(2541), - [sym_type_alias_statement] = STATE(2541), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(146)] = { + [sym_import_statement] = STATE(2484), + [sym_future_import_statement] = STATE(2484), + [sym_import_from_statement] = STATE(2484), + [sym_print_statement] = STATE(2484), + [sym_assert_statement] = STATE(2484), + [sym_expression_statement] = STATE(2484), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2484), + [sym_delete_statement] = STATE(2484), + [sym_raise_statement] = STATE(2484), + [sym_pass_statement] = STATE(2484), + [sym_break_statement] = STATE(2484), + [sym_continue_statement] = STATE(2484), + [sym_global_statement] = STATE(2484), + [sym_nonlocal_statement] = STATE(2484), + [sym_exec_statement] = STATE(2484), + [sym_type_alias_statement] = STATE(2484), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -26053,8 +25773,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -26076,61 +25796,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(647), + [sym__newline] = ACTIONS(631), [sym_string_start] = ACTIONS(81), }, - [153] = { - [sym_import_statement] = STATE(2541), - [sym_future_import_statement] = STATE(2541), - [sym_import_from_statement] = STATE(2541), - [sym_print_statement] = STATE(2541), - [sym_assert_statement] = STATE(2541), - [sym_expression_statement] = STATE(2541), - [sym_named_expression] = STATE(1666), - [sym__named_expression_lhs] = STATE(2751), - [sym_return_statement] = STATE(2541), - [sym_delete_statement] = STATE(2541), - [sym_raise_statement] = STATE(2541), - [sym_pass_statement] = STATE(2541), - [sym_break_statement] = STATE(2541), - [sym_continue_statement] = STATE(2541), - [sym_global_statement] = STATE(2541), - [sym_nonlocal_statement] = STATE(2541), - [sym_exec_statement] = STATE(2541), - [sym_type_alias_statement] = STATE(2541), - [sym_pattern] = STATE(1634), - [sym_tuple_pattern] = STATE(1640), - [sym_list_pattern] = STATE(1640), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1666), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(966), - [sym_not_operator] = STATE(1666), - [sym_boolean_operator] = STATE(1666), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_comparison_operator] = STATE(1666), - [sym_lambda] = STATE(1666), - [sym_assignment] = STATE(2507), - [sym_augmented_assignment] = STATE(2507), - [sym_pattern_list] = STATE(1648), - [sym_yield] = STATE(2507), - [sym_attribute] = STATE(640), - [sym_subscript] = STATE(640), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_conditional_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(147)] = { + [sym_import_statement] = STATE(2484), + [sym_future_import_statement] = STATE(2484), + [sym_import_from_statement] = STATE(2484), + [sym_print_statement] = STATE(2484), + [sym_assert_statement] = STATE(2484), + [sym_expression_statement] = STATE(2484), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2658), + [sym_return_statement] = STATE(2484), + [sym_delete_statement] = STATE(2484), + [sym_raise_statement] = STATE(2484), + [sym_pass_statement] = STATE(2484), + [sym_break_statement] = STATE(2484), + [sym_continue_statement] = STATE(2484), + [sym_global_statement] = STATE(2484), + [sym_nonlocal_statement] = STATE(2484), + [sym_exec_statement] = STATE(2484), + [sym_type_alias_statement] = STATE(2484), + [sym_pattern] = STATE(1622), + [sym_tuple_pattern] = STATE(1623), + [sym_list_pattern] = STATE(1623), + [sym_list_splat_pattern] = STATE(627), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(950), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2506), + [sym_pattern_list] = STATE(1636), + [sym_yield] = STATE(2506), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -26144,8 +25864,8 @@ 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_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -26169,2694 +25889,2788 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(81), }, - [154] = { - [sym_list_splat_pattern] = STATE(1119), - [sym_primary_expression] = STATE(981), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_attribute] = STATE(1035), - [sym_subscript] = STATE(1035), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(148)] = { + [sym_list_splat_pattern] = STATE(1046), + [sym_primary_expression] = STATE(970), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_attribute] = STATE(1063), + [sym_subscript] = STATE(1063), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(77), - [anon_sym_SEMI] = ACTIONS(277), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(649), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), + [anon_sym_SEMI] = ACTIONS(269), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_COMMA] = ACTIONS(276), + [anon_sym_as] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(635), + [anon_sym_print] = ACTIONS(637), + [anon_sym_GT_GT] = ACTIONS(271), + [anon_sym_COLON_EQ] = ACTIONS(284), + [anon_sym_if] = ACTIONS(271), [anon_sym_COLON] = ACTIONS(294), - [anon_sym_match] = ACTIONS(655), - [anon_sym_async] = ACTIONS(653), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(279), - [anon_sym_exec] = ACTIONS(653), - [anon_sym_type] = ACTIONS(655), - [anon_sym_EQ] = ACTIONS(302), - [anon_sym_LBRACK] = ACTIONS(657), - [anon_sym_AT] = ACTIONS(279), - [anon_sym_DASH] = ACTIONS(659), - [anon_sym_PIPE] = ACTIONS(279), + [anon_sym_match] = ACTIONS(639), + [anon_sym_async] = ACTIONS(637), + [anon_sym_in] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(271), + [anon_sym_exec] = ACTIONS(637), + [anon_sym_type] = ACTIONS(639), + [anon_sym_EQ] = ACTIONS(294), + [anon_sym_LBRACK] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_PIPE] = ACTIONS(271), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(659), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(279), - [anon_sym_SLASH_SLASH] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(279), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_LT_LT] = ACTIONS(279), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_not] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(271), + [anon_sym_SLASH_SLASH] = ACTIONS(271), + [anon_sym_AMP] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym_LT_LT] = ACTIONS(271), [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [anon_sym_PLUS_EQ] = ACTIONS(319), - [anon_sym_DASH_EQ] = ACTIONS(319), - [anon_sym_STAR_EQ] = ACTIONS(319), - [anon_sym_SLASH_EQ] = ACTIONS(319), - [anon_sym_AT_EQ] = ACTIONS(319), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(319), - [anon_sym_PERCENT_EQ] = ACTIONS(319), - [anon_sym_STAR_STAR_EQ] = ACTIONS(319), - [anon_sym_GT_GT_EQ] = ACTIONS(319), - [anon_sym_LT_LT_EQ] = ACTIONS(319), - [anon_sym_AMP_EQ] = ACTIONS(319), - [anon_sym_CARET_EQ] = ACTIONS(319), - [anon_sym_PIPE_EQ] = ACTIONS(319), + [anon_sym_is] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(269), + [anon_sym_PLUS_EQ] = ACTIONS(311), + [anon_sym_DASH_EQ] = ACTIONS(311), + [anon_sym_STAR_EQ] = ACTIONS(311), + [anon_sym_SLASH_EQ] = ACTIONS(311), + [anon_sym_AT_EQ] = ACTIONS(311), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(311), + [anon_sym_PERCENT_EQ] = ACTIONS(311), + [anon_sym_STAR_STAR_EQ] = ACTIONS(311), + [anon_sym_GT_GT_EQ] = ACTIONS(311), + [anon_sym_LT_LT_EQ] = ACTIONS(311), + [anon_sym_AMP_EQ] = ACTIONS(311), + [anon_sym_CARET_EQ] = ACTIONS(311), + [anon_sym_PIPE_EQ] = ACTIONS(311), [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(661), + [anon_sym_await] = ACTIONS(645), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(277), + [sym__newline] = ACTIONS(269), [sym_string_start] = ACTIONS(81), }, - [155] = { - [sym_list_splat_pattern] = STATE(1119), - [sym_primary_expression] = STATE(981), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_attribute] = STATE(1035), - [sym_subscript] = STATE(1035), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(149)] = { + [sym_list_splat_pattern] = STATE(1046), + [sym_primary_expression] = STATE(970), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_attribute] = STATE(1063), + [sym_subscript] = STATE(1063), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(77), - [anon_sym_SEMI] = ACTIONS(277), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(649), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(302), - [anon_sym_match] = ACTIONS(655), - [anon_sym_async] = ACTIONS(653), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(279), - [anon_sym_exec] = ACTIONS(653), - [anon_sym_type] = ACTIONS(655), - [anon_sym_EQ] = ACTIONS(302), - [anon_sym_LBRACK] = ACTIONS(657), - [anon_sym_AT] = ACTIONS(279), - [anon_sym_DASH] = ACTIONS(659), - [anon_sym_PIPE] = ACTIONS(279), + [anon_sym_SEMI] = ACTIONS(269), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_COMMA] = ACTIONS(276), + [anon_sym_as] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(635), + [anon_sym_print] = ACTIONS(637), + [anon_sym_GT_GT] = ACTIONS(271), + [anon_sym_COLON_EQ] = ACTIONS(284), + [anon_sym_if] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(286), + [anon_sym_match] = ACTIONS(639), + [anon_sym_async] = ACTIONS(637), + [anon_sym_in] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(271), + [anon_sym_exec] = ACTIONS(637), + [anon_sym_type] = ACTIONS(639), + [anon_sym_EQ] = ACTIONS(294), + [anon_sym_LBRACK] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_PIPE] = ACTIONS(271), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(659), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(279), - [anon_sym_SLASH_SLASH] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(279), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_LT_LT] = ACTIONS(279), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_not] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(271), + [anon_sym_SLASH_SLASH] = ACTIONS(271), + [anon_sym_AMP] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym_LT_LT] = ACTIONS(271), [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [anon_sym_PLUS_EQ] = ACTIONS(319), - [anon_sym_DASH_EQ] = ACTIONS(319), - [anon_sym_STAR_EQ] = ACTIONS(319), - [anon_sym_SLASH_EQ] = ACTIONS(319), - [anon_sym_AT_EQ] = ACTIONS(319), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(319), - [anon_sym_PERCENT_EQ] = ACTIONS(319), - [anon_sym_STAR_STAR_EQ] = ACTIONS(319), - [anon_sym_GT_GT_EQ] = ACTIONS(319), - [anon_sym_LT_LT_EQ] = ACTIONS(319), - [anon_sym_AMP_EQ] = ACTIONS(319), - [anon_sym_CARET_EQ] = ACTIONS(319), - [anon_sym_PIPE_EQ] = ACTIONS(319), + [anon_sym_is] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(269), + [anon_sym_PLUS_EQ] = ACTIONS(311), + [anon_sym_DASH_EQ] = ACTIONS(311), + [anon_sym_STAR_EQ] = ACTIONS(311), + [anon_sym_SLASH_EQ] = ACTIONS(311), + [anon_sym_AT_EQ] = ACTIONS(311), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(311), + [anon_sym_PERCENT_EQ] = ACTIONS(311), + [anon_sym_STAR_STAR_EQ] = ACTIONS(311), + [anon_sym_GT_GT_EQ] = ACTIONS(311), + [anon_sym_LT_LT_EQ] = ACTIONS(311), + [anon_sym_AMP_EQ] = ACTIONS(311), + [anon_sym_CARET_EQ] = ACTIONS(311), + [anon_sym_PIPE_EQ] = ACTIONS(311), [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(661), + [anon_sym_await] = ACTIONS(645), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(277), + [sym__newline] = ACTIONS(269), [sym_string_start] = ACTIONS(81), }, - [156] = { - [sym_list_splat_pattern] = STATE(1342), - [sym_primary_expression] = STATE(1051), - [sym_binary_operator] = STATE(1268), - [sym_unary_operator] = STATE(1268), - [sym_attribute] = STATE(1268), - [sym_subscript] = STATE(1268), - [sym_call] = STATE(1268), - [sym_list] = STATE(1268), - [sym_set] = STATE(1268), - [sym_tuple] = STATE(1268), - [sym_dictionary] = STATE(1268), - [sym_list_comprehension] = STATE(1268), - [sym_dictionary_comprehension] = STATE(1268), - [sym_set_comprehension] = STATE(1268), - [sym_generator_expression] = STATE(1268), - [sym_parenthesized_expression] = STATE(1268), - [sym_concatenated_string] = STATE(1268), - [sym_string] = STATE(1010), - [sym_await] = STATE(1268), - [sym_identifier] = ACTIONS(323), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_DOT] = ACTIONS(665), - [anon_sym_LPAREN] = ACTIONS(668), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_as] = ACTIONS(670), - [anon_sym_STAR] = ACTIONS(672), - [anon_sym_print] = ACTIONS(674), - [anon_sym_GT_GT] = ACTIONS(665), - [anon_sym_if] = ACTIONS(670), - [anon_sym_COLON] = ACTIONS(663), - [anon_sym_match] = ACTIONS(676), - [anon_sym_async] = ACTIONS(674), - [anon_sym_in] = ACTIONS(670), - [anon_sym_STAR_STAR] = ACTIONS(665), - [anon_sym_exec] = ACTIONS(674), - [anon_sym_type] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(670), - [anon_sym_LBRACK] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(665), - [anon_sym_DASH] = ACTIONS(680), - [anon_sym_PIPE] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_PLUS] = ACTIONS(680), - [anon_sym_not] = ACTIONS(670), - [anon_sym_and] = ACTIONS(670), - [anon_sym_or] = ACTIONS(670), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(665), - [anon_sym_SLASH_SLASH] = ACTIONS(665), - [anon_sym_AMP] = ACTIONS(665), - [anon_sym_CARET] = ACTIONS(665), - [anon_sym_LT_LT] = ACTIONS(665), - [anon_sym_TILDE] = ACTIONS(315), - [anon_sym_is] = ACTIONS(670), - [anon_sym_LT] = ACTIONS(670), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(670), - [anon_sym_LT_GT] = ACTIONS(663), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_AT_EQ] = ACTIONS(663), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_STAR_STAR_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [sym_ellipsis] = ACTIONS(321), - [sym_integer] = ACTIONS(323), - [sym_float] = ACTIONS(321), - [anon_sym_await] = ACTIONS(682), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [sym_none] = ACTIONS(323), + [STATE(150)] = { + [sym_list_splat_pattern] = STATE(1333), + [sym_primary_expression] = STATE(1090), + [sym_binary_operator] = STATE(1276), + [sym_unary_operator] = STATE(1276), + [sym_attribute] = STATE(1276), + [sym_subscript] = STATE(1276), + [sym_call] = STATE(1276), + [sym_list] = STATE(1276), + [sym_set] = STATE(1276), + [sym_tuple] = STATE(1276), + [sym_dictionary] = STATE(1276), + [sym_list_comprehension] = STATE(1276), + [sym_dictionary_comprehension] = STATE(1276), + [sym_set_comprehension] = STATE(1276), + [sym_generator_expression] = STATE(1276), + [sym_parenthesized_expression] = STATE(1276), + [sym_concatenated_string] = STATE(1276), + [sym_string] = STATE(975), + [sym_await] = STATE(1276), + [sym_identifier] = ACTIONS(315), + [anon_sym_SEMI] = ACTIONS(647), + [anon_sym_DOT] = ACTIONS(649), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_COMMA] = ACTIONS(647), + [anon_sym_as] = ACTIONS(654), + [anon_sym_STAR] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_GT_GT] = ACTIONS(649), + [anon_sym_if] = ACTIONS(654), + [anon_sym_COLON] = ACTIONS(647), + [anon_sym_match] = ACTIONS(660), + [anon_sym_async] = ACTIONS(658), + [anon_sym_in] = ACTIONS(654), + [anon_sym_STAR_STAR] = ACTIONS(649), + [anon_sym_exec] = ACTIONS(658), + [anon_sym_type] = ACTIONS(660), + [anon_sym_EQ] = ACTIONS(654), + [anon_sym_LBRACK] = ACTIONS(662), + [anon_sym_AT] = ACTIONS(649), + [anon_sym_DASH] = ACTIONS(664), + [anon_sym_PIPE] = ACTIONS(649), + [anon_sym_LBRACE] = ACTIONS(302), + [anon_sym_PLUS] = ACTIONS(664), + [anon_sym_not] = ACTIONS(654), + [anon_sym_and] = ACTIONS(654), + [anon_sym_or] = ACTIONS(654), + [anon_sym_SLASH] = ACTIONS(649), + [anon_sym_PERCENT] = ACTIONS(649), + [anon_sym_SLASH_SLASH] = ACTIONS(649), + [anon_sym_AMP] = ACTIONS(649), + [anon_sym_CARET] = ACTIONS(649), + [anon_sym_LT_LT] = ACTIONS(649), + [anon_sym_TILDE] = ACTIONS(307), + [anon_sym_is] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(654), + [anon_sym_LT_EQ] = ACTIONS(647), + [anon_sym_EQ_EQ] = ACTIONS(647), + [anon_sym_BANG_EQ] = ACTIONS(647), + [anon_sym_GT_EQ] = ACTIONS(647), + [anon_sym_GT] = ACTIONS(654), + [anon_sym_LT_GT] = ACTIONS(647), + [anon_sym_PLUS_EQ] = ACTIONS(647), + [anon_sym_DASH_EQ] = ACTIONS(647), + [anon_sym_STAR_EQ] = ACTIONS(647), + [anon_sym_SLASH_EQ] = ACTIONS(647), + [anon_sym_AT_EQ] = ACTIONS(647), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(647), + [anon_sym_PERCENT_EQ] = ACTIONS(647), + [anon_sym_STAR_STAR_EQ] = ACTIONS(647), + [anon_sym_GT_GT_EQ] = ACTIONS(647), + [anon_sym_LT_LT_EQ] = ACTIONS(647), + [anon_sym_AMP_EQ] = ACTIONS(647), + [anon_sym_CARET_EQ] = ACTIONS(647), + [anon_sym_PIPE_EQ] = ACTIONS(647), + [sym_ellipsis] = ACTIONS(313), + [sym_integer] = ACTIONS(315), + [sym_float] = ACTIONS(313), + [anon_sym_await] = ACTIONS(666), + [sym_true] = ACTIONS(315), + [sym_false] = ACTIONS(315), + [sym_none] = ACTIONS(315), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(663), - [sym_string_start] = ACTIONS(327), - }, - [157] = { - [sym_list_splat_pattern] = STATE(1119), - [sym_primary_expression] = STATE(981), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_attribute] = STATE(1035), - [sym_subscript] = STATE(1035), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [sym__newline] = ACTIONS(647), + [sym_string_start] = ACTIONS(319), + }, + [STATE(151)] = { + [sym_list_splat_pattern] = STATE(1046), + [sym_primary_expression] = STATE(970), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_attribute] = STATE(1063), + [sym_subscript] = STATE(1063), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(77), - [anon_sym_SEMI] = ACTIONS(277), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_from] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(649), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(279), - [anon_sym_match] = ACTIONS(655), - [anon_sym_async] = ACTIONS(653), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(653), - [anon_sym_type] = ACTIONS(655), - [anon_sym_EQ] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(657), - [anon_sym_AT] = ACTIONS(277), + [anon_sym_SEMI] = ACTIONS(269), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_from] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_COMMA] = ACTIONS(269), + [anon_sym_as] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(635), + [anon_sym_print] = ACTIONS(637), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_COLON_EQ] = ACTIONS(284), + [anon_sym_if] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(271), + [anon_sym_match] = ACTIONS(639), + [anon_sym_async] = ACTIONS(637), + [anon_sym_in] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(269), + [anon_sym_exec] = ACTIONS(637), + [anon_sym_type] = ACTIONS(639), + [anon_sym_EQ] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(269), [anon_sym_DASH] = ACTIONS(65), - [anon_sym_PIPE] = ACTIONS(277), + [anon_sym_PIPE] = ACTIONS(269), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(277), + [anon_sym_not] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(269), + [anon_sym_SLASH_SLASH] = ACTIONS(269), + [anon_sym_AMP] = ACTIONS(269), + [anon_sym_CARET] = ACTIONS(269), + [anon_sym_LT_LT] = ACTIONS(269), [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), + [anon_sym_is] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(269), [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(661), + [anon_sym_await] = ACTIONS(645), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(277), + [sym__newline] = ACTIONS(269), [sym_string_start] = ACTIONS(81), }, - [158] = { - [sym_list_splat_pattern] = STATE(1119), - [sym_primary_expression] = STATE(981), - [sym_binary_operator] = STATE(1035), - [sym_unary_operator] = STATE(1035), - [sym_attribute] = STATE(1035), - [sym_subscript] = STATE(1035), - [sym_call] = STATE(1035), - [sym_list] = STATE(1035), - [sym_set] = STATE(1035), - [sym_tuple] = STATE(1035), - [sym_dictionary] = STATE(1035), - [sym_list_comprehension] = STATE(1035), - [sym_dictionary_comprehension] = STATE(1035), - [sym_set_comprehension] = STATE(1035), - [sym_generator_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_concatenated_string] = STATE(1035), - [sym_string] = STATE(969), - [sym_await] = STATE(1035), + [STATE(152)] = { + [sym_list_splat_pattern] = STATE(1046), + [sym_primary_expression] = STATE(970), + [sym_binary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_attribute] = STATE(1063), + [sym_subscript] = STATE(1063), + [sym_call] = STATE(1063), + [sym_list] = STATE(1063), + [sym_set] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_dictionary] = STATE(1063), + [sym_list_comprehension] = STATE(1063), + [sym_dictionary_comprehension] = STATE(1063), + [sym_set_comprehension] = STATE(1063), + [sym_generator_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_concatenated_string] = STATE(1063), + [sym_string] = STATE(954), + [sym_await] = STATE(1063), [sym_identifier] = ACTIONS(77), - [anon_sym_SEMI] = ACTIONS(277), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_from] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(649), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(277), - [anon_sym_match] = ACTIONS(655), - [anon_sym_async] = ACTIONS(653), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(653), - [anon_sym_type] = ACTIONS(655), - [anon_sym_EQ] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(657), - [anon_sym_AT] = ACTIONS(277), + [anon_sym_SEMI] = ACTIONS(269), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_from] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_COMMA] = ACTIONS(269), + [anon_sym_as] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(635), + [anon_sym_print] = ACTIONS(637), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_if] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(269), + [anon_sym_match] = ACTIONS(639), + [anon_sym_async] = ACTIONS(637), + [anon_sym_in] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(269), + [anon_sym_exec] = ACTIONS(637), + [anon_sym_type] = ACTIONS(639), + [anon_sym_EQ] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(269), [anon_sym_DASH] = ACTIONS(65), - [anon_sym_PIPE] = ACTIONS(277), + [anon_sym_PIPE] = ACTIONS(269), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(277), + [anon_sym_not] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(269), + [anon_sym_SLASH_SLASH] = ACTIONS(269), + [anon_sym_AMP] = ACTIONS(269), + [anon_sym_CARET] = ACTIONS(269), + [anon_sym_LT_LT] = ACTIONS(269), [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), + [anon_sym_is] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(269), [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(661), + [anon_sym_await] = ACTIONS(645), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(277), + [sym__newline] = ACTIONS(269), [sym_string_start] = ACTIONS(81), }, - [159] = { - [sym_list_splat_pattern] = STATE(1214), - [sym_primary_expression] = STATE(1026), - [sym_binary_operator] = STATE(1172), - [sym_unary_operator] = STATE(1172), - [sym_attribute] = STATE(1172), - [sym_subscript] = STATE(1172), - [sym_call] = STATE(1172), - [sym_list] = STATE(1172), - [sym_set] = STATE(1172), - [sym_tuple] = STATE(1172), - [sym_dictionary] = STATE(1172), - [sym_list_comprehension] = STATE(1172), - [sym_dictionary_comprehension] = STATE(1172), - [sym_set_comprehension] = STATE(1172), - [sym_generator_expression] = STATE(1172), - [sym_parenthesized_expression] = STATE(1172), - [sym_concatenated_string] = STATE(1172), + [STATE(153)] = { + [sym_list_splat_pattern] = STATE(1333), + [sym_primary_expression] = STATE(1090), + [sym_binary_operator] = STATE(1276), + [sym_unary_operator] = STATE(1276), + [sym_attribute] = STATE(1276), + [sym_subscript] = STATE(1276), + [sym_call] = STATE(1276), + [sym_list] = STATE(1276), + [sym_set] = STATE(1276), + [sym_tuple] = STATE(1276), + [sym_dictionary] = STATE(1276), + [sym_list_comprehension] = STATE(1276), + [sym_dictionary_comprehension] = STATE(1276), + [sym_set_comprehension] = STATE(1276), + [sym_generator_expression] = STATE(1276), + [sym_parenthesized_expression] = STATE(1276), + [sym_concatenated_string] = STATE(1276), [sym_string] = STATE(975), - [sym_await] = STATE(1172), - [sym_identifier] = ACTIONS(684), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(686), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_print] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(279), - [anon_sym_match] = ACTIONS(692), - [anon_sym_async] = ACTIONS(690), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(690), - [anon_sym_type] = ACTIONS(692), - [anon_sym_EQ] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(696), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(698), - [anon_sym_RBRACE] = ACTIONS(277), - [anon_sym_PLUS] = ACTIONS(696), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(696), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(700), - [sym_type_conversion] = ACTIONS(277), - [sym_integer] = ACTIONS(684), - [sym_float] = ACTIONS(700), - [anon_sym_await] = ACTIONS(702), - [sym_true] = ACTIONS(684), - [sym_false] = ACTIONS(684), - [sym_none] = ACTIONS(684), + [sym_await] = STATE(1276), + [sym_identifier] = ACTIONS(315), + [anon_sym_DOT] = ACTIONS(649), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_COMMA] = ACTIONS(647), + [anon_sym_as] = ACTIONS(654), + [anon_sym_STAR] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_GT_GT] = ACTIONS(668), + [anon_sym_if] = ACTIONS(654), + [anon_sym_COLON] = ACTIONS(647), + [anon_sym_match] = ACTIONS(660), + [anon_sym_async] = ACTIONS(658), + [anon_sym_for] = ACTIONS(654), + [anon_sym_in] = ACTIONS(654), + [anon_sym_STAR_STAR] = ACTIONS(668), + [anon_sym_exec] = ACTIONS(658), + [anon_sym_type] = ACTIONS(660), + [anon_sym_EQ] = ACTIONS(654), + [anon_sym_LBRACK] = ACTIONS(662), + [anon_sym_AT] = ACTIONS(668), + [anon_sym_DASH] = ACTIONS(307), + [anon_sym_PIPE] = ACTIONS(668), + [anon_sym_LBRACE] = ACTIONS(302), + [anon_sym_RBRACE] = ACTIONS(647), + [anon_sym_PLUS] = ACTIONS(307), + [anon_sym_not] = ACTIONS(654), + [anon_sym_and] = ACTIONS(654), + [anon_sym_or] = ACTIONS(654), + [anon_sym_SLASH] = ACTIONS(649), + [anon_sym_PERCENT] = ACTIONS(668), + [anon_sym_SLASH_SLASH] = ACTIONS(668), + [anon_sym_AMP] = ACTIONS(668), + [anon_sym_CARET] = ACTIONS(668), + [anon_sym_LT_LT] = ACTIONS(668), + [anon_sym_TILDE] = ACTIONS(307), + [anon_sym_is] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(654), + [anon_sym_LT_EQ] = ACTIONS(647), + [anon_sym_EQ_EQ] = ACTIONS(647), + [anon_sym_BANG_EQ] = ACTIONS(647), + [anon_sym_GT_EQ] = ACTIONS(647), + [anon_sym_GT] = ACTIONS(654), + [anon_sym_LT_GT] = ACTIONS(647), + [sym_ellipsis] = ACTIONS(313), + [sym_type_conversion] = ACTIONS(647), + [sym_integer] = ACTIONS(315), + [sym_float] = ACTIONS(313), + [anon_sym_await] = ACTIONS(666), + [sym_true] = ACTIONS(315), + [sym_false] = ACTIONS(315), + [sym_none] = ACTIONS(315), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(704), - }, - [160] = { - [sym_list_splat_pattern] = STATE(1214), - [sym_primary_expression] = STATE(1026), - [sym_binary_operator] = STATE(1172), - [sym_unary_operator] = STATE(1172), - [sym_attribute] = STATE(1172), - [sym_subscript] = STATE(1172), - [sym_call] = STATE(1172), - [sym_list] = STATE(1172), - [sym_set] = STATE(1172), - [sym_tuple] = STATE(1172), - [sym_dictionary] = STATE(1172), - [sym_list_comprehension] = STATE(1172), - [sym_dictionary_comprehension] = STATE(1172), - [sym_set_comprehension] = STATE(1172), - [sym_generator_expression] = STATE(1172), - [sym_parenthesized_expression] = STATE(1172), - [sym_concatenated_string] = STATE(1172), - [sym_string] = STATE(975), - [sym_await] = STATE(1172), - [sym_identifier] = ACTIONS(684), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(686), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_print] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(279), - [anon_sym_match] = ACTIONS(692), - [anon_sym_async] = ACTIONS(690), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(690), - [anon_sym_type] = ACTIONS(692), - [anon_sym_EQ] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(696), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(698), - [anon_sym_RBRACE] = ACTIONS(277), - [anon_sym_PLUS] = ACTIONS(696), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(696), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(700), - [sym_type_conversion] = ACTIONS(277), - [sym_integer] = ACTIONS(684), - [sym_float] = ACTIONS(700), - [anon_sym_await] = ACTIONS(702), - [sym_true] = ACTIONS(684), - [sym_false] = ACTIONS(684), - [sym_none] = ACTIONS(684), + [sym_string_start] = ACTIONS(319), + }, + [STATE(154)] = { + [sym_list_splat_pattern] = STATE(1223), + [sym_primary_expression] = STATE(1000), + [sym_binary_operator] = STATE(1198), + [sym_unary_operator] = STATE(1198), + [sym_attribute] = STATE(1198), + [sym_subscript] = STATE(1198), + [sym_call] = STATE(1198), + [sym_list] = STATE(1198), + [sym_set] = STATE(1198), + [sym_tuple] = STATE(1198), + [sym_dictionary] = STATE(1198), + [sym_list_comprehension] = STATE(1198), + [sym_dictionary_comprehension] = STATE(1198), + [sym_set_comprehension] = STATE(1198), + [sym_generator_expression] = STATE(1198), + [sym_parenthesized_expression] = STATE(1198), + [sym_concatenated_string] = STATE(1198), + [sym_string] = STATE(963), + [sym_await] = STATE(1198), + [sym_identifier] = ACTIONS(671), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_COMMA] = ACTIONS(269), + [anon_sym_as] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(675), + [anon_sym_print] = ACTIONS(677), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_COLON_EQ] = ACTIONS(284), + [anon_sym_if] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(271), + [anon_sym_match] = ACTIONS(679), + [anon_sym_async] = ACTIONS(677), + [anon_sym_in] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(269), + [anon_sym_exec] = ACTIONS(677), + [anon_sym_type] = ACTIONS(679), + [anon_sym_EQ] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_DASH] = ACTIONS(683), + [anon_sym_PIPE] = ACTIONS(269), + [anon_sym_LBRACE] = ACTIONS(685), + [anon_sym_RBRACE] = ACTIONS(269), + [anon_sym_PLUS] = ACTIONS(683), + [anon_sym_not] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(269), + [anon_sym_SLASH_SLASH] = ACTIONS(269), + [anon_sym_AMP] = ACTIONS(269), + [anon_sym_CARET] = ACTIONS(269), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_is] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(269), + [sym_ellipsis] = ACTIONS(687), + [sym_type_conversion] = ACTIONS(269), + [sym_integer] = ACTIONS(671), + [sym_float] = ACTIONS(687), + [anon_sym_await] = ACTIONS(689), + [sym_true] = ACTIONS(671), + [sym_false] = ACTIONS(671), + [sym_none] = ACTIONS(671), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(704), - }, - [161] = { - [sym_list_splat_pattern] = STATE(1342), - [sym_primary_expression] = STATE(1051), - [sym_binary_operator] = STATE(1268), - [sym_unary_operator] = STATE(1268), - [sym_attribute] = STATE(1268), - [sym_subscript] = STATE(1268), - [sym_call] = STATE(1268), - [sym_list] = STATE(1268), - [sym_set] = STATE(1268), - [sym_tuple] = STATE(1268), - [sym_dictionary] = STATE(1268), - [sym_list_comprehension] = STATE(1268), - [sym_dictionary_comprehension] = STATE(1268), - [sym_set_comprehension] = STATE(1268), - [sym_generator_expression] = STATE(1268), - [sym_parenthesized_expression] = STATE(1268), - [sym_concatenated_string] = STATE(1268), - [sym_string] = STATE(1010), - [sym_await] = STATE(1268), - [sym_identifier] = ACTIONS(323), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_DOT] = ACTIONS(665), - [anon_sym_from] = ACTIONS(670), - [anon_sym_LPAREN] = ACTIONS(668), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_as] = ACTIONS(670), - [anon_sym_STAR] = ACTIONS(672), - [anon_sym_print] = ACTIONS(674), - [anon_sym_GT_GT] = ACTIONS(706), - [anon_sym_if] = ACTIONS(670), - [anon_sym_COLON] = ACTIONS(663), - [anon_sym_match] = ACTIONS(676), - [anon_sym_async] = ACTIONS(674), - [anon_sym_in] = ACTIONS(670), - [anon_sym_STAR_STAR] = ACTIONS(706), - [anon_sym_exec] = ACTIONS(674), - [anon_sym_type] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(670), - [anon_sym_LBRACK] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(315), - [anon_sym_PIPE] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_PLUS] = ACTIONS(315), - [anon_sym_not] = ACTIONS(670), - [anon_sym_and] = ACTIONS(670), - [anon_sym_or] = ACTIONS(670), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(706), - [anon_sym_SLASH_SLASH] = ACTIONS(706), - [anon_sym_AMP] = ACTIONS(706), - [anon_sym_CARET] = ACTIONS(706), - [anon_sym_LT_LT] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(315), - [anon_sym_is] = ACTIONS(670), - [anon_sym_LT] = ACTIONS(670), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(670), - [anon_sym_LT_GT] = ACTIONS(663), - [sym_ellipsis] = ACTIONS(321), - [sym_integer] = ACTIONS(323), - [sym_float] = ACTIONS(321), - [anon_sym_await] = ACTIONS(682), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [sym_none] = ACTIONS(323), + [sym_string_start] = ACTIONS(691), + }, + [STATE(155)] = { + [sym_list_splat_pattern] = STATE(1223), + [sym_primary_expression] = STATE(1000), + [sym_binary_operator] = STATE(1198), + [sym_unary_operator] = STATE(1198), + [sym_attribute] = STATE(1198), + [sym_subscript] = STATE(1198), + [sym_call] = STATE(1198), + [sym_list] = STATE(1198), + [sym_set] = STATE(1198), + [sym_tuple] = STATE(1198), + [sym_dictionary] = STATE(1198), + [sym_list_comprehension] = STATE(1198), + [sym_dictionary_comprehension] = STATE(1198), + [sym_set_comprehension] = STATE(1198), + [sym_generator_expression] = STATE(1198), + [sym_parenthesized_expression] = STATE(1198), + [sym_concatenated_string] = STATE(1198), + [sym_string] = STATE(963), + [sym_await] = STATE(1198), + [sym_identifier] = ACTIONS(671), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_COMMA] = ACTIONS(276), + [anon_sym_as] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(675), + [anon_sym_print] = ACTIONS(677), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_COLON_EQ] = ACTIONS(284), + [anon_sym_if] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(271), + [anon_sym_match] = ACTIONS(679), + [anon_sym_async] = ACTIONS(677), + [anon_sym_in] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(269), + [anon_sym_exec] = ACTIONS(677), + [anon_sym_type] = ACTIONS(679), + [anon_sym_EQ] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_DASH] = ACTIONS(683), + [anon_sym_PIPE] = ACTIONS(269), + [anon_sym_LBRACE] = ACTIONS(685), + [anon_sym_RBRACE] = ACTIONS(269), + [anon_sym_PLUS] = ACTIONS(683), + [anon_sym_not] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(269), + [anon_sym_SLASH_SLASH] = ACTIONS(269), + [anon_sym_AMP] = ACTIONS(269), + [anon_sym_CARET] = ACTIONS(269), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_is] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(269), + [sym_ellipsis] = ACTIONS(687), + [sym_type_conversion] = ACTIONS(269), + [sym_integer] = ACTIONS(671), + [sym_float] = ACTIONS(687), + [anon_sym_await] = ACTIONS(689), + [sym_true] = ACTIONS(671), + [sym_false] = ACTIONS(671), + [sym_none] = ACTIONS(671), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(663), - [sym_string_start] = ACTIONS(327), - }, - [162] = { - [sym_list_splat_pattern] = STATE(1342), - [sym_primary_expression] = STATE(1051), - [sym_binary_operator] = STATE(1268), - [sym_unary_operator] = STATE(1268), - [sym_attribute] = STATE(1268), - [sym_subscript] = STATE(1268), - [sym_call] = STATE(1268), - [sym_list] = STATE(1268), - [sym_set] = STATE(1268), - [sym_tuple] = STATE(1268), - [sym_dictionary] = STATE(1268), - [sym_list_comprehension] = STATE(1268), - [sym_dictionary_comprehension] = STATE(1268), - [sym_set_comprehension] = STATE(1268), - [sym_generator_expression] = STATE(1268), - [sym_parenthesized_expression] = STATE(1268), - [sym_concatenated_string] = STATE(1268), - [sym_string] = STATE(1010), - [sym_await] = STATE(1268), - [sym_identifier] = ACTIONS(323), - [anon_sym_DOT] = ACTIONS(665), - [anon_sym_LPAREN] = ACTIONS(668), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_as] = ACTIONS(670), - [anon_sym_STAR] = ACTIONS(672), - [anon_sym_print] = ACTIONS(674), - [anon_sym_GT_GT] = ACTIONS(706), - [anon_sym_if] = ACTIONS(670), - [anon_sym_COLON] = ACTIONS(663), - [anon_sym_match] = ACTIONS(676), - [anon_sym_async] = ACTIONS(674), - [anon_sym_for] = ACTIONS(670), - [anon_sym_in] = ACTIONS(670), - [anon_sym_STAR_STAR] = ACTIONS(706), - [anon_sym_exec] = ACTIONS(674), - [anon_sym_type] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(670), - [anon_sym_LBRACK] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(315), - [anon_sym_PIPE] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_RBRACE] = ACTIONS(663), - [anon_sym_PLUS] = ACTIONS(315), - [anon_sym_not] = ACTIONS(670), - [anon_sym_and] = ACTIONS(670), - [anon_sym_or] = ACTIONS(670), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(706), - [anon_sym_SLASH_SLASH] = ACTIONS(706), - [anon_sym_AMP] = ACTIONS(706), - [anon_sym_CARET] = ACTIONS(706), - [anon_sym_LT_LT] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(315), - [anon_sym_is] = ACTIONS(670), - [anon_sym_LT] = ACTIONS(670), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(670), - [anon_sym_LT_GT] = ACTIONS(663), - [sym_ellipsis] = ACTIONS(321), - [sym_type_conversion] = ACTIONS(663), - [sym_integer] = ACTIONS(323), - [sym_float] = ACTIONS(321), - [anon_sym_await] = ACTIONS(682), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [sym_none] = ACTIONS(323), + [sym_string_start] = ACTIONS(691), + }, + [STATE(156)] = { + [sym_list_splat_pattern] = STATE(1333), + [sym_primary_expression] = STATE(1090), + [sym_binary_operator] = STATE(1276), + [sym_unary_operator] = STATE(1276), + [sym_attribute] = STATE(1276), + [sym_subscript] = STATE(1276), + [sym_call] = STATE(1276), + [sym_list] = STATE(1276), + [sym_set] = STATE(1276), + [sym_tuple] = STATE(1276), + [sym_dictionary] = STATE(1276), + [sym_list_comprehension] = STATE(1276), + [sym_dictionary_comprehension] = STATE(1276), + [sym_set_comprehension] = STATE(1276), + [sym_generator_expression] = STATE(1276), + [sym_parenthesized_expression] = STATE(1276), + [sym_concatenated_string] = STATE(1276), + [sym_string] = STATE(975), + [sym_await] = STATE(1276), + [sym_identifier] = ACTIONS(315), + [anon_sym_SEMI] = ACTIONS(647), + [anon_sym_DOT] = ACTIONS(649), + [anon_sym_from] = ACTIONS(654), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_COMMA] = ACTIONS(647), + [anon_sym_as] = ACTIONS(654), + [anon_sym_STAR] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_GT_GT] = ACTIONS(668), + [anon_sym_if] = ACTIONS(654), + [anon_sym_COLON] = ACTIONS(647), + [anon_sym_match] = ACTIONS(660), + [anon_sym_async] = ACTIONS(658), + [anon_sym_in] = ACTIONS(654), + [anon_sym_STAR_STAR] = ACTIONS(668), + [anon_sym_exec] = ACTIONS(658), + [anon_sym_type] = ACTIONS(660), + [anon_sym_EQ] = ACTIONS(654), + [anon_sym_LBRACK] = ACTIONS(662), + [anon_sym_AT] = ACTIONS(668), + [anon_sym_DASH] = ACTIONS(307), + [anon_sym_PIPE] = ACTIONS(668), + [anon_sym_LBRACE] = ACTIONS(302), + [anon_sym_PLUS] = ACTIONS(307), + [anon_sym_not] = ACTIONS(654), + [anon_sym_and] = ACTIONS(654), + [anon_sym_or] = ACTIONS(654), + [anon_sym_SLASH] = ACTIONS(649), + [anon_sym_PERCENT] = ACTIONS(668), + [anon_sym_SLASH_SLASH] = ACTIONS(668), + [anon_sym_AMP] = ACTIONS(668), + [anon_sym_CARET] = ACTIONS(668), + [anon_sym_LT_LT] = ACTIONS(668), + [anon_sym_TILDE] = ACTIONS(307), + [anon_sym_is] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(654), + [anon_sym_LT_EQ] = ACTIONS(647), + [anon_sym_EQ_EQ] = ACTIONS(647), + [anon_sym_BANG_EQ] = ACTIONS(647), + [anon_sym_GT_EQ] = ACTIONS(647), + [anon_sym_GT] = ACTIONS(654), + [anon_sym_LT_GT] = ACTIONS(647), + [sym_ellipsis] = ACTIONS(313), + [sym_integer] = ACTIONS(315), + [sym_float] = ACTIONS(313), + [anon_sym_await] = ACTIONS(666), + [sym_true] = ACTIONS(315), + [sym_false] = ACTIONS(315), + [sym_none] = ACTIONS(315), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(327), - }, - [163] = { - [sym_list_splat_pattern] = STATE(1342), - [sym_primary_expression] = STATE(1051), - [sym_binary_operator] = STATE(1268), - [sym_unary_operator] = STATE(1268), - [sym_attribute] = STATE(1268), - [sym_subscript] = STATE(1268), - [sym_call] = STATE(1268), - [sym_list] = STATE(1268), - [sym_set] = STATE(1268), - [sym_tuple] = STATE(1268), - [sym_dictionary] = STATE(1268), - [sym_list_comprehension] = STATE(1268), - [sym_dictionary_comprehension] = STATE(1268), - [sym_set_comprehension] = STATE(1268), - [sym_generator_expression] = STATE(1268), - [sym_parenthesized_expression] = STATE(1268), - [sym_concatenated_string] = STATE(1268), - [sym_string] = STATE(1010), - [sym_await] = STATE(1268), - [sym_identifier] = ACTIONS(323), - [anon_sym_DOT] = ACTIONS(665), - [anon_sym_LPAREN] = ACTIONS(668), - [anon_sym_RPAREN] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_as] = ACTIONS(670), - [anon_sym_STAR] = ACTIONS(672), - [anon_sym_print] = ACTIONS(674), - [anon_sym_GT_GT] = ACTIONS(706), - [anon_sym_if] = ACTIONS(670), - [anon_sym_COLON] = ACTIONS(663), - [anon_sym_match] = ACTIONS(676), - [anon_sym_async] = ACTIONS(674), - [anon_sym_for] = ACTIONS(670), - [anon_sym_in] = ACTIONS(670), - [anon_sym_STAR_STAR] = ACTIONS(706), - [anon_sym_exec] = ACTIONS(674), - [anon_sym_type] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(670), - [anon_sym_LBRACK] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(315), - [anon_sym_PIPE] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_PLUS] = ACTIONS(315), - [anon_sym_not] = ACTIONS(670), - [anon_sym_and] = ACTIONS(670), - [anon_sym_or] = ACTIONS(670), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(706), - [anon_sym_SLASH_SLASH] = ACTIONS(706), - [anon_sym_AMP] = ACTIONS(706), - [anon_sym_CARET] = ACTIONS(706), - [anon_sym_LT_LT] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(315), - [anon_sym_is] = ACTIONS(670), - [anon_sym_LT] = ACTIONS(670), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(670), - [anon_sym_LT_GT] = ACTIONS(663), - [sym_ellipsis] = ACTIONS(321), - [sym_integer] = ACTIONS(323), - [sym_float] = ACTIONS(321), - [anon_sym_await] = ACTIONS(682), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [sym_none] = ACTIONS(323), + [sym__newline] = ACTIONS(647), + [sym_string_start] = ACTIONS(319), + }, + [STATE(157)] = { + [sym_list_splat_pattern] = STATE(1333), + [sym_primary_expression] = STATE(1090), + [sym_binary_operator] = STATE(1276), + [sym_unary_operator] = STATE(1276), + [sym_attribute] = STATE(1276), + [sym_subscript] = STATE(1276), + [sym_call] = STATE(1276), + [sym_list] = STATE(1276), + [sym_set] = STATE(1276), + [sym_tuple] = STATE(1276), + [sym_dictionary] = STATE(1276), + [sym_list_comprehension] = STATE(1276), + [sym_dictionary_comprehension] = STATE(1276), + [sym_set_comprehension] = STATE(1276), + [sym_generator_expression] = STATE(1276), + [sym_parenthesized_expression] = STATE(1276), + [sym_concatenated_string] = STATE(1276), + [sym_string] = STATE(975), + [sym_await] = STATE(1276), + [sym_identifier] = ACTIONS(315), + [anon_sym_DOT] = ACTIONS(649), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_RPAREN] = ACTIONS(647), + [anon_sym_COMMA] = ACTIONS(647), + [anon_sym_as] = ACTIONS(654), + [anon_sym_STAR] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_GT_GT] = ACTIONS(668), + [anon_sym_if] = ACTIONS(654), + [anon_sym_COLON] = ACTIONS(647), + [anon_sym_match] = ACTIONS(660), + [anon_sym_async] = ACTIONS(658), + [anon_sym_for] = ACTIONS(654), + [anon_sym_in] = ACTIONS(654), + [anon_sym_STAR_STAR] = ACTIONS(668), + [anon_sym_exec] = ACTIONS(658), + [anon_sym_type] = ACTIONS(660), + [anon_sym_EQ] = ACTIONS(654), + [anon_sym_LBRACK] = ACTIONS(662), + [anon_sym_AT] = ACTIONS(668), + [anon_sym_DASH] = ACTIONS(307), + [anon_sym_PIPE] = ACTIONS(668), + [anon_sym_LBRACE] = ACTIONS(302), + [anon_sym_PLUS] = ACTIONS(307), + [anon_sym_not] = ACTIONS(654), + [anon_sym_and] = ACTIONS(654), + [anon_sym_or] = ACTIONS(654), + [anon_sym_SLASH] = ACTIONS(649), + [anon_sym_PERCENT] = ACTIONS(668), + [anon_sym_SLASH_SLASH] = ACTIONS(668), + [anon_sym_AMP] = ACTIONS(668), + [anon_sym_CARET] = ACTIONS(668), + [anon_sym_LT_LT] = ACTIONS(668), + [anon_sym_TILDE] = ACTIONS(307), + [anon_sym_is] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(654), + [anon_sym_LT_EQ] = ACTIONS(647), + [anon_sym_EQ_EQ] = ACTIONS(647), + [anon_sym_BANG_EQ] = ACTIONS(647), + [anon_sym_GT_EQ] = ACTIONS(647), + [anon_sym_GT] = ACTIONS(654), + [anon_sym_LT_GT] = ACTIONS(647), + [sym_ellipsis] = ACTIONS(313), + [sym_integer] = ACTIONS(315), + [sym_float] = ACTIONS(313), + [anon_sym_await] = ACTIONS(666), + [sym_true] = ACTIONS(315), + [sym_false] = ACTIONS(315), + [sym_none] = ACTIONS(315), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(327), - }, - [164] = { - [sym_list_splat_pattern] = STATE(1388), - [sym_primary_expression] = STATE(1096), - [sym_binary_operator] = STATE(1270), - [sym_unary_operator] = STATE(1270), - [sym_attribute] = STATE(1270), - [sym_subscript] = STATE(1270), - [sym_call] = STATE(1270), - [sym_list] = STATE(1270), - [sym_set] = STATE(1270), - [sym_tuple] = STATE(1270), - [sym_dictionary] = STATE(1270), - [sym_list_comprehension] = STATE(1270), - [sym_dictionary_comprehension] = STATE(1270), - [sym_set_comprehension] = STATE(1270), - [sym_generator_expression] = STATE(1270), - [sym_parenthesized_expression] = STATE(1270), - [sym_concatenated_string] = STATE(1270), - [sym_string] = STATE(1028), - [sym_await] = STATE(1270), - [sym_identifier] = ACTIONS(709), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(711), - [anon_sym_RPAREN] = ACTIONS(277), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(713), - [anon_sym_print] = ACTIONS(715), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(279), - [anon_sym_match] = ACTIONS(717), - [anon_sym_async] = ACTIONS(715), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(715), - [anon_sym_type] = ACTIONS(717), - [anon_sym_EQ] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(719), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(721), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(723), - [anon_sym_PLUS] = ACTIONS(721), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(721), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(725), - [sym_integer] = ACTIONS(709), - [sym_float] = ACTIONS(725), - [anon_sym_await] = ACTIONS(727), - [sym_true] = ACTIONS(709), - [sym_false] = ACTIONS(709), - [sym_none] = ACTIONS(709), + [sym_string_start] = ACTIONS(319), + }, + [STATE(158)] = { + [sym_list_splat_pattern] = STATE(1322), + [sym_primary_expression] = STATE(1022), + [sym_binary_operator] = STATE(1384), + [sym_unary_operator] = STATE(1384), + [sym_attribute] = STATE(1384), + [sym_subscript] = STATE(1384), + [sym_call] = STATE(1384), + [sym_list] = STATE(1384), + [sym_set] = STATE(1384), + [sym_tuple] = STATE(1384), + [sym_dictionary] = STATE(1384), + [sym_list_comprehension] = STATE(1384), + [sym_dictionary_comprehension] = STATE(1384), + [sym_set_comprehension] = STATE(1384), + [sym_generator_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_concatenated_string] = STATE(1384), + [sym_string] = STATE(992), + [sym_await] = STATE(1384), + [sym_identifier] = ACTIONS(693), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(695), + [anon_sym_RPAREN] = ACTIONS(269), + [anon_sym_COMMA] = ACTIONS(269), + [anon_sym_as] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(697), + [anon_sym_print] = ACTIONS(699), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_COLON_EQ] = ACTIONS(284), + [anon_sym_if] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(271), + [anon_sym_match] = ACTIONS(701), + [anon_sym_async] = ACTIONS(699), + [anon_sym_in] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(269), + [anon_sym_exec] = ACTIONS(699), + [anon_sym_type] = ACTIONS(701), + [anon_sym_EQ] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(703), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_DASH] = ACTIONS(705), + [anon_sym_PIPE] = ACTIONS(269), + [anon_sym_LBRACE] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(705), + [anon_sym_not] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(269), + [anon_sym_SLASH_SLASH] = ACTIONS(269), + [anon_sym_AMP] = ACTIONS(269), + [anon_sym_CARET] = ACTIONS(269), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_is] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(269), + [sym_ellipsis] = ACTIONS(709), + [sym_integer] = ACTIONS(693), + [sym_float] = ACTIONS(709), + [anon_sym_await] = ACTIONS(711), + [sym_true] = ACTIONS(693), + [sym_false] = ACTIONS(693), + [sym_none] = ACTIONS(693), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(729), - }, - [165] = { - [sym_list_splat_pattern] = STATE(1214), - [sym_primary_expression] = STATE(1026), - [sym_binary_operator] = STATE(1172), - [sym_unary_operator] = STATE(1172), - [sym_attribute] = STATE(1172), - [sym_subscript] = STATE(1172), - [sym_call] = STATE(1172), - [sym_list] = STATE(1172), - [sym_set] = STATE(1172), - [sym_tuple] = STATE(1172), - [sym_dictionary] = STATE(1172), - [sym_list_comprehension] = STATE(1172), - [sym_dictionary_comprehension] = STATE(1172), - [sym_set_comprehension] = STATE(1172), - [sym_generator_expression] = STATE(1172), - [sym_parenthesized_expression] = STATE(1172), - [sym_concatenated_string] = STATE(1172), - [sym_string] = STATE(975), - [sym_await] = STATE(1172), - [sym_identifier] = ACTIONS(684), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(686), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_print] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(277), - [anon_sym_match] = ACTIONS(692), - [anon_sym_async] = ACTIONS(690), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(690), - [anon_sym_type] = ACTIONS(692), - [anon_sym_EQ] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(696), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(698), - [anon_sym_RBRACE] = ACTIONS(277), - [anon_sym_PLUS] = ACTIONS(696), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(696), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(700), - [sym_type_conversion] = ACTIONS(277), - [sym_integer] = ACTIONS(684), - [sym_float] = ACTIONS(700), - [anon_sym_await] = ACTIONS(702), - [sym_true] = ACTIONS(684), - [sym_false] = ACTIONS(684), - [sym_none] = ACTIONS(684), + [sym_string_start] = ACTIONS(713), + }, + [STATE(159)] = { + [sym_list_splat_pattern] = STATE(1164), + [sym_primary_expression] = STATE(999), + [sym_binary_operator] = STATE(1149), + [sym_unary_operator] = STATE(1149), + [sym_attribute] = STATE(1149), + [sym_subscript] = STATE(1149), + [sym_call] = STATE(1149), + [sym_list] = STATE(1149), + [sym_set] = STATE(1149), + [sym_tuple] = STATE(1149), + [sym_dictionary] = STATE(1149), + [sym_list_comprehension] = STATE(1149), + [sym_dictionary_comprehension] = STATE(1149), + [sym_set_comprehension] = STATE(1149), + [sym_generator_expression] = STATE(1149), + [sym_parenthesized_expression] = STATE(1149), + [sym_concatenated_string] = STATE(1149), + [sym_string] = STATE(957), + [sym_await] = STATE(1149), + [sym_identifier] = ACTIONS(715), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(717), + [anon_sym_COMMA] = ACTIONS(269), + [anon_sym_as] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(719), + [anon_sym_print] = ACTIONS(721), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_COLON_EQ] = ACTIONS(284), + [anon_sym_if] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(271), + [anon_sym_match] = ACTIONS(723), + [anon_sym_async] = ACTIONS(721), + [anon_sym_for] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(269), + [anon_sym_exec] = ACTIONS(721), + [anon_sym_type] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(725), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_DASH] = ACTIONS(727), + [anon_sym_PIPE] = ACTIONS(269), + [anon_sym_LBRACE] = ACTIONS(729), + [anon_sym_RBRACE] = ACTIONS(269), + [anon_sym_PLUS] = ACTIONS(727), + [anon_sym_not] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(269), + [anon_sym_SLASH_SLASH] = ACTIONS(269), + [anon_sym_AMP] = ACTIONS(269), + [anon_sym_CARET] = ACTIONS(269), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_is] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(269), + [sym_ellipsis] = ACTIONS(731), + [sym_integer] = ACTIONS(715), + [sym_float] = ACTIONS(731), + [anon_sym_await] = ACTIONS(733), + [sym_true] = ACTIONS(715), + [sym_false] = ACTIONS(715), + [sym_none] = ACTIONS(715), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(704), - }, - [166] = { - [sym_list_splat_pattern] = STATE(1342), - [sym_primary_expression] = STATE(1051), - [sym_binary_operator] = STATE(1268), - [sym_unary_operator] = STATE(1268), - [sym_attribute] = STATE(1268), - [sym_subscript] = STATE(1268), - [sym_call] = STATE(1268), - [sym_list] = STATE(1268), - [sym_set] = STATE(1268), - [sym_tuple] = STATE(1268), - [sym_dictionary] = STATE(1268), - [sym_list_comprehension] = STATE(1268), - [sym_dictionary_comprehension] = STATE(1268), - [sym_set_comprehension] = STATE(1268), - [sym_generator_expression] = STATE(1268), - [sym_parenthesized_expression] = STATE(1268), - [sym_concatenated_string] = STATE(1268), - [sym_string] = STATE(1010), - [sym_await] = STATE(1268), - [sym_identifier] = ACTIONS(323), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(668), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(672), - [anon_sym_print] = ACTIONS(674), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(279), - [anon_sym_else] = ACTIONS(279), - [anon_sym_match] = ACTIONS(676), - [anon_sym_async] = ACTIONS(674), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(674), - [anon_sym_type] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(315), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_PLUS] = ACTIONS(315), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(315), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(321), - [sym_integer] = ACTIONS(323), - [sym_float] = ACTIONS(321), - [anon_sym_await] = ACTIONS(682), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [sym_none] = ACTIONS(323), + [sym_string_start] = ACTIONS(735), + }, + [STATE(160)] = { + [sym_list_splat_pattern] = STATE(1281), + [sym_primary_expression] = STATE(1095), + [sym_binary_operator] = STATE(1347), + [sym_unary_operator] = STATE(1347), + [sym_attribute] = STATE(1347), + [sym_subscript] = STATE(1347), + [sym_call] = STATE(1347), + [sym_list] = STATE(1347), + [sym_set] = STATE(1347), + [sym_tuple] = STATE(1347), + [sym_dictionary] = STATE(1347), + [sym_list_comprehension] = STATE(1347), + [sym_dictionary_comprehension] = STATE(1347), + [sym_set_comprehension] = STATE(1347), + [sym_generator_expression] = STATE(1347), + [sym_parenthesized_expression] = STATE(1347), + [sym_concatenated_string] = STATE(1347), + [sym_string] = STATE(1018), + [sym_await] = STATE(1347), + [sym_identifier] = ACTIONS(737), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(739), + [anon_sym_RPAREN] = ACTIONS(269), + [anon_sym_COMMA] = ACTIONS(269), + [anon_sym_as] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(741), + [anon_sym_print] = ACTIONS(743), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_COLON_EQ] = ACTIONS(284), + [anon_sym_if] = ACTIONS(271), + [anon_sym_match] = ACTIONS(745), + [anon_sym_async] = ACTIONS(743), + [anon_sym_for] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(269), + [anon_sym_exec] = ACTIONS(743), + [anon_sym_type] = ACTIONS(745), + [anon_sym_EQ] = ACTIONS(747), + [anon_sym_LBRACK] = ACTIONS(749), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_DASH] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(269), + [anon_sym_LBRACE] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(751), + [anon_sym_not] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(269), + [anon_sym_SLASH_SLASH] = ACTIONS(269), + [anon_sym_AMP] = ACTIONS(269), + [anon_sym_CARET] = ACTIONS(269), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(751), + [anon_sym_is] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(269), + [sym_ellipsis] = ACTIONS(755), + [sym_integer] = ACTIONS(737), + [sym_float] = ACTIONS(755), + [anon_sym_await] = ACTIONS(757), + [sym_true] = ACTIONS(737), + [sym_false] = ACTIONS(737), + [sym_none] = ACTIONS(737), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(327), - }, - [167] = { - [sym_list_splat_pattern] = STATE(1203), - [sym_primary_expression] = STATE(988), - [sym_binary_operator] = STATE(1138), - [sym_unary_operator] = STATE(1138), - [sym_attribute] = STATE(1138), - [sym_subscript] = STATE(1138), - [sym_call] = STATE(1138), - [sym_list] = STATE(1138), - [sym_set] = STATE(1138), - [sym_tuple] = STATE(1138), - [sym_dictionary] = STATE(1138), - [sym_list_comprehension] = STATE(1138), - [sym_dictionary_comprehension] = STATE(1138), - [sym_set_comprehension] = STATE(1138), - [sym_generator_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_concatenated_string] = STATE(1138), - [sym_string] = STATE(971), - [sym_await] = STATE(1138), - [sym_identifier] = ACTIONS(731), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(733), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(735), - [anon_sym_print] = ACTIONS(737), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(279), - [anon_sym_match] = ACTIONS(739), - [anon_sym_async] = ACTIONS(737), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(737), - [anon_sym_type] = ACTIONS(739), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(743), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(745), - [anon_sym_RBRACE] = ACTIONS(277), - [anon_sym_PLUS] = ACTIONS(743), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(743), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(747), - [sym_integer] = ACTIONS(731), - [sym_float] = ACTIONS(747), - [anon_sym_await] = ACTIONS(749), - [sym_true] = ACTIONS(731), - [sym_false] = ACTIONS(731), - [sym_none] = ACTIONS(731), + [sym_string_start] = ACTIONS(759), + }, + [STATE(161)] = { + [sym_list_splat_pattern] = STATE(1223), + [sym_primary_expression] = STATE(1000), + [sym_binary_operator] = STATE(1198), + [sym_unary_operator] = STATE(1198), + [sym_attribute] = STATE(1198), + [sym_subscript] = STATE(1198), + [sym_call] = STATE(1198), + [sym_list] = STATE(1198), + [sym_set] = STATE(1198), + [sym_tuple] = STATE(1198), + [sym_dictionary] = STATE(1198), + [sym_list_comprehension] = STATE(1198), + [sym_dictionary_comprehension] = STATE(1198), + [sym_set_comprehension] = STATE(1198), + [sym_generator_expression] = STATE(1198), + [sym_parenthesized_expression] = STATE(1198), + [sym_concatenated_string] = STATE(1198), + [sym_string] = STATE(963), + [sym_await] = STATE(1198), + [sym_identifier] = ACTIONS(671), + [anon_sym_DOT] = ACTIONS(649), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_COMMA] = ACTIONS(668), + [anon_sym_as] = ACTIONS(649), + [anon_sym_STAR] = ACTIONS(675), + [anon_sym_print] = ACTIONS(677), + [anon_sym_GT_GT] = ACTIONS(668), + [anon_sym_COLON_EQ] = ACTIONS(284), + [anon_sym_if] = ACTIONS(649), + [anon_sym_COLON] = ACTIONS(654), + [anon_sym_match] = ACTIONS(679), + [anon_sym_async] = ACTIONS(677), + [anon_sym_for] = ACTIONS(654), + [anon_sym_in] = ACTIONS(649), + [anon_sym_STAR_STAR] = ACTIONS(668), + [anon_sym_exec] = ACTIONS(677), + [anon_sym_type] = ACTIONS(679), + [anon_sym_LBRACK] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(668), + [anon_sym_DASH] = ACTIONS(683), + [anon_sym_PIPE] = ACTIONS(668), + [anon_sym_LBRACE] = ACTIONS(685), + [anon_sym_RBRACE] = ACTIONS(668), + [anon_sym_PLUS] = ACTIONS(683), + [anon_sym_not] = ACTIONS(649), + [anon_sym_and] = ACTIONS(649), + [anon_sym_or] = ACTIONS(649), + [anon_sym_SLASH] = ACTIONS(649), + [anon_sym_PERCENT] = ACTIONS(668), + [anon_sym_SLASH_SLASH] = ACTIONS(668), + [anon_sym_AMP] = ACTIONS(668), + [anon_sym_CARET] = ACTIONS(668), + [anon_sym_LT_LT] = ACTIONS(668), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_is] = ACTIONS(649), + [anon_sym_LT] = ACTIONS(649), + [anon_sym_LT_EQ] = ACTIONS(668), + [anon_sym_EQ_EQ] = ACTIONS(668), + [anon_sym_BANG_EQ] = ACTIONS(668), + [anon_sym_GT_EQ] = ACTIONS(668), + [anon_sym_GT] = ACTIONS(649), + [anon_sym_LT_GT] = ACTIONS(668), + [sym_ellipsis] = ACTIONS(687), + [sym_integer] = ACTIONS(671), + [sym_float] = ACTIONS(687), + [anon_sym_await] = ACTIONS(689), + [sym_true] = ACTIONS(671), + [sym_false] = ACTIONS(671), + [sym_none] = ACTIONS(671), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(751), - }, - [168] = { - [sym_list_splat_pattern] = STATE(1214), - [sym_primary_expression] = STATE(1026), - [sym_binary_operator] = STATE(1172), - [sym_unary_operator] = STATE(1172), - [sym_attribute] = STATE(1172), - [sym_subscript] = STATE(1172), - [sym_call] = STATE(1172), - [sym_list] = STATE(1172), - [sym_set] = STATE(1172), - [sym_tuple] = STATE(1172), - [sym_dictionary] = STATE(1172), - [sym_list_comprehension] = STATE(1172), - [sym_dictionary_comprehension] = STATE(1172), - [sym_set_comprehension] = STATE(1172), - [sym_generator_expression] = STATE(1172), - [sym_parenthesized_expression] = STATE(1172), - [sym_concatenated_string] = STATE(1172), - [sym_string] = STATE(975), - [sym_await] = STATE(1172), - [sym_identifier] = ACTIONS(684), - [anon_sym_DOT] = ACTIONS(665), - [anon_sym_LPAREN] = ACTIONS(686), - [anon_sym_COMMA] = ACTIONS(706), - [anon_sym_as] = ACTIONS(665), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_print] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(706), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(665), - [anon_sym_COLON] = ACTIONS(670), - [anon_sym_match] = ACTIONS(692), - [anon_sym_async] = ACTIONS(690), - [anon_sym_for] = ACTIONS(670), - [anon_sym_in] = ACTIONS(665), - [anon_sym_STAR_STAR] = ACTIONS(706), - [anon_sym_exec] = ACTIONS(690), - [anon_sym_type] = ACTIONS(692), - [anon_sym_LBRACK] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(696), - [anon_sym_PIPE] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(698), - [anon_sym_RBRACE] = ACTIONS(706), - [anon_sym_PLUS] = ACTIONS(696), - [anon_sym_not] = ACTIONS(665), - [anon_sym_and] = ACTIONS(665), - [anon_sym_or] = ACTIONS(665), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(706), - [anon_sym_SLASH_SLASH] = ACTIONS(706), - [anon_sym_AMP] = ACTIONS(706), - [anon_sym_CARET] = ACTIONS(706), - [anon_sym_LT_LT] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(696), - [anon_sym_is] = ACTIONS(665), - [anon_sym_LT] = ACTIONS(665), - [anon_sym_LT_EQ] = ACTIONS(706), - [anon_sym_EQ_EQ] = ACTIONS(706), - [anon_sym_BANG_EQ] = ACTIONS(706), - [anon_sym_GT_EQ] = ACTIONS(706), - [anon_sym_GT] = ACTIONS(665), - [anon_sym_LT_GT] = ACTIONS(706), - [sym_ellipsis] = ACTIONS(700), - [sym_integer] = ACTIONS(684), - [sym_float] = ACTIONS(700), - [anon_sym_await] = ACTIONS(702), - [sym_true] = ACTIONS(684), - [sym_false] = ACTIONS(684), - [sym_none] = ACTIONS(684), + [sym_string_start] = ACTIONS(691), + }, + [STATE(162)] = { + [sym_list_splat_pattern] = STATE(1223), + [sym_primary_expression] = STATE(1000), + [sym_binary_operator] = STATE(1198), + [sym_unary_operator] = STATE(1198), + [sym_attribute] = STATE(1198), + [sym_subscript] = STATE(1198), + [sym_call] = STATE(1198), + [sym_list] = STATE(1198), + [sym_set] = STATE(1198), + [sym_tuple] = STATE(1198), + [sym_dictionary] = STATE(1198), + [sym_list_comprehension] = STATE(1198), + [sym_dictionary_comprehension] = STATE(1198), + [sym_set_comprehension] = STATE(1198), + [sym_generator_expression] = STATE(1198), + [sym_parenthesized_expression] = STATE(1198), + [sym_concatenated_string] = STATE(1198), + [sym_string] = STATE(963), + [sym_await] = STATE(1198), + [sym_identifier] = ACTIONS(671), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_COMMA] = ACTIONS(269), + [anon_sym_as] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(675), + [anon_sym_print] = ACTIONS(677), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_if] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(269), + [anon_sym_match] = ACTIONS(679), + [anon_sym_async] = ACTIONS(677), + [anon_sym_in] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(269), + [anon_sym_exec] = ACTIONS(677), + [anon_sym_type] = ACTIONS(679), + [anon_sym_EQ] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_DASH] = ACTIONS(683), + [anon_sym_PIPE] = ACTIONS(269), + [anon_sym_LBRACE] = ACTIONS(685), + [anon_sym_RBRACE] = ACTIONS(269), + [anon_sym_PLUS] = ACTIONS(683), + [anon_sym_not] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(269), + [anon_sym_SLASH_SLASH] = ACTIONS(269), + [anon_sym_AMP] = ACTIONS(269), + [anon_sym_CARET] = ACTIONS(269), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_is] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(269), + [sym_ellipsis] = ACTIONS(687), + [sym_type_conversion] = ACTIONS(269), + [sym_integer] = ACTIONS(671), + [sym_float] = ACTIONS(687), + [anon_sym_await] = ACTIONS(689), + [sym_true] = ACTIONS(671), + [sym_false] = ACTIONS(671), + [sym_none] = ACTIONS(671), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(704), - }, - [169] = { - [sym_list_splat_pattern] = STATE(1258), - [sym_primary_expression] = STATE(1122), - [sym_binary_operator] = STATE(1367), - [sym_unary_operator] = STATE(1367), - [sym_attribute] = STATE(1367), - [sym_subscript] = STATE(1367), - [sym_call] = STATE(1367), - [sym_list] = STATE(1367), - [sym_set] = STATE(1367), - [sym_tuple] = STATE(1367), - [sym_dictionary] = STATE(1367), - [sym_list_comprehension] = STATE(1367), - [sym_dictionary_comprehension] = STATE(1367), - [sym_set_comprehension] = STATE(1367), - [sym_generator_expression] = STATE(1367), - [sym_parenthesized_expression] = STATE(1367), - [sym_concatenated_string] = STATE(1367), - [sym_string] = STATE(1015), - [sym_await] = STATE(1367), - [sym_identifier] = ACTIONS(753), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(755), - [anon_sym_RPAREN] = ACTIONS(277), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(757), - [anon_sym_print] = ACTIONS(759), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_match] = ACTIONS(761), - [anon_sym_async] = ACTIONS(759), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(759), - [anon_sym_type] = ACTIONS(761), - [anon_sym_EQ] = ACTIONS(763), - [anon_sym_LBRACK] = ACTIONS(765), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(769), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(767), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(771), - [sym_integer] = ACTIONS(753), - [sym_float] = ACTIONS(771), - [anon_sym_await] = ACTIONS(773), - [sym_true] = ACTIONS(753), - [sym_false] = ACTIONS(753), - [sym_none] = ACTIONS(753), + [sym_string_start] = ACTIONS(691), + }, + [STATE(163)] = { + [sym_list_splat_pattern] = STATE(1333), + [sym_primary_expression] = STATE(1090), + [sym_binary_operator] = STATE(1276), + [sym_unary_operator] = STATE(1276), + [sym_attribute] = STATE(1276), + [sym_subscript] = STATE(1276), + [sym_call] = STATE(1276), + [sym_list] = STATE(1276), + [sym_set] = STATE(1276), + [sym_tuple] = STATE(1276), + [sym_dictionary] = STATE(1276), + [sym_list_comprehension] = STATE(1276), + [sym_dictionary_comprehension] = STATE(1276), + [sym_set_comprehension] = STATE(1276), + [sym_generator_expression] = STATE(1276), + [sym_parenthesized_expression] = STATE(1276), + [sym_concatenated_string] = STATE(1276), + [sym_string] = STATE(975), + [sym_await] = STATE(1276), + [sym_identifier] = ACTIONS(315), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_COMMA] = ACTIONS(269), + [anon_sym_as] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_COLON_EQ] = ACTIONS(284), + [anon_sym_if] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(271), + [anon_sym_else] = ACTIONS(271), + [anon_sym_match] = ACTIONS(660), + [anon_sym_async] = ACTIONS(658), + [anon_sym_in] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(269), + [anon_sym_exec] = ACTIONS(658), + [anon_sym_type] = ACTIONS(660), + [anon_sym_EQ] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(662), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_DASH] = ACTIONS(307), + [anon_sym_PIPE] = ACTIONS(269), + [anon_sym_LBRACE] = ACTIONS(302), + [anon_sym_PLUS] = ACTIONS(307), + [anon_sym_not] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(269), + [anon_sym_SLASH_SLASH] = ACTIONS(269), + [anon_sym_AMP] = ACTIONS(269), + [anon_sym_CARET] = ACTIONS(269), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(307), + [anon_sym_is] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(269), + [sym_ellipsis] = ACTIONS(313), + [sym_integer] = ACTIONS(315), + [sym_float] = ACTIONS(313), + [anon_sym_await] = ACTIONS(666), + [sym_true] = ACTIONS(315), + [sym_false] = ACTIONS(315), + [sym_none] = ACTIONS(315), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(775), - }, - [170] = { - [sym_list_splat_pattern] = STATE(1360), - [sym_primary_expression] = STATE(1076), - [sym_binary_operator] = STATE(1365), - [sym_unary_operator] = STATE(1365), - [sym_attribute] = STATE(1365), - [sym_subscript] = STATE(1365), - [sym_call] = STATE(1365), - [sym_list] = STATE(1365), - [sym_set] = STATE(1365), - [sym_tuple] = STATE(1365), - [sym_dictionary] = STATE(1365), - [sym_list_comprehension] = STATE(1365), - [sym_dictionary_comprehension] = STATE(1365), - [sym_set_comprehension] = STATE(1365), - [sym_generator_expression] = STATE(1365), - [sym_parenthesized_expression] = STATE(1365), - [sym_concatenated_string] = STATE(1365), - [sym_string] = STATE(996), - [sym_await] = STATE(1365), - [sym_identifier] = ACTIONS(777), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(779), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_print] = ACTIONS(783), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_match] = ACTIONS(785), - [anon_sym_async] = ACTIONS(783), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(783), - [anon_sym_type] = ACTIONS(785), - [anon_sym_LBRACK] = ACTIONS(787), - [anon_sym_RBRACK] = ACTIONS(277), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(789), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(791), - [anon_sym_PLUS] = ACTIONS(789), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(789), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(793), - [sym_integer] = ACTIONS(777), - [sym_float] = ACTIONS(793), - [anon_sym_await] = ACTIONS(795), - [sym_true] = ACTIONS(777), - [sym_false] = ACTIONS(777), - [sym_none] = ACTIONS(777), + [sym_string_start] = ACTIONS(319), + }, + [STATE(164)] = { + [sym_list_splat_pattern] = STATE(1281), + [sym_primary_expression] = STATE(1095), + [sym_binary_operator] = STATE(1347), + [sym_unary_operator] = STATE(1347), + [sym_attribute] = STATE(1347), + [sym_subscript] = STATE(1347), + [sym_call] = STATE(1347), + [sym_list] = STATE(1347), + [sym_set] = STATE(1347), + [sym_tuple] = STATE(1347), + [sym_dictionary] = STATE(1347), + [sym_list_comprehension] = STATE(1347), + [sym_dictionary_comprehension] = STATE(1347), + [sym_set_comprehension] = STATE(1347), + [sym_generator_expression] = STATE(1347), + [sym_parenthesized_expression] = STATE(1347), + [sym_concatenated_string] = STATE(1347), + [sym_string] = STATE(1018), + [sym_await] = STATE(1347), + [sym_identifier] = ACTIONS(737), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(739), + [anon_sym_RPAREN] = ACTIONS(269), + [anon_sym_COMMA] = ACTIONS(269), + [anon_sym_as] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(741), + [anon_sym_print] = ACTIONS(743), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_COLON_EQ] = ACTIONS(284), + [anon_sym_if] = ACTIONS(271), + [anon_sym_match] = ACTIONS(745), + [anon_sym_async] = ACTIONS(743), + [anon_sym_for] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(269), + [anon_sym_exec] = ACTIONS(743), + [anon_sym_type] = ACTIONS(745), + [anon_sym_LBRACK] = ACTIONS(749), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_DASH] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(269), + [anon_sym_LBRACE] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(751), + [anon_sym_not] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(269), + [anon_sym_SLASH_SLASH] = ACTIONS(269), + [anon_sym_AMP] = ACTIONS(269), + [anon_sym_CARET] = ACTIONS(269), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(751), + [anon_sym_is] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(269), + [sym_ellipsis] = ACTIONS(755), + [sym_integer] = ACTIONS(737), + [sym_float] = ACTIONS(755), + [anon_sym_await] = ACTIONS(757), + [sym_true] = ACTIONS(737), + [sym_false] = ACTIONS(737), + [sym_none] = ACTIONS(737), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(797), - }, - [171] = { - [sym_list_splat_pattern] = STATE(1203), - [sym_primary_expression] = STATE(988), - [sym_binary_operator] = STATE(1138), - [sym_unary_operator] = STATE(1138), - [sym_attribute] = STATE(1138), - [sym_subscript] = STATE(1138), - [sym_call] = STATE(1138), - [sym_list] = STATE(1138), - [sym_set] = STATE(1138), - [sym_tuple] = STATE(1138), - [sym_dictionary] = STATE(1138), - [sym_list_comprehension] = STATE(1138), - [sym_dictionary_comprehension] = STATE(1138), - [sym_set_comprehension] = STATE(1138), - [sym_generator_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_concatenated_string] = STATE(1138), - [sym_string] = STATE(971), - [sym_await] = STATE(1138), - [sym_identifier] = ACTIONS(731), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(733), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(735), - [anon_sym_print] = ACTIONS(737), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(277), - [anon_sym_match] = ACTIONS(739), - [anon_sym_async] = ACTIONS(737), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(737), - [anon_sym_type] = ACTIONS(739), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(743), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(745), - [anon_sym_RBRACE] = ACTIONS(277), - [anon_sym_PLUS] = ACTIONS(743), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(743), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(747), - [sym_integer] = ACTIONS(731), - [sym_float] = ACTIONS(747), - [anon_sym_await] = ACTIONS(749), - [sym_true] = ACTIONS(731), - [sym_false] = ACTIONS(731), - [sym_none] = ACTIONS(731), + [sym_string_start] = ACTIONS(759), + }, + [STATE(165)] = { + [sym_list_splat_pattern] = STATE(1322), + [sym_primary_expression] = STATE(1022), + [sym_binary_operator] = STATE(1384), + [sym_unary_operator] = STATE(1384), + [sym_attribute] = STATE(1384), + [sym_subscript] = STATE(1384), + [sym_call] = STATE(1384), + [sym_list] = STATE(1384), + [sym_set] = STATE(1384), + [sym_tuple] = STATE(1384), + [sym_dictionary] = STATE(1384), + [sym_list_comprehension] = STATE(1384), + [sym_dictionary_comprehension] = STATE(1384), + [sym_set_comprehension] = STATE(1384), + [sym_generator_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_concatenated_string] = STATE(1384), + [sym_string] = STATE(992), + [sym_await] = STATE(1384), + [sym_identifier] = ACTIONS(693), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(695), + [anon_sym_RPAREN] = ACTIONS(269), + [anon_sym_COMMA] = ACTIONS(269), + [anon_sym_as] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(697), + [anon_sym_print] = ACTIONS(699), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_if] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(269), + [anon_sym_match] = ACTIONS(701), + [anon_sym_async] = ACTIONS(699), + [anon_sym_in] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(269), + [anon_sym_exec] = ACTIONS(699), + [anon_sym_type] = ACTIONS(701), + [anon_sym_EQ] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(703), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_DASH] = ACTIONS(705), + [anon_sym_PIPE] = ACTIONS(269), + [anon_sym_LBRACE] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(705), + [anon_sym_not] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(269), + [anon_sym_SLASH_SLASH] = ACTIONS(269), + [anon_sym_AMP] = ACTIONS(269), + [anon_sym_CARET] = ACTIONS(269), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_is] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(269), + [sym_ellipsis] = ACTIONS(709), + [sym_integer] = ACTIONS(693), + [sym_float] = ACTIONS(709), + [anon_sym_await] = ACTIONS(711), + [sym_true] = ACTIONS(693), + [sym_false] = ACTIONS(693), + [sym_none] = ACTIONS(693), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(751), - }, - [172] = { - [sym_list_splat_pattern] = STATE(1342), - [sym_primary_expression] = STATE(1051), - [sym_binary_operator] = STATE(1268), - [sym_unary_operator] = STATE(1268), - [sym_attribute] = STATE(1268), - [sym_subscript] = STATE(1268), - [sym_call] = STATE(1268), - [sym_list] = STATE(1268), - [sym_set] = STATE(1268), - [sym_tuple] = STATE(1268), - [sym_dictionary] = STATE(1268), - [sym_list_comprehension] = STATE(1268), - [sym_dictionary_comprehension] = STATE(1268), - [sym_set_comprehension] = STATE(1268), - [sym_generator_expression] = STATE(1268), - [sym_parenthesized_expression] = STATE(1268), - [sym_concatenated_string] = STATE(1268), - [sym_string] = STATE(1010), - [sym_await] = STATE(1268), - [sym_identifier] = ACTIONS(323), - [anon_sym_DOT] = ACTIONS(665), - [anon_sym_LPAREN] = ACTIONS(668), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_as] = ACTIONS(670), - [anon_sym_STAR] = ACTIONS(672), - [anon_sym_print] = ACTIONS(674), - [anon_sym_GT_GT] = ACTIONS(706), - [anon_sym_if] = ACTIONS(670), - [anon_sym_COLON] = ACTIONS(663), - [anon_sym_match] = ACTIONS(676), - [anon_sym_async] = ACTIONS(674), - [anon_sym_for] = ACTIONS(670), - [anon_sym_in] = ACTIONS(670), - [anon_sym_STAR_STAR] = ACTIONS(706), - [anon_sym_exec] = ACTIONS(674), - [anon_sym_type] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(678), - [anon_sym_RBRACK] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(315), - [anon_sym_PIPE] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_PLUS] = ACTIONS(315), - [anon_sym_not] = ACTIONS(670), - [anon_sym_and] = ACTIONS(670), - [anon_sym_or] = ACTIONS(670), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(706), - [anon_sym_SLASH_SLASH] = ACTIONS(706), - [anon_sym_AMP] = ACTIONS(706), - [anon_sym_CARET] = ACTIONS(706), - [anon_sym_LT_LT] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(315), - [anon_sym_is] = ACTIONS(670), - [anon_sym_LT] = ACTIONS(670), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(670), - [anon_sym_LT_GT] = ACTIONS(663), - [sym_ellipsis] = ACTIONS(321), - [sym_integer] = ACTIONS(323), - [sym_float] = ACTIONS(321), - [anon_sym_await] = ACTIONS(682), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [sym_none] = ACTIONS(323), + [sym_string_start] = ACTIONS(713), + }, + [STATE(166)] = { + [sym_list_splat_pattern] = STATE(1322), + [sym_primary_expression] = STATE(1022), + [sym_binary_operator] = STATE(1384), + [sym_unary_operator] = STATE(1384), + [sym_attribute] = STATE(1384), + [sym_subscript] = STATE(1384), + [sym_call] = STATE(1384), + [sym_list] = STATE(1384), + [sym_set] = STATE(1384), + [sym_tuple] = STATE(1384), + [sym_dictionary] = STATE(1384), + [sym_list_comprehension] = STATE(1384), + [sym_dictionary_comprehension] = STATE(1384), + [sym_set_comprehension] = STATE(1384), + [sym_generator_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_concatenated_string] = STATE(1384), + [sym_string] = STATE(992), + [sym_await] = STATE(1384), + [sym_identifier] = ACTIONS(693), + [anon_sym_DOT] = ACTIONS(649), + [anon_sym_LPAREN] = ACTIONS(695), + [anon_sym_RPAREN] = ACTIONS(668), + [anon_sym_COMMA] = ACTIONS(668), + [anon_sym_as] = ACTIONS(649), + [anon_sym_STAR] = ACTIONS(697), + [anon_sym_print] = ACTIONS(699), + [anon_sym_GT_GT] = ACTIONS(668), + [anon_sym_COLON_EQ] = ACTIONS(284), + [anon_sym_if] = ACTIONS(649), + [anon_sym_match] = ACTIONS(701), + [anon_sym_async] = ACTIONS(699), + [anon_sym_for] = ACTIONS(654), + [anon_sym_in] = ACTIONS(649), + [anon_sym_STAR_STAR] = ACTIONS(668), + [anon_sym_exec] = ACTIONS(699), + [anon_sym_type] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(703), + [anon_sym_AT] = ACTIONS(668), + [anon_sym_DASH] = ACTIONS(705), + [anon_sym_PIPE] = ACTIONS(668), + [anon_sym_LBRACE] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(705), + [anon_sym_not] = ACTIONS(649), + [anon_sym_and] = ACTIONS(649), + [anon_sym_or] = ACTIONS(649), + [anon_sym_SLASH] = ACTIONS(649), + [anon_sym_PERCENT] = ACTIONS(668), + [anon_sym_SLASH_SLASH] = ACTIONS(668), + [anon_sym_AMP] = ACTIONS(668), + [anon_sym_CARET] = ACTIONS(668), + [anon_sym_LT_LT] = ACTIONS(668), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_is] = ACTIONS(649), + [anon_sym_LT] = ACTIONS(649), + [anon_sym_LT_EQ] = ACTIONS(668), + [anon_sym_EQ_EQ] = ACTIONS(668), + [anon_sym_BANG_EQ] = ACTIONS(668), + [anon_sym_GT_EQ] = ACTIONS(668), + [anon_sym_GT] = ACTIONS(649), + [anon_sym_LT_GT] = ACTIONS(668), + [sym_ellipsis] = ACTIONS(709), + [sym_integer] = ACTIONS(693), + [sym_float] = ACTIONS(709), + [anon_sym_await] = ACTIONS(711), + [sym_true] = ACTIONS(693), + [sym_false] = ACTIONS(693), + [sym_none] = ACTIONS(693), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(327), + [sym_string_start] = ACTIONS(713), }, - [173] = { + [STATE(167)] = { [sym_list_splat_pattern] = STATE(1437), - [sym_primary_expression] = STATE(1218), - [sym_binary_operator] = STATE(1442), - [sym_unary_operator] = STATE(1442), - [sym_attribute] = STATE(1442), - [sym_subscript] = STATE(1442), - [sym_call] = STATE(1442), - [sym_list] = STATE(1442), - [sym_set] = STATE(1442), - [sym_tuple] = STATE(1442), - [sym_dictionary] = STATE(1442), - [sym_list_comprehension] = STATE(1442), - [sym_dictionary_comprehension] = STATE(1442), - [sym_set_comprehension] = STATE(1442), - [sym_generator_expression] = STATE(1442), - [sym_parenthesized_expression] = STATE(1442), - [sym_concatenated_string] = STATE(1442), - [sym_string] = STATE(1107), - [sym_await] = STATE(1442), - [sym_identifier] = ACTIONS(799), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(803), - [anon_sym_print] = ACTIONS(805), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(279), - [anon_sym_match] = ACTIONS(807), - [anon_sym_async] = ACTIONS(805), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(805), - [anon_sym_type] = ACTIONS(807), - [anon_sym_LBRACK] = ACTIONS(809), - [anon_sym_RBRACK] = ACTIONS(277), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(811), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(811), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(811), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(815), - [sym_integer] = ACTIONS(799), - [sym_float] = ACTIONS(815), - [anon_sym_await] = ACTIONS(817), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_none] = ACTIONS(799), + [sym_primary_expression] = STATE(1231), + [sym_binary_operator] = STATE(1435), + [sym_unary_operator] = STATE(1435), + [sym_attribute] = STATE(1435), + [sym_subscript] = STATE(1435), + [sym_call] = STATE(1435), + [sym_list] = STATE(1435), + [sym_set] = STATE(1435), + [sym_tuple] = STATE(1435), + [sym_dictionary] = STATE(1435), + [sym_list_comprehension] = STATE(1435), + [sym_dictionary_comprehension] = STATE(1435), + [sym_set_comprehension] = STATE(1435), + [sym_generator_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_concatenated_string] = STATE(1435), + [sym_string] = STATE(1038), + [sym_await] = STATE(1435), + [sym_identifier] = ACTIONS(761), + [anon_sym_DOT] = ACTIONS(649), + [anon_sym_LPAREN] = ACTIONS(763), + [anon_sym_COMMA] = ACTIONS(668), + [anon_sym_as] = ACTIONS(649), + [anon_sym_STAR] = ACTIONS(765), + [anon_sym_print] = ACTIONS(767), + [anon_sym_GT_GT] = ACTIONS(668), + [anon_sym_COLON_EQ] = ACTIONS(284), + [anon_sym_if] = ACTIONS(649), + [anon_sym_match] = ACTIONS(769), + [anon_sym_async] = ACTIONS(767), + [anon_sym_for] = ACTIONS(654), + [anon_sym_in] = ACTIONS(649), + [anon_sym_STAR_STAR] = ACTIONS(668), + [anon_sym_exec] = ACTIONS(767), + [anon_sym_type] = ACTIONS(769), + [anon_sym_LBRACK] = ACTIONS(771), + [anon_sym_RBRACK] = ACTIONS(668), + [anon_sym_AT] = ACTIONS(668), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_PIPE] = ACTIONS(668), + [anon_sym_LBRACE] = ACTIONS(775), + [anon_sym_PLUS] = ACTIONS(773), + [anon_sym_not] = ACTIONS(649), + [anon_sym_and] = ACTIONS(649), + [anon_sym_or] = ACTIONS(649), + [anon_sym_SLASH] = ACTIONS(649), + [anon_sym_PERCENT] = ACTIONS(668), + [anon_sym_SLASH_SLASH] = ACTIONS(668), + [anon_sym_AMP] = ACTIONS(668), + [anon_sym_CARET] = ACTIONS(668), + [anon_sym_LT_LT] = ACTIONS(668), + [anon_sym_TILDE] = ACTIONS(773), + [anon_sym_is] = ACTIONS(649), + [anon_sym_LT] = ACTIONS(649), + [anon_sym_LT_EQ] = ACTIONS(668), + [anon_sym_EQ_EQ] = ACTIONS(668), + [anon_sym_BANG_EQ] = ACTIONS(668), + [anon_sym_GT_EQ] = ACTIONS(668), + [anon_sym_GT] = ACTIONS(649), + [anon_sym_LT_GT] = ACTIONS(668), + [sym_ellipsis] = ACTIONS(777), + [sym_integer] = ACTIONS(761), + [sym_float] = ACTIONS(777), + [anon_sym_await] = ACTIONS(779), + [sym_true] = ACTIONS(761), + [sym_false] = ACTIONS(761), + [sym_none] = ACTIONS(761), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(819), - }, - [174] = { - [sym_list_splat_pattern] = STATE(1388), - [sym_primary_expression] = STATE(1096), - [sym_binary_operator] = STATE(1270), - [sym_unary_operator] = STATE(1270), - [sym_attribute] = STATE(1270), - [sym_subscript] = STATE(1270), - [sym_call] = STATE(1270), - [sym_list] = STATE(1270), - [sym_set] = STATE(1270), - [sym_tuple] = STATE(1270), - [sym_dictionary] = STATE(1270), - [sym_list_comprehension] = STATE(1270), - [sym_dictionary_comprehension] = STATE(1270), - [sym_set_comprehension] = STATE(1270), - [sym_generator_expression] = STATE(1270), - [sym_parenthesized_expression] = STATE(1270), - [sym_concatenated_string] = STATE(1270), - [sym_string] = STATE(1028), - [sym_await] = STATE(1270), - [sym_identifier] = ACTIONS(709), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(711), - [anon_sym_RPAREN] = ACTIONS(277), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(713), - [anon_sym_print] = ACTIONS(715), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(277), - [anon_sym_match] = ACTIONS(717), - [anon_sym_async] = ACTIONS(715), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(715), - [anon_sym_type] = ACTIONS(717), - [anon_sym_EQ] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(719), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(721), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(723), - [anon_sym_PLUS] = ACTIONS(721), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(721), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(725), - [sym_integer] = ACTIONS(709), - [sym_float] = ACTIONS(725), - [anon_sym_await] = ACTIONS(727), - [sym_true] = ACTIONS(709), - [sym_false] = ACTIONS(709), - [sym_none] = ACTIONS(709), + [sym_string_start] = ACTIONS(781), + }, + [STATE(168)] = { + [sym_list_splat_pattern] = STATE(1333), + [sym_primary_expression] = STATE(1090), + [sym_binary_operator] = STATE(1276), + [sym_unary_operator] = STATE(1276), + [sym_attribute] = STATE(1276), + [sym_subscript] = STATE(1276), + [sym_call] = STATE(1276), + [sym_list] = STATE(1276), + [sym_set] = STATE(1276), + [sym_tuple] = STATE(1276), + [sym_dictionary] = STATE(1276), + [sym_list_comprehension] = STATE(1276), + [sym_dictionary_comprehension] = STATE(1276), + [sym_set_comprehension] = STATE(1276), + [sym_generator_expression] = STATE(1276), + [sym_parenthesized_expression] = STATE(1276), + [sym_concatenated_string] = STATE(1276), + [sym_string] = STATE(975), + [sym_await] = STATE(1276), + [sym_identifier] = ACTIONS(315), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_COMMA] = ACTIONS(269), + [anon_sym_as] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_if] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(269), + [anon_sym_else] = ACTIONS(271), + [anon_sym_match] = ACTIONS(660), + [anon_sym_async] = ACTIONS(658), + [anon_sym_in] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(269), + [anon_sym_exec] = ACTIONS(658), + [anon_sym_type] = ACTIONS(660), + [anon_sym_EQ] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(662), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_DASH] = ACTIONS(307), + [anon_sym_PIPE] = ACTIONS(269), + [anon_sym_LBRACE] = ACTIONS(302), + [anon_sym_PLUS] = ACTIONS(307), + [anon_sym_not] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(269), + [anon_sym_SLASH_SLASH] = ACTIONS(269), + [anon_sym_AMP] = ACTIONS(269), + [anon_sym_CARET] = ACTIONS(269), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(307), + [anon_sym_is] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(269), + [sym_ellipsis] = ACTIONS(313), + [sym_integer] = ACTIONS(315), + [sym_float] = ACTIONS(313), + [anon_sym_await] = ACTIONS(666), + [sym_true] = ACTIONS(315), + [sym_false] = ACTIONS(315), + [sym_none] = ACTIONS(315), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(729), - }, - [175] = { - [sym_list_splat_pattern] = STATE(1258), - [sym_primary_expression] = STATE(1122), - [sym_binary_operator] = STATE(1367), - [sym_unary_operator] = STATE(1367), - [sym_attribute] = STATE(1367), - [sym_subscript] = STATE(1367), - [sym_call] = STATE(1367), - [sym_list] = STATE(1367), - [sym_set] = STATE(1367), - [sym_tuple] = STATE(1367), - [sym_dictionary] = STATE(1367), - [sym_list_comprehension] = STATE(1367), - [sym_dictionary_comprehension] = STATE(1367), - [sym_set_comprehension] = STATE(1367), - [sym_generator_expression] = STATE(1367), - [sym_parenthesized_expression] = STATE(1367), - [sym_concatenated_string] = STATE(1367), - [sym_string] = STATE(1015), - [sym_await] = STATE(1367), - [sym_identifier] = ACTIONS(753), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(755), - [anon_sym_RPAREN] = ACTIONS(284), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(757), - [anon_sym_print] = ACTIONS(759), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_match] = ACTIONS(761), - [anon_sym_async] = ACTIONS(759), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(759), - [anon_sym_type] = ACTIONS(761), - [anon_sym_LBRACK] = ACTIONS(765), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(769), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(767), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(771), - [sym_integer] = ACTIONS(753), - [sym_float] = ACTIONS(771), - [anon_sym_await] = ACTIONS(773), - [sym_true] = ACTIONS(753), - [sym_false] = ACTIONS(753), - [sym_none] = ACTIONS(753), + [sym_string_start] = ACTIONS(319), + }, + [STATE(169)] = { + [sym_list_splat_pattern] = STATE(1164), + [sym_primary_expression] = STATE(999), + [sym_binary_operator] = STATE(1149), + [sym_unary_operator] = STATE(1149), + [sym_attribute] = STATE(1149), + [sym_subscript] = STATE(1149), + [sym_call] = STATE(1149), + [sym_list] = STATE(1149), + [sym_set] = STATE(1149), + [sym_tuple] = STATE(1149), + [sym_dictionary] = STATE(1149), + [sym_list_comprehension] = STATE(1149), + [sym_dictionary_comprehension] = STATE(1149), + [sym_set_comprehension] = STATE(1149), + [sym_generator_expression] = STATE(1149), + [sym_parenthesized_expression] = STATE(1149), + [sym_concatenated_string] = STATE(1149), + [sym_string] = STATE(957), + [sym_await] = STATE(1149), + [sym_identifier] = ACTIONS(715), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(717), + [anon_sym_COMMA] = ACTIONS(269), + [anon_sym_as] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(719), + [anon_sym_print] = ACTIONS(721), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_if] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(269), + [anon_sym_match] = ACTIONS(723), + [anon_sym_async] = ACTIONS(721), + [anon_sym_for] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(269), + [anon_sym_exec] = ACTIONS(721), + [anon_sym_type] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(725), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_DASH] = ACTIONS(727), + [anon_sym_PIPE] = ACTIONS(269), + [anon_sym_LBRACE] = ACTIONS(729), + [anon_sym_RBRACE] = ACTIONS(269), + [anon_sym_PLUS] = ACTIONS(727), + [anon_sym_not] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(269), + [anon_sym_SLASH_SLASH] = ACTIONS(269), + [anon_sym_AMP] = ACTIONS(269), + [anon_sym_CARET] = ACTIONS(269), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_is] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(269), + [sym_ellipsis] = ACTIONS(731), + [sym_integer] = ACTIONS(715), + [sym_float] = ACTIONS(731), + [anon_sym_await] = ACTIONS(733), + [sym_true] = ACTIONS(715), + [sym_false] = ACTIONS(715), + [sym_none] = ACTIONS(715), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(775), - }, - [176] = { - [sym_list_splat_pattern] = STATE(1342), - [sym_primary_expression] = STATE(1051), - [sym_binary_operator] = STATE(1268), - [sym_unary_operator] = STATE(1268), - [sym_attribute] = STATE(1268), - [sym_subscript] = STATE(1268), - [sym_call] = STATE(1268), - [sym_list] = STATE(1268), - [sym_set] = STATE(1268), - [sym_tuple] = STATE(1268), - [sym_dictionary] = STATE(1268), - [sym_list_comprehension] = STATE(1268), - [sym_dictionary_comprehension] = STATE(1268), - [sym_set_comprehension] = STATE(1268), - [sym_generator_expression] = STATE(1268), - [sym_parenthesized_expression] = STATE(1268), - [sym_concatenated_string] = STATE(1268), - [sym_string] = STATE(1010), - [sym_await] = STATE(1268), - [sym_identifier] = ACTIONS(323), - [anon_sym_SEMI] = ACTIONS(319), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(668), - [anon_sym_COMMA] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(672), - [anon_sym_print] = ACTIONS(674), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(319), - [anon_sym_match] = ACTIONS(676), - [anon_sym_async] = ACTIONS(674), - [anon_sym_STAR_STAR] = ACTIONS(279), - [anon_sym_exec] = ACTIONS(674), - [anon_sym_type] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(319), - [anon_sym_LBRACK] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(279), - [anon_sym_DASH] = ACTIONS(680), - [anon_sym_PIPE] = ACTIONS(279), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_PLUS] = ACTIONS(680), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(279), - [anon_sym_SLASH_SLASH] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(279), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_TILDE] = ACTIONS(315), - [anon_sym_PLUS_EQ] = ACTIONS(319), - [anon_sym_DASH_EQ] = ACTIONS(319), - [anon_sym_STAR_EQ] = ACTIONS(319), - [anon_sym_SLASH_EQ] = ACTIONS(319), - [anon_sym_AT_EQ] = ACTIONS(319), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(319), - [anon_sym_PERCENT_EQ] = ACTIONS(319), - [anon_sym_STAR_STAR_EQ] = ACTIONS(319), - [anon_sym_GT_GT_EQ] = ACTIONS(319), - [anon_sym_LT_LT_EQ] = ACTIONS(319), - [anon_sym_AMP_EQ] = ACTIONS(319), - [anon_sym_CARET_EQ] = ACTIONS(319), - [anon_sym_PIPE_EQ] = ACTIONS(319), - [sym_ellipsis] = ACTIONS(321), - [sym_integer] = ACTIONS(323), - [sym_float] = ACTIONS(321), - [anon_sym_await] = ACTIONS(682), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [sym_none] = ACTIONS(323), + [sym_string_start] = ACTIONS(735), + }, + [STATE(170)] = { + [sym_list_splat_pattern] = STATE(1345), + [sym_primary_expression] = STATE(1057), + [sym_binary_operator] = STATE(1290), + [sym_unary_operator] = STATE(1290), + [sym_attribute] = STATE(1290), + [sym_subscript] = STATE(1290), + [sym_call] = STATE(1290), + [sym_list] = STATE(1290), + [sym_set] = STATE(1290), + [sym_tuple] = STATE(1290), + [sym_dictionary] = STATE(1290), + [sym_list_comprehension] = STATE(1290), + [sym_dictionary_comprehension] = STATE(1290), + [sym_set_comprehension] = STATE(1290), + [sym_generator_expression] = STATE(1290), + [sym_parenthesized_expression] = STATE(1290), + [sym_concatenated_string] = STATE(1290), + [sym_string] = STATE(980), + [sym_await] = STATE(1290), + [sym_identifier] = ACTIONS(783), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(785), + [anon_sym_COMMA] = ACTIONS(269), + [anon_sym_as] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(787), + [anon_sym_print] = ACTIONS(789), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_COLON_EQ] = ACTIONS(284), + [anon_sym_if] = ACTIONS(271), + [anon_sym_match] = ACTIONS(791), + [anon_sym_async] = ACTIONS(789), + [anon_sym_for] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(269), + [anon_sym_exec] = ACTIONS(789), + [anon_sym_type] = ACTIONS(791), + [anon_sym_LBRACK] = ACTIONS(793), + [anon_sym_RBRACK] = ACTIONS(269), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_DASH] = ACTIONS(795), + [anon_sym_PIPE] = ACTIONS(269), + [anon_sym_LBRACE] = ACTIONS(797), + [anon_sym_PLUS] = ACTIONS(795), + [anon_sym_not] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(269), + [anon_sym_SLASH_SLASH] = ACTIONS(269), + [anon_sym_AMP] = ACTIONS(269), + [anon_sym_CARET] = ACTIONS(269), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(795), + [anon_sym_is] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(269), + [sym_ellipsis] = ACTIONS(799), + [sym_integer] = ACTIONS(783), + [sym_float] = ACTIONS(799), + [anon_sym_await] = ACTIONS(801), + [sym_true] = ACTIONS(783), + [sym_false] = ACTIONS(783), + [sym_none] = ACTIONS(783), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(319), - [sym_string_start] = ACTIONS(327), - }, - [177] = { - [sym_list_splat_pattern] = STATE(1342), - [sym_primary_expression] = STATE(1051), - [sym_binary_operator] = STATE(1268), - [sym_unary_operator] = STATE(1268), - [sym_attribute] = STATE(1268), - [sym_subscript] = STATE(1268), - [sym_call] = STATE(1268), - [sym_list] = STATE(1268), - [sym_set] = STATE(1268), - [sym_tuple] = STATE(1268), - [sym_dictionary] = STATE(1268), - [sym_list_comprehension] = STATE(1268), - [sym_dictionary_comprehension] = STATE(1268), - [sym_set_comprehension] = STATE(1268), - [sym_generator_expression] = STATE(1268), - [sym_parenthesized_expression] = STATE(1268), - [sym_concatenated_string] = STATE(1268), - [sym_string] = STATE(1010), - [sym_await] = STATE(1268), - [sym_identifier] = ACTIONS(323), - [anon_sym_DOT] = ACTIONS(665), - [anon_sym_LPAREN] = ACTIONS(668), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_as] = ACTIONS(670), - [anon_sym_STAR] = ACTIONS(672), - [anon_sym_print] = ACTIONS(674), - [anon_sym_GT_GT] = ACTIONS(706), - [anon_sym_if] = ACTIONS(670), - [anon_sym_COLON] = ACTIONS(663), - [anon_sym_else] = ACTIONS(670), - [anon_sym_match] = ACTIONS(676), - [anon_sym_async] = ACTIONS(674), - [anon_sym_in] = ACTIONS(670), - [anon_sym_STAR_STAR] = ACTIONS(706), - [anon_sym_exec] = ACTIONS(674), - [anon_sym_type] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(670), - [anon_sym_LBRACK] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(315), - [anon_sym_PIPE] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_PLUS] = ACTIONS(315), - [anon_sym_not] = ACTIONS(670), - [anon_sym_and] = ACTIONS(670), - [anon_sym_or] = ACTIONS(670), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(706), - [anon_sym_SLASH_SLASH] = ACTIONS(706), - [anon_sym_AMP] = ACTIONS(706), - [anon_sym_CARET] = ACTIONS(706), - [anon_sym_LT_LT] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(315), - [anon_sym_is] = ACTIONS(670), - [anon_sym_LT] = ACTIONS(670), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(670), - [anon_sym_LT_GT] = ACTIONS(663), - [sym_ellipsis] = ACTIONS(321), - [sym_integer] = ACTIONS(323), - [sym_float] = ACTIONS(321), - [anon_sym_await] = ACTIONS(682), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [sym_none] = ACTIONS(323), + [sym_string_start] = ACTIONS(803), + }, + [STATE(171)] = { + [sym_list_splat_pattern] = STATE(1333), + [sym_primary_expression] = STATE(1090), + [sym_binary_operator] = STATE(1276), + [sym_unary_operator] = STATE(1276), + [sym_attribute] = STATE(1276), + [sym_subscript] = STATE(1276), + [sym_call] = STATE(1276), + [sym_list] = STATE(1276), + [sym_set] = STATE(1276), + [sym_tuple] = STATE(1276), + [sym_dictionary] = STATE(1276), + [sym_list_comprehension] = STATE(1276), + [sym_dictionary_comprehension] = STATE(1276), + [sym_set_comprehension] = STATE(1276), + [sym_generator_expression] = STATE(1276), + [sym_parenthesized_expression] = STATE(1276), + [sym_concatenated_string] = STATE(1276), + [sym_string] = STATE(975), + [sym_await] = STATE(1276), + [sym_identifier] = ACTIONS(315), + [anon_sym_SEMI] = ACTIONS(311), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_COMMA] = ACTIONS(311), + [anon_sym_STAR] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_GT_GT] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(311), + [anon_sym_match] = ACTIONS(660), + [anon_sym_async] = ACTIONS(658), + [anon_sym_STAR_STAR] = ACTIONS(271), + [anon_sym_exec] = ACTIONS(658), + [anon_sym_type] = ACTIONS(660), + [anon_sym_EQ] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(662), + [anon_sym_AT] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(664), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_LBRACE] = ACTIONS(302), + [anon_sym_PLUS] = ACTIONS(664), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(271), + [anon_sym_SLASH_SLASH] = ACTIONS(271), + [anon_sym_AMP] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym_LT_LT] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(307), + [anon_sym_PLUS_EQ] = ACTIONS(311), + [anon_sym_DASH_EQ] = ACTIONS(311), + [anon_sym_STAR_EQ] = ACTIONS(311), + [anon_sym_SLASH_EQ] = ACTIONS(311), + [anon_sym_AT_EQ] = ACTIONS(311), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(311), + [anon_sym_PERCENT_EQ] = ACTIONS(311), + [anon_sym_STAR_STAR_EQ] = ACTIONS(311), + [anon_sym_GT_GT_EQ] = ACTIONS(311), + [anon_sym_LT_LT_EQ] = ACTIONS(311), + [anon_sym_AMP_EQ] = ACTIONS(311), + [anon_sym_CARET_EQ] = ACTIONS(311), + [anon_sym_PIPE_EQ] = ACTIONS(311), + [sym_ellipsis] = ACTIONS(313), + [sym_integer] = ACTIONS(315), + [sym_float] = ACTIONS(313), + [anon_sym_await] = ACTIONS(666), + [sym_true] = ACTIONS(315), + [sym_false] = ACTIONS(315), + [sym_none] = ACTIONS(315), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(327), - }, - [178] = { - [sym_list_splat_pattern] = STATE(1360), - [sym_primary_expression] = STATE(1076), - [sym_binary_operator] = STATE(1365), - [sym_unary_operator] = STATE(1365), - [sym_attribute] = STATE(1365), - [sym_subscript] = STATE(1365), - [sym_call] = STATE(1365), - [sym_list] = STATE(1365), - [sym_set] = STATE(1365), - [sym_tuple] = STATE(1365), - [sym_dictionary] = STATE(1365), - [sym_list_comprehension] = STATE(1365), - [sym_dictionary_comprehension] = STATE(1365), - [sym_set_comprehension] = STATE(1365), - [sym_generator_expression] = STATE(1365), - [sym_parenthesized_expression] = STATE(1365), - [sym_concatenated_string] = STATE(1365), - [sym_string] = STATE(996), - [sym_await] = STATE(1365), - [sym_identifier] = ACTIONS(777), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(779), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_print] = ACTIONS(783), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_match] = ACTIONS(785), - [anon_sym_async] = ACTIONS(783), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(783), - [anon_sym_type] = ACTIONS(785), - [anon_sym_LBRACK] = ACTIONS(787), - [anon_sym_RBRACK] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(789), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(791), - [anon_sym_PLUS] = ACTIONS(789), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(789), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(793), - [sym_integer] = ACTIONS(777), - [sym_float] = ACTIONS(793), - [anon_sym_await] = ACTIONS(795), - [sym_true] = ACTIONS(777), - [sym_false] = ACTIONS(777), - [sym_none] = ACTIONS(777), + [sym__newline] = ACTIONS(311), + [sym_string_start] = ACTIONS(319), + }, + [STATE(172)] = { + [sym_list_splat_pattern] = STATE(1437), + [sym_primary_expression] = STATE(1231), + [sym_binary_operator] = STATE(1435), + [sym_unary_operator] = STATE(1435), + [sym_attribute] = STATE(1435), + [sym_subscript] = STATE(1435), + [sym_call] = STATE(1435), + [sym_list] = STATE(1435), + [sym_set] = STATE(1435), + [sym_tuple] = STATE(1435), + [sym_dictionary] = STATE(1435), + [sym_list_comprehension] = STATE(1435), + [sym_dictionary_comprehension] = STATE(1435), + [sym_set_comprehension] = STATE(1435), + [sym_generator_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_concatenated_string] = STATE(1435), + [sym_string] = STATE(1038), + [sym_await] = STATE(1435), + [sym_identifier] = ACTIONS(761), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(763), + [anon_sym_COMMA] = ACTIONS(269), + [anon_sym_as] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(765), + [anon_sym_print] = ACTIONS(767), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_COLON_EQ] = ACTIONS(284), + [anon_sym_if] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(271), + [anon_sym_match] = ACTIONS(769), + [anon_sym_async] = ACTIONS(767), + [anon_sym_in] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(269), + [anon_sym_exec] = ACTIONS(767), + [anon_sym_type] = ACTIONS(769), + [anon_sym_LBRACK] = ACTIONS(771), + [anon_sym_RBRACK] = ACTIONS(269), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_PIPE] = ACTIONS(269), + [anon_sym_LBRACE] = ACTIONS(775), + [anon_sym_PLUS] = ACTIONS(773), + [anon_sym_not] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(269), + [anon_sym_SLASH_SLASH] = ACTIONS(269), + [anon_sym_AMP] = ACTIONS(269), + [anon_sym_CARET] = ACTIONS(269), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(773), + [anon_sym_is] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(269), + [sym_ellipsis] = ACTIONS(777), + [sym_integer] = ACTIONS(761), + [sym_float] = ACTIONS(777), + [anon_sym_await] = ACTIONS(779), + [sym_true] = ACTIONS(761), + [sym_false] = ACTIONS(761), + [sym_none] = ACTIONS(761), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(797), - }, - [179] = { - [sym_list_splat_pattern] = STATE(1388), - [sym_primary_expression] = STATE(1096), - [sym_binary_operator] = STATE(1270), - [sym_unary_operator] = STATE(1270), - [sym_attribute] = STATE(1270), - [sym_subscript] = STATE(1270), - [sym_call] = STATE(1270), - [sym_list] = STATE(1270), - [sym_set] = STATE(1270), - [sym_tuple] = STATE(1270), - [sym_dictionary] = STATE(1270), - [sym_list_comprehension] = STATE(1270), - [sym_dictionary_comprehension] = STATE(1270), - [sym_set_comprehension] = STATE(1270), - [sym_generator_expression] = STATE(1270), - [sym_parenthesized_expression] = STATE(1270), - [sym_concatenated_string] = STATE(1270), - [sym_string] = STATE(1028), - [sym_await] = STATE(1270), - [sym_identifier] = ACTIONS(709), - [anon_sym_DOT] = ACTIONS(665), - [anon_sym_LPAREN] = ACTIONS(711), - [anon_sym_RPAREN] = ACTIONS(706), - [anon_sym_COMMA] = ACTIONS(706), - [anon_sym_as] = ACTIONS(665), - [anon_sym_STAR] = ACTIONS(713), - [anon_sym_print] = ACTIONS(715), - [anon_sym_GT_GT] = ACTIONS(706), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(665), - [anon_sym_match] = ACTIONS(717), - [anon_sym_async] = ACTIONS(715), - [anon_sym_for] = ACTIONS(670), - [anon_sym_in] = ACTIONS(665), - [anon_sym_STAR_STAR] = ACTIONS(706), - [anon_sym_exec] = ACTIONS(715), - [anon_sym_type] = ACTIONS(717), - [anon_sym_LBRACK] = ACTIONS(719), - [anon_sym_AT] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(721), - [anon_sym_PIPE] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(723), - [anon_sym_PLUS] = ACTIONS(721), - [anon_sym_not] = ACTIONS(665), - [anon_sym_and] = ACTIONS(665), - [anon_sym_or] = ACTIONS(665), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(706), - [anon_sym_SLASH_SLASH] = ACTIONS(706), - [anon_sym_AMP] = ACTIONS(706), - [anon_sym_CARET] = ACTIONS(706), - [anon_sym_LT_LT] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(721), - [anon_sym_is] = ACTIONS(665), - [anon_sym_LT] = ACTIONS(665), - [anon_sym_LT_EQ] = ACTIONS(706), - [anon_sym_EQ_EQ] = ACTIONS(706), - [anon_sym_BANG_EQ] = ACTIONS(706), - [anon_sym_GT_EQ] = ACTIONS(706), - [anon_sym_GT] = ACTIONS(665), - [anon_sym_LT_GT] = ACTIONS(706), - [sym_ellipsis] = ACTIONS(725), - [sym_integer] = ACTIONS(709), - [sym_float] = ACTIONS(725), - [anon_sym_await] = ACTIONS(727), - [sym_true] = ACTIONS(709), - [sym_false] = ACTIONS(709), - [sym_none] = ACTIONS(709), + [sym_string_start] = ACTIONS(781), + }, + [STATE(173)] = { + [sym_list_splat_pattern] = STATE(1281), + [sym_primary_expression] = STATE(1095), + [sym_binary_operator] = STATE(1347), + [sym_unary_operator] = STATE(1347), + [sym_attribute] = STATE(1347), + [sym_subscript] = STATE(1347), + [sym_call] = STATE(1347), + [sym_list] = STATE(1347), + [sym_set] = STATE(1347), + [sym_tuple] = STATE(1347), + [sym_dictionary] = STATE(1347), + [sym_list_comprehension] = STATE(1347), + [sym_dictionary_comprehension] = STATE(1347), + [sym_set_comprehension] = STATE(1347), + [sym_generator_expression] = STATE(1347), + [sym_parenthesized_expression] = STATE(1347), + [sym_concatenated_string] = STATE(1347), + [sym_string] = STATE(1018), + [sym_await] = STATE(1347), + [sym_identifier] = ACTIONS(737), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(739), + [anon_sym_RPAREN] = ACTIONS(276), + [anon_sym_COMMA] = ACTIONS(276), + [anon_sym_as] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(741), + [anon_sym_print] = ACTIONS(743), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_COLON_EQ] = ACTIONS(284), + [anon_sym_if] = ACTIONS(271), + [anon_sym_match] = ACTIONS(745), + [anon_sym_async] = ACTIONS(743), + [anon_sym_for] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(269), + [anon_sym_exec] = ACTIONS(743), + [anon_sym_type] = ACTIONS(745), + [anon_sym_LBRACK] = ACTIONS(749), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_DASH] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(269), + [anon_sym_LBRACE] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(751), + [anon_sym_not] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(269), + [anon_sym_SLASH_SLASH] = ACTIONS(269), + [anon_sym_AMP] = ACTIONS(269), + [anon_sym_CARET] = ACTIONS(269), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(751), + [anon_sym_is] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(269), + [sym_ellipsis] = ACTIONS(755), + [sym_integer] = ACTIONS(737), + [sym_float] = ACTIONS(755), + [anon_sym_await] = ACTIONS(757), + [sym_true] = ACTIONS(737), + [sym_false] = ACTIONS(737), + [sym_none] = ACTIONS(737), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(729), - }, - [180] = { - [sym_list_splat_pattern] = STATE(1437), - [sym_primary_expression] = STATE(1218), - [sym_binary_operator] = STATE(1442), - [sym_unary_operator] = STATE(1442), - [sym_attribute] = STATE(1442), - [sym_subscript] = STATE(1442), - [sym_call] = STATE(1442), - [sym_list] = STATE(1442), - [sym_set] = STATE(1442), - [sym_tuple] = STATE(1442), - [sym_dictionary] = STATE(1442), - [sym_list_comprehension] = STATE(1442), - [sym_dictionary_comprehension] = STATE(1442), - [sym_set_comprehension] = STATE(1442), - [sym_generator_expression] = STATE(1442), - [sym_parenthesized_expression] = STATE(1442), - [sym_concatenated_string] = STATE(1442), - [sym_string] = STATE(1107), - [sym_await] = STATE(1442), - [sym_identifier] = ACTIONS(799), - [anon_sym_DOT] = ACTIONS(665), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_COMMA] = ACTIONS(706), - [anon_sym_as] = ACTIONS(665), - [anon_sym_STAR] = ACTIONS(803), - [anon_sym_print] = ACTIONS(805), - [anon_sym_GT_GT] = ACTIONS(706), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(665), - [anon_sym_match] = ACTIONS(807), - [anon_sym_async] = ACTIONS(805), - [anon_sym_for] = ACTIONS(670), - [anon_sym_in] = ACTIONS(665), - [anon_sym_STAR_STAR] = ACTIONS(706), - [anon_sym_exec] = ACTIONS(805), - [anon_sym_type] = ACTIONS(807), - [anon_sym_LBRACK] = ACTIONS(809), - [anon_sym_RBRACK] = ACTIONS(706), - [anon_sym_AT] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(811), - [anon_sym_PIPE] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(811), - [anon_sym_not] = ACTIONS(665), - [anon_sym_and] = ACTIONS(665), - [anon_sym_or] = ACTIONS(665), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(706), - [anon_sym_SLASH_SLASH] = ACTIONS(706), - [anon_sym_AMP] = ACTIONS(706), - [anon_sym_CARET] = ACTIONS(706), - [anon_sym_LT_LT] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(811), - [anon_sym_is] = ACTIONS(665), - [anon_sym_LT] = ACTIONS(665), - [anon_sym_LT_EQ] = ACTIONS(706), - [anon_sym_EQ_EQ] = ACTIONS(706), - [anon_sym_BANG_EQ] = ACTIONS(706), - [anon_sym_GT_EQ] = ACTIONS(706), - [anon_sym_GT] = ACTIONS(665), - [anon_sym_LT_GT] = ACTIONS(706), - [sym_ellipsis] = ACTIONS(815), - [sym_integer] = ACTIONS(799), - [sym_float] = ACTIONS(815), - [anon_sym_await] = ACTIONS(817), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_none] = ACTIONS(799), + [sym_string_start] = ACTIONS(759), + }, + [STATE(174)] = { + [sym_list_splat_pattern] = STATE(1345), + [sym_primary_expression] = STATE(1057), + [sym_binary_operator] = STATE(1290), + [sym_unary_operator] = STATE(1290), + [sym_attribute] = STATE(1290), + [sym_subscript] = STATE(1290), + [sym_call] = STATE(1290), + [sym_list] = STATE(1290), + [sym_set] = STATE(1290), + [sym_tuple] = STATE(1290), + [sym_dictionary] = STATE(1290), + [sym_list_comprehension] = STATE(1290), + [sym_dictionary_comprehension] = STATE(1290), + [sym_set_comprehension] = STATE(1290), + [sym_generator_expression] = STATE(1290), + [sym_parenthesized_expression] = STATE(1290), + [sym_concatenated_string] = STATE(1290), + [sym_string] = STATE(980), + [sym_await] = STATE(1290), + [sym_identifier] = ACTIONS(783), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(785), + [anon_sym_COMMA] = ACTIONS(276), + [anon_sym_as] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(787), + [anon_sym_print] = ACTIONS(789), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_COLON_EQ] = ACTIONS(284), + [anon_sym_if] = ACTIONS(271), + [anon_sym_match] = ACTIONS(791), + [anon_sym_async] = ACTIONS(789), + [anon_sym_for] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(269), + [anon_sym_exec] = ACTIONS(789), + [anon_sym_type] = ACTIONS(791), + [anon_sym_LBRACK] = ACTIONS(793), + [anon_sym_RBRACK] = ACTIONS(276), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_DASH] = ACTIONS(795), + [anon_sym_PIPE] = ACTIONS(269), + [anon_sym_LBRACE] = ACTIONS(797), + [anon_sym_PLUS] = ACTIONS(795), + [anon_sym_not] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(269), + [anon_sym_SLASH_SLASH] = ACTIONS(269), + [anon_sym_AMP] = ACTIONS(269), + [anon_sym_CARET] = ACTIONS(269), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(795), + [anon_sym_is] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(269), + [sym_ellipsis] = ACTIONS(799), + [sym_integer] = ACTIONS(783), + [sym_float] = ACTIONS(799), + [anon_sym_await] = ACTIONS(801), + [sym_true] = ACTIONS(783), + [sym_false] = ACTIONS(783), + [sym_none] = ACTIONS(783), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(819), - }, - [181] = { - [sym_list_splat_pattern] = STATE(1388), - [sym_primary_expression] = STATE(1096), - [sym_binary_operator] = STATE(1270), - [sym_unary_operator] = STATE(1270), - [sym_attribute] = STATE(1270), - [sym_subscript] = STATE(1270), - [sym_call] = STATE(1270), - [sym_list] = STATE(1270), - [sym_set] = STATE(1270), - [sym_tuple] = STATE(1270), - [sym_dictionary] = STATE(1270), - [sym_list_comprehension] = STATE(1270), - [sym_dictionary_comprehension] = STATE(1270), - [sym_set_comprehension] = STATE(1270), - [sym_generator_expression] = STATE(1270), - [sym_parenthesized_expression] = STATE(1270), - [sym_concatenated_string] = STATE(1270), - [sym_string] = STATE(1028), - [sym_await] = STATE(1270), - [sym_identifier] = ACTIONS(709), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(711), - [anon_sym_RPAREN] = ACTIONS(277), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(713), - [anon_sym_print] = ACTIONS(715), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_match] = ACTIONS(717), - [anon_sym_async] = ACTIONS(715), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(715), - [anon_sym_type] = ACTIONS(717), - [anon_sym_EQ] = ACTIONS(763), - [anon_sym_LBRACK] = ACTIONS(719), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(721), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(723), - [anon_sym_PLUS] = ACTIONS(721), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(721), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(725), - [sym_integer] = ACTIONS(709), - [sym_float] = ACTIONS(725), - [anon_sym_await] = ACTIONS(727), - [sym_true] = ACTIONS(709), - [sym_false] = ACTIONS(709), - [sym_none] = ACTIONS(709), + [sym_string_start] = ACTIONS(803), + }, + [STATE(175)] = { + [sym_list_splat_pattern] = STATE(1322), + [sym_primary_expression] = STATE(1022), + [sym_binary_operator] = STATE(1384), + [sym_unary_operator] = STATE(1384), + [sym_attribute] = STATE(1384), + [sym_subscript] = STATE(1384), + [sym_call] = STATE(1384), + [sym_list] = STATE(1384), + [sym_set] = STATE(1384), + [sym_tuple] = STATE(1384), + [sym_dictionary] = STATE(1384), + [sym_list_comprehension] = STATE(1384), + [sym_dictionary_comprehension] = STATE(1384), + [sym_set_comprehension] = STATE(1384), + [sym_generator_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_concatenated_string] = STATE(1384), + [sym_string] = STATE(992), + [sym_await] = STATE(1384), + [sym_identifier] = ACTIONS(693), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(695), + [anon_sym_RPAREN] = ACTIONS(269), + [anon_sym_COMMA] = ACTIONS(269), + [anon_sym_as] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(697), + [anon_sym_print] = ACTIONS(699), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_COLON_EQ] = ACTIONS(284), + [anon_sym_if] = ACTIONS(271), + [anon_sym_match] = ACTIONS(701), + [anon_sym_async] = ACTIONS(699), + [anon_sym_in] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(269), + [anon_sym_exec] = ACTIONS(699), + [anon_sym_type] = ACTIONS(701), + [anon_sym_EQ] = ACTIONS(747), + [anon_sym_LBRACK] = ACTIONS(703), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_DASH] = ACTIONS(705), + [anon_sym_PIPE] = ACTIONS(269), + [anon_sym_LBRACE] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(705), + [anon_sym_not] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(269), + [anon_sym_SLASH_SLASH] = ACTIONS(269), + [anon_sym_AMP] = ACTIONS(269), + [anon_sym_CARET] = ACTIONS(269), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_is] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(269), + [sym_ellipsis] = ACTIONS(709), + [sym_integer] = ACTIONS(693), + [sym_float] = ACTIONS(709), + [anon_sym_await] = ACTIONS(711), + [sym_true] = ACTIONS(693), + [sym_false] = ACTIONS(693), + [sym_none] = ACTIONS(693), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(729), - }, - [182] = { - [sym_list_splat_pattern] = STATE(1342), - [sym_primary_expression] = STATE(1051), - [sym_binary_operator] = STATE(1268), - [sym_unary_operator] = STATE(1268), - [sym_attribute] = STATE(1268), - [sym_subscript] = STATE(1268), - [sym_call] = STATE(1268), - [sym_list] = STATE(1268), - [sym_set] = STATE(1268), - [sym_tuple] = STATE(1268), - [sym_dictionary] = STATE(1268), - [sym_list_comprehension] = STATE(1268), - [sym_dictionary_comprehension] = STATE(1268), - [sym_set_comprehension] = STATE(1268), - [sym_generator_expression] = STATE(1268), - [sym_parenthesized_expression] = STATE(1268), - [sym_concatenated_string] = STATE(1268), - [sym_string] = STATE(1010), - [sym_await] = STATE(1268), - [sym_identifier] = ACTIONS(323), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(668), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(672), - [anon_sym_print] = ACTIONS(674), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(277), - [anon_sym_else] = ACTIONS(279), - [anon_sym_match] = ACTIONS(676), - [anon_sym_async] = ACTIONS(674), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(674), - [anon_sym_type] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(315), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_PLUS] = ACTIONS(315), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(315), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(321), - [sym_integer] = ACTIONS(323), - [sym_float] = ACTIONS(321), - [anon_sym_await] = ACTIONS(682), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [sym_none] = ACTIONS(323), + [sym_string_start] = ACTIONS(713), + }, + [STATE(176)] = { + [sym_list_splat_pattern] = STATE(1333), + [sym_primary_expression] = STATE(1090), + [sym_binary_operator] = STATE(1276), + [sym_unary_operator] = STATE(1276), + [sym_attribute] = STATE(1276), + [sym_subscript] = STATE(1276), + [sym_call] = STATE(1276), + [sym_list] = STATE(1276), + [sym_set] = STATE(1276), + [sym_tuple] = STATE(1276), + [sym_dictionary] = STATE(1276), + [sym_list_comprehension] = STATE(1276), + [sym_dictionary_comprehension] = STATE(1276), + [sym_set_comprehension] = STATE(1276), + [sym_generator_expression] = STATE(1276), + [sym_parenthesized_expression] = STATE(1276), + [sym_concatenated_string] = STATE(1276), + [sym_string] = STATE(975), + [sym_await] = STATE(1276), + [sym_identifier] = ACTIONS(315), + [anon_sym_DOT] = ACTIONS(649), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_COMMA] = ACTIONS(647), + [anon_sym_as] = ACTIONS(654), + [anon_sym_STAR] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_GT_GT] = ACTIONS(668), + [anon_sym_if] = ACTIONS(654), + [anon_sym_COLON] = ACTIONS(647), + [anon_sym_match] = ACTIONS(660), + [anon_sym_async] = ACTIONS(658), + [anon_sym_for] = ACTIONS(654), + [anon_sym_in] = ACTIONS(654), + [anon_sym_STAR_STAR] = ACTIONS(668), + [anon_sym_exec] = ACTIONS(658), + [anon_sym_type] = ACTIONS(660), + [anon_sym_LBRACK] = ACTIONS(662), + [anon_sym_RBRACK] = ACTIONS(647), + [anon_sym_AT] = ACTIONS(668), + [anon_sym_DASH] = ACTIONS(307), + [anon_sym_PIPE] = ACTIONS(668), + [anon_sym_LBRACE] = ACTIONS(302), + [anon_sym_PLUS] = ACTIONS(307), + [anon_sym_not] = ACTIONS(654), + [anon_sym_and] = ACTIONS(654), + [anon_sym_or] = ACTIONS(654), + [anon_sym_SLASH] = ACTIONS(649), + [anon_sym_PERCENT] = ACTIONS(668), + [anon_sym_SLASH_SLASH] = ACTIONS(668), + [anon_sym_AMP] = ACTIONS(668), + [anon_sym_CARET] = ACTIONS(668), + [anon_sym_LT_LT] = ACTIONS(668), + [anon_sym_TILDE] = ACTIONS(307), + [anon_sym_is] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(654), + [anon_sym_LT_EQ] = ACTIONS(647), + [anon_sym_EQ_EQ] = ACTIONS(647), + [anon_sym_BANG_EQ] = ACTIONS(647), + [anon_sym_GT_EQ] = ACTIONS(647), + [anon_sym_GT] = ACTIONS(654), + [anon_sym_LT_GT] = ACTIONS(647), + [sym_ellipsis] = ACTIONS(313), + [sym_integer] = ACTIONS(315), + [sym_float] = ACTIONS(313), + [anon_sym_await] = ACTIONS(666), + [sym_true] = ACTIONS(315), + [sym_false] = ACTIONS(315), + [sym_none] = ACTIONS(315), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(327), - }, - [183] = { - [sym_list_splat_pattern] = STATE(1258), - [sym_primary_expression] = STATE(1122), - [sym_binary_operator] = STATE(1367), - [sym_unary_operator] = STATE(1367), - [sym_attribute] = STATE(1367), - [sym_subscript] = STATE(1367), - [sym_call] = STATE(1367), - [sym_list] = STATE(1367), - [sym_set] = STATE(1367), - [sym_tuple] = STATE(1367), - [sym_dictionary] = STATE(1367), - [sym_list_comprehension] = STATE(1367), - [sym_dictionary_comprehension] = STATE(1367), - [sym_set_comprehension] = STATE(1367), - [sym_generator_expression] = STATE(1367), - [sym_parenthesized_expression] = STATE(1367), - [sym_concatenated_string] = STATE(1367), - [sym_string] = STATE(1015), - [sym_await] = STATE(1367), - [sym_identifier] = ACTIONS(753), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(755), - [anon_sym_RPAREN] = ACTIONS(277), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(757), - [anon_sym_print] = ACTIONS(759), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_match] = ACTIONS(761), - [anon_sym_async] = ACTIONS(759), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(759), - [anon_sym_type] = ACTIONS(761), - [anon_sym_LBRACK] = ACTIONS(765), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(769), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(767), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(771), - [sym_integer] = ACTIONS(753), - [sym_float] = ACTIONS(771), - [anon_sym_await] = ACTIONS(773), - [sym_true] = ACTIONS(753), - [sym_false] = ACTIONS(753), - [sym_none] = ACTIONS(753), + [sym_string_start] = ACTIONS(319), + }, + [STATE(177)] = { + [sym_list_splat_pattern] = STATE(1333), + [sym_primary_expression] = STATE(1090), + [sym_binary_operator] = STATE(1276), + [sym_unary_operator] = STATE(1276), + [sym_attribute] = STATE(1276), + [sym_subscript] = STATE(1276), + [sym_call] = STATE(1276), + [sym_list] = STATE(1276), + [sym_set] = STATE(1276), + [sym_tuple] = STATE(1276), + [sym_dictionary] = STATE(1276), + [sym_list_comprehension] = STATE(1276), + [sym_dictionary_comprehension] = STATE(1276), + [sym_set_comprehension] = STATE(1276), + [sym_generator_expression] = STATE(1276), + [sym_parenthesized_expression] = STATE(1276), + [sym_concatenated_string] = STATE(1276), + [sym_string] = STATE(975), + [sym_await] = STATE(1276), + [sym_identifier] = ACTIONS(315), + [anon_sym_DOT] = ACTIONS(649), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_COMMA] = ACTIONS(647), + [anon_sym_as] = ACTIONS(654), + [anon_sym_STAR] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_GT_GT] = ACTIONS(668), + [anon_sym_if] = ACTIONS(654), + [anon_sym_COLON] = ACTIONS(647), + [anon_sym_else] = ACTIONS(654), + [anon_sym_match] = ACTIONS(660), + [anon_sym_async] = ACTIONS(658), + [anon_sym_in] = ACTIONS(654), + [anon_sym_STAR_STAR] = ACTIONS(668), + [anon_sym_exec] = ACTIONS(658), + [anon_sym_type] = ACTIONS(660), + [anon_sym_EQ] = ACTIONS(654), + [anon_sym_LBRACK] = ACTIONS(662), + [anon_sym_AT] = ACTIONS(668), + [anon_sym_DASH] = ACTIONS(307), + [anon_sym_PIPE] = ACTIONS(668), + [anon_sym_LBRACE] = ACTIONS(302), + [anon_sym_PLUS] = ACTIONS(307), + [anon_sym_not] = ACTIONS(654), + [anon_sym_and] = ACTIONS(654), + [anon_sym_or] = ACTIONS(654), + [anon_sym_SLASH] = ACTIONS(649), + [anon_sym_PERCENT] = ACTIONS(668), + [anon_sym_SLASH_SLASH] = ACTIONS(668), + [anon_sym_AMP] = ACTIONS(668), + [anon_sym_CARET] = ACTIONS(668), + [anon_sym_LT_LT] = ACTIONS(668), + [anon_sym_TILDE] = ACTIONS(307), + [anon_sym_is] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(654), + [anon_sym_LT_EQ] = ACTIONS(647), + [anon_sym_EQ_EQ] = ACTIONS(647), + [anon_sym_BANG_EQ] = ACTIONS(647), + [anon_sym_GT_EQ] = ACTIONS(647), + [anon_sym_GT] = ACTIONS(654), + [anon_sym_LT_GT] = ACTIONS(647), + [sym_ellipsis] = ACTIONS(313), + [sym_integer] = ACTIONS(315), + [sym_float] = ACTIONS(313), + [anon_sym_await] = ACTIONS(666), + [sym_true] = ACTIONS(315), + [sym_false] = ACTIONS(315), + [sym_none] = ACTIONS(315), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(775), - }, - [184] = { - [sym_list_splat_pattern] = STATE(1437), - [sym_primary_expression] = STATE(1218), - [sym_binary_operator] = STATE(1442), - [sym_unary_operator] = STATE(1442), - [sym_attribute] = STATE(1442), - [sym_subscript] = STATE(1442), - [sym_call] = STATE(1442), - [sym_list] = STATE(1442), - [sym_set] = STATE(1442), - [sym_tuple] = STATE(1442), - [sym_dictionary] = STATE(1442), - [sym_list_comprehension] = STATE(1442), - [sym_dictionary_comprehension] = STATE(1442), - [sym_set_comprehension] = STATE(1442), - [sym_generator_expression] = STATE(1442), - [sym_parenthesized_expression] = STATE(1442), - [sym_concatenated_string] = STATE(1442), - [sym_string] = STATE(1107), - [sym_await] = STATE(1442), - [sym_identifier] = ACTIONS(799), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(803), - [anon_sym_print] = ACTIONS(805), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(277), - [anon_sym_match] = ACTIONS(807), - [anon_sym_async] = ACTIONS(805), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(805), - [anon_sym_type] = ACTIONS(807), - [anon_sym_LBRACK] = ACTIONS(809), - [anon_sym_RBRACK] = ACTIONS(277), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(811), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(811), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(811), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(815), - [sym_integer] = ACTIONS(799), - [sym_float] = ACTIONS(815), - [anon_sym_await] = ACTIONS(817), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_none] = ACTIONS(799), + [sym_string_start] = ACTIONS(319), + }, + [STATE(178)] = { + [sym_list_splat_pattern] = STATE(1345), + [sym_primary_expression] = STATE(1057), + [sym_binary_operator] = STATE(1290), + [sym_unary_operator] = STATE(1290), + [sym_attribute] = STATE(1290), + [sym_subscript] = STATE(1290), + [sym_call] = STATE(1290), + [sym_list] = STATE(1290), + [sym_set] = STATE(1290), + [sym_tuple] = STATE(1290), + [sym_dictionary] = STATE(1290), + [sym_list_comprehension] = STATE(1290), + [sym_dictionary_comprehension] = STATE(1290), + [sym_set_comprehension] = STATE(1290), + [sym_generator_expression] = STATE(1290), + [sym_parenthesized_expression] = STATE(1290), + [sym_concatenated_string] = STATE(1290), + [sym_string] = STATE(980), + [sym_await] = STATE(1290), + [sym_identifier] = ACTIONS(783), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(785), + [anon_sym_COMMA] = ACTIONS(269), + [anon_sym_as] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(787), + [anon_sym_print] = ACTIONS(789), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_if] = ACTIONS(271), + [anon_sym_match] = ACTIONS(791), + [anon_sym_async] = ACTIONS(789), + [anon_sym_for] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(269), + [anon_sym_exec] = ACTIONS(789), + [anon_sym_type] = ACTIONS(791), + [anon_sym_LBRACK] = ACTIONS(793), + [anon_sym_RBRACK] = ACTIONS(269), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_DASH] = ACTIONS(795), + [anon_sym_PIPE] = ACTIONS(269), + [anon_sym_LBRACE] = ACTIONS(797), + [anon_sym_PLUS] = ACTIONS(795), + [anon_sym_not] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(269), + [anon_sym_SLASH_SLASH] = ACTIONS(269), + [anon_sym_AMP] = ACTIONS(269), + [anon_sym_CARET] = ACTIONS(269), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(795), + [anon_sym_is] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(269), + [sym_ellipsis] = ACTIONS(799), + [sym_integer] = ACTIONS(783), + [sym_float] = ACTIONS(799), + [anon_sym_await] = ACTIONS(801), + [sym_true] = ACTIONS(783), + [sym_false] = ACTIONS(783), + [sym_none] = ACTIONS(783), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(819), - }, - [185] = { - [sym_list_splat_pattern] = STATE(1360), - [sym_primary_expression] = STATE(1076), - [sym_binary_operator] = STATE(1365), - [sym_unary_operator] = STATE(1365), - [sym_attribute] = STATE(1365), - [sym_subscript] = STATE(1365), - [sym_call] = STATE(1365), - [sym_list] = STATE(1365), - [sym_set] = STATE(1365), - [sym_tuple] = STATE(1365), - [sym_dictionary] = STATE(1365), - [sym_list_comprehension] = STATE(1365), - [sym_dictionary_comprehension] = STATE(1365), - [sym_set_comprehension] = STATE(1365), - [sym_generator_expression] = STATE(1365), - [sym_parenthesized_expression] = STATE(1365), - [sym_concatenated_string] = STATE(1365), - [sym_string] = STATE(996), - [sym_await] = STATE(1365), - [sym_identifier] = ACTIONS(777), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(779), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_print] = ACTIONS(783), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_if] = ACTIONS(279), - [anon_sym_match] = ACTIONS(785), - [anon_sym_async] = ACTIONS(783), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(783), - [anon_sym_type] = ACTIONS(785), - [anon_sym_LBRACK] = ACTIONS(787), - [anon_sym_RBRACK] = ACTIONS(277), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(789), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(791), - [anon_sym_PLUS] = ACTIONS(789), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(789), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(793), - [sym_integer] = ACTIONS(777), - [sym_float] = ACTIONS(793), - [anon_sym_await] = ACTIONS(795), - [sym_true] = ACTIONS(777), - [sym_false] = ACTIONS(777), - [sym_none] = ACTIONS(777), + [sym_string_start] = ACTIONS(803), + }, + [STATE(179)] = { + [sym_list_splat_pattern] = STATE(1437), + [sym_primary_expression] = STATE(1231), + [sym_binary_operator] = STATE(1435), + [sym_unary_operator] = STATE(1435), + [sym_attribute] = STATE(1435), + [sym_subscript] = STATE(1435), + [sym_call] = STATE(1435), + [sym_list] = STATE(1435), + [sym_set] = STATE(1435), + [sym_tuple] = STATE(1435), + [sym_dictionary] = STATE(1435), + [sym_list_comprehension] = STATE(1435), + [sym_dictionary_comprehension] = STATE(1435), + [sym_set_comprehension] = STATE(1435), + [sym_generator_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_concatenated_string] = STATE(1435), + [sym_string] = STATE(1038), + [sym_await] = STATE(1435), + [sym_identifier] = ACTIONS(761), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(763), + [anon_sym_COMMA] = ACTIONS(269), + [anon_sym_as] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(765), + [anon_sym_print] = ACTIONS(767), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_if] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(269), + [anon_sym_match] = ACTIONS(769), + [anon_sym_async] = ACTIONS(767), + [anon_sym_in] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(269), + [anon_sym_exec] = ACTIONS(767), + [anon_sym_type] = ACTIONS(769), + [anon_sym_LBRACK] = ACTIONS(771), + [anon_sym_RBRACK] = ACTIONS(269), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_PIPE] = ACTIONS(269), + [anon_sym_LBRACE] = ACTIONS(775), + [anon_sym_PLUS] = ACTIONS(773), + [anon_sym_not] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(269), + [anon_sym_SLASH_SLASH] = ACTIONS(269), + [anon_sym_AMP] = ACTIONS(269), + [anon_sym_CARET] = ACTIONS(269), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(773), + [anon_sym_is] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(269), + [sym_ellipsis] = ACTIONS(777), + [sym_integer] = ACTIONS(761), + [sym_float] = ACTIONS(777), + [anon_sym_await] = ACTIONS(779), + [sym_true] = ACTIONS(761), + [sym_false] = ACTIONS(761), + [sym_none] = ACTIONS(761), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(797), - }, - [186] = { - [sym_list_splat_pattern] = STATE(1258), - [sym_primary_expression] = STATE(1122), - [sym_binary_operator] = STATE(1367), - [sym_unary_operator] = STATE(1367), - [sym_attribute] = STATE(1367), - [sym_subscript] = STATE(1367), - [sym_call] = STATE(1367), - [sym_list] = STATE(1367), - [sym_set] = STATE(1367), - [sym_tuple] = STATE(1367), - [sym_dictionary] = STATE(1367), - [sym_list_comprehension] = STATE(1367), - [sym_dictionary_comprehension] = STATE(1367), - [sym_set_comprehension] = STATE(1367), - [sym_generator_expression] = STATE(1367), - [sym_parenthesized_expression] = STATE(1367), - [sym_concatenated_string] = STATE(1367), - [sym_string] = STATE(1015), - [sym_await] = STATE(1367), - [sym_identifier] = ACTIONS(753), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(755), - [anon_sym_RPAREN] = ACTIONS(277), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(757), - [anon_sym_print] = ACTIONS(759), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_if] = ACTIONS(279), - [anon_sym_match] = ACTIONS(761), - [anon_sym_async] = ACTIONS(759), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(759), - [anon_sym_type] = ACTIONS(761), - [anon_sym_LBRACK] = ACTIONS(765), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(769), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(767), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(771), - [sym_integer] = ACTIONS(753), - [sym_float] = ACTIONS(771), - [anon_sym_await] = ACTIONS(773), - [sym_true] = ACTIONS(753), - [sym_false] = ACTIONS(753), - [sym_none] = ACTIONS(753), + [sym_string_start] = ACTIONS(781), + }, + [STATE(180)] = { + [sym_list_splat_pattern] = STATE(1281), + [sym_primary_expression] = STATE(1095), + [sym_binary_operator] = STATE(1347), + [sym_unary_operator] = STATE(1347), + [sym_attribute] = STATE(1347), + [sym_subscript] = STATE(1347), + [sym_call] = STATE(1347), + [sym_list] = STATE(1347), + [sym_set] = STATE(1347), + [sym_tuple] = STATE(1347), + [sym_dictionary] = STATE(1347), + [sym_list_comprehension] = STATE(1347), + [sym_dictionary_comprehension] = STATE(1347), + [sym_set_comprehension] = STATE(1347), + [sym_generator_expression] = STATE(1347), + [sym_parenthesized_expression] = STATE(1347), + [sym_concatenated_string] = STATE(1347), + [sym_string] = STATE(1018), + [sym_await] = STATE(1347), + [sym_identifier] = ACTIONS(737), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(739), + [anon_sym_RPAREN] = ACTIONS(269), + [anon_sym_COMMA] = ACTIONS(269), + [anon_sym_as] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(741), + [anon_sym_print] = ACTIONS(743), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_if] = ACTIONS(271), + [anon_sym_match] = ACTIONS(745), + [anon_sym_async] = ACTIONS(743), + [anon_sym_for] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(269), + [anon_sym_exec] = ACTIONS(743), + [anon_sym_type] = ACTIONS(745), + [anon_sym_LBRACK] = ACTIONS(749), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_DASH] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(269), + [anon_sym_LBRACE] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(751), + [anon_sym_not] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(269), + [anon_sym_SLASH_SLASH] = ACTIONS(269), + [anon_sym_AMP] = ACTIONS(269), + [anon_sym_CARET] = ACTIONS(269), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(751), + [anon_sym_is] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(269), + [anon_sym_EQ_EQ] = ACTIONS(269), + [anon_sym_BANG_EQ] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(269), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(269), + [sym_ellipsis] = ACTIONS(755), + [sym_integer] = ACTIONS(737), + [sym_float] = ACTIONS(755), + [anon_sym_await] = ACTIONS(757), + [sym_true] = ACTIONS(737), + [sym_false] = ACTIONS(737), + [sym_none] = ACTIONS(737), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(775), - }, - [187] = { - [sym_list_splat_pattern] = STATE(1342), - [sym_primary_expression] = STATE(1051), - [sym_binary_operator] = STATE(1268), - [sym_unary_operator] = STATE(1268), - [sym_attribute] = STATE(1268), - [sym_subscript] = STATE(1268), - [sym_call] = STATE(1268), - [sym_list] = STATE(1268), - [sym_set] = STATE(1268), - [sym_tuple] = STATE(1268), - [sym_dictionary] = STATE(1268), - [sym_list_comprehension] = STATE(1268), - [sym_dictionary_comprehension] = STATE(1268), - [sym_set_comprehension] = STATE(1268), - [sym_generator_expression] = STATE(1268), - [sym_parenthesized_expression] = STATE(1268), - [sym_concatenated_string] = STATE(1268), - [sym_string] = STATE(1010), - [sym_await] = STATE(1268), - [sym_identifier] = ACTIONS(323), - [anon_sym_DOT] = ACTIONS(665), - [anon_sym_LPAREN] = ACTIONS(668), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_STAR] = ACTIONS(672), - [anon_sym_print] = ACTIONS(674), - [anon_sym_GT_GT] = ACTIONS(665), - [anon_sym_COLON] = ACTIONS(663), - [anon_sym_match] = ACTIONS(676), - [anon_sym_async] = ACTIONS(674), - [anon_sym_STAR_STAR] = ACTIONS(665), - [anon_sym_exec] = ACTIONS(674), - [anon_sym_type] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(663), - [anon_sym_LBRACK] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(665), - [anon_sym_DASH] = ACTIONS(680), - [anon_sym_PIPE] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_PLUS] = ACTIONS(680), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(665), - [anon_sym_SLASH_SLASH] = ACTIONS(665), - [anon_sym_AMP] = ACTIONS(665), - [anon_sym_CARET] = ACTIONS(665), - [anon_sym_LT_LT] = ACTIONS(665), - [anon_sym_TILDE] = ACTIONS(315), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_AT_EQ] = ACTIONS(663), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_STAR_STAR_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [sym_ellipsis] = ACTIONS(321), - [sym_integer] = ACTIONS(323), - [sym_float] = ACTIONS(321), - [anon_sym_await] = ACTIONS(682), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [sym_none] = ACTIONS(323), + [sym_string_start] = ACTIONS(759), + }, + [STATE(181)] = { + [sym_list_splat_pattern] = STATE(1333), + [sym_primary_expression] = STATE(1090), + [sym_binary_operator] = STATE(1276), + [sym_unary_operator] = STATE(1276), + [sym_attribute] = STATE(1276), + [sym_subscript] = STATE(1276), + [sym_call] = STATE(1276), + [sym_list] = STATE(1276), + [sym_set] = STATE(1276), + [sym_tuple] = STATE(1276), + [sym_dictionary] = STATE(1276), + [sym_list_comprehension] = STATE(1276), + [sym_dictionary_comprehension] = STATE(1276), + [sym_set_comprehension] = STATE(1276), + [sym_generator_expression] = STATE(1276), + [sym_parenthesized_expression] = STATE(1276), + [sym_concatenated_string] = STATE(1276), + [sym_string] = STATE(975), + [sym_await] = STATE(1276), + [sym_identifier] = ACTIONS(315), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_COMMA] = ACTIONS(311), + [anon_sym_STAR] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_GT_GT] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(311), + [anon_sym_match] = ACTIONS(660), + [anon_sym_async] = ACTIONS(658), + [anon_sym_STAR_STAR] = ACTIONS(271), + [anon_sym_exec] = ACTIONS(658), + [anon_sym_type] = ACTIONS(660), + [anon_sym_EQ] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(662), + [anon_sym_AT] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(664), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_LBRACE] = ACTIONS(302), + [anon_sym_PLUS] = ACTIONS(664), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(271), + [anon_sym_SLASH_SLASH] = ACTIONS(271), + [anon_sym_AMP] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym_LT_LT] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(307), + [anon_sym_PLUS_EQ] = ACTIONS(311), + [anon_sym_DASH_EQ] = ACTIONS(311), + [anon_sym_STAR_EQ] = ACTIONS(311), + [anon_sym_SLASH_EQ] = ACTIONS(311), + [anon_sym_AT_EQ] = ACTIONS(311), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(311), + [anon_sym_PERCENT_EQ] = ACTIONS(311), + [anon_sym_STAR_STAR_EQ] = ACTIONS(311), + [anon_sym_GT_GT_EQ] = ACTIONS(311), + [anon_sym_LT_LT_EQ] = ACTIONS(311), + [anon_sym_AMP_EQ] = ACTIONS(311), + [anon_sym_CARET_EQ] = ACTIONS(311), + [anon_sym_PIPE_EQ] = ACTIONS(311), + [sym_ellipsis] = ACTIONS(313), + [sym_integer] = ACTIONS(315), + [sym_float] = ACTIONS(313), + [anon_sym_await] = ACTIONS(666), + [sym_true] = ACTIONS(315), + [sym_false] = ACTIONS(315), + [sym_none] = ACTIONS(315), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(327), - }, - [188] = { - [sym_list_splat_pattern] = STATE(1342), - [sym_primary_expression] = STATE(1051), - [sym_binary_operator] = STATE(1268), - [sym_unary_operator] = STATE(1268), - [sym_attribute] = STATE(1268), - [sym_subscript] = STATE(1268), - [sym_call] = STATE(1268), - [sym_list] = STATE(1268), - [sym_set] = STATE(1268), - [sym_tuple] = STATE(1268), - [sym_dictionary] = STATE(1268), - [sym_list_comprehension] = STATE(1268), - [sym_dictionary_comprehension] = STATE(1268), - [sym_set_comprehension] = STATE(1268), - [sym_generator_expression] = STATE(1268), - [sym_parenthesized_expression] = STATE(1268), - [sym_concatenated_string] = STATE(1268), - [sym_string] = STATE(1010), - [sym_await] = STATE(1268), - [sym_identifier] = ACTIONS(323), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(668), - [anon_sym_COMMA] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(672), - [anon_sym_print] = ACTIONS(674), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(319), - [anon_sym_match] = ACTIONS(676), - [anon_sym_async] = ACTIONS(674), - [anon_sym_STAR_STAR] = ACTIONS(279), - [anon_sym_exec] = ACTIONS(674), - [anon_sym_type] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(319), - [anon_sym_LBRACK] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(279), - [anon_sym_DASH] = ACTIONS(680), - [anon_sym_PIPE] = ACTIONS(279), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_PLUS] = ACTIONS(680), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(279), - [anon_sym_SLASH_SLASH] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(279), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_TILDE] = ACTIONS(315), - [anon_sym_PLUS_EQ] = ACTIONS(319), - [anon_sym_DASH_EQ] = ACTIONS(319), - [anon_sym_STAR_EQ] = ACTIONS(319), - [anon_sym_SLASH_EQ] = ACTIONS(319), - [anon_sym_AT_EQ] = ACTIONS(319), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(319), - [anon_sym_PERCENT_EQ] = ACTIONS(319), - [anon_sym_STAR_STAR_EQ] = ACTIONS(319), - [anon_sym_GT_GT_EQ] = ACTIONS(319), - [anon_sym_LT_LT_EQ] = ACTIONS(319), - [anon_sym_AMP_EQ] = ACTIONS(319), - [anon_sym_CARET_EQ] = ACTIONS(319), - [anon_sym_PIPE_EQ] = ACTIONS(319), - [sym_ellipsis] = ACTIONS(321), - [sym_integer] = ACTIONS(323), - [sym_float] = ACTIONS(321), - [anon_sym_await] = ACTIONS(682), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [sym_none] = ACTIONS(323), + [sym_string_start] = ACTIONS(319), + }, + [STATE(182)] = { + [sym_list_splat_pattern] = STATE(1333), + [sym_primary_expression] = STATE(1090), + [sym_binary_operator] = STATE(1276), + [sym_unary_operator] = STATE(1276), + [sym_attribute] = STATE(1276), + [sym_subscript] = STATE(1276), + [sym_call] = STATE(1276), + [sym_list] = STATE(1276), + [sym_set] = STATE(1276), + [sym_tuple] = STATE(1276), + [sym_dictionary] = STATE(1276), + [sym_list_comprehension] = STATE(1276), + [sym_dictionary_comprehension] = STATE(1276), + [sym_set_comprehension] = STATE(1276), + [sym_generator_expression] = STATE(1276), + [sym_parenthesized_expression] = STATE(1276), + [sym_concatenated_string] = STATE(1276), + [sym_string] = STATE(975), + [sym_await] = STATE(1276), + [sym_identifier] = ACTIONS(315), + [anon_sym_DOT] = ACTIONS(649), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_COMMA] = ACTIONS(647), + [anon_sym_STAR] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_GT_GT] = ACTIONS(649), + [anon_sym_COLON] = ACTIONS(647), + [anon_sym_match] = ACTIONS(660), + [anon_sym_async] = ACTIONS(658), + [anon_sym_STAR_STAR] = ACTIONS(649), + [anon_sym_exec] = ACTIONS(658), + [anon_sym_type] = ACTIONS(660), + [anon_sym_EQ] = ACTIONS(647), + [anon_sym_LBRACK] = ACTIONS(662), + [anon_sym_AT] = ACTIONS(649), + [anon_sym_DASH] = ACTIONS(664), + [anon_sym_PIPE] = ACTIONS(649), + [anon_sym_LBRACE] = ACTIONS(302), + [anon_sym_PLUS] = ACTIONS(664), + [anon_sym_SLASH] = ACTIONS(649), + [anon_sym_PERCENT] = ACTIONS(649), + [anon_sym_SLASH_SLASH] = ACTIONS(649), + [anon_sym_AMP] = ACTIONS(649), + [anon_sym_CARET] = ACTIONS(649), + [anon_sym_LT_LT] = ACTIONS(649), + [anon_sym_TILDE] = ACTIONS(307), + [anon_sym_PLUS_EQ] = ACTIONS(647), + [anon_sym_DASH_EQ] = ACTIONS(647), + [anon_sym_STAR_EQ] = ACTIONS(647), + [anon_sym_SLASH_EQ] = ACTIONS(647), + [anon_sym_AT_EQ] = ACTIONS(647), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(647), + [anon_sym_PERCENT_EQ] = ACTIONS(647), + [anon_sym_STAR_STAR_EQ] = ACTIONS(647), + [anon_sym_GT_GT_EQ] = ACTIONS(647), + [anon_sym_LT_LT_EQ] = ACTIONS(647), + [anon_sym_AMP_EQ] = ACTIONS(647), + [anon_sym_CARET_EQ] = ACTIONS(647), + [anon_sym_PIPE_EQ] = ACTIONS(647), + [sym_ellipsis] = ACTIONS(313), + [sym_integer] = ACTIONS(315), + [sym_float] = ACTIONS(313), + [anon_sym_await] = ACTIONS(666), + [sym_true] = ACTIONS(315), + [sym_false] = ACTIONS(315), + [sym_none] = ACTIONS(315), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(327), + [sym_string_start] = ACTIONS(319), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 31, - ACTIONS(769), 1, + [0] = 30, + ACTIONS(797), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(803), 1, sym_string_start, - ACTIONS(821), 1, + ACTIONS(805), 1, sym_identifier, - ACTIONS(823), 1, + ACTIONS(807), 1, anon_sym_LPAREN, + ACTIONS(809), 1, + anon_sym_STAR, + ACTIONS(815), 1, + anon_sym_LBRACK, + ACTIONS(817), 1, + anon_sym_RBRACK, + ACTIONS(819), 1, + anon_sym_not, + ACTIONS(821), 1, + anon_sym_lambda, + ACTIONS(823), 1, + anon_sym_yield, ACTIONS(825), 1, - anon_sym_RPAREN, + anon_sym_await, + STATE(951), 1, + sym_primary_expression, + STATE(980), 1, + sym_string, + STATE(1382), 1, + sym_list_splat_pattern, + STATE(1687), 1, + sym_expression, + STATE(2322), 1, + sym_pattern, + STATE(2647), 1, + sym__named_expression_lhs, + STATE(2741), 1, + sym__patterns, + STATE(2744), 1, + sym__collection_elements, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(799), 2, + sym_ellipsis, + sym_float, + ACTIONS(813), 2, + anon_sym_match, + anon_sym_type, + STATE(1318), 2, + sym_attribute, + sym_subscript, + STATE(2576), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(795), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(811), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + STATE(2457), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(783), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1801), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1290), 14, + 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_await, + [124] = 31, + ACTIONS(753), 1, + anon_sym_LBRACE, + ACTIONS(759), 1, + sym_string_start, ACTIONS(827), 1, - anon_sym_STAR, + sym_identifier, + ACTIONS(829), 1, + anon_sym_LPAREN, + ACTIONS(831), 1, + anon_sym_RPAREN, ACTIONS(833), 1, + anon_sym_STAR, + ACTIONS(839), 1, anon_sym_LBRACK, - ACTIONS(835), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(839), 1, + ACTIONS(845), 1, anon_sym_yield, - ACTIONS(841), 1, + ACTIONS(847), 1, anon_sym_await, - STATE(963), 1, + STATE(947), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1018), 1, sym_string, - STATE(1369), 1, + STATE(1335), 1, sym_list_splat_pattern, - STATE(1691), 1, + STATE(1657), 1, sym_expression, - STATE(2303), 1, + STATE(2224), 1, sym_yield, - STATE(2340), 1, + STATE(2395), 1, sym_pattern, - STATE(2625), 1, - sym__patterns, - STATE(2771), 1, + STATE(2580), 1, sym__named_expression_lhs, - STATE(2782), 1, + STATE(2654), 1, sym__collection_elements, + STATE(2691), 1, + sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(755), 2, sym_ellipsis, sym_float, - ACTIONS(831), 2, + ACTIONS(837), 2, anon_sym_match, anon_sym_type, - STATE(1370), 2, + STATE(1395), 2, sym_attribute, sym_subscript, - STATE(2345), 2, + STATE(2354), 2, sym_list_splat, sym_parenthesized_list_splat, - STATE(2573), 2, + STATE(2559), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(767), 3, + ACTIONS(751), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(829), 3, + ACTIONS(835), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + ACTIONS(737), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1797), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -28864,7 +28678,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 14, + STATE(1347), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -28879,76 +28693,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [126] = 30, - ACTIONS(741), 1, + [250] = 30, + ACTIONS(725), 1, anon_sym_LBRACK, - ACTIONS(745), 1, + ACTIONS(729), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(735), 1, sym_string_start, - ACTIONS(843), 1, + ACTIONS(849), 1, sym_identifier, - ACTIONS(845), 1, + ACTIONS(851), 1, anon_sym_LPAREN, - ACTIONS(847), 1, + ACTIONS(853), 1, anon_sym_COMMA, - ACTIONS(849), 1, - anon_sym_STAR, ACTIONS(855), 1, + anon_sym_STAR, + ACTIONS(861), 1, anon_sym_STAR_STAR, - ACTIONS(857), 1, + ACTIONS(863), 1, anon_sym_RBRACE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_not, - ACTIONS(861), 1, + ACTIONS(867), 1, anon_sym_lambda, - ACTIONS(863), 1, + ACTIONS(869), 1, anon_sym_yield, - ACTIONS(865), 1, + ACTIONS(871), 1, anon_sym_await, - STATE(912), 1, + STATE(946), 1, sym_primary_expression, - STATE(971), 1, + STATE(957), 1, sym_string, - STATE(1203), 1, + STATE(1164), 1, sym_list_splat_pattern, - STATE(1668), 1, + STATE(1655), 1, sym_expression, - STATE(1884), 1, + STATE(1854), 1, sym_pair, - STATE(2305), 1, + STATE(2472), 1, sym_dictionary_splat, - STATE(2637), 1, - sym__collection_elements, - STATE(2683), 1, + STATE(2638), 1, sym__named_expression_lhs, + STATE(2772), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(747), 2, + ACTIONS(731), 2, sym_ellipsis, sym_float, - ACTIONS(853), 2, + ACTIONS(859), 2, anon_sym_match, anon_sym_type, - ACTIONS(743), 3, + ACTIONS(727), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(857), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2357), 3, + STATE(2247), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(731), 4, + ACTIONS(715), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1771), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -28956,7 +28770,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1138), 16, + STATE(1149), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28973,79 +28787,80 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [250] = 31, - ACTIONS(769), 1, + [374] = 32, + ACTIONS(753), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(759), 1, sym_string_start, - ACTIONS(821), 1, + ACTIONS(827), 1, sym_identifier, - ACTIONS(823), 1, + ACTIONS(829), 1, anon_sym_LPAREN, - ACTIONS(827), 1, - anon_sym_STAR, ACTIONS(833), 1, + anon_sym_STAR, + ACTIONS(839), 1, anon_sym_LBRACK, - ACTIONS(835), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(839), 1, + ACTIONS(845), 1, anon_sym_yield, - ACTIONS(841), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(867), 1, + ACTIONS(873), 1, anon_sym_RPAREN, - STATE(963), 1, + STATE(947), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1018), 1, sym_string, - STATE(1369), 1, + STATE(1335), 1, sym_list_splat_pattern, - STATE(1676), 1, + STATE(1661), 1, sym_expression, - STATE(2298), 1, + STATE(2250), 1, + sym_list_splat, + STATE(2251), 1, + sym_parenthesized_list_splat, + STATE(2276), 1, sym_yield, - STATE(2340), 1, + STATE(2395), 1, sym_pattern, - STATE(2602), 1, - sym__patterns, - STATE(2613), 1, - sym__collection_elements, - STATE(2771), 1, + STATE(2580), 1, sym__named_expression_lhs, + STATE(2696), 1, + sym__collection_elements, + STATE(2762), 1, + sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(755), 2, sym_ellipsis, sym_float, - ACTIONS(831), 2, + ACTIONS(837), 2, anon_sym_match, anon_sym_type, - STATE(1370), 2, + STATE(1395), 2, sym_attribute, sym_subscript, - STATE(2345), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2573), 2, + STATE(2559), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(767), 3, + ACTIONS(751), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(829), 3, + ACTIONS(835), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + ACTIONS(737), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1797), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29053,7 +28868,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 14, + STATE(1347), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29068,78 +28883,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [376] = 30, - ACTIONS(791), 1, + [502] = 31, + ACTIONS(753), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(759), 1, sym_string_start, - ACTIONS(869), 1, + ACTIONS(827), 1, sym_identifier, - ACTIONS(871), 1, + ACTIONS(829), 1, anon_sym_LPAREN, - ACTIONS(873), 1, + ACTIONS(833), 1, anon_sym_STAR, - ACTIONS(879), 1, + ACTIONS(839), 1, anon_sym_LBRACK, - ACTIONS(881), 1, - anon_sym_RBRACK, - ACTIONS(883), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(885), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(887), 1, + ACTIONS(845), 1, anon_sym_yield, - ACTIONS(889), 1, + ACTIONS(847), 1, anon_sym_await, - STATE(965), 1, + ACTIONS(875), 1, + anon_sym_RPAREN, + STATE(947), 1, sym_primary_expression, - STATE(996), 1, + STATE(1018), 1, sym_string, - STATE(1378), 1, + STATE(1335), 1, sym_list_splat_pattern, - STATE(1709), 1, + STATE(1695), 1, sym_expression, - STATE(2382), 1, + STATE(2308), 1, + sym_yield, + STATE(2395), 1, sym_pattern, - STATE(2611), 1, + STATE(2580), 1, sym__named_expression_lhs, - STATE(2626), 1, - sym__patterns, - STATE(2654), 1, + STATE(2604), 1, sym__collection_elements, + STATE(2691), 1, + sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(755), 2, sym_ellipsis, sym_float, - ACTIONS(877), 2, + ACTIONS(837), 2, anon_sym_match, anon_sym_type, - STATE(1381), 2, + STATE(1395), 2, sym_attribute, sym_subscript, - STATE(2570), 2, + STATE(2354), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2559), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(789), 3, + ACTIONS(751), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(875), 3, + ACTIONS(835), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2378), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(777), 4, + ACTIONS(737), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1797), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29147,7 +28963,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 14, + STATE(1347), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29162,106 +28978,12 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [500] = 30, - ACTIONS(741), 1, - anon_sym_LBRACK, - ACTIONS(745), 1, - anon_sym_LBRACE, - ACTIONS(751), 1, - sym_string_start, - ACTIONS(843), 1, + [628] = 28, + ACTIONS(9), 1, sym_identifier, - ACTIONS(845), 1, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(849), 1, - anon_sym_STAR, - ACTIONS(855), 1, - anon_sym_STAR_STAR, - ACTIONS(859), 1, - anon_sym_not, - ACTIONS(861), 1, - anon_sym_lambda, - ACTIONS(863), 1, - anon_sym_yield, - ACTIONS(865), 1, - anon_sym_await, - ACTIONS(891), 1, - anon_sym_COMMA, - ACTIONS(893), 1, - anon_sym_RBRACE, - STATE(912), 1, - sym_primary_expression, - STATE(971), 1, - sym_string, - STATE(1203), 1, - sym_list_splat_pattern, - STATE(1669), 1, - sym_expression, - STATE(1878), 1, - sym_pair, - STATE(2454), 1, - sym_dictionary_splat, - STATE(2675), 1, - sym__collection_elements, - STATE(2683), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(747), 2, - sym_ellipsis, - sym_float, - ACTIONS(853), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(743), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(851), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - STATE(2357), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(731), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1771), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1138), 16, - 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_await, - [624] = 28, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(15), 1, - anon_sym_LPAREN, - ACTIONS(17), 1, + ACTIONS(17), 1, anon_sym_STAR, ACTIONS(61), 1, anon_sym_LBRACK, @@ -29277,19 +28999,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(81), 1, sym_string_start, - STATE(641), 1, + STATE(627), 1, sym_list_splat_pattern, - STATE(966), 1, + STATE(950), 1, sym_primary_expression, - STATE(969), 1, + STATE(954), 1, sym_string, - STATE(1630), 1, + STATE(1613), 1, sym_pattern_list, - STATE(1632), 1, + STATE(1616), 1, sym_pattern, - STATE(1778), 1, + STATE(1807), 1, sym_expression, - STATE(2751), 1, + STATE(2658), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -29297,20 +29019,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(413), 2, + ACTIONS(405), 2, anon_sym_match, anon_sym_type, - STATE(640), 2, + STATE(638), 2, sym_attribute, sym_subscript, - STATE(1640), 2, + STATE(1623), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(415), 3, + ACTIONS(407), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -29319,13 +29041,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2584), 5, + STATE(2481), 5, sym_expression_list, sym_assignment, sym_augmented_assignment, sym__right_hand_side, sym_yield, - STATE(1666), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29333,7 +29055,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 14, + STATE(1063), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29348,79 +29070,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [744] = 31, - ACTIONS(769), 1, + [748] = 31, + ACTIONS(753), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(759), 1, sym_string_start, - ACTIONS(821), 1, + ACTIONS(827), 1, sym_identifier, - ACTIONS(823), 1, + ACTIONS(829), 1, anon_sym_LPAREN, - ACTIONS(827), 1, - anon_sym_STAR, ACTIONS(833), 1, + anon_sym_STAR, + ACTIONS(839), 1, anon_sym_LBRACK, - ACTIONS(835), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(839), 1, + ACTIONS(845), 1, anon_sym_yield, - ACTIONS(841), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(895), 1, + ACTIONS(877), 1, anon_sym_RPAREN, - STATE(963), 1, + STATE(947), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1018), 1, sym_string, - STATE(1369), 1, + STATE(1335), 1, sym_list_splat_pattern, - STATE(1676), 1, + STATE(1673), 1, sym_expression, - STATE(2298), 1, + STATE(2353), 1, sym_yield, - STATE(2340), 1, + STATE(2395), 1, sym_pattern, - STATE(2613), 1, + STATE(2580), 1, + sym__named_expression_lhs, + STATE(2667), 1, sym__collection_elements, - STATE(2625), 1, + STATE(2691), 1, sym__patterns, - STATE(2771), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(755), 2, sym_ellipsis, sym_float, - ACTIONS(831), 2, + ACTIONS(837), 2, anon_sym_match, anon_sym_type, - STATE(1370), 2, + STATE(1395), 2, sym_attribute, sym_subscript, - STATE(2345), 2, + STATE(2354), 2, sym_list_splat, sym_parenthesized_list_splat, - STATE(2573), 2, + STATE(2559), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(767), 3, + ACTIONS(751), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(829), 3, + ACTIONS(835), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + ACTIONS(737), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1797), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29428,7 +29150,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 14, + STATE(1347), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29443,78 +29165,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [870] = 30, - ACTIONS(791), 1, - anon_sym_LBRACE, + [874] = 30, ACTIONS(797), 1, + anon_sym_LBRACE, + ACTIONS(803), 1, sym_string_start, - ACTIONS(869), 1, + ACTIONS(805), 1, sym_identifier, - ACTIONS(871), 1, + ACTIONS(807), 1, anon_sym_LPAREN, - ACTIONS(873), 1, + ACTIONS(809), 1, anon_sym_STAR, - ACTIONS(879), 1, + ACTIONS(815), 1, anon_sym_LBRACK, - ACTIONS(883), 1, + ACTIONS(819), 1, anon_sym_not, - ACTIONS(885), 1, + ACTIONS(821), 1, anon_sym_lambda, - ACTIONS(887), 1, + ACTIONS(823), 1, anon_sym_yield, - ACTIONS(889), 1, + ACTIONS(825), 1, anon_sym_await, - ACTIONS(897), 1, + ACTIONS(879), 1, anon_sym_RBRACK, - STATE(965), 1, + STATE(951), 1, sym_primary_expression, - STATE(996), 1, + STATE(980), 1, sym_string, - STATE(1378), 1, + STATE(1382), 1, sym_list_splat_pattern, - STATE(1712), 1, + STATE(1689), 1, sym_expression, - STATE(2382), 1, + STATE(2322), 1, sym_pattern, - STATE(2611), 1, + STATE(2647), 1, sym__named_expression_lhs, - STATE(2737), 1, + STATE(2694), 1, sym__patterns, - STATE(2792), 1, + STATE(2751), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(799), 2, sym_ellipsis, sym_float, - ACTIONS(877), 2, + ACTIONS(813), 2, anon_sym_match, anon_sym_type, - STATE(1381), 2, + STATE(1318), 2, sym_attribute, sym_subscript, - STATE(2570), 2, + STATE(2576), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(789), 3, + ACTIONS(795), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(875), 3, + ACTIONS(811), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2378), 3, + STATE(2457), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(777), 4, + ACTIONS(783), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1801), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29522,7 +29244,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 14, + STATE(1290), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29537,76 +29259,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [994] = 30, - ACTIONS(741), 1, + [998] = 30, + ACTIONS(725), 1, anon_sym_LBRACK, - ACTIONS(745), 1, + ACTIONS(729), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(735), 1, sym_string_start, - ACTIONS(843), 1, + ACTIONS(849), 1, sym_identifier, - ACTIONS(845), 1, + ACTIONS(851), 1, anon_sym_LPAREN, - ACTIONS(849), 1, - anon_sym_STAR, ACTIONS(855), 1, + anon_sym_STAR, + ACTIONS(861), 1, anon_sym_STAR_STAR, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_not, - ACTIONS(861), 1, + ACTIONS(867), 1, anon_sym_lambda, - ACTIONS(863), 1, + ACTIONS(869), 1, anon_sym_yield, - ACTIONS(865), 1, + ACTIONS(871), 1, anon_sym_await, - ACTIONS(899), 1, + ACTIONS(881), 1, anon_sym_COMMA, - ACTIONS(901), 1, + ACTIONS(883), 1, anon_sym_RBRACE, - STATE(912), 1, + STATE(946), 1, sym_primary_expression, - STATE(971), 1, + STATE(957), 1, sym_string, - STATE(1203), 1, + STATE(1164), 1, sym_list_splat_pattern, - STATE(1670), 1, + STATE(1642), 1, sym_expression, - STATE(1866), 1, + STATE(1822), 1, sym_pair, - STATE(2267), 1, + STATE(2227), 1, sym_dictionary_splat, - STATE(2683), 1, + STATE(2638), 1, sym__named_expression_lhs, - STATE(2710), 1, + STATE(2722), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(747), 2, + ACTIONS(731), 2, sym_ellipsis, sym_float, - ACTIONS(853), 2, + ACTIONS(859), 2, anon_sym_match, anon_sym_type, - ACTIONS(743), 3, + ACTIONS(727), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(857), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2357), 3, + STATE(2247), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(731), 4, + ACTIONS(715), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1771), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29614,7 +29336,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1138), 16, + STATE(1149), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29631,7 +29353,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1118] = 28, + [1122] = 28, ACTIONS(9), 1, sym_identifier, ACTIONS(15), 1, @@ -29652,19 +29374,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(81), 1, sym_string_start, - STATE(641), 1, + STATE(627), 1, sym_list_splat_pattern, - STATE(966), 1, + STATE(950), 1, sym_primary_expression, - STATE(969), 1, + STATE(954), 1, sym_string, - STATE(1630), 1, + STATE(1613), 1, sym_pattern_list, - STATE(1632), 1, + STATE(1616), 1, sym_pattern, - STATE(1778), 1, + STATE(1807), 1, sym_expression, - STATE(2751), 1, + STATE(2658), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -29672,20 +29394,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(413), 2, + ACTIONS(405), 2, anon_sym_match, anon_sym_type, - STATE(640), 2, + STATE(638), 2, sym_attribute, sym_subscript, - STATE(1640), 2, + STATE(1623), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(415), 3, + ACTIONS(407), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -29694,13 +29416,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2586), 5, + STATE(2491), 5, sym_expression_list, sym_assignment, sym_augmented_assignment, sym__right_hand_side, sym_yield, - STATE(1666), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29708,7 +29430,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 14, + STATE(1063), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29723,76 +29445,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1238] = 28, - ACTIONS(9), 1, + [1242] = 31, + ACTIONS(753), 1, + anon_sym_LBRACE, + ACTIONS(759), 1, + sym_string_start, + ACTIONS(827), 1, sym_identifier, - ACTIONS(15), 1, + ACTIONS(829), 1, anon_sym_LPAREN, - ACTIONS(17), 1, + ACTIONS(833), 1, anon_sym_STAR, - ACTIONS(61), 1, + ACTIONS(839), 1, anon_sym_LBRACK, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(845), 1, anon_sym_yield, - ACTIONS(79), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(81), 1, - sym_string_start, - STATE(641), 1, - sym_list_splat_pattern, - STATE(966), 1, + ACTIONS(885), 1, + anon_sym_RPAREN, + STATE(947), 1, sym_primary_expression, - STATE(969), 1, + STATE(1018), 1, sym_string, - STATE(1630), 1, - sym_pattern_list, - STATE(1632), 1, - sym_pattern, - STATE(1778), 1, + STATE(1335), 1, + sym_list_splat_pattern, + STATE(1657), 1, sym_expression, - STATE(2751), 1, + STATE(2224), 1, + sym_yield, + STATE(2395), 1, + sym_pattern, + STATE(2580), 1, sym__named_expression_lhs, + STATE(2654), 1, + sym__collection_elements, + STATE(2726), 1, + sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(755), 2, sym_ellipsis, sym_float, - ACTIONS(413), 2, + ACTIONS(837), 2, anon_sym_match, anon_sym_type, - STATE(640), 2, + STATE(1395), 2, sym_attribute, sym_subscript, - STATE(1640), 2, + STATE(2354), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2559), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(65), 3, + ACTIONS(751), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(415), 3, + ACTIONS(835), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(737), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2553), 5, - sym_expression_list, - sym_assignment, - sym_augmented_assignment, - sym__right_hand_side, - sym_yield, - STATE(1666), 7, + STATE(1797), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29800,7 +29525,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 14, + STATE(1347), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29815,79 +29540,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1358] = 31, - ACTIONS(769), 1, + [1368] = 30, + ACTIONS(797), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(803), 1, sym_string_start, - ACTIONS(821), 1, + ACTIONS(805), 1, sym_identifier, - ACTIONS(823), 1, + ACTIONS(807), 1, anon_sym_LPAREN, - ACTIONS(827), 1, + ACTIONS(809), 1, anon_sym_STAR, - ACTIONS(833), 1, + ACTIONS(815), 1, anon_sym_LBRACK, - ACTIONS(835), 1, + ACTIONS(819), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(821), 1, anon_sym_lambda, - ACTIONS(839), 1, + ACTIONS(823), 1, anon_sym_yield, - ACTIONS(841), 1, + ACTIONS(825), 1, anon_sym_await, - ACTIONS(903), 1, - anon_sym_RPAREN, - STATE(963), 1, + ACTIONS(887), 1, + anon_sym_RBRACK, + STATE(951), 1, sym_primary_expression, - STATE(1015), 1, + STATE(980), 1, sym_string, - STATE(1369), 1, + STATE(1382), 1, sym_list_splat_pattern, - STATE(1681), 1, + STATE(1656), 1, sym_expression, - STATE(2340), 1, + STATE(2322), 1, sym_pattern, - STATE(2353), 1, - sym_yield, - STATE(2625), 1, + STATE(2615), 1, sym__patterns, STATE(2647), 1, - sym__collection_elements, - STATE(2771), 1, sym__named_expression_lhs, + STATE(2715), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(799), 2, sym_ellipsis, sym_float, - ACTIONS(831), 2, + ACTIONS(813), 2, anon_sym_match, anon_sym_type, - STATE(1370), 2, + STATE(1318), 2, sym_attribute, sym_subscript, - STATE(2345), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2573), 2, + STATE(2576), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(767), 3, + ACTIONS(795), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(829), 3, + ACTIONS(811), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + STATE(2457), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(783), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1801), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29895,7 +29619,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 14, + STATE(1290), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29910,79 +29634,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1484] = 31, - ACTIONS(769), 1, + [1492] = 30, + ACTIONS(725), 1, + anon_sym_LBRACK, + ACTIONS(729), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(735), 1, sym_string_start, - ACTIONS(821), 1, + ACTIONS(849), 1, sym_identifier, - ACTIONS(823), 1, + ACTIONS(851), 1, anon_sym_LPAREN, - ACTIONS(827), 1, + ACTIONS(855), 1, anon_sym_STAR, - ACTIONS(833), 1, - anon_sym_LBRACK, - ACTIONS(835), 1, + ACTIONS(861), 1, + anon_sym_STAR_STAR, + ACTIONS(865), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(867), 1, anon_sym_lambda, - ACTIONS(839), 1, + ACTIONS(869), 1, anon_sym_yield, - ACTIONS(841), 1, + ACTIONS(871), 1, anon_sym_await, - ACTIONS(905), 1, - anon_sym_RPAREN, - STATE(963), 1, + ACTIONS(889), 1, + anon_sym_COMMA, + ACTIONS(891), 1, + anon_sym_RBRACE, + STATE(946), 1, sym_primary_expression, - STATE(1015), 1, + STATE(957), 1, sym_string, - STATE(1369), 1, + STATE(1164), 1, sym_list_splat_pattern, - STATE(1676), 1, + STATE(1639), 1, sym_expression, - STATE(2298), 1, - sym_yield, - STATE(2340), 1, - sym_pattern, - STATE(2606), 1, - sym__patterns, - STATE(2613), 1, - sym__collection_elements, - STATE(2771), 1, + STATE(1827), 1, + sym_pair, + STATE(2280), 1, + sym_dictionary_splat, + STATE(2638), 1, sym__named_expression_lhs, + STATE(2733), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(731), 2, sym_ellipsis, sym_float, - ACTIONS(831), 2, + ACTIONS(859), 2, anon_sym_match, anon_sym_type, - STATE(1370), 2, - sym_attribute, - sym_subscript, - STATE(2345), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2573), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(767), 3, + ACTIONS(727), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(829), 3, + ACTIONS(857), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + STATE(2247), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(715), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29990,9 +29711,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 14, + STATE(1149), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -30005,78 +29728,80 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1610] = 30, - ACTIONS(791), 1, + [1616] = 32, + ACTIONS(753), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(759), 1, sym_string_start, - ACTIONS(869), 1, + ACTIONS(827), 1, sym_identifier, - ACTIONS(871), 1, + ACTIONS(829), 1, anon_sym_LPAREN, - ACTIONS(873), 1, + ACTIONS(833), 1, anon_sym_STAR, - ACTIONS(879), 1, + ACTIONS(839), 1, anon_sym_LBRACK, - ACTIONS(883), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(885), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(887), 1, + ACTIONS(845), 1, anon_sym_yield, - ACTIONS(889), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(907), 1, - anon_sym_RBRACK, - STATE(965), 1, + ACTIONS(893), 1, + anon_sym_RPAREN, + STATE(947), 1, sym_primary_expression, - STATE(996), 1, + STATE(1018), 1, sym_string, - STATE(1378), 1, + STATE(1335), 1, sym_list_splat_pattern, - STATE(1707), 1, + STATE(1690), 1, sym_expression, - STATE(2382), 1, + STATE(2228), 1, + sym_list_splat, + STATE(2295), 1, + sym_parenthesized_list_splat, + STATE(2395), 1, sym_pattern, - STATE(2611), 1, + STATE(2461), 1, + sym_yield, + STATE(2580), 1, sym__named_expression_lhs, - STATE(2628), 1, - sym__collection_elements, - STATE(2648), 1, + STATE(2726), 1, sym__patterns, + STATE(2730), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(755), 2, sym_ellipsis, sym_float, - ACTIONS(877), 2, + ACTIONS(837), 2, anon_sym_match, anon_sym_type, - STATE(1381), 2, + STATE(1395), 2, sym_attribute, sym_subscript, - STATE(2570), 2, + STATE(2559), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(789), 3, + ACTIONS(751), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(875), 3, + ACTIONS(835), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2378), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(777), 4, + ACTIONS(737), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1797), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30084,7 +29809,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 14, + STATE(1347), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30099,79 +29824,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1734] = 31, - ACTIONS(769), 1, + [1744] = 30, + ACTIONS(797), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(803), 1, sym_string_start, - ACTIONS(821), 1, + ACTIONS(805), 1, sym_identifier, - ACTIONS(823), 1, + ACTIONS(807), 1, anon_sym_LPAREN, - ACTIONS(827), 1, + ACTIONS(809), 1, anon_sym_STAR, - ACTIONS(833), 1, + ACTIONS(815), 1, anon_sym_LBRACK, - ACTIONS(835), 1, + ACTIONS(819), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(821), 1, anon_sym_lambda, - ACTIONS(839), 1, + ACTIONS(823), 1, anon_sym_yield, - ACTIONS(841), 1, + ACTIONS(825), 1, anon_sym_await, - ACTIONS(909), 1, - anon_sym_RPAREN, - STATE(963), 1, + ACTIONS(895), 1, + anon_sym_RBRACK, + STATE(951), 1, sym_primary_expression, - STATE(1015), 1, + STATE(980), 1, sym_string, - STATE(1369), 1, + STATE(1382), 1, sym_list_splat_pattern, - STATE(1676), 1, + STATE(1665), 1, sym_expression, - STATE(2298), 1, - sym_yield, - STATE(2340), 1, + STATE(2322), 1, sym_pattern, - STATE(2613), 1, + STATE(2635), 1, sym__collection_elements, - STATE(2625), 1, - sym__patterns, - STATE(2771), 1, + STATE(2647), 1, sym__named_expression_lhs, + STATE(2694), 1, + sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(799), 2, sym_ellipsis, sym_float, - ACTIONS(831), 2, + ACTIONS(813), 2, anon_sym_match, anon_sym_type, - STATE(1370), 2, + STATE(1318), 2, sym_attribute, sym_subscript, - STATE(2345), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2573), 2, + STATE(2576), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(767), 3, + ACTIONS(795), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(829), 3, + ACTIONS(811), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + STATE(2457), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(783), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1801), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30179,7 +29903,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 14, + STATE(1290), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30194,78 +29918,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1860] = 30, - ACTIONS(791), 1, - anon_sym_LBRACE, + [1868] = 30, ACTIONS(797), 1, + anon_sym_LBRACE, + ACTIONS(803), 1, sym_string_start, - ACTIONS(869), 1, + ACTIONS(805), 1, sym_identifier, - ACTIONS(871), 1, + ACTIONS(807), 1, anon_sym_LPAREN, - ACTIONS(873), 1, + ACTIONS(809), 1, anon_sym_STAR, - ACTIONS(879), 1, + ACTIONS(815), 1, anon_sym_LBRACK, - ACTIONS(883), 1, + ACTIONS(819), 1, anon_sym_not, - ACTIONS(885), 1, + ACTIONS(821), 1, anon_sym_lambda, - ACTIONS(887), 1, + ACTIONS(823), 1, anon_sym_yield, - ACTIONS(889), 1, + ACTIONS(825), 1, anon_sym_await, - ACTIONS(911), 1, + ACTIONS(897), 1, anon_sym_RBRACK, - STATE(965), 1, + STATE(951), 1, sym_primary_expression, - STATE(996), 1, + STATE(980), 1, sym_string, - STATE(1378), 1, + STATE(1382), 1, sym_list_splat_pattern, - STATE(1705), 1, + STATE(1694), 1, sym_expression, - STATE(2382), 1, + STATE(2322), 1, sym_pattern, - STATE(2611), 1, + STATE(2647), 1, sym__named_expression_lhs, - STATE(2648), 1, + STATE(2694), 1, sym__patterns, - STATE(2664), 1, + STATE(2732), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(799), 2, sym_ellipsis, sym_float, - ACTIONS(877), 2, + ACTIONS(813), 2, anon_sym_match, anon_sym_type, - STATE(1381), 2, + STATE(1318), 2, sym_attribute, sym_subscript, - STATE(2570), 2, + STATE(2576), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(789), 3, + ACTIONS(795), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(875), 3, + ACTIONS(811), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2378), 3, + STATE(2457), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(777), 4, + ACTIONS(783), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1801), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30273,7 +29997,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 14, + STATE(1290), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30288,79 +30012,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1984] = 31, - ACTIONS(769), 1, + [1992] = 30, + ACTIONS(725), 1, + anon_sym_LBRACK, + ACTIONS(729), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(735), 1, sym_string_start, - ACTIONS(821), 1, + ACTIONS(849), 1, sym_identifier, - ACTIONS(823), 1, + ACTIONS(851), 1, anon_sym_LPAREN, - ACTIONS(827), 1, + ACTIONS(855), 1, anon_sym_STAR, - ACTIONS(833), 1, - anon_sym_LBRACK, - ACTIONS(835), 1, + ACTIONS(861), 1, + anon_sym_STAR_STAR, + ACTIONS(865), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(867), 1, anon_sym_lambda, - ACTIONS(839), 1, + ACTIONS(869), 1, anon_sym_yield, - ACTIONS(841), 1, + ACTIONS(871), 1, anon_sym_await, - ACTIONS(913), 1, - anon_sym_RPAREN, - STATE(963), 1, + ACTIONS(899), 1, + anon_sym_COMMA, + ACTIONS(901), 1, + anon_sym_RBRACE, + STATE(946), 1, sym_primary_expression, - STATE(1015), 1, + STATE(957), 1, sym_string, - STATE(1369), 1, + STATE(1164), 1, sym_list_splat_pattern, - STATE(1676), 1, + STATE(1648), 1, sym_expression, - STATE(2298), 1, - sym_yield, - STATE(2340), 1, - sym_pattern, - STATE(2613), 1, - sym__collection_elements, - STATE(2623), 1, - sym__patterns, - STATE(2771), 1, + STATE(1832), 1, + sym_pair, + STATE(2327), 1, + sym_dictionary_splat, + STATE(2638), 1, sym__named_expression_lhs, + STATE(2682), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(731), 2, sym_ellipsis, sym_float, - ACTIONS(831), 2, + ACTIONS(859), 2, anon_sym_match, anon_sym_type, - STATE(1370), 2, - sym_attribute, - sym_subscript, - STATE(2345), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2573), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(767), 3, + ACTIONS(727), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(829), 3, + ACTIONS(857), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + STATE(2247), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(715), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30368,9 +30089,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 14, + STATE(1149), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -30383,78 +30106,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2110] = 30, - ACTIONS(791), 1, - anon_sym_LBRACE, - ACTIONS(797), 1, - sym_string_start, - ACTIONS(869), 1, + [2116] = 28, + ACTIONS(9), 1, sym_identifier, - ACTIONS(871), 1, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(873), 1, + ACTIONS(17), 1, anon_sym_STAR, - ACTIONS(879), 1, + ACTIONS(61), 1, anon_sym_LBRACK, - ACTIONS(883), 1, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(885), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(887), 1, + ACTIONS(73), 1, anon_sym_yield, - ACTIONS(889), 1, + ACTIONS(79), 1, anon_sym_await, - ACTIONS(915), 1, - anon_sym_RBRACK, - STATE(965), 1, + ACTIONS(81), 1, + sym_string_start, + STATE(627), 1, + sym_list_splat_pattern, + STATE(950), 1, sym_primary_expression, - STATE(996), 1, + STATE(954), 1, sym_string, - STATE(1378), 1, - sym_list_splat_pattern, - STATE(1707), 1, - sym_expression, - STATE(2382), 1, + STATE(1613), 1, + sym_pattern_list, + STATE(1616), 1, sym_pattern, - STATE(2611), 1, + STATE(1807), 1, + sym_expression, + STATE(2658), 1, sym__named_expression_lhs, - STATE(2628), 1, - sym__collection_elements, - STATE(2737), 1, - sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(877), 2, + ACTIONS(405), 2, anon_sym_match, anon_sym_type, - STATE(1381), 2, + STATE(638), 2, sym_attribute, sym_subscript, - STATE(2570), 2, + STATE(1623), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(789), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(875), 3, + ACTIONS(407), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2378), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(777), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(2512), 5, + sym_expression_list, + sym_assignment, + sym_augmented_assignment, + sym__right_hand_side, + sym_yield, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30462,7 +30183,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 14, + STATE(1063), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30477,76 +30198,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2234] = 30, - ACTIONS(741), 1, - anon_sym_LBRACK, - ACTIONS(745), 1, + [2236] = 31, + ACTIONS(753), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(759), 1, sym_string_start, - ACTIONS(843), 1, + ACTIONS(827), 1, sym_identifier, - ACTIONS(845), 1, + ACTIONS(829), 1, anon_sym_LPAREN, - ACTIONS(849), 1, + ACTIONS(833), 1, anon_sym_STAR, - ACTIONS(855), 1, - anon_sym_STAR_STAR, - ACTIONS(859), 1, + ACTIONS(839), 1, + anon_sym_LBRACK, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(861), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(863), 1, + ACTIONS(845), 1, anon_sym_yield, - ACTIONS(865), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(917), 1, - anon_sym_COMMA, - ACTIONS(919), 1, - anon_sym_RBRACE, - STATE(912), 1, + ACTIONS(903), 1, + anon_sym_RPAREN, + STATE(947), 1, sym_primary_expression, - STATE(971), 1, + STATE(1018), 1, sym_string, - STATE(1203), 1, + STATE(1335), 1, sym_list_splat_pattern, - STATE(1656), 1, + STATE(1657), 1, sym_expression, - STATE(1862), 1, - sym_pair, - STATE(2347), 1, - sym_dictionary_splat, - STATE(2668), 1, - sym__collection_elements, - STATE(2683), 1, + STATE(2224), 1, + sym_yield, + STATE(2395), 1, + sym_pattern, + STATE(2580), 1, sym__named_expression_lhs, + STATE(2654), 1, + sym__collection_elements, + STATE(2762), 1, + sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(747), 2, + ACTIONS(755), 2, sym_ellipsis, sym_float, - ACTIONS(853), 2, + ACTIONS(837), 2, anon_sym_match, anon_sym_type, - ACTIONS(743), 3, + STATE(1395), 2, + sym_attribute, + sym_subscript, + STATE(2354), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2559), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(751), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(835), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2357), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(731), 4, + ACTIONS(737), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1771), 7, + STATE(1797), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30554,11 +30278,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1138), 16, + STATE(1347), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -30571,76 +30293,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2358] = 30, - ACTIONS(741), 1, - anon_sym_LBRACK, - ACTIONS(745), 1, + [2362] = 30, + ACTIONS(797), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(803), 1, sym_string_start, - ACTIONS(843), 1, + ACTIONS(805), 1, sym_identifier, - ACTIONS(845), 1, + ACTIONS(807), 1, anon_sym_LPAREN, - ACTIONS(849), 1, + ACTIONS(809), 1, anon_sym_STAR, - ACTIONS(855), 1, - anon_sym_STAR_STAR, - ACTIONS(859), 1, + ACTIONS(815), 1, + anon_sym_LBRACK, + ACTIONS(819), 1, anon_sym_not, - ACTIONS(861), 1, + ACTIONS(821), 1, anon_sym_lambda, - ACTIONS(863), 1, + ACTIONS(823), 1, anon_sym_yield, - ACTIONS(865), 1, + ACTIONS(825), 1, anon_sym_await, - ACTIONS(921), 1, - anon_sym_COMMA, - ACTIONS(923), 1, - anon_sym_RBRACE, - STATE(912), 1, + ACTIONS(905), 1, + anon_sym_RBRACK, + STATE(951), 1, sym_primary_expression, - STATE(971), 1, + STATE(980), 1, sym_string, - STATE(1203), 1, + STATE(1382), 1, sym_list_splat_pattern, - STATE(1667), 1, + STATE(1689), 1, sym_expression, - STATE(1855), 1, - sym_pair, - STATE(2289), 1, - sym_dictionary_splat, - STATE(2683), 1, + STATE(2322), 1, + sym_pattern, + STATE(2647), 1, sym__named_expression_lhs, - STATE(2746), 1, + STATE(2741), 1, + sym__patterns, + STATE(2751), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(747), 2, + ACTIONS(799), 2, sym_ellipsis, sym_float, - ACTIONS(853), 2, + ACTIONS(813), 2, anon_sym_match, anon_sym_type, - ACTIONS(743), 3, + STATE(1318), 2, + sym_attribute, + sym_subscript, + STATE(2576), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(795), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(811), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2357), 3, + STATE(2457), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(731), 4, + ACTIONS(783), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1771), 7, + STATE(1801), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30648,11 +30372,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1138), 16, + STATE(1290), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -30665,80 +30387,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2482] = 32, - ACTIONS(769), 1, + [2486] = 30, + ACTIONS(725), 1, + anon_sym_LBRACK, + ACTIONS(729), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(735), 1, sym_string_start, - ACTIONS(821), 1, + ACTIONS(849), 1, sym_identifier, - ACTIONS(823), 1, + ACTIONS(851), 1, anon_sym_LPAREN, - ACTIONS(827), 1, + ACTIONS(855), 1, anon_sym_STAR, - ACTIONS(833), 1, - anon_sym_LBRACK, - ACTIONS(835), 1, + ACTIONS(861), 1, + anon_sym_STAR_STAR, + ACTIONS(865), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(867), 1, anon_sym_lambda, - ACTIONS(839), 1, + ACTIONS(869), 1, anon_sym_yield, - ACTIONS(841), 1, + ACTIONS(871), 1, anon_sym_await, - ACTIONS(925), 1, - anon_sym_RPAREN, - STATE(963), 1, + ACTIONS(907), 1, + anon_sym_COMMA, + ACTIONS(909), 1, + anon_sym_RBRACE, + STATE(946), 1, sym_primary_expression, - STATE(1015), 1, + STATE(957), 1, sym_string, - STATE(1369), 1, + STATE(1164), 1, sym_list_splat_pattern, - STATE(1680), 1, + STATE(1650), 1, sym_expression, - STATE(2340), 1, - sym_pattern, - STATE(2379), 1, - sym_list_splat, - STATE(2381), 1, - sym_parenthesized_list_splat, - STATE(2443), 1, - sym_yield, - STATE(2606), 1, - sym__patterns, - STATE(2631), 1, + STATE(1839), 1, + sym_pair, + STATE(2356), 1, + sym_dictionary_splat, + STATE(2586), 1, sym__collection_elements, - STATE(2771), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(731), 2, sym_ellipsis, sym_float, - ACTIONS(831), 2, + ACTIONS(859), 2, anon_sym_match, anon_sym_type, - STATE(1370), 2, - sym_attribute, - sym_subscript, - STATE(2573), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(767), 3, + ACTIONS(727), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(829), 3, + ACTIONS(857), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + STATE(2247), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(715), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30746,9 +30464,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 14, + STATE(1149), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -30761,80 +30481,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2610] = 32, - ACTIONS(769), 1, + [2610] = 30, + ACTIONS(725), 1, + anon_sym_LBRACK, + ACTIONS(729), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(735), 1, sym_string_start, - ACTIONS(821), 1, + ACTIONS(849), 1, sym_identifier, - ACTIONS(823), 1, + ACTIONS(851), 1, anon_sym_LPAREN, - ACTIONS(827), 1, + ACTIONS(855), 1, anon_sym_STAR, - ACTIONS(833), 1, - anon_sym_LBRACK, - ACTIONS(835), 1, + ACTIONS(861), 1, + anon_sym_STAR_STAR, + ACTIONS(865), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(867), 1, anon_sym_lambda, - ACTIONS(839), 1, + ACTIONS(869), 1, anon_sym_yield, - ACTIONS(841), 1, + ACTIONS(871), 1, anon_sym_await, - ACTIONS(927), 1, - anon_sym_RPAREN, - STATE(963), 1, + ACTIONS(911), 1, + anon_sym_COMMA, + ACTIONS(913), 1, + anon_sym_RBRACE, + STATE(946), 1, sym_primary_expression, - STATE(1015), 1, + STATE(957), 1, sym_string, - STATE(1369), 1, + STATE(1164), 1, sym_list_splat_pattern, - STATE(1688), 1, + STATE(1651), 1, sym_expression, - STATE(2242), 1, - sym_yield, - STATE(2340), 1, - sym_pattern, - STATE(2434), 1, - sym_list_splat, - STATE(2435), 1, - sym_parenthesized_list_splat, - STATE(2602), 1, - sym__patterns, - STATE(2736), 1, + STATE(1838), 1, + sym_pair, + STATE(2478), 1, + sym_dictionary_splat, + STATE(2608), 1, sym__collection_elements, - STATE(2771), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(731), 2, sym_ellipsis, sym_float, - ACTIONS(831), 2, + ACTIONS(859), 2, anon_sym_match, anon_sym_type, - STATE(1370), 2, - sym_attribute, - sym_subscript, - STATE(2573), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(767), 3, + ACTIONS(727), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(829), 3, + ACTIONS(857), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + STATE(2247), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(715), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30842,9 +30558,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 14, + STATE(1149), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -30857,79 +30575,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2738] = 31, - ACTIONS(769), 1, + [2734] = 31, + ACTIONS(753), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(759), 1, sym_string_start, - ACTIONS(821), 1, + ACTIONS(827), 1, sym_identifier, - ACTIONS(823), 1, + ACTIONS(829), 1, anon_sym_LPAREN, - ACTIONS(827), 1, - anon_sym_STAR, ACTIONS(833), 1, + anon_sym_STAR, + ACTIONS(839), 1, anon_sym_LBRACK, - ACTIONS(835), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(839), 1, + ACTIONS(845), 1, anon_sym_yield, - ACTIONS(841), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(929), 1, + ACTIONS(915), 1, anon_sym_RPAREN, - STATE(963), 1, + STATE(947), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1018), 1, sym_string, - STATE(1369), 1, + STATE(1335), 1, sym_list_splat_pattern, - STATE(1676), 1, + STATE(1657), 1, sym_expression, - STATE(2298), 1, + STATE(2224), 1, sym_yield, - STATE(2340), 1, + STATE(2395), 1, sym_pattern, - STATE(2613), 1, + STATE(2580), 1, + sym__named_expression_lhs, + STATE(2654), 1, sym__collection_elements, - STATE(2692), 1, + STATE(2680), 1, sym__patterns, - STATE(2771), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(755), 2, sym_ellipsis, sym_float, - ACTIONS(831), 2, + ACTIONS(837), 2, anon_sym_match, anon_sym_type, - STATE(1370), 2, + STATE(1395), 2, sym_attribute, sym_subscript, - STATE(2345), 2, + STATE(2354), 2, sym_list_splat, sym_parenthesized_list_splat, - STATE(2573), 2, + STATE(2559), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(767), 3, + ACTIONS(751), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(829), 3, + ACTIONS(835), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + ACTIONS(737), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1797), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30937,7 +30655,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 14, + STATE(1347), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30952,78 +30670,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2864] = 30, - ACTIONS(791), 1, - anon_sym_LBRACE, + [2860] = 30, ACTIONS(797), 1, + anon_sym_LBRACE, + ACTIONS(803), 1, sym_string_start, - ACTIONS(869), 1, + ACTIONS(805), 1, sym_identifier, - ACTIONS(871), 1, + ACTIONS(807), 1, anon_sym_LPAREN, - ACTIONS(873), 1, + ACTIONS(809), 1, anon_sym_STAR, - ACTIONS(879), 1, + ACTIONS(815), 1, anon_sym_LBRACK, - ACTIONS(883), 1, + ACTIONS(819), 1, anon_sym_not, - ACTIONS(885), 1, + ACTIONS(821), 1, anon_sym_lambda, - ACTIONS(887), 1, + ACTIONS(823), 1, anon_sym_yield, - ACTIONS(889), 1, + ACTIONS(825), 1, anon_sym_await, - ACTIONS(931), 1, + ACTIONS(917), 1, anon_sym_RBRACK, - STATE(965), 1, + STATE(951), 1, sym_primary_expression, - STATE(996), 1, + STATE(980), 1, sym_string, - STATE(1378), 1, + STATE(1382), 1, sym_list_splat_pattern, - STATE(1707), 1, + STATE(1689), 1, sym_expression, - STATE(2382), 1, + STATE(2322), 1, sym_pattern, - STATE(2611), 1, + STATE(2647), 1, sym__named_expression_lhs, - STATE(2626), 1, + STATE(2694), 1, sym__patterns, - STATE(2628), 1, + STATE(2751), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(799), 2, sym_ellipsis, sym_float, - ACTIONS(877), 2, + ACTIONS(813), 2, anon_sym_match, anon_sym_type, - STATE(1381), 2, + STATE(1318), 2, sym_attribute, sym_subscript, - STATE(2570), 2, + STATE(2576), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(789), 3, + ACTIONS(795), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(875), 3, + ACTIONS(811), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2378), 3, + STATE(2457), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(777), 4, + ACTIONS(783), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1801), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31031,7 +30749,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 14, + STATE(1290), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31046,76 +30764,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2988] = 30, - ACTIONS(741), 1, + [2984] = 30, + ACTIONS(725), 1, anon_sym_LBRACK, - ACTIONS(745), 1, + ACTIONS(729), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(735), 1, sym_string_start, - ACTIONS(843), 1, + ACTIONS(849), 1, sym_identifier, - ACTIONS(845), 1, + ACTIONS(851), 1, anon_sym_LPAREN, - ACTIONS(849), 1, - anon_sym_STAR, ACTIONS(855), 1, + anon_sym_STAR, + ACTIONS(861), 1, anon_sym_STAR_STAR, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_not, - ACTIONS(861), 1, + ACTIONS(867), 1, anon_sym_lambda, - ACTIONS(863), 1, + ACTIONS(869), 1, anon_sym_yield, - ACTIONS(865), 1, + ACTIONS(871), 1, anon_sym_await, - ACTIONS(933), 1, + ACTIONS(919), 1, anon_sym_COMMA, - ACTIONS(935), 1, + ACTIONS(921), 1, anon_sym_RBRACE, - STATE(912), 1, + STATE(946), 1, sym_primary_expression, - STATE(971), 1, + STATE(957), 1, sym_string, - STATE(1203), 1, + STATE(1164), 1, sym_list_splat_pattern, - STATE(1655), 1, + STATE(1652), 1, sym_expression, - STATE(1836), 1, + STATE(1844), 1, sym_pair, - STATE(2380), 1, + STATE(2377), 1, sym_dictionary_splat, - STATE(2608), 1, - sym__collection_elements, - STATE(2683), 1, + STATE(2638), 1, sym__named_expression_lhs, + STATE(2660), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(747), 2, + ACTIONS(731), 2, sym_ellipsis, sym_float, - ACTIONS(853), 2, + ACTIONS(859), 2, anon_sym_match, anon_sym_type, - ACTIONS(743), 3, + ACTIONS(727), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(857), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2357), 3, + STATE(2247), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(731), 4, + ACTIONS(715), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1771), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31123,7 +30841,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1138), 16, + STATE(1149), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31140,76 +30858,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3112] = 30, - ACTIONS(741), 1, - anon_sym_LBRACK, - ACTIONS(745), 1, + [3108] = 31, + ACTIONS(753), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(759), 1, sym_string_start, - ACTIONS(843), 1, + ACTIONS(827), 1, sym_identifier, - ACTIONS(845), 1, + ACTIONS(829), 1, anon_sym_LPAREN, - ACTIONS(849), 1, + ACTIONS(833), 1, anon_sym_STAR, - ACTIONS(855), 1, - anon_sym_STAR_STAR, - ACTIONS(859), 1, + ACTIONS(839), 1, + anon_sym_LBRACK, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(861), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(863), 1, + ACTIONS(845), 1, anon_sym_yield, - ACTIONS(865), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(937), 1, - anon_sym_COMMA, - ACTIONS(939), 1, - anon_sym_RBRACE, - STATE(912), 1, + ACTIONS(923), 1, + anon_sym_RPAREN, + STATE(947), 1, sym_primary_expression, - STATE(971), 1, + STATE(1018), 1, sym_string, - STATE(1203), 1, + STATE(1335), 1, sym_list_splat_pattern, - STATE(1663), 1, + STATE(1657), 1, sym_expression, - STATE(1859), 1, - sym_pair, - STATE(2279), 1, - sym_dictionary_splat, - STATE(2683), 1, + STATE(2224), 1, + sym_yield, + STATE(2395), 1, + sym_pattern, + STATE(2580), 1, sym__named_expression_lhs, - STATE(2757), 1, + STATE(2641), 1, + sym__patterns, + STATE(2654), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(747), 2, + ACTIONS(755), 2, sym_ellipsis, sym_float, - ACTIONS(853), 2, + ACTIONS(837), 2, anon_sym_match, anon_sym_type, - ACTIONS(743), 3, + STATE(1395), 2, + sym_attribute, + sym_subscript, + STATE(2354), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2559), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(751), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(835), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2357), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(731), 4, + ACTIONS(737), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1771), 7, + STATE(1797), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31217,11 +30938,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1138), 16, + STATE(1347), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -31234,78 +30953,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3236] = 30, - ACTIONS(791), 1, - anon_sym_LBRACE, + [3234] = 30, ACTIONS(797), 1, + anon_sym_LBRACE, + ACTIONS(803), 1, sym_string_start, - ACTIONS(869), 1, + ACTIONS(805), 1, sym_identifier, - ACTIONS(871), 1, + ACTIONS(807), 1, anon_sym_LPAREN, - ACTIONS(873), 1, + ACTIONS(809), 1, anon_sym_STAR, - ACTIONS(879), 1, + ACTIONS(815), 1, anon_sym_LBRACK, - ACTIONS(883), 1, + ACTIONS(819), 1, anon_sym_not, - ACTIONS(885), 1, + ACTIONS(821), 1, anon_sym_lambda, - ACTIONS(887), 1, + ACTIONS(823), 1, anon_sym_yield, - ACTIONS(889), 1, + ACTIONS(825), 1, anon_sym_await, - ACTIONS(941), 1, + ACTIONS(925), 1, anon_sym_RBRACK, - STATE(965), 1, + STATE(951), 1, sym_primary_expression, - STATE(996), 1, + STATE(980), 1, sym_string, - STATE(1378), 1, + STATE(1382), 1, sym_list_splat_pattern, - STATE(1713), 1, + STATE(1689), 1, sym_expression, - STATE(2382), 1, + STATE(2322), 1, sym_pattern, - STATE(2611), 1, - sym__named_expression_lhs, - STATE(2737), 1, + STATE(2615), 1, sym__patterns, - STATE(2743), 1, + STATE(2647), 1, + sym__named_expression_lhs, + STATE(2751), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(799), 2, sym_ellipsis, sym_float, - ACTIONS(877), 2, + ACTIONS(813), 2, anon_sym_match, anon_sym_type, - STATE(1381), 2, + STATE(1318), 2, sym_attribute, sym_subscript, - STATE(2570), 2, + STATE(2576), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(789), 3, + ACTIONS(795), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(875), 3, + ACTIONS(811), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2378), 3, + STATE(2457), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(777), 4, + ACTIONS(783), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1801), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31313,7 +31032,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 14, + STATE(1290), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31328,78 +31047,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3360] = 30, - ACTIONS(791), 1, + [3358] = 30, + ACTIONS(725), 1, + anon_sym_LBRACK, + ACTIONS(729), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(735), 1, sym_string_start, - ACTIONS(869), 1, + ACTIONS(849), 1, sym_identifier, - ACTIONS(871), 1, + ACTIONS(851), 1, anon_sym_LPAREN, - ACTIONS(873), 1, + ACTIONS(855), 1, anon_sym_STAR, - ACTIONS(879), 1, - anon_sym_LBRACK, - ACTIONS(883), 1, + ACTIONS(861), 1, + anon_sym_STAR_STAR, + ACTIONS(865), 1, anon_sym_not, - ACTIONS(885), 1, + ACTIONS(867), 1, anon_sym_lambda, - ACTIONS(887), 1, + ACTIONS(869), 1, anon_sym_yield, - ACTIONS(889), 1, + ACTIONS(871), 1, anon_sym_await, - ACTIONS(943), 1, - anon_sym_RBRACK, - STATE(965), 1, + ACTIONS(927), 1, + anon_sym_COMMA, + ACTIONS(929), 1, + anon_sym_RBRACE, + STATE(946), 1, sym_primary_expression, - STATE(996), 1, + STATE(957), 1, sym_string, - STATE(1378), 1, + STATE(1164), 1, sym_list_splat_pattern, - STATE(1707), 1, + STATE(1654), 1, sym_expression, - STATE(2382), 1, - sym_pattern, - STATE(2611), 1, - sym__named_expression_lhs, - STATE(2628), 1, + STATE(1850), 1, + sym_pair, + STATE(2400), 1, + sym_dictionary_splat, + STATE(2592), 1, sym__collection_elements, - STATE(2737), 1, - sym__patterns, + STATE(2638), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(731), 2, sym_ellipsis, sym_float, - ACTIONS(877), 2, + ACTIONS(859), 2, anon_sym_match, anon_sym_type, - STATE(1381), 2, - sym_attribute, - sym_subscript, - STATE(2570), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(789), 3, + ACTIONS(727), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(875), 3, + ACTIONS(857), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2378), 3, + STATE(2247), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(777), 4, + ACTIONS(715), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31407,9 +31124,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 14, + STATE(1149), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -31422,79 +31141,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3484] = 31, - ACTIONS(769), 1, + [3482] = 31, + ACTIONS(753), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(759), 1, sym_string_start, - ACTIONS(821), 1, + ACTIONS(827), 1, sym_identifier, - ACTIONS(823), 1, + ACTIONS(829), 1, anon_sym_LPAREN, - ACTIONS(827), 1, - anon_sym_STAR, ACTIONS(833), 1, + anon_sym_STAR, + ACTIONS(839), 1, anon_sym_LBRACK, - ACTIONS(835), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(839), 1, + ACTIONS(845), 1, anon_sym_yield, - ACTIONS(841), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(945), 1, + ACTIONS(931), 1, anon_sym_RPAREN, - STATE(963), 1, + STATE(947), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1018), 1, sym_string, - STATE(1369), 1, + STATE(1335), 1, sym_list_splat_pattern, - STATE(1681), 1, + STATE(1695), 1, sym_expression, - STATE(2340), 1, - sym_pattern, - STATE(2353), 1, + STATE(2308), 1, sym_yield, - STATE(2625), 1, - sym__patterns, - STATE(2647), 1, - sym__collection_elements, - STATE(2771), 1, + STATE(2395), 1, + sym_pattern, + STATE(2580), 1, sym__named_expression_lhs, + STATE(2604), 1, + sym__collection_elements, + STATE(2691), 1, + sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(755), 2, sym_ellipsis, sym_float, - ACTIONS(831), 2, + ACTIONS(837), 2, anon_sym_match, anon_sym_type, - STATE(1370), 2, + STATE(1395), 2, sym_attribute, sym_subscript, - STATE(2345), 2, + STATE(2354), 2, sym_list_splat, sym_parenthesized_list_splat, - STATE(2573), 2, + STATE(2559), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(767), 3, + ACTIONS(751), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(829), 3, + ACTIONS(835), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + ACTIONS(737), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1797), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31502,7 +31221,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 14, + STATE(1347), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31517,78 +31236,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3610] = 30, - ACTIONS(791), 1, - anon_sym_LBRACE, + [3608] = 30, ACTIONS(797), 1, + anon_sym_LBRACE, + ACTIONS(803), 1, sym_string_start, - ACTIONS(869), 1, + ACTIONS(805), 1, sym_identifier, - ACTIONS(871), 1, + ACTIONS(807), 1, anon_sym_LPAREN, - ACTIONS(873), 1, + ACTIONS(809), 1, anon_sym_STAR, - ACTIONS(879), 1, + ACTIONS(815), 1, anon_sym_LBRACK, - ACTIONS(883), 1, + ACTIONS(819), 1, anon_sym_not, - ACTIONS(885), 1, + ACTIONS(821), 1, anon_sym_lambda, - ACTIONS(887), 1, + ACTIONS(823), 1, anon_sym_yield, - ACTIONS(889), 1, + ACTIONS(825), 1, anon_sym_await, - ACTIONS(947), 1, + ACTIONS(933), 1, anon_sym_RBRACK, - STATE(965), 1, + STATE(951), 1, sym_primary_expression, - STATE(996), 1, + STATE(980), 1, sym_string, - STATE(1378), 1, + STATE(1382), 1, sym_list_splat_pattern, - STATE(1707), 1, + STATE(1689), 1, sym_expression, - STATE(2382), 1, + STATE(2322), 1, sym_pattern, - STATE(2611), 1, + STATE(2647), 1, sym__named_expression_lhs, - STATE(2628), 1, - sym__collection_elements, - STATE(2649), 1, + STATE(2714), 1, sym__patterns, + STATE(2751), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(799), 2, sym_ellipsis, sym_float, - ACTIONS(877), 2, + ACTIONS(813), 2, anon_sym_match, anon_sym_type, - STATE(1381), 2, + STATE(1318), 2, sym_attribute, sym_subscript, - STATE(2570), 2, + STATE(2576), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(789), 3, + ACTIONS(795), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(875), 3, + ACTIONS(811), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2378), 3, + STATE(2457), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(777), 4, + ACTIONS(783), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1801), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31596,7 +31315,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 14, + STATE(1290), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31611,78 +31330,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3734] = 30, - ACTIONS(791), 1, - anon_sym_LBRACE, + [3732] = 30, ACTIONS(797), 1, + anon_sym_LBRACE, + ACTIONS(803), 1, sym_string_start, - ACTIONS(869), 1, + ACTIONS(805), 1, sym_identifier, - ACTIONS(871), 1, + ACTIONS(807), 1, anon_sym_LPAREN, - ACTIONS(873), 1, + ACTIONS(809), 1, anon_sym_STAR, - ACTIONS(879), 1, + ACTIONS(815), 1, anon_sym_LBRACK, - ACTIONS(883), 1, + ACTIONS(819), 1, anon_sym_not, - ACTIONS(885), 1, + ACTIONS(821), 1, anon_sym_lambda, - ACTIONS(887), 1, + ACTIONS(823), 1, anon_sym_yield, - ACTIONS(889), 1, + ACTIONS(825), 1, anon_sym_await, - ACTIONS(949), 1, + ACTIONS(935), 1, anon_sym_RBRACK, - STATE(965), 1, + STATE(951), 1, sym_primary_expression, - STATE(996), 1, + STATE(980), 1, sym_string, - STATE(1378), 1, + STATE(1382), 1, sym_list_splat_pattern, - STATE(1707), 1, + STATE(1689), 1, sym_expression, - STATE(2382), 1, + STATE(2322), 1, sym_pattern, - STATE(2611), 1, + STATE(2647), 1, sym__named_expression_lhs, - STATE(2628), 1, - sym__collection_elements, - STATE(2703), 1, + STATE(2663), 1, sym__patterns, + STATE(2751), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(799), 2, sym_ellipsis, sym_float, - ACTIONS(877), 2, + ACTIONS(813), 2, anon_sym_match, anon_sym_type, - STATE(1381), 2, + STATE(1318), 2, sym_attribute, sym_subscript, - STATE(2570), 2, + STATE(2576), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(789), 3, + ACTIONS(795), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(875), 3, + ACTIONS(811), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2378), 3, + STATE(2457), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(777), 4, + ACTIONS(783), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1801), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31690,7 +31409,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 14, + STATE(1290), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31705,78 +31424,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3858] = 30, - ACTIONS(791), 1, - anon_sym_LBRACE, + [3856] = 30, ACTIONS(797), 1, + anon_sym_LBRACE, + ACTIONS(803), 1, sym_string_start, - ACTIONS(869), 1, + ACTIONS(805), 1, sym_identifier, - ACTIONS(871), 1, + ACTIONS(807), 1, anon_sym_LPAREN, - ACTIONS(873), 1, + ACTIONS(809), 1, anon_sym_STAR, - ACTIONS(879), 1, + ACTIONS(815), 1, anon_sym_LBRACK, - ACTIONS(883), 1, + ACTIONS(819), 1, anon_sym_not, - ACTIONS(885), 1, + ACTIONS(821), 1, anon_sym_lambda, - ACTIONS(887), 1, + ACTIONS(823), 1, anon_sym_yield, - ACTIONS(889), 1, + ACTIONS(825), 1, anon_sym_await, - ACTIONS(951), 1, + ACTIONS(937), 1, anon_sym_RBRACK, - STATE(965), 1, + STATE(951), 1, sym_primary_expression, - STATE(996), 1, + STATE(980), 1, sym_string, - STATE(1378), 1, + STATE(1382), 1, sym_list_splat_pattern, - STATE(1713), 1, + STATE(1665), 1, sym_expression, - STATE(2382), 1, + STATE(2322), 1, sym_pattern, - STATE(2611), 1, + STATE(2635), 1, + sym__collection_elements, + STATE(2647), 1, sym__named_expression_lhs, - STATE(2737), 1, + STATE(2694), 1, sym__patterns, - STATE(2743), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(799), 2, sym_ellipsis, sym_float, - ACTIONS(877), 2, + ACTIONS(813), 2, anon_sym_match, anon_sym_type, - STATE(1381), 2, + STATE(1318), 2, sym_attribute, sym_subscript, - STATE(2570), 2, + STATE(2576), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(789), 3, + ACTIONS(795), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(875), 3, + ACTIONS(811), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2378), 3, + STATE(2457), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(777), 4, + ACTIONS(783), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1801), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31784,7 +31503,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 14, + STATE(1290), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31799,76 +31518,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3982] = 30, - ACTIONS(741), 1, - anon_sym_LBRACK, - ACTIONS(745), 1, + [3980] = 31, + ACTIONS(753), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(759), 1, sym_string_start, - ACTIONS(843), 1, + ACTIONS(827), 1, sym_identifier, - ACTIONS(845), 1, + ACTIONS(829), 1, anon_sym_LPAREN, - ACTIONS(849), 1, + ACTIONS(833), 1, anon_sym_STAR, - ACTIONS(855), 1, - anon_sym_STAR_STAR, - ACTIONS(859), 1, + ACTIONS(839), 1, + anon_sym_LBRACK, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(861), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(863), 1, + ACTIONS(845), 1, anon_sym_yield, - ACTIONS(865), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(953), 1, - anon_sym_COMMA, - ACTIONS(955), 1, - anon_sym_RBRACE, - STATE(912), 1, + ACTIONS(939), 1, + anon_sym_RPAREN, + STATE(947), 1, sym_primary_expression, - STATE(971), 1, + STATE(1018), 1, sym_string, - STATE(1203), 1, + STATE(1335), 1, sym_list_splat_pattern, - STATE(1671), 1, + STATE(1657), 1, sym_expression, - STATE(1845), 1, - sym_pair, - STATE(2307), 1, - sym_dictionary_splat, - STATE(2643), 1, - sym__collection_elements, - STATE(2683), 1, + STATE(2224), 1, + sym_yield, + STATE(2395), 1, + sym_pattern, + STATE(2580), 1, sym__named_expression_lhs, + STATE(2654), 1, + sym__collection_elements, + STATE(2691), 1, + sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(747), 2, + ACTIONS(755), 2, sym_ellipsis, sym_float, - ACTIONS(853), 2, + ACTIONS(837), 2, anon_sym_match, anon_sym_type, - ACTIONS(743), 3, + STATE(1395), 2, + sym_attribute, + sym_subscript, + STATE(2354), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2559), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(751), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(835), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2357), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(731), 4, + ACTIONS(737), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1771), 7, + STATE(1797), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31876,11 +31598,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1138), 16, + STATE(1347), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -31894,58 +31614,58 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [4106] = 22, - ACTIONS(310), 1, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(315), 1, + ACTIONS(307), 1, anon_sym_TILDE, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(957), 1, + ACTIONS(941), 1, sym_identifier, - ACTIONS(961), 1, + ACTIONS(945), 1, anon_sym_LPAREN, - ACTIONS(963), 1, + ACTIONS(947), 1, anon_sym_STAR, - ACTIONS(969), 1, + ACTIONS(953), 1, anon_sym_LBRACK, - ACTIONS(971), 1, + ACTIONS(955), 1, anon_sym_await, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1352), 1, + STATE(1315), 1, sym_list_splat_pattern, - STATE(1591), 1, - sym_primary_expression, - STATE(1610), 1, + STATE(1578), 1, sym_pattern, + STATE(1600), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(680), 2, + ACTIONS(664), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(967), 2, + ACTIONS(951), 2, anon_sym_match, anon_sym_type, - STATE(1353), 2, + STATE(1316), 2, sym_attribute, sym_subscript, - STATE(1592), 2, + STATE(1610), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(965), 3, + ACTIONS(949), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1276), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31960,7 +31680,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - ACTIONS(959), 17, + ACTIONS(943), 17, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -31979,58 +31699,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, [4213] = 22, - ACTIONS(310), 1, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(315), 1, + ACTIONS(307), 1, anon_sym_TILDE, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(957), 1, + ACTIONS(941), 1, sym_identifier, - ACTIONS(961), 1, + ACTIONS(945), 1, anon_sym_LPAREN, - ACTIONS(963), 1, + ACTIONS(947), 1, anon_sym_STAR, - ACTIONS(969), 1, + ACTIONS(953), 1, anon_sym_LBRACK, - ACTIONS(971), 1, + ACTIONS(955), 1, anon_sym_await, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1352), 1, + STATE(1315), 1, sym_list_splat_pattern, - STATE(1591), 1, - sym_primary_expression, - STATE(1610), 1, + STATE(1578), 1, sym_pattern, + STATE(1600), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(680), 2, + ACTIONS(664), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(967), 2, + ACTIONS(951), 2, anon_sym_match, anon_sym_type, - STATE(1353), 2, + STATE(1316), 2, sym_attribute, sym_subscript, - STATE(1592), 2, + STATE(1610), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(965), 3, + ACTIONS(949), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1276), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -32045,7 +31765,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - ACTIONS(973), 17, + ACTIONS(957), 17, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -32064,63 +31784,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, [4320] = 26, - ACTIONS(801), 1, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(975), 1, + ACTIONS(959), 1, sym_identifier, - ACTIONS(977), 1, + ACTIONS(961), 1, anon_sym_STAR, - ACTIONS(983), 1, + ACTIONS(967), 1, anon_sym_STAR_STAR, - ACTIONS(985), 1, + ACTIONS(969), 1, anon_sym_RBRACK, - ACTIONS(987), 1, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(975), 1, anon_sym_await, - STATE(976), 1, + STATE(960), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1038), 1, sym_string, STATE(1437), 1, sym_list_splat_pattern, - STATE(1768), 1, + STATE(1746), 1, sym_expression, - STATE(2012), 1, + STATE(1978), 1, sym_type, - STATE(2777), 1, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2107), 5, + STATE(1982), 5, sym_splat_type, sym_generic_type, sym_union_type, @@ -32134,7 +31854,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32151,70 +31871,73 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [4434] = 26, - ACTIONS(801), 1, - anon_sym_LPAREN, - ACTIONS(809), 1, - anon_sym_LBRACK, - ACTIONS(813), 1, + [4434] = 27, + ACTIONS(685), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(691), 1, sym_string_start, - ACTIONS(975), 1, - sym_identifier, + ACTIONS(869), 1, + anon_sym_yield, ACTIONS(977), 1, + sym_identifier, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(981), 1, anon_sym_STAR, - ACTIONS(983), 1, - anon_sym_STAR_STAR, ACTIONS(987), 1, - anon_sym_not, + anon_sym_LBRACK, ACTIONS(989), 1, - anon_sym_lambda, + anon_sym_not, ACTIONS(991), 1, - anon_sym_await, + anon_sym_lambda, ACTIONS(993), 1, - anon_sym_RBRACK, - STATE(976), 1, + anon_sym_await, + STATE(932), 1, sym_primary_expression, - STATE(1107), 1, + STATE(963), 1, sym_string, - STATE(1437), 1, + STATE(1119), 1, sym_list_splat_pattern, - STATE(1768), 1, + STATE(1705), 1, sym_expression, - STATE(2012), 1, - sym_type, - STATE(2777), 1, + STATE(2518), 1, + sym_pattern, + STATE(2688), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(687), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(985), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + STATE(1151), 2, + sym_attribute, + sym_subscript, + STATE(1623), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(683), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(983), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(671), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2107), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1751), 7, + STATE(1977), 4, + sym_expression_list, + sym_pattern_list, + sym_yield, + sym__f_expression, + STATE(1744), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32222,11 +31945,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1198), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -32239,64 +31960,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [4548] = 26, - ACTIONS(801), 1, + [4550] = 26, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(975), 1, + ACTIONS(959), 1, sym_identifier, - ACTIONS(977), 1, + ACTIONS(961), 1, anon_sym_STAR, - ACTIONS(983), 1, + ACTIONS(967), 1, anon_sym_STAR_STAR, - ACTIONS(987), 1, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(975), 1, anon_sym_await, ACTIONS(995), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(960), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1038), 1, sym_string, STATE(1437), 1, sym_list_splat_pattern, - STATE(1768), 1, + STATE(1746), 1, sym_expression, - STATE(2012), 1, + STATE(1978), 1, sym_type, - STATE(2777), 1, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2107), 5, + STATE(1982), 5, sym_splat_type, sym_generic_type, sym_union_type, @@ -32310,7 +32031,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32327,64 +32048,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [4662] = 26, - ACTIONS(801), 1, + [4664] = 26, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(975), 1, + ACTIONS(959), 1, sym_identifier, - ACTIONS(977), 1, + ACTIONS(961), 1, anon_sym_STAR, - ACTIONS(983), 1, + ACTIONS(967), 1, anon_sym_STAR_STAR, - ACTIONS(987), 1, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(975), 1, anon_sym_await, ACTIONS(997), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(960), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1038), 1, sym_string, STATE(1437), 1, sym_list_splat_pattern, - STATE(1768), 1, + STATE(1746), 1, sym_expression, - STATE(2012), 1, + STATE(1978), 1, sym_type, - STATE(2777), 1, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2107), 5, + STATE(1982), 5, sym_splat_type, sym_generic_type, sym_union_type, @@ -32398,7 +32119,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32415,64 +32136,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [4776] = 26, - ACTIONS(801), 1, + [4778] = 26, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(975), 1, + ACTIONS(959), 1, sym_identifier, - ACTIONS(977), 1, + ACTIONS(961), 1, anon_sym_STAR, - ACTIONS(983), 1, + ACTIONS(967), 1, anon_sym_STAR_STAR, - ACTIONS(987), 1, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(975), 1, anon_sym_await, ACTIONS(999), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(960), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1038), 1, sym_string, STATE(1437), 1, sym_list_splat_pattern, - STATE(1768), 1, + STATE(1746), 1, sym_expression, - STATE(2012), 1, + STATE(1978), 1, sym_type, - STATE(2777), 1, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2107), 5, + STATE(1982), 5, sym_splat_type, sym_generic_type, sym_union_type, @@ -32486,7 +32207,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32503,64 +32224,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [4890] = 26, - ACTIONS(801), 1, + [4892] = 26, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(975), 1, + ACTIONS(959), 1, sym_identifier, - ACTIONS(977), 1, + ACTIONS(961), 1, anon_sym_STAR, - ACTIONS(983), 1, + ACTIONS(967), 1, anon_sym_STAR_STAR, - ACTIONS(987), 1, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(975), 1, anon_sym_await, ACTIONS(1001), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(960), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1038), 1, sym_string, STATE(1437), 1, sym_list_splat_pattern, - STATE(1768), 1, + STATE(1746), 1, sym_expression, - STATE(2012), 1, + STATE(1978), 1, sym_type, - STATE(2777), 1, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2107), 5, + STATE(1982), 5, sym_splat_type, sym_generic_type, sym_union_type, @@ -32574,7 +32295,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32591,73 +32312,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5004] = 27, - ACTIONS(698), 1, + [5006] = 26, + ACTIONS(763), 1, + anon_sym_LPAREN, + ACTIONS(771), 1, + anon_sym_LBRACK, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(704), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(863), 1, - anon_sym_yield, - ACTIONS(1003), 1, + ACTIONS(959), 1, sym_identifier, - ACTIONS(1005), 1, - anon_sym_LPAREN, - ACTIONS(1007), 1, + ACTIONS(961), 1, anon_sym_STAR, - ACTIONS(1013), 1, - anon_sym_LBRACK, - ACTIONS(1015), 1, + ACTIONS(967), 1, + anon_sym_STAR_STAR, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(1019), 1, + ACTIONS(975), 1, anon_sym_await, - STATE(909), 1, + ACTIONS(1003), 1, + anon_sym_RBRACK, + STATE(960), 1, sym_primary_expression, - STATE(975), 1, + STATE(1038), 1, sym_string, - STATE(1139), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1737), 1, + STATE(1746), 1, sym_expression, - STATE(2500), 1, - sym_pattern, - STATE(2773), 1, + STATE(1978), 1, + sym_type, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(700), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(1011), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - STATE(1140), 2, - sym_attribute, - sym_subscript, - STATE(1640), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(696), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1009), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(684), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2009), 4, - sym_expression_list, - sym_pattern_list, - sym_yield, - sym__f_expression, - STATE(1767), 7, + STATE(1982), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32665,9 +32383,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1172), 14, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -32681,63 +32401,63 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [5120] = 26, - ACTIONS(801), 1, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(975), 1, + ACTIONS(959), 1, sym_identifier, - ACTIONS(977), 1, + ACTIONS(961), 1, anon_sym_STAR, - ACTIONS(983), 1, + ACTIONS(967), 1, anon_sym_STAR_STAR, - ACTIONS(987), 1, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(975), 1, anon_sym_await, - ACTIONS(1021), 1, + ACTIONS(1005), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(960), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1038), 1, sym_string, STATE(1437), 1, sym_list_splat_pattern, - STATE(1768), 1, + STATE(1746), 1, sym_expression, - STATE(2012), 1, + STATE(1978), 1, sym_type, - STATE(2777), 1, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2107), 5, + STATE(1982), 5, sym_splat_type, sym_generic_type, sym_union_type, @@ -32751,7 +32471,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32768,70 +32488,73 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5234] = 26, - ACTIONS(801), 1, - anon_sym_LPAREN, - ACTIONS(809), 1, - anon_sym_LBRACK, - ACTIONS(813), 1, + [5234] = 27, + ACTIONS(685), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(691), 1, sym_string_start, - ACTIONS(975), 1, - sym_identifier, + ACTIONS(869), 1, + anon_sym_yield, ACTIONS(977), 1, + sym_identifier, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(981), 1, anon_sym_STAR, - ACTIONS(983), 1, - anon_sym_STAR_STAR, ACTIONS(987), 1, - anon_sym_not, + anon_sym_LBRACK, ACTIONS(989), 1, - anon_sym_lambda, + anon_sym_not, ACTIONS(991), 1, + anon_sym_lambda, + ACTIONS(993), 1, anon_sym_await, - ACTIONS(1023), 1, - anon_sym_RBRACK, - STATE(976), 1, + STATE(932), 1, sym_primary_expression, - STATE(1107), 1, + STATE(963), 1, sym_string, - STATE(1437), 1, + STATE(1119), 1, sym_list_splat_pattern, - STATE(1768), 1, + STATE(1705), 1, sym_expression, - STATE(2012), 1, - sym_type, - STATE(2777), 1, + STATE(2518), 1, + sym_pattern, + STATE(2688), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(687), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(985), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + STATE(1151), 2, + sym_attribute, + sym_subscript, + STATE(1623), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(683), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(983), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(671), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2107), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1751), 7, + STATE(1986), 4, + sym_expression_list, + sym_pattern_list, + sym_yield, + sym__f_expression, + STATE(1744), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32839,11 +32562,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1198), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -32856,73 +32577,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5348] = 27, - ACTIONS(698), 1, + [5350] = 26, + ACTIONS(763), 1, + anon_sym_LPAREN, + ACTIONS(771), 1, + anon_sym_LBRACK, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(704), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(863), 1, - anon_sym_yield, - ACTIONS(1003), 1, + ACTIONS(959), 1, sym_identifier, - ACTIONS(1005), 1, - anon_sym_LPAREN, - ACTIONS(1007), 1, + ACTIONS(961), 1, anon_sym_STAR, - ACTIONS(1013), 1, - anon_sym_LBRACK, - ACTIONS(1015), 1, + ACTIONS(967), 1, + anon_sym_STAR_STAR, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(1019), 1, + ACTIONS(975), 1, anon_sym_await, - STATE(909), 1, + ACTIONS(1007), 1, + anon_sym_RBRACK, + STATE(960), 1, sym_primary_expression, - STATE(975), 1, + STATE(1038), 1, sym_string, - STATE(1139), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1737), 1, + STATE(1746), 1, sym_expression, - STATE(2500), 1, - sym_pattern, - STATE(2773), 1, + STATE(1978), 1, + sym_type, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(700), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(1011), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - STATE(1140), 2, - sym_attribute, - sym_subscript, - STATE(1640), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(696), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1009), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(684), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1997), 4, - sym_expression_list, - sym_pattern_list, - sym_yield, - sym__f_expression, - STATE(1767), 7, + STATE(1982), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32930,9 +32648,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1172), 14, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -32945,70 +32665,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5464] = 27, - ACTIONS(719), 1, - anon_sym_LBRACK, - ACTIONS(723), 1, + [5464] = 25, + ACTIONS(267), 1, + sym_identifier, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(309), 1, + anon_sym_lambda, + ACTIONS(317), 1, + anon_sym_await, + ACTIONS(319), 1, sym_string_start, - ACTIONS(1025), 1, - sym_identifier, - ACTIONS(1027), 1, + ACTIONS(333), 1, + anon_sym_STAR_STAR, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(1029), 1, - anon_sym_RPAREN, - ACTIONS(1031), 1, - anon_sym_COMMA, - ACTIONS(1033), 1, + ACTIONS(662), 1, + anon_sym_LBRACK, + ACTIONS(1009), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(1043), 1, - anon_sym_lambda, - ACTIONS(1045), 1, - anon_sym_await, - STATE(967), 1, + STATE(953), 1, sym_primary_expression, - STATE(1028), 1, + STATE(975), 1, sym_string, - STATE(1388), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1879), 1, + STATE(1743), 1, sym_expression, - STATE(2325), 1, - sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2451), 1, + sym_type, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, - sym_ellipsis, - sym_float, - ACTIONS(1037), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(313), 2, + sym_ellipsis, + sym_float, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2323), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(709), 4, + ACTIONS(307), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(2015), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33016,7 +32734,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33033,68 +32751,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5579] = 25, - ACTIONS(801), 1, - anon_sym_LPAREN, - ACTIONS(809), 1, - anon_sym_LBRACK, - ACTIONS(813), 1, + [5575] = 25, + ACTIONS(267), 1, + sym_identifier, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(309), 1, + anon_sym_lambda, + ACTIONS(317), 1, + anon_sym_await, + ACTIONS(319), 1, sym_string_start, - ACTIONS(975), 1, - sym_identifier, - ACTIONS(977), 1, - anon_sym_STAR, - ACTIONS(983), 1, + ACTIONS(333), 1, anon_sym_STAR_STAR, - ACTIONS(987), 1, + ACTIONS(652), 1, + anon_sym_LPAREN, + ACTIONS(662), 1, + anon_sym_LBRACK, + ACTIONS(1009), 1, + anon_sym_STAR, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(989), 1, - anon_sym_lambda, - ACTIONS(991), 1, - anon_sym_await, - STATE(976), 1, + STATE(953), 1, sym_primary_expression, - STATE(1107), 1, + STATE(975), 1, sym_string, - STATE(1437), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1768), 1, + STATE(1743), 1, sym_expression, - STATE(2012), 1, + STATE(2034), 1, sym_type, - STATE(2777), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, - sym_ellipsis, - sym_float, - ACTIONS(981), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(313), 2, + sym_ellipsis, + sym_float, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(307), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2107), 5, + STATE(2015), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1751), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33102,7 +32820,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33119,68 +32837,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5690] = 25, - ACTIONS(275), 1, - sym_identifier, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(317), 1, - anon_sym_lambda, - ACTIONS(325), 1, - anon_sym_await, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(341), 1, - anon_sym_STAR_STAR, - ACTIONS(668), 1, + [5686] = 25, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(1047), 1, + ACTIONS(775), 1, + anon_sym_LBRACE, + ACTIONS(781), 1, + sym_string_start, + ACTIONS(959), 1, + sym_identifier, + ACTIONS(961), 1, anon_sym_STAR, - ACTIONS(1049), 1, + ACTIONS(967), 1, + anon_sym_STAR_STAR, + ACTIONS(971), 1, anon_sym_not, - STATE(970), 1, + ACTIONS(973), 1, + anon_sym_lambda, + ACTIONS(975), 1, + anon_sym_await, + STATE(960), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1038), 1, sym_string, - STATE(1342), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1761), 1, + STATE(1746), 1, sym_expression, - STATE(2449), 1, + STATE(1970), 1, sym_type, - STATE(2775), 1, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(965), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(963), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2016), 5, + STATE(1982), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1717), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33188,7 +32906,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33205,80 +32923,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5801] = 25, - ACTIONS(275), 1, - sym_identifier, - ACTIONS(310), 1, + [5797] = 22, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(317), 1, - anon_sym_lambda, - ACTIONS(325), 1, - anon_sym_await, - ACTIONS(327), 1, + ACTIONS(307), 1, + anon_sym_TILDE, + ACTIONS(319), 1, sym_string_start, - ACTIONS(341), 1, - anon_sym_STAR_STAR, - ACTIONS(668), 1, + ACTIONS(1013), 1, + sym_identifier, + ACTIONS(1015), 1, anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1047), 1, + ACTIONS(1017), 1, anon_sym_STAR, - ACTIONS(1049), 1, - anon_sym_not, - STATE(970), 1, - sym_primary_expression, - STATE(1010), 1, + ACTIONS(1023), 1, + anon_sym_LBRACK, + ACTIONS(1025), 1, + anon_sym_await, + STATE(975), 1, sym_string, - STATE(1342), 1, + STATE(1453), 1, sym_list_splat_pattern, - STATE(1761), 1, - sym_expression, - STATE(2484), 1, - sym_type, - STATE(2775), 1, - sym__named_expression_lhs, + STATE(1605), 1, + sym_primary_expression, + STATE(1611), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(664), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1021), 2, + anon_sym_match, + anon_sym_type, + STATE(1450), 2, + sym_attribute, + sym_subscript, + STATE(1623), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1019), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2016), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1717), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1268), 16, + STATE(1276), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -33291,71 +32990,86 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5912] = 28, - ACTIONS(765), 1, + ACTIONS(943), 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, + [5902] = 27, + ACTIONS(749), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(753), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(759), 1, sym_string_start, - ACTIONS(827), 1, - anon_sym_STAR, - ACTIONS(835), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(839), 1, - anon_sym_yield, - ACTIONS(1051), 1, + ACTIONS(1027), 1, sym_identifier, - ACTIONS(1053), 1, + ACTIONS(1029), 1, anon_sym_LPAREN, - ACTIONS(1055), 1, + ACTIONS(1031), 1, anon_sym_RPAREN, - ACTIONS(1061), 1, + ACTIONS(1033), 1, + anon_sym_COMMA, + ACTIONS(1035), 1, + anon_sym_STAR, + ACTIONS(1041), 1, + anon_sym_STAR_STAR, + ACTIONS(1043), 1, anon_sym_await, - STATE(963), 1, + STATE(947), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1018), 1, sym_string, - STATE(1258), 1, + STATE(1281), 1, sym_list_splat_pattern, - STATE(1694), 1, + STATE(1670), 1, sym_expression, - STATE(2298), 1, - sym_yield, - STATE(2423), 1, - sym_with_item, - STATE(2613), 1, - sym__collection_elements, - STATE(2771), 1, + STATE(2332), 1, + sym_parenthesized_list_splat, + STATE(2580), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(755), 2, sym_ellipsis, sym_float, - ACTIONS(1059), 2, + ACTIONS(1039), 2, anon_sym_match, anon_sym_type, - STATE(2345), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(767), 3, + ACTIONS(751), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1057), 3, + ACTIONS(1037), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + STATE(2331), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(737), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1797), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33363,7 +33077,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1347), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33380,68 +33094,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6029] = 25, - ACTIONS(801), 1, - anon_sym_LPAREN, - ACTIONS(809), 1, + [6017] = 27, + ACTIONS(703), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(713), 1, sym_string_start, - ACTIONS(975), 1, + ACTIONS(1041), 1, + anon_sym_STAR_STAR, + ACTIONS(1045), 1, sym_identifier, - ACTIONS(977), 1, + ACTIONS(1047), 1, + anon_sym_LPAREN, + ACTIONS(1049), 1, + anon_sym_RPAREN, + ACTIONS(1051), 1, + anon_sym_COMMA, + ACTIONS(1053), 1, anon_sym_STAR, - ACTIONS(983), 1, - anon_sym_STAR_STAR, - ACTIONS(987), 1, + ACTIONS(1059), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(1061), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(1063), 1, anon_sym_await, - STATE(976), 1, + STATE(952), 1, sym_primary_expression, - STATE(1107), 1, + STATE(992), 1, sym_string, - STATE(1437), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1768), 1, + STATE(1846), 1, sym_expression, - STATE(1922), 1, - sym_type, - STATE(2777), 1, + STATE(2236), 1, + sym_parenthesized_list_splat, + STATE(2633), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(1057), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(1055), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + STATE(2235), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2107), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1751), 7, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33449,7 +33165,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33466,68 +33182,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6140] = 25, - ACTIONS(275), 1, - sym_identifier, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(317), 1, - anon_sym_lambda, - ACTIONS(325), 1, - anon_sym_await, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(341), 1, - anon_sym_STAR_STAR, - ACTIONS(668), 1, + [6132] = 25, + ACTIONS(695), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(703), 1, anon_sym_LBRACK, - ACTIONS(1047), 1, - anon_sym_STAR, - ACTIONS(1049), 1, + ACTIONS(707), 1, + anon_sym_LBRACE, + ACTIONS(713), 1, + sym_string_start, + ACTIONS(1059), 1, anon_sym_not, - STATE(970), 1, + ACTIONS(1061), 1, + anon_sym_lambda, + ACTIONS(1065), 1, + sym_identifier, + ACTIONS(1067), 1, + anon_sym_STAR, + ACTIONS(1073), 1, + anon_sym_STAR_STAR, + ACTIONS(1075), 1, + anon_sym_await, + STATE(952), 1, sym_primary_expression, - STATE(1010), 1, + STATE(992), 1, sym_string, - STATE(1342), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1761), 1, + STATE(1714), 1, sym_expression, - STATE(2085), 1, + STATE(1930), 1, sym_type, - STATE(2775), 1, + STATE(2633), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(1071), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(1069), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2016), 5, + STATE(1959), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1717), 7, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33535,7 +33251,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33552,68 +33268,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6251] = 25, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(406), 1, - anon_sym_await, - ACTIONS(649), 1, + [6243] = 25, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(1063), 1, + ACTIONS(775), 1, + anon_sym_LBRACE, + ACTIONS(781), 1, + sym_string_start, + ACTIONS(959), 1, sym_identifier, - ACTIONS(1065), 1, + ACTIONS(961), 1, anon_sym_STAR, - ACTIONS(1067), 1, + ACTIONS(967), 1, anon_sym_STAR_STAR, - STATE(865), 1, + ACTIONS(971), 1, + anon_sym_not, + ACTIONS(973), 1, + anon_sym_lambda, + ACTIONS(975), 1, + anon_sym_await, + STATE(960), 1, sym_primary_expression, - STATE(969), 1, + STATE(1038), 1, sym_string, - STATE(1119), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1738), 1, + STATE(1746), 1, sym_expression, - STATE(1994), 1, + STATE(2006), 1, sym_type, - STATE(2751), 1, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(395), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1894), 5, + STATE(1982), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1666), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33621,7 +33337,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33638,68 +33354,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6362] = 25, - ACTIONS(275), 1, - sym_identifier, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(317), 1, - anon_sym_lambda, - ACTIONS(325), 1, - anon_sym_await, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(341), 1, - anon_sym_STAR_STAR, - ACTIONS(668), 1, + [6354] = 25, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(1047), 1, + ACTIONS(775), 1, + anon_sym_LBRACE, + ACTIONS(781), 1, + sym_string_start, + ACTIONS(959), 1, + sym_identifier, + ACTIONS(961), 1, anon_sym_STAR, - ACTIONS(1049), 1, + ACTIONS(967), 1, + anon_sym_STAR_STAR, + ACTIONS(971), 1, anon_sym_not, - STATE(970), 1, + ACTIONS(973), 1, + anon_sym_lambda, + ACTIONS(975), 1, + anon_sym_await, + STATE(960), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1038), 1, sym_string, - STATE(1342), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1761), 1, + STATE(1746), 1, sym_expression, - STATE(2262), 1, + STATE(2007), 1, sym_type, - STATE(2775), 1, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(965), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(963), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2016), 5, + STATE(1982), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1717), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33707,7 +33423,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33724,68 +33440,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6473] = 25, - ACTIONS(275), 1, - sym_identifier, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(317), 1, - anon_sym_lambda, - ACTIONS(325), 1, - anon_sym_await, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(341), 1, - anon_sym_STAR_STAR, - ACTIONS(668), 1, + [6465] = 25, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(681), 1, anon_sym_LBRACK, - ACTIONS(1047), 1, + ACTIONS(685), 1, + anon_sym_LBRACE, + ACTIONS(691), 1, + sym_string_start, + ACTIONS(981), 1, anon_sym_STAR, - ACTIONS(1049), 1, + ACTIONS(989), 1, anon_sym_not, - STATE(970), 1, + ACTIONS(991), 1, + anon_sym_lambda, + ACTIONS(1077), 1, + sym_identifier, + ACTIONS(1079), 1, + anon_sym_from, + ACTIONS(1087), 1, + anon_sym_await, + STATE(932), 1, sym_primary_expression, - STATE(1010), 1, + STATE(963), 1, sym_string, - STATE(1342), 1, + STATE(1223), 1, sym_list_splat_pattern, - STATE(1761), 1, + STATE(1716), 1, sym_expression, - STATE(1995), 1, - sym_type, - STATE(2775), 1, + STATE(2047), 1, + sym_expression_list, + STATE(2688), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(687), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(1085), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(683), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(1083), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(671), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2016), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1717), 7, + ACTIONS(1081), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + STATE(1744), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33793,7 +33509,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1198), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33810,68 +33526,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6584] = 25, - ACTIONS(67), 1, + [6576] = 27, + ACTIONS(749), 1, + anon_sym_LBRACK, + ACTIONS(753), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(759), 1, + sym_string_start, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(406), 1, - anon_sym_await, - ACTIONS(649), 1, - anon_sym_LPAREN, - ACTIONS(657), 1, - anon_sym_LBRACK, - ACTIONS(1063), 1, + ACTIONS(1027), 1, sym_identifier, - ACTIONS(1065), 1, + ACTIONS(1029), 1, + anon_sym_LPAREN, + ACTIONS(1035), 1, anon_sym_STAR, - ACTIONS(1067), 1, + ACTIONS(1041), 1, anon_sym_STAR_STAR, - STATE(865), 1, + ACTIONS(1043), 1, + anon_sym_await, + ACTIONS(1089), 1, + anon_sym_RPAREN, + ACTIONS(1091), 1, + anon_sym_COMMA, + STATE(947), 1, sym_primary_expression, - STATE(969), 1, + STATE(1018), 1, sym_string, - STATE(1119), 1, + STATE(1281), 1, sym_list_splat_pattern, - STATE(1738), 1, + STATE(1692), 1, sym_expression, - STATE(1972), 1, - sym_type, - STATE(2751), 1, + STATE(2293), 1, + sym_parenthesized_list_splat, + STATE(2580), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(755), 2, sym_ellipsis, sym_float, - ACTIONS(395), 2, + ACTIONS(1039), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(751), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(1037), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + STATE(2291), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(737), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1894), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1666), 7, + STATE(1797), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33879,7 +33597,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1347), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33896,68 +33614,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6695] = 25, - ACTIONS(67), 1, + [6691] = 27, + ACTIONS(749), 1, + anon_sym_LBRACK, + ACTIONS(753), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(759), 1, + sym_string_start, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(406), 1, - anon_sym_await, - ACTIONS(649), 1, - anon_sym_LPAREN, - ACTIONS(657), 1, - anon_sym_LBRACK, - ACTIONS(1063), 1, + ACTIONS(1027), 1, sym_identifier, - ACTIONS(1065), 1, + ACTIONS(1029), 1, + anon_sym_LPAREN, + ACTIONS(1035), 1, anon_sym_STAR, - ACTIONS(1067), 1, + ACTIONS(1041), 1, anon_sym_STAR_STAR, - STATE(865), 1, + ACTIONS(1043), 1, + anon_sym_await, + ACTIONS(1093), 1, + anon_sym_RPAREN, + ACTIONS(1095), 1, + anon_sym_COMMA, + STATE(947), 1, sym_primary_expression, - STATE(969), 1, + STATE(1018), 1, sym_string, - STATE(1119), 1, + STATE(1281), 1, sym_list_splat_pattern, - STATE(1738), 1, + STATE(1674), 1, sym_expression, - STATE(1974), 1, - sym_type, - STATE(2751), 1, + STATE(2361), 1, + sym_parenthesized_list_splat, + STATE(2580), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(755), 2, sym_ellipsis, sym_float, - ACTIONS(395), 2, + ACTIONS(1039), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(751), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(1037), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + STATE(2360), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(737), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1894), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1666), 7, + STATE(1797), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33965,7 +33685,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1347), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33982,68 +33702,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6806] = 25, - ACTIONS(711), 1, - anon_sym_LPAREN, - ACTIONS(719), 1, + [6806] = 27, + ACTIONS(749), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(753), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(759), 1, sym_string_start, - ACTIONS(1041), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(1069), 1, + ACTIONS(1027), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1029), 1, + anon_sym_LPAREN, + ACTIONS(1035), 1, anon_sym_STAR, - ACTIONS(1077), 1, + ACTIONS(1041), 1, anon_sym_STAR_STAR, - ACTIONS(1079), 1, + ACTIONS(1043), 1, anon_sym_await, - STATE(967), 1, + ACTIONS(1097), 1, + anon_sym_RPAREN, + ACTIONS(1099), 1, + anon_sym_COMMA, + STATE(947), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1018), 1, sym_string, - STATE(1388), 1, + STATE(1281), 1, sym_list_splat_pattern, - STATE(1724), 1, + STATE(1662), 1, sym_expression, - STATE(1981), 1, - sym_type, - STATE(2638), 1, + STATE(2287), 1, + sym_parenthesized_list_splat, + STATE(2580), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(755), 2, sym_ellipsis, sym_float, - ACTIONS(1075), 2, + ACTIONS(1039), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(751), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1073), 3, + ACTIONS(1037), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + STATE(2286), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(737), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1945), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1723), 7, + STATE(1797), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34051,7 +33773,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1347), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34068,68 +33790,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6917] = 25, - ACTIONS(711), 1, - anon_sym_LPAREN, - ACTIONS(719), 1, - anon_sym_LBRACK, - ACTIONS(723), 1, + [6921] = 25, + ACTIONS(267), 1, + sym_identifier, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(729), 1, - sym_string_start, - ACTIONS(1041), 1, - anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(1069), 1, - sym_identifier, - ACTIONS(1071), 1, - anon_sym_STAR, - ACTIONS(1077), 1, - anon_sym_STAR_STAR, - ACTIONS(1079), 1, + ACTIONS(317), 1, anon_sym_await, - STATE(967), 1, + ACTIONS(319), 1, + sym_string_start, + ACTIONS(333), 1, + anon_sym_STAR_STAR, + ACTIONS(652), 1, + anon_sym_LPAREN, + ACTIONS(662), 1, + anon_sym_LBRACK, + ACTIONS(1009), 1, + anon_sym_STAR, + ACTIONS(1011), 1, + anon_sym_not, + STATE(953), 1, sym_primary_expression, - STATE(1028), 1, + STATE(975), 1, sym_string, - STATE(1388), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1724), 1, + STATE(1743), 1, sym_expression, - STATE(2108), 1, + STATE(2252), 1, sym_type, - STATE(2638), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, - sym_ellipsis, - sym_float, - ACTIONS(1075), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1073), 3, + ACTIONS(313), 2, + sym_ellipsis, + sym_float, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(307), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1945), 5, + STATE(2015), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1723), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34137,7 +33859,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34154,70 +33876,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7028] = 27, - ACTIONS(765), 1, - anon_sym_LBRACK, - ACTIONS(769), 1, + [7032] = 25, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(775), 1, - sym_string_start, - ACTIONS(835), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1029), 1, - anon_sym_RPAREN, - ACTIONS(1031), 1, - anon_sym_COMMA, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1053), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(398), 1, + anon_sym_await, + ACTIONS(633), 1, anon_sym_LPAREN, - ACTIONS(1081), 1, + ACTIONS(641), 1, + anon_sym_LBRACK, + ACTIONS(1101), 1, sym_identifier, - ACTIONS(1083), 1, + ACTIONS(1103), 1, anon_sym_STAR, - ACTIONS(1089), 1, - anon_sym_await, - STATE(963), 1, + ACTIONS(1105), 1, + anon_sym_STAR_STAR, + STATE(851), 1, sym_primary_expression, - STATE(1015), 1, + STATE(954), 1, sym_string, - STATE(1258), 1, + STATE(1046), 1, sym_list_splat_pattern, - STATE(1677), 1, + STATE(1717), 1, sym_expression, - STATE(2325), 1, - sym_parenthesized_list_splat, - STATE(2771), 1, + STATE(1899), 1, + sym_type, + STATE(2658), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1087), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1085), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2323), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(753), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1876), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34225,7 +33945,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1063), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34243,67 +33963,67 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [7143] = 25, - ACTIONS(801), 1, - anon_sym_LPAREN, - ACTIONS(809), 1, - anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, sym_string_start, - ACTIONS(975), 1, + ACTIONS(398), 1, + anon_sym_await, + ACTIONS(633), 1, + anon_sym_LPAREN, + ACTIONS(641), 1, + anon_sym_LBRACK, + ACTIONS(1101), 1, sym_identifier, - ACTIONS(977), 1, + ACTIONS(1103), 1, anon_sym_STAR, - ACTIONS(983), 1, + ACTIONS(1105), 1, anon_sym_STAR_STAR, - ACTIONS(987), 1, - anon_sym_not, - ACTIONS(989), 1, - anon_sym_lambda, - ACTIONS(991), 1, - anon_sym_await, - STATE(976), 1, + STATE(851), 1, sym_primary_expression, - STATE(1107), 1, + STATE(954), 1, sym_string, - STATE(1437), 1, + STATE(1046), 1, sym_list_splat_pattern, - STATE(1768), 1, + STATE(1717), 1, sym_expression, - STATE(2060), 1, + STATE(1974), 1, sym_type, - STATE(2777), 1, + STATE(2658), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2107), 5, + STATE(1876), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1751), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34311,7 +34031,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1063), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34329,67 +34049,67 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [7254] = 25, - ACTIONS(275), 1, - sym_identifier, - ACTIONS(310), 1, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(325), 1, - anon_sym_await, - ACTIONS(327), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(341), 1, - anon_sym_STAR_STAR, - ACTIONS(668), 1, + ACTIONS(398), 1, + anon_sym_await, + ACTIONS(633), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(641), 1, anon_sym_LBRACK, - ACTIONS(1047), 1, + ACTIONS(1101), 1, + sym_identifier, + ACTIONS(1103), 1, anon_sym_STAR, - ACTIONS(1049), 1, - anon_sym_not, - STATE(970), 1, + ACTIONS(1105), 1, + anon_sym_STAR_STAR, + STATE(851), 1, sym_primary_expression, - STATE(1010), 1, + STATE(954), 1, sym_string, - STATE(1342), 1, + STATE(1046), 1, sym_list_splat_pattern, - STATE(1761), 1, + STATE(1717), 1, sym_expression, - STATE(2442), 1, + STATE(2003), 1, sym_type, - STATE(2775), 1, + STATE(2658), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(387), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(383), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2016), 5, + STATE(1876), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1717), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34397,7 +34117,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1063), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34415,155 +34135,69 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [7365] = 27, - ACTIONS(765), 1, + ACTIONS(749), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(753), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(759), 1, sym_string_start, - ACTIONS(835), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1053), 1, - anon_sym_LPAREN, - ACTIONS(1081), 1, + ACTIONS(1027), 1, sym_identifier, - ACTIONS(1083), 1, + ACTIONS(1029), 1, + anon_sym_LPAREN, + ACTIONS(1035), 1, anon_sym_STAR, - ACTIONS(1089), 1, + ACTIONS(1041), 1, + anon_sym_STAR_STAR, + ACTIONS(1043), 1, anon_sym_await, - ACTIONS(1091), 1, + ACTIONS(1107), 1, anon_sym_RPAREN, - ACTIONS(1093), 1, + ACTIONS(1109), 1, anon_sym_COMMA, - STATE(963), 1, + STATE(947), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1018), 1, sym_string, - STATE(1258), 1, + STATE(1281), 1, sym_list_splat_pattern, - STATE(1682), 1, + STATE(1700), 1, sym_expression, - STATE(2466), 1, + STATE(2381), 1, sym_parenthesized_list_splat, - STATE(2771), 1, + STATE(2580), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(755), 2, sym_ellipsis, sym_float, - ACTIONS(1087), 2, + ACTIONS(1039), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(751), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1085), 3, + ACTIONS(1037), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2465), 3, + STATE(2380), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(753), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1806), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1367), 16, - 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_await, - [7480] = 25, - ACTIONS(686), 1, - anon_sym_LPAREN, - ACTIONS(694), 1, - anon_sym_LBRACK, - ACTIONS(698), 1, - anon_sym_LBRACE, - ACTIONS(704), 1, - sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, - anon_sym_not, - ACTIONS(1017), 1, - anon_sym_lambda, - ACTIONS(1095), 1, - sym_identifier, - ACTIONS(1097), 1, - anon_sym_from, - ACTIONS(1105), 1, - anon_sym_await, - STATE(909), 1, - sym_primary_expression, - STATE(975), 1, - sym_string, - STATE(1214), 1, - sym_list_splat_pattern, - STATE(1732), 1, - sym_expression, - STATE(2001), 1, - sym_expression_list, - STATE(2773), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(700), 2, - sym_ellipsis, - sym_float, - ACTIONS(1103), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(696), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1101), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(684), 4, + ACTIONS(737), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1099), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - STATE(1767), 7, + STATE(1797), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34571,7 +34205,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1172), 16, + STATE(1347), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34588,59 +34222,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7591] = 22, - ACTIONS(310), 1, + [7480] = 22, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(315), 1, + ACTIONS(307), 1, anon_sym_TILDE, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(1107), 1, + ACTIONS(1013), 1, sym_identifier, - ACTIONS(1109), 1, + ACTIONS(1015), 1, anon_sym_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1017), 1, anon_sym_STAR, - ACTIONS(1117), 1, + ACTIONS(1023), 1, anon_sym_LBRACK, - ACTIONS(1119), 1, + ACTIONS(1025), 1, anon_sym_await, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1481), 1, + STATE(1453), 1, sym_list_splat_pattern, - STATE(1616), 1, + STATE(1605), 1, sym_primary_expression, - STATE(1639), 1, + STATE(1611), 1, sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(680), 2, + ACTIONS(664), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1115), 2, + ACTIONS(1021), 2, anon_sym_match, anon_sym_type, - STATE(1482), 2, + STATE(1450), 2, sym_attribute, sym_subscript, - STATE(1640), 2, + STATE(1623), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(1113), 3, + ACTIONS(1019), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1276), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -34655,7 +34289,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - ACTIONS(959), 15, + ACTIONS(957), 15, anon_sym_COLON, anon_sym_EQ, anon_sym_PLUS_EQ, @@ -34671,61 +34305,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [7696] = 22, - ACTIONS(310), 1, + [7585] = 25, + ACTIONS(267), 1, + sym_identifier, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(315), 1, - anon_sym_TILDE, - ACTIONS(327), 1, + ACTIONS(309), 1, + anon_sym_lambda, + ACTIONS(317), 1, + anon_sym_await, + ACTIONS(319), 1, sym_string_start, - ACTIONS(1107), 1, - sym_identifier, - ACTIONS(1109), 1, + ACTIONS(333), 1, + anon_sym_STAR_STAR, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(1111), 1, - anon_sym_STAR, - ACTIONS(1117), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(1119), 1, - anon_sym_await, - STATE(1010), 1, + ACTIONS(1009), 1, + anon_sym_STAR, + ACTIONS(1011), 1, + anon_sym_not, + STATE(953), 1, + sym_primary_expression, + STATE(975), 1, sym_string, - STATE(1481), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1616), 1, - sym_primary_expression, - STATE(1639), 1, - sym_pattern, + STATE(1743), 1, + sym_expression, + STATE(2341), 1, + sym_type, + STATE(2759), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(680), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1115), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - STATE(1482), 2, - sym_attribute, - sym_subscript, - STATE(1640), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1113), 3, + ACTIONS(313), 2, + sym_ellipsis, + sym_float, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(307), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(2015), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1720), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -34738,84 +34391,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - ACTIONS(973), 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, - [7801] = 25, - ACTIONS(275), 1, - sym_identifier, - ACTIONS(310), 1, + [7696] = 25, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(325), 1, - anon_sym_await, - ACTIONS(327), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(341), 1, - anon_sym_STAR_STAR, - ACTIONS(668), 1, + ACTIONS(398), 1, + anon_sym_await, + ACTIONS(633), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(641), 1, anon_sym_LBRACK, - ACTIONS(1047), 1, + ACTIONS(1101), 1, + sym_identifier, + ACTIONS(1103), 1, anon_sym_STAR, - ACTIONS(1049), 1, - anon_sym_not, - STATE(970), 1, + ACTIONS(1105), 1, + anon_sym_STAR_STAR, + STATE(851), 1, sym_primary_expression, - STATE(1010), 1, + STATE(954), 1, sym_string, - STATE(1342), 1, + STATE(1046), 1, sym_list_splat_pattern, - STATE(1761), 1, + STATE(1717), 1, sym_expression, - STATE(2293), 1, + STATE(1953), 1, sym_type, - STATE(2775), 1, + STATE(2658), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(387), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(383), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2016), 5, + STATE(1876), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1717), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34823,7 +34460,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1063), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34840,70 +34477,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7912] = 27, - ACTIONS(765), 1, + [7807] = 27, + ACTIONS(749), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(753), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(759), 1, sym_string_start, - ACTIONS(835), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1053), 1, - anon_sym_LPAREN, - ACTIONS(1081), 1, + ACTIONS(1027), 1, sym_identifier, - ACTIONS(1083), 1, + ACTIONS(1029), 1, + anon_sym_LPAREN, + ACTIONS(1035), 1, anon_sym_STAR, - ACTIONS(1089), 1, + ACTIONS(1041), 1, + anon_sym_STAR_STAR, + ACTIONS(1043), 1, anon_sym_await, - ACTIONS(1121), 1, + ACTIONS(1111), 1, anon_sym_RPAREN, - ACTIONS(1123), 1, + ACTIONS(1113), 1, anon_sym_COMMA, - STATE(963), 1, + STATE(947), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1018), 1, sym_string, - STATE(1258), 1, + STATE(1281), 1, sym_list_splat_pattern, - STATE(1687), 1, + STATE(1684), 1, sym_expression, - STATE(2274), 1, + STATE(2405), 1, sym_parenthesized_list_splat, - STATE(2771), 1, + STATE(2580), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(755), 2, sym_ellipsis, sym_float, - ACTIONS(1087), 2, + ACTIONS(1039), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(751), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1085), 3, + ACTIONS(1037), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2273), 3, + STATE(2404), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(753), 4, + ACTIONS(737), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1797), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34911,7 +34548,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1347), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34928,68 +34565,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8027] = 25, - ACTIONS(711), 1, - anon_sym_LPAREN, - ACTIONS(719), 1, + [7922] = 27, + ACTIONS(749), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(753), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(759), 1, sym_string_start, - ACTIONS(1041), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(1069), 1, + ACTIONS(1027), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1029), 1, + anon_sym_LPAREN, + ACTIONS(1035), 1, anon_sym_STAR, - ACTIONS(1077), 1, + ACTIONS(1041), 1, anon_sym_STAR_STAR, - ACTIONS(1079), 1, + ACTIONS(1043), 1, anon_sym_await, - STATE(967), 1, + ACTIONS(1049), 1, + anon_sym_RPAREN, + ACTIONS(1051), 1, + anon_sym_COMMA, + STATE(947), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1018), 1, sym_string, - STATE(1388), 1, + STATE(1281), 1, sym_list_splat_pattern, - STATE(1724), 1, + STATE(1658), 1, sym_expression, - STATE(1957), 1, - sym_type, - STATE(2638), 1, + STATE(2236), 1, + sym_parenthesized_list_splat, + STATE(2580), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(755), 2, sym_ellipsis, sym_float, - ACTIONS(1075), 2, + ACTIONS(1039), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(751), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1073), 3, + ACTIONS(1037), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + STATE(2235), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(737), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1945), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1723), 7, + STATE(1797), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34997,7 +34636,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1347), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35014,68 +34653,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8138] = 25, - ACTIONS(711), 1, - anon_sym_LPAREN, - ACTIONS(719), 1, + [8037] = 27, + ACTIONS(749), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(753), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(759), 1, sym_string_start, - ACTIONS(1041), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(1069), 1, + ACTIONS(1027), 1, sym_identifier, - ACTIONS(1071), 1, + ACTIONS(1029), 1, + anon_sym_LPAREN, + ACTIONS(1035), 1, anon_sym_STAR, - ACTIONS(1077), 1, + ACTIONS(1041), 1, anon_sym_STAR_STAR, - ACTIONS(1079), 1, + ACTIONS(1043), 1, anon_sym_await, - STATE(967), 1, + ACTIONS(1115), 1, + anon_sym_RPAREN, + ACTIONS(1117), 1, + anon_sym_COMMA, + STATE(947), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1018), 1, sym_string, - STATE(1388), 1, + STATE(1281), 1, sym_list_splat_pattern, - STATE(1724), 1, + STATE(1691), 1, sym_expression, - STATE(1960), 1, - sym_type, - STATE(2638), 1, + STATE(2275), 1, + sym_parenthesized_list_splat, + STATE(2580), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(755), 2, sym_ellipsis, sym_float, - ACTIONS(1075), 2, + ACTIONS(1039), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(751), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1073), 3, + ACTIONS(1037), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + STATE(2272), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(737), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1945), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1723), 7, + STATE(1797), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35083,7 +34724,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1347), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35100,68 +34741,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8249] = 25, - ACTIONS(67), 1, + [8152] = 25, + ACTIONS(695), 1, + anon_sym_LPAREN, + ACTIONS(703), 1, + anon_sym_LBRACK, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(713), 1, + sym_string_start, + ACTIONS(1059), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1061), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(406), 1, - anon_sym_await, - ACTIONS(649), 1, - anon_sym_LPAREN, - ACTIONS(657), 1, - anon_sym_LBRACK, - ACTIONS(1063), 1, - sym_identifier, ACTIONS(1065), 1, - anon_sym_STAR, + sym_identifier, ACTIONS(1067), 1, + anon_sym_STAR, + ACTIONS(1073), 1, anon_sym_STAR_STAR, - STATE(865), 1, + ACTIONS(1075), 1, + anon_sym_await, + STATE(952), 1, sym_primary_expression, - STATE(969), 1, + STATE(992), 1, sym_string, - STATE(1119), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1738), 1, + STATE(1714), 1, sym_expression, - STATE(1979), 1, + STATE(1929), 1, sym_type, - STATE(2751), 1, + STATE(2633), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(395), 2, + ACTIONS(1071), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(1069), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1894), 5, + STATE(1959), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1666), 7, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35169,7 +34810,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35186,70 +34827,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8360] = 27, - ACTIONS(765), 1, + [8263] = 25, + ACTIONS(695), 1, + anon_sym_LPAREN, + ACTIONS(703), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(713), 1, sym_string_start, - ACTIONS(835), 1, + ACTIONS(1059), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(1061), 1, anon_sym_lambda, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1053), 1, - anon_sym_LPAREN, - ACTIONS(1081), 1, + ACTIONS(1065), 1, sym_identifier, - ACTIONS(1083), 1, + ACTIONS(1067), 1, anon_sym_STAR, - ACTIONS(1089), 1, + ACTIONS(1073), 1, + anon_sym_STAR_STAR, + ACTIONS(1075), 1, anon_sym_await, - ACTIONS(1125), 1, - anon_sym_RPAREN, - ACTIONS(1127), 1, - anon_sym_COMMA, - STATE(963), 1, + STATE(952), 1, sym_primary_expression, - STATE(1015), 1, + STATE(992), 1, sym_string, - STATE(1258), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1693), 1, + STATE(1714), 1, sym_expression, - STATE(2317), 1, - sym_parenthesized_list_splat, - STATE(2771), 1, + STATE(1872), 1, + sym_type, + STATE(2633), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(1087), 2, + ACTIONS(1071), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1085), 3, + ACTIONS(1069), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2316), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(753), 4, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1959), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35257,7 +34896,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35274,70 +34913,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8475] = 27, - ACTIONS(765), 1, + [8374] = 25, + ACTIONS(695), 1, + anon_sym_LPAREN, + ACTIONS(703), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(713), 1, sym_string_start, - ACTIONS(835), 1, + ACTIONS(1059), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(1061), 1, anon_sym_lambda, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1053), 1, - anon_sym_LPAREN, - ACTIONS(1081), 1, + ACTIONS(1065), 1, sym_identifier, - ACTIONS(1083), 1, + ACTIONS(1067), 1, anon_sym_STAR, - ACTIONS(1089), 1, + ACTIONS(1073), 1, + anon_sym_STAR_STAR, + ACTIONS(1075), 1, anon_sym_await, - ACTIONS(1129), 1, - anon_sym_RPAREN, - ACTIONS(1131), 1, - anon_sym_COMMA, - STATE(963), 1, + STATE(952), 1, sym_primary_expression, - STATE(1015), 1, + STATE(992), 1, sym_string, - STATE(1258), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1698), 1, + STATE(1714), 1, sym_expression, - STATE(2355), 1, - sym_parenthesized_list_splat, - STATE(2771), 1, + STATE(1995), 1, + sym_type, + STATE(2633), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(1087), 2, + ACTIONS(1071), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1085), 3, + ACTIONS(1069), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2354), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(753), 4, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1959), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35345,7 +34982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35362,70 +34999,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8590] = 27, - ACTIONS(765), 1, - anon_sym_LBRACK, - ACTIONS(769), 1, + [8485] = 25, + ACTIONS(267), 1, + sym_identifier, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(775), 1, - sym_string_start, - ACTIONS(835), 1, - anon_sym_not, - ACTIONS(837), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(1039), 1, + ACTIONS(317), 1, + anon_sym_await, + ACTIONS(319), 1, + sym_string_start, + ACTIONS(333), 1, anon_sym_STAR_STAR, - ACTIONS(1053), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(1081), 1, - sym_identifier, - ACTIONS(1083), 1, + ACTIONS(662), 1, + anon_sym_LBRACK, + ACTIONS(1009), 1, anon_sym_STAR, - ACTIONS(1089), 1, - anon_sym_await, - ACTIONS(1133), 1, - anon_sym_RPAREN, - ACTIONS(1135), 1, - anon_sym_COMMA, - STATE(963), 1, + ACTIONS(1011), 1, + anon_sym_not, + STATE(953), 1, sym_primary_expression, - STATE(1015), 1, + STATE(975), 1, sym_string, - STATE(1258), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1702), 1, + STATE(1743), 1, sym_expression, - STATE(2389), 1, - sym_parenthesized_list_splat, - STATE(2771), 1, + STATE(1994), 1, + sym_type, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, - sym_ellipsis, - sym_float, - ACTIONS(1087), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1085), 3, + ACTIONS(313), 2, + sym_ellipsis, + sym_float, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2388), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(753), 4, + ACTIONS(307), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(2015), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35433,7 +35068,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35450,70 +35085,71 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8705] = 27, - ACTIONS(765), 1, + [8596] = 28, + ACTIONS(749), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(753), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(759), 1, sym_string_start, - ACTIONS(835), 1, + ACTIONS(833), 1, + anon_sym_STAR, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1053), 1, + ACTIONS(845), 1, + anon_sym_yield, + ACTIONS(1029), 1, anon_sym_LPAREN, - ACTIONS(1081), 1, + ACTIONS(1119), 1, sym_identifier, - ACTIONS(1083), 1, - anon_sym_STAR, - ACTIONS(1089), 1, - anon_sym_await, - ACTIONS(1137), 1, + ACTIONS(1121), 1, anon_sym_RPAREN, - ACTIONS(1139), 1, - anon_sym_COMMA, - STATE(963), 1, + ACTIONS(1127), 1, + anon_sym_await, + STATE(947), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1018), 1, sym_string, - STATE(1258), 1, + STATE(1281), 1, sym_list_splat_pattern, - STATE(1708), 1, + STATE(1666), 1, sym_expression, - STATE(2370), 1, - sym_parenthesized_list_splat, - STATE(2771), 1, + STATE(2224), 1, + sym_yield, + STATE(2467), 1, + sym_with_item, + STATE(2580), 1, sym__named_expression_lhs, + STATE(2654), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(755), 2, sym_ellipsis, sym_float, - ACTIONS(1087), 2, + ACTIONS(1125), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + STATE(2354), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(751), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1085), 3, + ACTIONS(1123), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2336), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(753), 4, + ACTIONS(737), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1797), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35521,7 +35157,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1347), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35538,62 +35174,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8820] = 25, - ACTIONS(801), 1, + [8713] = 25, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(975), 1, + ACTIONS(959), 1, sym_identifier, - ACTIONS(977), 1, + ACTIONS(961), 1, anon_sym_STAR, - ACTIONS(983), 1, + ACTIONS(967), 1, anon_sym_STAR_STAR, - ACTIONS(987), 1, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(975), 1, anon_sym_await, - STATE(976), 1, + STATE(960), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1038), 1, sym_string, STATE(1437), 1, sym_list_splat_pattern, - STATE(1768), 1, + STATE(1746), 1, sym_expression, - STATE(1958), 1, + STATE(1945), 1, sym_type, - STATE(2777), 1, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2107), 5, + STATE(1982), 5, sym_splat_type, sym_generic_type, sym_union_type, @@ -35607,7 +35243,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35624,62 +35260,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8931] = 25, - ACTIONS(801), 1, + [8824] = 25, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(975), 1, + ACTIONS(959), 1, sym_identifier, - ACTIONS(977), 1, + ACTIONS(961), 1, anon_sym_STAR, - ACTIONS(983), 1, + ACTIONS(967), 1, anon_sym_STAR_STAR, - ACTIONS(987), 1, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(975), 1, anon_sym_await, - STATE(976), 1, + STATE(960), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1038), 1, sym_string, STATE(1437), 1, sym_list_splat_pattern, - STATE(1768), 1, + STATE(1746), 1, sym_expression, - STATE(1985), 1, + STATE(1882), 1, sym_type, - STATE(2777), 1, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2107), 5, + STATE(1982), 5, sym_splat_type, sym_generic_type, sym_union_type, @@ -35693,7 +35329,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35710,62 +35346,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9042] = 25, - ACTIONS(801), 1, + [8935] = 25, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(975), 1, + ACTIONS(959), 1, sym_identifier, - ACTIONS(977), 1, + ACTIONS(961), 1, anon_sym_STAR, - ACTIONS(983), 1, + ACTIONS(967), 1, anon_sym_STAR_STAR, - ACTIONS(987), 1, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(975), 1, anon_sym_await, - STATE(976), 1, + STATE(960), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1038), 1, sym_string, STATE(1437), 1, sym_list_splat_pattern, - STATE(1768), 1, + STATE(1746), 1, sym_expression, - STATE(1904), 1, + STATE(1931), 1, sym_type, - STATE(2777), 1, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2107), 5, + STATE(1982), 5, sym_splat_type, sym_generic_type, sym_union_type, @@ -35779,7 +35415,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35796,156 +35432,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9153] = 27, - ACTIONS(765), 1, + [9046] = 25, + ACTIONS(763), 1, + anon_sym_LPAREN, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(769), 1, - anon_sym_LBRACE, ACTIONS(775), 1, + anon_sym_LBRACE, + ACTIONS(781), 1, sym_string_start, - ACTIONS(835), 1, - anon_sym_not, - ACTIONS(837), 1, - anon_sym_lambda, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1053), 1, - anon_sym_LPAREN, - ACTIONS(1081), 1, + ACTIONS(959), 1, sym_identifier, - ACTIONS(1083), 1, + ACTIONS(961), 1, anon_sym_STAR, - ACTIONS(1089), 1, + ACTIONS(967), 1, + anon_sym_STAR_STAR, + ACTIONS(971), 1, + anon_sym_not, + ACTIONS(973), 1, + anon_sym_lambda, + ACTIONS(975), 1, anon_sym_await, - ACTIONS(1141), 1, - anon_sym_RPAREN, - ACTIONS(1143), 1, - anon_sym_COMMA, - STATE(963), 1, + STATE(960), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1038), 1, sym_string, - STATE(1258), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1692), 1, + STATE(1746), 1, sym_expression, - STATE(2448), 1, - sym_parenthesized_list_splat, - STATE(2771), 1, + STATE(1978), 1, + sym_type, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(1087), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1085), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - STATE(2447), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(753), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1806), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1367), 16, - 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_await, - [9268] = 25, - ACTIONS(275), 1, - sym_identifier, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(317), 1, - anon_sym_lambda, - ACTIONS(325), 1, - anon_sym_await, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(341), 1, - anon_sym_STAR_STAR, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1047), 1, - anon_sym_STAR, - ACTIONS(1049), 1, - anon_sym_not, - STATE(970), 1, - sym_primary_expression, - STATE(1010), 1, - sym_string, - STATE(1342), 1, - sym_list_splat_pattern, - STATE(1761), 1, - sym_expression, - STATE(2437), 1, - sym_type, - STATE(2775), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(290), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2016), 5, + STATE(1982), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1717), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35953,7 +35501,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35970,68 +35518,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9379] = 25, - ACTIONS(275), 1, + [9157] = 25, + ACTIONS(267), 1, sym_identifier, - ACTIONS(310), 1, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(317), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(341), 1, + ACTIONS(333), 1, anon_sym_STAR_STAR, - ACTIONS(668), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(1047), 1, + ACTIONS(1009), 1, anon_sym_STAR, - ACTIONS(1049), 1, + ACTIONS(1011), 1, anon_sym_not, - STATE(970), 1, + STATE(953), 1, sym_primary_expression, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1342), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1761), 1, + STATE(1743), 1, sym_expression, - STATE(2440), 1, + STATE(2435), 1, sym_type, - STATE(2775), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2016), 5, + STATE(2015), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36039,7 +35587,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36056,68 +35604,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9490] = 25, - ACTIONS(275), 1, + [9268] = 25, + ACTIONS(267), 1, sym_identifier, - ACTIONS(310), 1, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(317), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(341), 1, + ACTIONS(333), 1, anon_sym_STAR_STAR, - ACTIONS(668), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(1047), 1, + ACTIONS(1009), 1, anon_sym_STAR, - ACTIONS(1049), 1, + ACTIONS(1011), 1, anon_sym_not, - STATE(970), 1, + STATE(953), 1, sym_primary_expression, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1342), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1761), 1, + STATE(1743), 1, sym_expression, - STATE(2441), 1, + STATE(2438), 1, sym_type, - STATE(2775), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2016), 5, + STATE(2015), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36125,7 +35673,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36142,68 +35690,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9601] = 25, - ACTIONS(801), 1, - anon_sym_LPAREN, - ACTIONS(809), 1, - anon_sym_LBRACK, - ACTIONS(813), 1, + [9379] = 25, + ACTIONS(267), 1, + sym_identifier, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(309), 1, + anon_sym_lambda, + ACTIONS(317), 1, + anon_sym_await, + ACTIONS(319), 1, sym_string_start, - ACTIONS(975), 1, - sym_identifier, - ACTIONS(977), 1, - anon_sym_STAR, - ACTIONS(983), 1, + ACTIONS(333), 1, anon_sym_STAR_STAR, - ACTIONS(987), 1, + ACTIONS(652), 1, + anon_sym_LPAREN, + ACTIONS(662), 1, + anon_sym_LBRACK, + ACTIONS(1009), 1, + anon_sym_STAR, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(989), 1, - anon_sym_lambda, - ACTIONS(991), 1, - anon_sym_await, - STATE(976), 1, + STATE(953), 1, sym_primary_expression, - STATE(1107), 1, + STATE(975), 1, sym_string, - STATE(1437), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1768), 1, + STATE(1743), 1, sym_expression, - STATE(2061), 1, + STATE(2439), 1, sym_type, - STATE(2777), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, - sym_ellipsis, - sym_float, - ACTIONS(981), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(313), 2, + sym_ellipsis, + sym_float, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(307), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2107), 5, + STATE(2015), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1751), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36211,7 +35759,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36228,68 +35776,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9712] = 26, - ACTIONS(719), 1, - anon_sym_LBRACK, - ACTIONS(723), 1, + [9490] = 25, + ACTIONS(267), 1, + sym_identifier, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(309), 1, + anon_sym_lambda, + ACTIONS(317), 1, + anon_sym_await, + ACTIONS(319), 1, sym_string_start, - ACTIONS(1025), 1, - sym_identifier, - ACTIONS(1027), 1, + ACTIONS(333), 1, + anon_sym_STAR_STAR, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(662), 1, + anon_sym_LBRACK, + ACTIONS(1009), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(1043), 1, - anon_sym_lambda, - ACTIONS(1045), 1, - anon_sym_await, - ACTIONS(1145), 1, - anon_sym_RPAREN, - STATE(967), 1, + STATE(953), 1, sym_primary_expression, - STATE(1028), 1, + STATE(975), 1, sym_string, - STATE(1388), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1743), 1, sym_expression, - STATE(2582), 1, - sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2440), 1, + sym_type, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, - sym_ellipsis, - sym_float, - ACTIONS(1037), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(313), 2, + sym_ellipsis, + sym_float, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(709), 4, + ACTIONS(307), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(2015), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36297,7 +35845,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36314,68 +35862,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9824] = 26, - ACTIONS(719), 1, - anon_sym_LBRACK, - ACTIONS(723), 1, + [9601] = 25, + ACTIONS(267), 1, + sym_identifier, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(309), 1, + anon_sym_lambda, + ACTIONS(317), 1, + anon_sym_await, + ACTIONS(319), 1, sym_string_start, - ACTIONS(1025), 1, - sym_identifier, - ACTIONS(1027), 1, + ACTIONS(333), 1, + anon_sym_STAR_STAR, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(662), 1, + anon_sym_LBRACK, + ACTIONS(1009), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(1043), 1, - anon_sym_lambda, - ACTIONS(1045), 1, - anon_sym_await, - ACTIONS(1147), 1, - anon_sym_RPAREN, - STATE(967), 1, + STATE(953), 1, sym_primary_expression, - STATE(1028), 1, + STATE(975), 1, sym_string, - STATE(1388), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1743), 1, sym_expression, - STATE(2582), 1, - sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2433), 1, + sym_type, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, - sym_ellipsis, - sym_float, - ACTIONS(1037), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(313), 2, + sym_ellipsis, + sym_float, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(709), 4, + ACTIONS(307), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(2015), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36383,7 +35931,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36400,70 +35948,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9936] = 28, - ACTIONS(765), 1, + [9712] = 26, + ACTIONS(793), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(797), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(803), 1, sym_string_start, - ACTIONS(827), 1, + ACTIONS(809), 1, anon_sym_STAR, - ACTIONS(835), 1, + ACTIONS(819), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(821), 1, anon_sym_lambda, - ACTIONS(839), 1, + ACTIONS(823), 1, anon_sym_yield, - ACTIONS(1051), 1, + ACTIONS(1129), 1, sym_identifier, - ACTIONS(1053), 1, + ACTIONS(1131), 1, anon_sym_LPAREN, - ACTIONS(1061), 1, + ACTIONS(1137), 1, + anon_sym_RBRACK, + ACTIONS(1139), 1, anon_sym_await, - ACTIONS(1149), 1, - anon_sym_RPAREN, - STATE(963), 1, + STATE(951), 1, sym_primary_expression, - STATE(1015), 1, + STATE(980), 1, sym_string, - STATE(1258), 1, + STATE(1345), 1, sym_list_splat_pattern, - STATE(1686), 1, + STATE(1665), 1, sym_expression, - STATE(2264), 1, - sym_yield, - STATE(2314), 1, - sym_list_splat, - STATE(2315), 1, - sym_parenthesized_list_splat, - STATE(2700), 1, + STATE(2635), 1, sym__collection_elements, - STATE(2771), 1, + STATE(2647), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(799), 2, sym_ellipsis, sym_float, - ACTIONS(1059), 2, + ACTIONS(1135), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(795), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1057), 3, + ACTIONS(1133), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + STATE(2457), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(783), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1801), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36471,7 +36017,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1290), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36488,69 +36034,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10052] = 27, - ACTIONS(765), 1, + [9824] = 28, + ACTIONS(749), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(753), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(759), 1, sym_string_start, - ACTIONS(827), 1, + ACTIONS(833), 1, anon_sym_STAR, - ACTIONS(835), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(839), 1, + ACTIONS(845), 1, anon_sym_yield, - ACTIONS(1051), 1, - sym_identifier, - ACTIONS(1053), 1, + ACTIONS(1029), 1, anon_sym_LPAREN, - ACTIONS(1055), 1, - anon_sym_RPAREN, - ACTIONS(1061), 1, + ACTIONS(1119), 1, + sym_identifier, + ACTIONS(1127), 1, anon_sym_await, - STATE(963), 1, + ACTIONS(1141), 1, + anon_sym_RPAREN, + STATE(947), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1018), 1, sym_string, - STATE(1258), 1, + STATE(1281), 1, sym_list_splat_pattern, - STATE(1676), 1, + STATE(1690), 1, sym_expression, - STATE(2298), 1, + STATE(2228), 1, + sym_list_splat, + STATE(2295), 1, + sym_parenthesized_list_splat, + STATE(2461), 1, sym_yield, - STATE(2613), 1, - sym__collection_elements, - STATE(2771), 1, + STATE(2580), 1, sym__named_expression_lhs, + STATE(2730), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(755), 2, sym_ellipsis, sym_float, - ACTIONS(1059), 2, + ACTIONS(1125), 2, anon_sym_match, anon_sym_type, - STATE(2345), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(767), 3, + ACTIONS(751), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1057), 3, + ACTIONS(1123), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + ACTIONS(737), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1797), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36558,7 +36105,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1347), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36575,68 +36122,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10166] = 26, - ACTIONS(719), 1, + [9940] = 26, + ACTIONS(793), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(797), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(803), 1, sym_string_start, - ACTIONS(1025), 1, - sym_identifier, - ACTIONS(1027), 1, - anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(809), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, + ACTIONS(819), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(821), 1, anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(823), 1, + anon_sym_yield, + ACTIONS(1129), 1, + sym_identifier, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1139), 1, anon_sym_await, - ACTIONS(1151), 1, - anon_sym_RPAREN, - STATE(967), 1, + ACTIONS(1143), 1, + anon_sym_RBRACK, + STATE(951), 1, sym_primary_expression, - STATE(1028), 1, + STATE(980), 1, sym_string, - STATE(1388), 1, + STATE(1345), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1689), 1, sym_expression, - STATE(2582), 1, - sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2647), 1, sym__named_expression_lhs, + STATE(2751), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(799), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1135), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(795), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1133), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, + STATE(2457), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(709), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(783), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1801), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36644,7 +36191,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1290), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36661,68 +36208,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10278] = 26, - ACTIONS(719), 1, + [10052] = 27, + ACTIONS(749), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(753), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(759), 1, sym_string_start, - ACTIONS(1025), 1, - sym_identifier, - ACTIONS(1027), 1, - anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(833), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(1045), 1, - anon_sym_await, - ACTIONS(1153), 1, + ACTIONS(845), 1, + anon_sym_yield, + ACTIONS(1029), 1, + anon_sym_LPAREN, + ACTIONS(1119), 1, + sym_identifier, + ACTIONS(1121), 1, anon_sym_RPAREN, - STATE(967), 1, + ACTIONS(1127), 1, + anon_sym_await, + STATE(947), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1018), 1, sym_string, - STATE(1388), 1, + STATE(1281), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1657), 1, sym_expression, - STATE(2582), 1, - sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2224), 1, + sym_yield, + STATE(2580), 1, sym__named_expression_lhs, + STATE(2654), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(755), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1125), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + STATE(2354), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(751), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1123), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(709), 4, + ACTIONS(737), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1797), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36730,7 +36278,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1347), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36747,68 +36295,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10390] = 26, - ACTIONS(719), 1, + [10166] = 27, + ACTIONS(749), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(753), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(759), 1, sym_string_start, - ACTIONS(1025), 1, - sym_identifier, - ACTIONS(1027), 1, - anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(833), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(845), 1, + anon_sym_yield, + ACTIONS(1029), 1, + anon_sym_LPAREN, + ACTIONS(1119), 1, + sym_identifier, + ACTIONS(1127), 1, anon_sym_await, - ACTIONS(1155), 1, + ACTIONS(1145), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(947), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1018), 1, sym_string, - STATE(1388), 1, + STATE(1281), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1678), 1, sym_expression, - STATE(2582), 1, - sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2376), 1, + sym_yield, + STATE(2580), 1, sym__named_expression_lhs, + STATE(2643), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(755), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1125), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + STATE(2354), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(751), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1123), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(709), 4, + ACTIONS(737), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1797), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36816,7 +36365,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1347), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36833,69 +36382,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10502] = 27, - ACTIONS(765), 1, + [10280] = 26, + ACTIONS(793), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(797), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(803), 1, sym_string_start, - ACTIONS(827), 1, + ACTIONS(809), 1, anon_sym_STAR, - ACTIONS(835), 1, + ACTIONS(819), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(821), 1, anon_sym_lambda, - ACTIONS(839), 1, + ACTIONS(823), 1, anon_sym_yield, - ACTIONS(1051), 1, + ACTIONS(1129), 1, sym_identifier, - ACTIONS(1053), 1, + ACTIONS(1131), 1, anon_sym_LPAREN, - ACTIONS(1061), 1, + ACTIONS(1139), 1, anon_sym_await, - ACTIONS(1157), 1, - anon_sym_RPAREN, - STATE(963), 1, + ACTIONS(1147), 1, + anon_sym_RBRACK, + STATE(951), 1, sym_primary_expression, - STATE(1015), 1, + STATE(980), 1, sym_string, - STATE(1258), 1, + STATE(1345), 1, sym_list_splat_pattern, - STATE(1697), 1, + STATE(1693), 1, sym_expression, - STATE(2344), 1, - sym_yield, - STATE(2652), 1, - sym__collection_elements, - STATE(2771), 1, + STATE(2647), 1, sym__named_expression_lhs, + STATE(2665), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(799), 2, sym_ellipsis, sym_float, - ACTIONS(1059), 2, + ACTIONS(1135), 2, anon_sym_match, anon_sym_type, - STATE(2345), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(767), 3, + ACTIONS(795), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1057), 3, + ACTIONS(1133), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + STATE(2457), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(783), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1801), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36903,7 +36451,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1290), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36920,68 +36468,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10616] = 26, - ACTIONS(787), 1, + [10392] = 28, + ACTIONS(749), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(753), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(759), 1, sym_string_start, - ACTIONS(873), 1, + ACTIONS(833), 1, anon_sym_STAR, - ACTIONS(883), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(885), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(887), 1, + ACTIONS(845), 1, anon_sym_yield, - ACTIONS(1159), 1, - sym_identifier, - ACTIONS(1161), 1, + ACTIONS(1029), 1, anon_sym_LPAREN, - ACTIONS(1167), 1, - anon_sym_RBRACK, - ACTIONS(1169), 1, + ACTIONS(1119), 1, + sym_identifier, + ACTIONS(1127), 1, anon_sym_await, - STATE(965), 1, + ACTIONS(1149), 1, + anon_sym_RPAREN, + STATE(947), 1, sym_primary_expression, - STATE(996), 1, + STATE(1018), 1, sym_string, - STATE(1360), 1, + STATE(1281), 1, sym_list_splat_pattern, - STATE(1711), 1, + STATE(1661), 1, sym_expression, - STATE(2611), 1, + STATE(2250), 1, + sym_list_splat, + STATE(2251), 1, + sym_parenthesized_list_splat, + STATE(2276), 1, + sym_yield, + STATE(2580), 1, sym__named_expression_lhs, - STATE(2704), 1, + STATE(2696), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(755), 2, sym_ellipsis, sym_float, - ACTIONS(1165), 2, + ACTIONS(1125), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(751), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1163), 3, + ACTIONS(1123), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2378), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(777), 4, + ACTIONS(737), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1797), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36989,7 +36539,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1347), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37006,70 +36556,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10728] = 28, - ACTIONS(765), 1, + [10508] = 26, + ACTIONS(703), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(713), 1, sym_string_start, - ACTIONS(827), 1, - anon_sym_STAR, - ACTIONS(835), 1, - anon_sym_not, - ACTIONS(837), 1, - anon_sym_lambda, - ACTIONS(839), 1, - anon_sym_yield, - ACTIONS(1051), 1, + ACTIONS(1041), 1, + anon_sym_STAR_STAR, + ACTIONS(1045), 1, sym_identifier, - ACTIONS(1053), 1, + ACTIONS(1047), 1, anon_sym_LPAREN, + ACTIONS(1053), 1, + anon_sym_STAR, + ACTIONS(1059), 1, + anon_sym_not, ACTIONS(1061), 1, + anon_sym_lambda, + ACTIONS(1063), 1, anon_sym_await, - ACTIONS(1171), 1, + ACTIONS(1151), 1, anon_sym_RPAREN, - STATE(963), 1, + STATE(952), 1, sym_primary_expression, - STATE(1015), 1, + STATE(992), 1, sym_string, - STATE(1258), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1680), 1, + STATE(1914), 1, sym_expression, - STATE(2379), 1, - sym_list_splat, - STATE(2381), 1, + STATE(2567), 1, sym_parenthesized_list_splat, - STATE(2443), 1, - sym_yield, - STATE(2631), 1, - sym__collection_elements, - STATE(2771), 1, + STATE(2633), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(1059), 2, + ACTIONS(1057), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1057), 3, + ACTIONS(1055), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + STATE(2550), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37077,7 +36625,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37094,68 +36642,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10844] = 26, - ACTIONS(719), 1, + [10620] = 26, + ACTIONS(703), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(713), 1, sym_string_start, - ACTIONS(1025), 1, + ACTIONS(1041), 1, + anon_sym_STAR_STAR, + ACTIONS(1045), 1, sym_identifier, - ACTIONS(1027), 1, + ACTIONS(1047), 1, anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(1053), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, + ACTIONS(1059), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(1061), 1, anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(1063), 1, anon_sym_await, - ACTIONS(1173), 1, + ACTIONS(1153), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(952), 1, sym_primary_expression, - STATE(1028), 1, + STATE(992), 1, sym_string, - STATE(1388), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1914), 1, sym_expression, - STATE(2582), 1, + STATE(2567), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2633), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1057), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1055), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, + STATE(2550), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(709), 4, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37163,7 +36711,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37180,68 +36728,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10956] = 26, - ACTIONS(719), 1, + [10732] = 26, + ACTIONS(703), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(713), 1, sym_string_start, - ACTIONS(1025), 1, + ACTIONS(1041), 1, + anon_sym_STAR_STAR, + ACTIONS(1045), 1, sym_identifier, - ACTIONS(1027), 1, + ACTIONS(1047), 1, anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(1053), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, + ACTIONS(1059), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(1061), 1, anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(1063), 1, anon_sym_await, - ACTIONS(1175), 1, + ACTIONS(1155), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(952), 1, sym_primary_expression, - STATE(1028), 1, + STATE(992), 1, sym_string, - STATE(1388), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1914), 1, sym_expression, - STATE(2582), 1, + STATE(2567), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2633), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1057), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1055), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, + STATE(2550), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(709), 4, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37249,7 +36797,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37266,68 +36814,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11068] = 26, - ACTIONS(719), 1, + [10844] = 26, + ACTIONS(703), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(713), 1, sym_string_start, - ACTIONS(1025), 1, + ACTIONS(1041), 1, + anon_sym_STAR_STAR, + ACTIONS(1045), 1, sym_identifier, - ACTIONS(1027), 1, + ACTIONS(1047), 1, anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(1053), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, + ACTIONS(1059), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(1061), 1, anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(1063), 1, anon_sym_await, - ACTIONS(1177), 1, + ACTIONS(1157), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(952), 1, sym_primary_expression, - STATE(1028), 1, + STATE(992), 1, sym_string, - STATE(1388), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1914), 1, sym_expression, - STATE(2582), 1, + STATE(2567), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2633), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1057), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1055), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, + STATE(2550), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(709), 4, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37335,7 +36883,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37352,68 +36900,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11180] = 26, - ACTIONS(719), 1, + [10956] = 26, + ACTIONS(703), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(713), 1, sym_string_start, - ACTIONS(1025), 1, + ACTIONS(1041), 1, + anon_sym_STAR_STAR, + ACTIONS(1045), 1, sym_identifier, - ACTIONS(1027), 1, + ACTIONS(1047), 1, anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(1053), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, + ACTIONS(1059), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(1061), 1, anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(1063), 1, anon_sym_await, - ACTIONS(1179), 1, + ACTIONS(1159), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(952), 1, sym_primary_expression, - STATE(1028), 1, + STATE(992), 1, sym_string, - STATE(1388), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1914), 1, sym_expression, - STATE(2582), 1, + STATE(2567), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2633), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1057), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1055), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, + STATE(2550), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(709), 4, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37421,7 +36969,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37438,68 +36986,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11292] = 26, - ACTIONS(719), 1, + [11068] = 26, + ACTIONS(703), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(713), 1, sym_string_start, - ACTIONS(1025), 1, + ACTIONS(1041), 1, + anon_sym_STAR_STAR, + ACTIONS(1045), 1, sym_identifier, - ACTIONS(1027), 1, + ACTIONS(1047), 1, anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(1053), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, + ACTIONS(1059), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(1061), 1, anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(1063), 1, anon_sym_await, - ACTIONS(1181), 1, + ACTIONS(1161), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(952), 1, sym_primary_expression, - STATE(1028), 1, + STATE(992), 1, sym_string, - STATE(1388), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1914), 1, sym_expression, - STATE(2582), 1, + STATE(2567), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2633), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1057), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1055), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, + STATE(2550), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(709), 4, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37507,7 +37055,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37524,69 +37072,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11404] = 27, - ACTIONS(765), 1, + [11180] = 27, + ACTIONS(749), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(753), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(759), 1, sym_string_start, - ACTIONS(827), 1, + ACTIONS(833), 1, anon_sym_STAR, - ACTIONS(835), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(839), 1, + ACTIONS(845), 1, anon_sym_yield, - ACTIONS(1051), 1, - sym_identifier, - ACTIONS(1053), 1, + ACTIONS(1029), 1, anon_sym_LPAREN, - ACTIONS(1061), 1, + ACTIONS(1119), 1, + sym_identifier, + ACTIONS(1127), 1, anon_sym_await, - ACTIONS(1183), 1, + ACTIONS(1141), 1, anon_sym_RPAREN, - STATE(963), 1, + STATE(947), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1018), 1, sym_string, - STATE(1258), 1, + STATE(1281), 1, sym_list_splat_pattern, - STATE(1688), 1, + STATE(1690), 1, sym_expression, - STATE(2242), 1, + STATE(2461), 1, sym_yield, - STATE(2736), 1, - sym__collection_elements, - STATE(2771), 1, + STATE(2580), 1, sym__named_expression_lhs, + STATE(2730), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(755), 2, sym_ellipsis, sym_float, - ACTIONS(1059), 2, + ACTIONS(1125), 2, anon_sym_match, anon_sym_type, - STATE(2345), 2, + STATE(2354), 2, sym_list_splat, sym_parenthesized_list_splat, - ACTIONS(767), 3, + ACTIONS(751), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1057), 3, + ACTIONS(1123), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + ACTIONS(737), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1797), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37594,7 +37142,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1347), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37611,68 +37159,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11518] = 26, - ACTIONS(787), 1, + [11294] = 26, + ACTIONS(793), 1, anon_sym_LBRACK, - ACTIONS(791), 1, - anon_sym_LBRACE, ACTIONS(797), 1, + anon_sym_LBRACE, + ACTIONS(803), 1, sym_string_start, - ACTIONS(873), 1, + ACTIONS(809), 1, anon_sym_STAR, - ACTIONS(883), 1, + ACTIONS(819), 1, anon_sym_not, - ACTIONS(885), 1, + ACTIONS(821), 1, anon_sym_lambda, - ACTIONS(887), 1, + ACTIONS(823), 1, anon_sym_yield, - ACTIONS(1159), 1, + ACTIONS(1129), 1, sym_identifier, - ACTIONS(1161), 1, + ACTIONS(1131), 1, anon_sym_LPAREN, - ACTIONS(1169), 1, + ACTIONS(1139), 1, anon_sym_await, - ACTIONS(1185), 1, + ACTIONS(1163), 1, anon_sym_RBRACK, - STATE(965), 1, + STATE(951), 1, sym_primary_expression, - STATE(996), 1, + STATE(980), 1, sym_string, - STATE(1360), 1, + STATE(1345), 1, sym_list_splat_pattern, - STATE(1714), 1, + STATE(1697), 1, sym_expression, - STATE(2611), 1, + STATE(2647), 1, sym__named_expression_lhs, - STATE(2661), 1, + STATE(2648), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(799), 2, sym_ellipsis, sym_float, - ACTIONS(1165), 2, + ACTIONS(1135), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(795), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1163), 3, + ACTIONS(1133), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2378), 3, + STATE(2457), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(777), 4, + ACTIONS(783), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1801), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37680,7 +37228,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1290), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37697,70 +37245,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11630] = 28, - ACTIONS(765), 1, + [11406] = 28, + ACTIONS(749), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(753), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(759), 1, sym_string_start, - ACTIONS(827), 1, + ACTIONS(833), 1, anon_sym_STAR, - ACTIONS(835), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(839), 1, + ACTIONS(845), 1, anon_sym_yield, - ACTIONS(1051), 1, - sym_identifier, - ACTIONS(1053), 1, + ACTIONS(1029), 1, anon_sym_LPAREN, - ACTIONS(1061), 1, + ACTIONS(1119), 1, + sym_identifier, + ACTIONS(1127), 1, anon_sym_await, - ACTIONS(1157), 1, + ACTIONS(1145), 1, anon_sym_RPAREN, - STATE(963), 1, + STATE(947), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1018), 1, sym_string, - STATE(1258), 1, + STATE(1281), 1, sym_list_splat_pattern, - STATE(1697), 1, + STATE(1678), 1, sym_expression, - STATE(2344), 1, - sym_yield, - STATE(2434), 1, + STATE(2228), 1, sym_list_splat, - STATE(2435), 1, + STATE(2295), 1, sym_parenthesized_list_splat, - STATE(2652), 1, - sym__collection_elements, - STATE(2771), 1, + STATE(2376), 1, + sym_yield, + STATE(2580), 1, sym__named_expression_lhs, + STATE(2643), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(755), 2, sym_ellipsis, sym_float, - ACTIONS(1059), 2, + ACTIONS(1125), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(751), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1057), 3, + ACTIONS(1123), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + ACTIONS(737), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1797), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37768,7 +37316,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1347), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37785,68 +37333,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11746] = 26, - ACTIONS(719), 1, + [11522] = 26, + ACTIONS(703), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(713), 1, sym_string_start, - ACTIONS(1025), 1, + ACTIONS(1041), 1, + anon_sym_STAR_STAR, + ACTIONS(1045), 1, sym_identifier, - ACTIONS(1027), 1, + ACTIONS(1047), 1, anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(1053), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, + ACTIONS(1059), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(1061), 1, anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(1063), 1, anon_sym_await, - ACTIONS(1187), 1, + ACTIONS(1165), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(952), 1, sym_primary_expression, - STATE(1028), 1, + STATE(992), 1, sym_string, - STATE(1388), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1914), 1, sym_expression, - STATE(2582), 1, + STATE(2567), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2633), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1057), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1055), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, + STATE(2550), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(709), 4, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37854,7 +37402,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37871,68 +37419,154 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11858] = 26, - ACTIONS(719), 1, + [11634] = 26, + ACTIONS(703), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(713), 1, sym_string_start, - ACTIONS(1025), 1, + ACTIONS(1041), 1, + anon_sym_STAR_STAR, + ACTIONS(1045), 1, sym_identifier, - ACTIONS(1027), 1, + ACTIONS(1047), 1, anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(1053), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, + ACTIONS(1059), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(1061), 1, anon_sym_lambda, + ACTIONS(1063), 1, + anon_sym_await, + ACTIONS(1167), 1, + anon_sym_RPAREN, + STATE(952), 1, + sym_primary_expression, + STATE(992), 1, + sym_string, + STATE(1322), 1, + sym_list_splat_pattern, + STATE(1914), 1, + sym_expression, + STATE(2567), 1, + sym_parenthesized_list_splat, + STATE(2633), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(709), 2, + sym_ellipsis, + sym_float, + ACTIONS(1057), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(705), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1055), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + STATE(2550), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(693), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1702), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1384), 16, + 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_await, + [11746] = 26, + ACTIONS(703), 1, + anon_sym_LBRACK, + ACTIONS(707), 1, + anon_sym_LBRACE, + ACTIONS(713), 1, + sym_string_start, + ACTIONS(1041), 1, + anon_sym_STAR_STAR, ACTIONS(1045), 1, + sym_identifier, + ACTIONS(1047), 1, + anon_sym_LPAREN, + ACTIONS(1053), 1, + anon_sym_STAR, + ACTIONS(1059), 1, + anon_sym_not, + ACTIONS(1061), 1, + anon_sym_lambda, + ACTIONS(1063), 1, anon_sym_await, - ACTIONS(1189), 1, + ACTIONS(1169), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(952), 1, sym_primary_expression, - STATE(1028), 1, + STATE(992), 1, sym_string, - STATE(1388), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1914), 1, sym_expression, - STATE(2582), 1, + STATE(2567), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2633), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1057), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1055), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, + STATE(2550), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(709), 4, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37940,7 +37574,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37957,68 +37591,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11970] = 26, - ACTIONS(719), 1, + [11858] = 26, + ACTIONS(703), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(713), 1, sym_string_start, - ACTIONS(1025), 1, + ACTIONS(1041), 1, + anon_sym_STAR_STAR, + ACTIONS(1045), 1, sym_identifier, - ACTIONS(1027), 1, + ACTIONS(1047), 1, anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(1053), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, + ACTIONS(1059), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(1061), 1, anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(1063), 1, anon_sym_await, - ACTIONS(1191), 1, + ACTIONS(1171), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(952), 1, sym_primary_expression, - STATE(1028), 1, + STATE(992), 1, sym_string, - STATE(1388), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1914), 1, sym_expression, - STATE(2582), 1, + STATE(2567), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2633), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1057), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1055), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, + STATE(2550), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(709), 4, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38026,7 +37660,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38043,68 +37677,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12082] = 26, - ACTIONS(719), 1, + [11970] = 27, + ACTIONS(749), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(753), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(759), 1, sym_string_start, - ACTIONS(1025), 1, - sym_identifier, - ACTIONS(1027), 1, - anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(833), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(845), 1, + anon_sym_yield, + ACTIONS(1029), 1, + anon_sym_LPAREN, + ACTIONS(1119), 1, + sym_identifier, + ACTIONS(1127), 1, anon_sym_await, - ACTIONS(1193), 1, + ACTIONS(1173), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(947), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1018), 1, sym_string, - STATE(1388), 1, + STATE(1281), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1683), 1, sym_expression, - STATE(2582), 1, - sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2397), 1, + sym_yield, + STATE(2580), 1, sym__named_expression_lhs, + STATE(2585), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(755), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1125), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + STATE(2354), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(751), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1123), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(709), 4, + ACTIONS(737), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1797), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38112,7 +37747,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1347), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38129,68 +37764,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12194] = 26, - ACTIONS(719), 1, + [12084] = 26, + ACTIONS(793), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(797), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(803), 1, sym_string_start, - ACTIONS(1025), 1, - sym_identifier, - ACTIONS(1027), 1, - anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(809), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, + ACTIONS(819), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(821), 1, anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(823), 1, + anon_sym_yield, + ACTIONS(1129), 1, + sym_identifier, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1139), 1, anon_sym_await, - ACTIONS(1195), 1, - anon_sym_RPAREN, - STATE(967), 1, + ACTIONS(1175), 1, + anon_sym_RBRACK, + STATE(951), 1, sym_primary_expression, - STATE(1028), 1, + STATE(980), 1, sym_string, - STATE(1388), 1, + STATE(1345), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1687), 1, sym_expression, - STATE(2582), 1, - sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2647), 1, sym__named_expression_lhs, + STATE(2744), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(799), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1135), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(795), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1133), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, + STATE(2457), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(709), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(783), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1801), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38198,7 +37833,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1290), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38215,69 +37850,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12306] = 27, - ACTIONS(765), 1, + [12196] = 28, + ACTIONS(749), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(753), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(759), 1, sym_string_start, - ACTIONS(827), 1, + ACTIONS(833), 1, anon_sym_STAR, - ACTIONS(835), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(839), 1, + ACTIONS(845), 1, anon_sym_yield, - ACTIONS(1051), 1, - sym_identifier, - ACTIONS(1053), 1, + ACTIONS(1029), 1, anon_sym_LPAREN, - ACTIONS(1061), 1, + ACTIONS(1119), 1, + sym_identifier, + ACTIONS(1127), 1, anon_sym_await, - ACTIONS(1197), 1, + ACTIONS(1173), 1, anon_sym_RPAREN, - STATE(963), 1, + STATE(947), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1018), 1, sym_string, - STATE(1258), 1, + STATE(1281), 1, sym_list_splat_pattern, - STATE(1701), 1, + STATE(1683), 1, sym_expression, - STATE(2377), 1, + STATE(2250), 1, + sym_list_splat, + STATE(2251), 1, + sym_parenthesized_list_splat, + STATE(2397), 1, sym_yield, - STATE(2601), 1, - sym__collection_elements, - STATE(2771), 1, + STATE(2580), 1, sym__named_expression_lhs, + STATE(2585), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(755), 2, sym_ellipsis, sym_float, - ACTIONS(1059), 2, + ACTIONS(1125), 2, anon_sym_match, anon_sym_type, - STATE(2345), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(767), 3, + ACTIONS(751), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1057), 3, + ACTIONS(1123), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + ACTIONS(737), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1797), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38285,7 +37921,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1347), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38302,68 +37938,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12420] = 26, - ACTIONS(787), 1, + [12312] = 26, + ACTIONS(703), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(713), 1, sym_string_start, - ACTIONS(873), 1, + ACTIONS(1041), 1, + anon_sym_STAR_STAR, + ACTIONS(1045), 1, + sym_identifier, + ACTIONS(1047), 1, + anon_sym_LPAREN, + ACTIONS(1053), 1, anon_sym_STAR, - ACTIONS(883), 1, + ACTIONS(1059), 1, anon_sym_not, - ACTIONS(885), 1, + ACTIONS(1061), 1, anon_sym_lambda, - ACTIONS(887), 1, - anon_sym_yield, - ACTIONS(1159), 1, - sym_identifier, - ACTIONS(1161), 1, - anon_sym_LPAREN, - ACTIONS(1169), 1, + ACTIONS(1063), 1, anon_sym_await, - ACTIONS(1199), 1, - anon_sym_RBRACK, - STATE(965), 1, + ACTIONS(1177), 1, + anon_sym_RPAREN, + STATE(952), 1, sym_primary_expression, - STATE(996), 1, + STATE(992), 1, sym_string, - STATE(1360), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1705), 1, + STATE(1914), 1, sym_expression, - STATE(2611), 1, + STATE(2567), 1, + sym_parenthesized_list_splat, + STATE(2633), 1, sym__named_expression_lhs, - STATE(2664), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(1165), 2, + ACTIONS(1057), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1163), 3, + ACTIONS(1055), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2378), 3, + STATE(2550), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(777), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38371,7 +38007,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38388,68 +38024,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12532] = 26, - ACTIONS(719), 1, + [12424] = 26, + ACTIONS(703), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(713), 1, sym_string_start, - ACTIONS(1025), 1, + ACTIONS(1041), 1, + anon_sym_STAR_STAR, + ACTIONS(1045), 1, sym_identifier, - ACTIONS(1027), 1, + ACTIONS(1047), 1, anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(1053), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, + ACTIONS(1059), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(1061), 1, anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(1063), 1, anon_sym_await, - ACTIONS(1201), 1, + ACTIONS(1179), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(952), 1, sym_primary_expression, - STATE(1028), 1, + STATE(992), 1, sym_string, - STATE(1388), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1914), 1, sym_expression, - STATE(2582), 1, + STATE(2567), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2633), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1057), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1055), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, + STATE(2550), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(709), 4, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38457,7 +38093,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38474,68 +38110,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12644] = 26, - ACTIONS(719), 1, + [12536] = 26, + ACTIONS(703), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(713), 1, sym_string_start, - ACTIONS(1025), 1, + ACTIONS(1041), 1, + anon_sym_STAR_STAR, + ACTIONS(1045), 1, sym_identifier, - ACTIONS(1027), 1, + ACTIONS(1047), 1, anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(1053), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, + ACTIONS(1059), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(1061), 1, anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(1063), 1, anon_sym_await, - ACTIONS(1203), 1, + ACTIONS(1181), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(952), 1, sym_primary_expression, - STATE(1028), 1, + STATE(992), 1, sym_string, - STATE(1388), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1914), 1, sym_expression, - STATE(2582), 1, + STATE(2567), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2633), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1057), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1055), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, + STATE(2550), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(709), 4, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38543,7 +38179,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38560,68 +38196,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12756] = 26, - ACTIONS(719), 1, + [12648] = 26, + ACTIONS(703), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(713), 1, sym_string_start, - ACTIONS(1025), 1, + ACTIONS(1041), 1, + anon_sym_STAR_STAR, + ACTIONS(1045), 1, sym_identifier, - ACTIONS(1027), 1, + ACTIONS(1047), 1, anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(1053), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, + ACTIONS(1059), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(1061), 1, anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(1063), 1, anon_sym_await, - ACTIONS(1205), 1, + ACTIONS(1183), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(952), 1, sym_primary_expression, - STATE(1028), 1, + STATE(992), 1, sym_string, - STATE(1388), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1914), 1, sym_expression, - STATE(2582), 1, + STATE(2567), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2633), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1057), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1055), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, + STATE(2550), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(709), 4, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38629,7 +38265,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38646,68 +38282,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12868] = 26, - ACTIONS(719), 1, + [12760] = 26, + ACTIONS(703), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(713), 1, sym_string_start, - ACTIONS(1025), 1, + ACTIONS(1041), 1, + anon_sym_STAR_STAR, + ACTIONS(1045), 1, sym_identifier, - ACTIONS(1027), 1, + ACTIONS(1047), 1, anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(1053), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, + ACTIONS(1059), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(1061), 1, anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(1063), 1, anon_sym_await, - ACTIONS(1207), 1, + ACTIONS(1185), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(952), 1, sym_primary_expression, - STATE(1028), 1, + STATE(992), 1, sym_string, - STATE(1388), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1914), 1, sym_expression, - STATE(2582), 1, + STATE(2567), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2633), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1057), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1055), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, + STATE(2550), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(709), 4, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38715,7 +38351,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38732,69 +38368,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12980] = 27, - ACTIONS(765), 1, + [12872] = 26, + ACTIONS(703), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(713), 1, sym_string_start, - ACTIONS(827), 1, - anon_sym_STAR, - ACTIONS(835), 1, - anon_sym_not, - ACTIONS(837), 1, - anon_sym_lambda, - ACTIONS(839), 1, - anon_sym_yield, - ACTIONS(1051), 1, + ACTIONS(1041), 1, + anon_sym_STAR_STAR, + ACTIONS(1045), 1, sym_identifier, - ACTIONS(1053), 1, + ACTIONS(1047), 1, anon_sym_LPAREN, + ACTIONS(1053), 1, + anon_sym_STAR, + ACTIONS(1059), 1, + anon_sym_not, ACTIONS(1061), 1, + anon_sym_lambda, + ACTIONS(1063), 1, anon_sym_await, - ACTIONS(1171), 1, + ACTIONS(1187), 1, anon_sym_RPAREN, - STATE(963), 1, + STATE(952), 1, sym_primary_expression, - STATE(1015), 1, + STATE(992), 1, sym_string, - STATE(1258), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1680), 1, + STATE(1914), 1, sym_expression, - STATE(2443), 1, - sym_yield, - STATE(2631), 1, - sym__collection_elements, - STATE(2771), 1, + STATE(2567), 1, + sym_parenthesized_list_splat, + STATE(2633), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(1059), 2, + ACTIONS(1057), 2, anon_sym_match, anon_sym_type, - STATE(2345), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(767), 3, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1057), 3, + ACTIONS(1055), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + STATE(2550), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38802,7 +38437,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38819,68 +38454,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13094] = 26, - ACTIONS(787), 1, + [12984] = 26, + ACTIONS(703), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(713), 1, sym_string_start, - ACTIONS(873), 1, + ACTIONS(1041), 1, + anon_sym_STAR_STAR, + ACTIONS(1045), 1, + sym_identifier, + ACTIONS(1047), 1, + anon_sym_LPAREN, + ACTIONS(1053), 1, anon_sym_STAR, - ACTIONS(883), 1, + ACTIONS(1059), 1, anon_sym_not, - ACTIONS(885), 1, + ACTIONS(1061), 1, anon_sym_lambda, - ACTIONS(887), 1, - anon_sym_yield, - ACTIONS(1159), 1, - sym_identifier, - ACTIONS(1161), 1, - anon_sym_LPAREN, - ACTIONS(1169), 1, + ACTIONS(1063), 1, anon_sym_await, - ACTIONS(1209), 1, - anon_sym_RBRACK, - STATE(965), 1, + ACTIONS(1189), 1, + anon_sym_RPAREN, + STATE(952), 1, sym_primary_expression, - STATE(996), 1, + STATE(992), 1, sym_string, - STATE(1360), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1709), 1, + STATE(1914), 1, sym_expression, - STATE(2611), 1, + STATE(2567), 1, + sym_parenthesized_list_splat, + STATE(2633), 1, sym__named_expression_lhs, - STATE(2654), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(1165), 2, + ACTIONS(1057), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1163), 3, + ACTIONS(1055), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2378), 3, + STATE(2550), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(777), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38888,7 +38523,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38905,70 +38540,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13206] = 28, - ACTIONS(765), 1, + [13096] = 26, + ACTIONS(703), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(713), 1, sym_string_start, - ACTIONS(827), 1, - anon_sym_STAR, - ACTIONS(835), 1, - anon_sym_not, - ACTIONS(837), 1, - anon_sym_lambda, - ACTIONS(839), 1, - anon_sym_yield, - ACTIONS(1051), 1, + ACTIONS(1041), 1, + anon_sym_STAR_STAR, + ACTIONS(1045), 1, sym_identifier, - ACTIONS(1053), 1, + ACTIONS(1047), 1, anon_sym_LPAREN, + ACTIONS(1053), 1, + anon_sym_STAR, + ACTIONS(1059), 1, + anon_sym_not, ACTIONS(1061), 1, + anon_sym_lambda, + ACTIONS(1063), 1, anon_sym_await, - ACTIONS(1211), 1, + ACTIONS(1191), 1, anon_sym_RPAREN, - STATE(963), 1, + STATE(952), 1, sym_primary_expression, - STATE(1015), 1, + STATE(992), 1, sym_string, - STATE(1258), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1691), 1, + STATE(1914), 1, sym_expression, - STATE(2303), 1, - sym_yield, - STATE(2314), 1, - sym_list_splat, - STATE(2315), 1, + STATE(2567), 1, sym_parenthesized_list_splat, - STATE(2771), 1, + STATE(2633), 1, sym__named_expression_lhs, - STATE(2782), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(1059), 2, + ACTIONS(1057), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1057), 3, + ACTIONS(1055), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + STATE(2550), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38976,7 +38609,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38993,68 +38626,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13322] = 26, - ACTIONS(719), 1, + [13208] = 27, + ACTIONS(749), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(753), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(759), 1, sym_string_start, - ACTIONS(1025), 1, - sym_identifier, - ACTIONS(1027), 1, - anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(833), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(845), 1, + anon_sym_yield, + ACTIONS(1029), 1, + anon_sym_LPAREN, + ACTIONS(1119), 1, + sym_identifier, + ACTIONS(1127), 1, anon_sym_await, - ACTIONS(1213), 1, + ACTIONS(1149), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(947), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1018), 1, sym_string, - STATE(1388), 1, + STATE(1281), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1661), 1, sym_expression, - STATE(2582), 1, - sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2276), 1, + sym_yield, + STATE(2580), 1, sym__named_expression_lhs, + STATE(2696), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(755), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1125), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + STATE(2354), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(751), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1123), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(709), 4, + ACTIONS(737), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1797), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39062,7 +38696,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1347), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39079,68 +38713,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13434] = 26, - ACTIONS(719), 1, + [13322] = 26, + ACTIONS(793), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(797), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(803), 1, sym_string_start, - ACTIONS(1025), 1, - sym_identifier, - ACTIONS(1027), 1, - anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(809), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, + ACTIONS(819), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(821), 1, anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(823), 1, + anon_sym_yield, + ACTIONS(1129), 1, + sym_identifier, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1139), 1, anon_sym_await, - ACTIONS(1215), 1, - anon_sym_RPAREN, - STATE(967), 1, + ACTIONS(1193), 1, + anon_sym_RBRACK, + STATE(951), 1, sym_primary_expression, - STATE(1028), 1, + STATE(980), 1, sym_string, - STATE(1388), 1, + STATE(1345), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1656), 1, sym_expression, - STATE(2582), 1, - sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2647), 1, sym__named_expression_lhs, + STATE(2715), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(799), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1135), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(795), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1133), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, + STATE(2457), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(709), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(783), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1801), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39148,7 +38782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1290), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39165,68 +38799,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13546] = 26, - ACTIONS(719), 1, + [13434] = 28, + ACTIONS(749), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(753), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(759), 1, sym_string_start, - ACTIONS(1025), 1, - sym_identifier, - ACTIONS(1027), 1, - anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(833), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(845), 1, + anon_sym_yield, + ACTIONS(1029), 1, + anon_sym_LPAREN, + ACTIONS(1119), 1, + sym_identifier, + ACTIONS(1127), 1, anon_sym_await, - ACTIONS(1217), 1, + ACTIONS(1195), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(947), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1018), 1, sym_string, - STATE(1388), 1, + STATE(1281), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1673), 1, sym_expression, - STATE(2582), 1, + STATE(2231), 1, + sym_list_splat, + STATE(2232), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2353), 1, + sym_yield, + STATE(2580), 1, sym__named_expression_lhs, + STATE(2667), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(755), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1125), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(751), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1123), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(709), 4, + ACTIONS(737), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1797), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39234,7 +38870,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1347), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39251,68 +38887,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13658] = 26, - ACTIONS(719), 1, + [13550] = 26, + ACTIONS(703), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(713), 1, sym_string_start, - ACTIONS(1025), 1, + ACTIONS(1041), 1, + anon_sym_STAR_STAR, + ACTIONS(1045), 1, sym_identifier, - ACTIONS(1027), 1, + ACTIONS(1047), 1, anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(1053), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, + ACTIONS(1059), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(1061), 1, anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(1063), 1, anon_sym_await, - ACTIONS(1219), 1, + ACTIONS(1197), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(952), 1, sym_primary_expression, - STATE(1028), 1, + STATE(992), 1, sym_string, - STATE(1388), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1914), 1, sym_expression, - STATE(2582), 1, + STATE(2567), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2633), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1057), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1055), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, + STATE(2550), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(709), 4, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39320,7 +38956,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39337,68 +38973,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13770] = 26, - ACTIONS(787), 1, + [13662] = 26, + ACTIONS(703), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(713), 1, sym_string_start, - ACTIONS(873), 1, + ACTIONS(1041), 1, + anon_sym_STAR_STAR, + ACTIONS(1045), 1, + sym_identifier, + ACTIONS(1047), 1, + anon_sym_LPAREN, + ACTIONS(1053), 1, anon_sym_STAR, - ACTIONS(883), 1, + ACTIONS(1059), 1, anon_sym_not, - ACTIONS(885), 1, + ACTIONS(1061), 1, anon_sym_lambda, - ACTIONS(887), 1, - anon_sym_yield, - ACTIONS(1159), 1, - sym_identifier, - ACTIONS(1161), 1, - anon_sym_LPAREN, - ACTIONS(1169), 1, + ACTIONS(1063), 1, anon_sym_await, - ACTIONS(1221), 1, - anon_sym_RBRACK, - STATE(965), 1, + ACTIONS(1199), 1, + anon_sym_RPAREN, + STATE(952), 1, sym_primary_expression, - STATE(996), 1, + STATE(992), 1, sym_string, - STATE(1360), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1707), 1, + STATE(1914), 1, sym_expression, - STATE(2611), 1, + STATE(2567), 1, + sym_parenthesized_list_splat, + STATE(2633), 1, sym__named_expression_lhs, - STATE(2628), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(1165), 2, + ACTIONS(1057), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1163), 3, + ACTIONS(1055), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2378), 3, + STATE(2550), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(777), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39406,7 +39042,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39423,69 +39059,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13882] = 27, - ACTIONS(765), 1, + [13774] = 26, + ACTIONS(703), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(713), 1, sym_string_start, - ACTIONS(827), 1, - anon_sym_STAR, - ACTIONS(835), 1, - anon_sym_not, - ACTIONS(837), 1, - anon_sym_lambda, - ACTIONS(839), 1, - anon_sym_yield, - ACTIONS(1051), 1, + ACTIONS(1041), 1, + anon_sym_STAR_STAR, + ACTIONS(1045), 1, sym_identifier, - ACTIONS(1053), 1, + ACTIONS(1047), 1, anon_sym_LPAREN, + ACTIONS(1053), 1, + anon_sym_STAR, + ACTIONS(1059), 1, + anon_sym_not, ACTIONS(1061), 1, + anon_sym_lambda, + ACTIONS(1063), 1, anon_sym_await, - ACTIONS(1211), 1, + ACTIONS(1201), 1, anon_sym_RPAREN, - STATE(963), 1, + STATE(952), 1, sym_primary_expression, - STATE(1015), 1, + STATE(992), 1, sym_string, - STATE(1258), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1691), 1, + STATE(1914), 1, sym_expression, - STATE(2303), 1, - sym_yield, - STATE(2771), 1, + STATE(2567), 1, + sym_parenthesized_list_splat, + STATE(2633), 1, sym__named_expression_lhs, - STATE(2782), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(1059), 2, + ACTIONS(1057), 2, anon_sym_match, anon_sym_type, - STATE(2345), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(767), 3, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1057), 3, + ACTIONS(1055), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + STATE(2550), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39493,7 +39128,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39510,68 +39145,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13996] = 26, - ACTIONS(787), 1, + [13886] = 26, + ACTIONS(703), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(713), 1, sym_string_start, - ACTIONS(873), 1, + ACTIONS(1041), 1, + anon_sym_STAR_STAR, + ACTIONS(1045), 1, + sym_identifier, + ACTIONS(1047), 1, + anon_sym_LPAREN, + ACTIONS(1053), 1, anon_sym_STAR, - ACTIONS(883), 1, + ACTIONS(1059), 1, anon_sym_not, - ACTIONS(885), 1, + ACTIONS(1061), 1, anon_sym_lambda, - ACTIONS(887), 1, - anon_sym_yield, - ACTIONS(1159), 1, - sym_identifier, - ACTIONS(1161), 1, - anon_sym_LPAREN, - ACTIONS(1169), 1, + ACTIONS(1063), 1, anon_sym_await, - ACTIONS(1223), 1, - anon_sym_RBRACK, - STATE(965), 1, + ACTIONS(1203), 1, + anon_sym_RPAREN, + STATE(952), 1, sym_primary_expression, - STATE(996), 1, + STATE(992), 1, sym_string, - STATE(1360), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1673), 1, + STATE(1914), 1, sym_expression, - STATE(2604), 1, - sym__collection_elements, - STATE(2611), 1, + STATE(2567), 1, + sym_parenthesized_list_splat, + STATE(2633), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(1165), 2, + ACTIONS(1057), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1163), 3, + ACTIONS(1055), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2378), 3, + STATE(2550), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(777), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39579,7 +39214,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39596,68 +39231,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14108] = 26, - ACTIONS(719), 1, + [13998] = 26, + ACTIONS(703), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(713), 1, sym_string_start, - ACTIONS(1025), 1, + ACTIONS(1041), 1, + anon_sym_STAR_STAR, + ACTIONS(1045), 1, sym_identifier, - ACTIONS(1027), 1, + ACTIONS(1047), 1, anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(1053), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, + ACTIONS(1059), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(1061), 1, anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(1063), 1, anon_sym_await, - ACTIONS(1225), 1, + ACTIONS(1205), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(952), 1, sym_primary_expression, - STATE(1028), 1, + STATE(992), 1, sym_string, - STATE(1388), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1914), 1, sym_expression, - STATE(2582), 1, + STATE(2567), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2633), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1057), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1055), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, + STATE(2550), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(709), 4, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39665,7 +39300,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39682,68 +39317,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14220] = 26, - ACTIONS(719), 1, + [14110] = 26, + ACTIONS(703), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(713), 1, sym_string_start, - ACTIONS(1025), 1, + ACTIONS(1041), 1, + anon_sym_STAR_STAR, + ACTIONS(1045), 1, sym_identifier, - ACTIONS(1027), 1, + ACTIONS(1047), 1, anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(1053), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, + ACTIONS(1059), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(1061), 1, anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(1063), 1, anon_sym_await, - ACTIONS(1227), 1, + ACTIONS(1207), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(952), 1, sym_primary_expression, - STATE(1028), 1, + STATE(992), 1, sym_string, - STATE(1388), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1914), 1, sym_expression, - STATE(2582), 1, + STATE(2567), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2633), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1057), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1055), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, + STATE(2550), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(709), 4, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39751,7 +39386,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39768,68 +39403,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14332] = 26, - ACTIONS(719), 1, + [14222] = 27, + ACTIONS(749), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(753), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(759), 1, sym_string_start, - ACTIONS(1025), 1, - sym_identifier, - ACTIONS(1027), 1, - anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(833), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(845), 1, + anon_sym_yield, + ACTIONS(1029), 1, + anon_sym_LPAREN, + ACTIONS(1119), 1, + sym_identifier, + ACTIONS(1127), 1, anon_sym_await, - ACTIONS(1229), 1, + ACTIONS(1195), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(947), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1018), 1, sym_string, - STATE(1388), 1, + STATE(1281), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1673), 1, sym_expression, - STATE(2582), 1, - sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2353), 1, + sym_yield, + STATE(2580), 1, sym__named_expression_lhs, + STATE(2667), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(755), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1125), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + STATE(2354), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(751), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1123), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(709), 4, + ACTIONS(737), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1797), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39837,7 +39473,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1347), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39854,68 +39490,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14444] = 26, - ACTIONS(719), 1, + [14336] = 26, + ACTIONS(793), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(797), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(803), 1, sym_string_start, - ACTIONS(1025), 1, - sym_identifier, - ACTIONS(1027), 1, - anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(809), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, + ACTIONS(819), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(821), 1, anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(823), 1, + anon_sym_yield, + ACTIONS(1129), 1, + sym_identifier, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1139), 1, anon_sym_await, - ACTIONS(1231), 1, - anon_sym_RPAREN, - STATE(967), 1, + ACTIONS(1209), 1, + anon_sym_RBRACK, + STATE(951), 1, sym_primary_expression, - STATE(1028), 1, + STATE(980), 1, sym_string, - STATE(1388), 1, + STATE(1345), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1699), 1, sym_expression, - STATE(2582), 1, - sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2588), 1, + sym__collection_elements, + STATE(2647), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(799), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1135), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(795), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1133), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, + STATE(2457), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(709), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(783), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1801), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39923,7 +39559,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1290), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39940,69 +39576,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14556] = 27, - ACTIONS(765), 1, + [14448] = 26, + ACTIONS(703), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(713), 1, sym_string_start, - ACTIONS(827), 1, - anon_sym_STAR, - ACTIONS(835), 1, - anon_sym_not, - ACTIONS(837), 1, - anon_sym_lambda, - ACTIONS(839), 1, - anon_sym_yield, - ACTIONS(1051), 1, + ACTIONS(1041), 1, + anon_sym_STAR_STAR, + ACTIONS(1045), 1, sym_identifier, - ACTIONS(1053), 1, + ACTIONS(1047), 1, anon_sym_LPAREN, + ACTIONS(1053), 1, + anon_sym_STAR, + ACTIONS(1059), 1, + anon_sym_not, ACTIONS(1061), 1, + anon_sym_lambda, + ACTIONS(1063), 1, anon_sym_await, - ACTIONS(1149), 1, + ACTIONS(1211), 1, anon_sym_RPAREN, - STATE(963), 1, + STATE(952), 1, sym_primary_expression, - STATE(1015), 1, + STATE(992), 1, sym_string, - STATE(1258), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1686), 1, + STATE(1914), 1, sym_expression, - STATE(2264), 1, - sym_yield, - STATE(2700), 1, - sym__collection_elements, - STATE(2771), 1, + STATE(2567), 1, + sym_parenthesized_list_splat, + STATE(2633), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(1059), 2, + ACTIONS(1057), 2, anon_sym_match, anon_sym_type, - STATE(2345), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(767), 3, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1057), 3, + ACTIONS(1055), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + STATE(2550), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40010,7 +39645,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40027,68 +39662,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14670] = 26, - ACTIONS(787), 1, + [14560] = 26, + ACTIONS(703), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(713), 1, sym_string_start, - ACTIONS(873), 1, + ACTIONS(1041), 1, + anon_sym_STAR_STAR, + ACTIONS(1045), 1, + sym_identifier, + ACTIONS(1047), 1, + anon_sym_LPAREN, + ACTIONS(1053), 1, anon_sym_STAR, - ACTIONS(883), 1, + ACTIONS(1059), 1, anon_sym_not, - ACTIONS(885), 1, + ACTIONS(1061), 1, anon_sym_lambda, - ACTIONS(887), 1, - anon_sym_yield, - ACTIONS(1159), 1, - sym_identifier, - ACTIONS(1161), 1, - anon_sym_LPAREN, - ACTIONS(1169), 1, + ACTIONS(1063), 1, anon_sym_await, - ACTIONS(1233), 1, - anon_sym_RBRACK, - STATE(965), 1, + ACTIONS(1213), 1, + anon_sym_RPAREN, + STATE(952), 1, sym_primary_expression, - STATE(996), 1, + STATE(992), 1, sym_string, - STATE(1360), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1712), 1, + STATE(1914), 1, sym_expression, - STATE(2611), 1, + STATE(2567), 1, + sym_parenthesized_list_splat, + STATE(2633), 1, sym__named_expression_lhs, - STATE(2792), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(1165), 2, + ACTIONS(1057), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1163), 3, + ACTIONS(1055), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2378), 3, + STATE(2550), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(777), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40096,7 +39731,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40113,68 +39748,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14782] = 26, - ACTIONS(719), 1, + [14672] = 26, + ACTIONS(703), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(713), 1, sym_string_start, - ACTIONS(1025), 1, + ACTIONS(1041), 1, + anon_sym_STAR_STAR, + ACTIONS(1045), 1, sym_identifier, - ACTIONS(1027), 1, + ACTIONS(1047), 1, anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(1053), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, + ACTIONS(1059), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(1061), 1, anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(1063), 1, anon_sym_await, - ACTIONS(1235), 1, + ACTIONS(1215), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(952), 1, sym_primary_expression, - STATE(1028), 1, + STATE(992), 1, sym_string, - STATE(1388), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1914), 1, sym_expression, - STATE(2582), 1, + STATE(2567), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2633), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1057), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1055), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, + STATE(2550), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(709), 4, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40182,7 +39817,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40199,68 +39834,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14894] = 26, - ACTIONS(719), 1, + [14784] = 26, + ACTIONS(703), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(713), 1, sym_string_start, - ACTIONS(1025), 1, + ACTIONS(1041), 1, + anon_sym_STAR_STAR, + ACTIONS(1045), 1, sym_identifier, - ACTIONS(1027), 1, + ACTIONS(1047), 1, anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(1053), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, + ACTIONS(1059), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(1061), 1, anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(1063), 1, anon_sym_await, - ACTIONS(1237), 1, + ACTIONS(1217), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(952), 1, sym_primary_expression, - STATE(1028), 1, + STATE(992), 1, sym_string, - STATE(1388), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1914), 1, sym_expression, - STATE(2582), 1, + STATE(2567), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2633), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1057), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1055), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, + STATE(2550), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(709), 4, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40268,7 +39903,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40285,68 +39920,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15006] = 26, - ACTIONS(719), 1, + [14896] = 27, + ACTIONS(749), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(753), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(759), 1, sym_string_start, - ACTIONS(1025), 1, - sym_identifier, - ACTIONS(1027), 1, - anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(833), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(845), 1, + anon_sym_yield, + ACTIONS(1029), 1, + anon_sym_LPAREN, + ACTIONS(1119), 1, + sym_identifier, + ACTIONS(1127), 1, anon_sym_await, - ACTIONS(1239), 1, + ACTIONS(1219), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(947), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1018), 1, sym_string, - STATE(1388), 1, + STATE(1281), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1668), 1, sym_expression, - STATE(2582), 1, - sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2324), 1, + sym_yield, + STATE(2580), 1, sym__named_expression_lhs, + STATE(2649), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(755), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1125), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + STATE(2354), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(751), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1123), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(709), 4, + ACTIONS(737), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1797), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40354,7 +39990,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1347), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40371,68 +40007,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15118] = 26, - ACTIONS(719), 1, + [15010] = 26, + ACTIONS(793), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(797), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(803), 1, sym_string_start, - ACTIONS(1025), 1, - sym_identifier, - ACTIONS(1027), 1, - anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(809), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, + ACTIONS(819), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(821), 1, anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(823), 1, + anon_sym_yield, + ACTIONS(1129), 1, + sym_identifier, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1139), 1, anon_sym_await, - ACTIONS(1241), 1, - anon_sym_RPAREN, - STATE(967), 1, + ACTIONS(1221), 1, + anon_sym_RBRACK, + STATE(951), 1, sym_primary_expression, - STATE(1028), 1, + STATE(980), 1, sym_string, - STATE(1388), 1, + STATE(1345), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1694), 1, sym_expression, - STATE(2582), 1, - sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2647), 1, sym__named_expression_lhs, + STATE(2732), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(799), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1135), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(795), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1133), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, + STATE(2457), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(709), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(783), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1801), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40440,7 +40076,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1290), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40457,69 +40093,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15230] = 27, - ACTIONS(765), 1, + [15122] = 26, + ACTIONS(703), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(713), 1, sym_string_start, - ACTIONS(827), 1, - anon_sym_STAR, - ACTIONS(835), 1, - anon_sym_not, - ACTIONS(837), 1, - anon_sym_lambda, - ACTIONS(839), 1, - anon_sym_yield, - ACTIONS(1051), 1, + ACTIONS(1041), 1, + anon_sym_STAR_STAR, + ACTIONS(1045), 1, sym_identifier, - ACTIONS(1053), 1, + ACTIONS(1047), 1, anon_sym_LPAREN, + ACTIONS(1053), 1, + anon_sym_STAR, + ACTIONS(1059), 1, + anon_sym_not, ACTIONS(1061), 1, + anon_sym_lambda, + ACTIONS(1063), 1, anon_sym_await, - ACTIONS(1243), 1, + ACTIONS(1223), 1, anon_sym_RPAREN, - STATE(963), 1, + STATE(952), 1, sym_primary_expression, - STATE(1015), 1, + STATE(992), 1, sym_string, - STATE(1258), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1681), 1, + STATE(1914), 1, sym_expression, - STATE(2353), 1, - sym_yield, - STATE(2647), 1, - sym__collection_elements, - STATE(2771), 1, + STATE(2567), 1, + sym_parenthesized_list_splat, + STATE(2633), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(1059), 2, + ACTIONS(1057), 2, anon_sym_match, anon_sym_type, - STATE(2345), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(767), 3, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1057), 3, + ACTIONS(1055), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + STATE(2550), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40527,7 +40162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40544,68 +40179,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15344] = 26, - ACTIONS(787), 1, + [15234] = 26, + ACTIONS(703), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(713), 1, sym_string_start, - ACTIONS(873), 1, + ACTIONS(1041), 1, + anon_sym_STAR_STAR, + ACTIONS(1045), 1, + sym_identifier, + ACTIONS(1047), 1, + anon_sym_LPAREN, + ACTIONS(1053), 1, anon_sym_STAR, - ACTIONS(883), 1, + ACTIONS(1059), 1, anon_sym_not, - ACTIONS(885), 1, + ACTIONS(1061), 1, anon_sym_lambda, - ACTIONS(887), 1, - anon_sym_yield, - ACTIONS(1159), 1, - sym_identifier, - ACTIONS(1161), 1, - anon_sym_LPAREN, - ACTIONS(1169), 1, + ACTIONS(1063), 1, anon_sym_await, - ACTIONS(1245), 1, - anon_sym_RBRACK, - STATE(965), 1, + ACTIONS(1225), 1, + anon_sym_RPAREN, + STATE(952), 1, sym_primary_expression, - STATE(996), 1, + STATE(992), 1, sym_string, - STATE(1360), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1713), 1, + STATE(1914), 1, sym_expression, - STATE(2611), 1, + STATE(2567), 1, + sym_parenthesized_list_splat, + STATE(2633), 1, sym__named_expression_lhs, - STATE(2743), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(1165), 2, + ACTIONS(1057), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1163), 3, + ACTIONS(1055), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2378), 3, + STATE(2550), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(777), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40613,7 +40248,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40630,70 +40265,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15456] = 28, - ACTIONS(765), 1, + [15346] = 26, + ACTIONS(703), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(713), 1, sym_string_start, - ACTIONS(827), 1, - anon_sym_STAR, - ACTIONS(835), 1, - anon_sym_not, - ACTIONS(837), 1, - anon_sym_lambda, - ACTIONS(839), 1, - anon_sym_yield, - ACTIONS(1051), 1, + ACTIONS(1041), 1, + anon_sym_STAR_STAR, + ACTIONS(1045), 1, sym_identifier, - ACTIONS(1053), 1, + ACTIONS(1047), 1, anon_sym_LPAREN, + ACTIONS(1053), 1, + anon_sym_STAR, + ACTIONS(1059), 1, + anon_sym_not, ACTIONS(1061), 1, + anon_sym_lambda, + ACTIONS(1063), 1, anon_sym_await, - ACTIONS(1183), 1, + ACTIONS(1227), 1, anon_sym_RPAREN, - STATE(963), 1, + STATE(952), 1, sym_primary_expression, - STATE(1015), 1, + STATE(992), 1, sym_string, - STATE(1258), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1688), 1, + STATE(1914), 1, sym_expression, - STATE(2242), 1, - sym_yield, - STATE(2434), 1, - sym_list_splat, - STATE(2435), 1, + STATE(2567), 1, sym_parenthesized_list_splat, - STATE(2736), 1, - sym__collection_elements, - STATE(2771), 1, + STATE(2633), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(1059), 2, + ACTIONS(1057), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1057), 3, + ACTIONS(1055), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + STATE(2550), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40701,7 +40334,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40718,68 +40351,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15572] = 26, - ACTIONS(719), 1, + [15458] = 26, + ACTIONS(703), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(713), 1, sym_string_start, - ACTIONS(1025), 1, + ACTIONS(1041), 1, + anon_sym_STAR_STAR, + ACTIONS(1045), 1, sym_identifier, - ACTIONS(1027), 1, + ACTIONS(1047), 1, anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(1053), 1, anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, + ACTIONS(1059), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(1061), 1, anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(1063), 1, anon_sym_await, - ACTIONS(1247), 1, + ACTIONS(1229), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(952), 1, sym_primary_expression, - STATE(1028), 1, + STATE(992), 1, sym_string, - STATE(1388), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1914), 1, sym_expression, - STATE(2582), 1, + STATE(2567), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2633), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(1057), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(1055), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, + STATE(2550), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(709), 4, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40787,7 +40420,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40804,70 +40437,157 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15684] = 28, - ACTIONS(765), 1, + [15570] = 27, + ACTIONS(749), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(753), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(759), 1, sym_string_start, - ACTIONS(827), 1, + ACTIONS(833), 1, anon_sym_STAR, - ACTIONS(835), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(839), 1, + ACTIONS(845), 1, anon_sym_yield, - ACTIONS(1051), 1, - sym_identifier, - ACTIONS(1053), 1, + ACTIONS(1029), 1, anon_sym_LPAREN, - ACTIONS(1061), 1, + ACTIONS(1119), 1, + sym_identifier, + ACTIONS(1127), 1, anon_sym_await, - ACTIONS(1197), 1, + ACTIONS(1231), 1, anon_sym_RPAREN, - STATE(963), 1, + STATE(947), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1018), 1, sym_string, - STATE(1258), 1, + STATE(1281), 1, sym_list_splat_pattern, - STATE(1701), 1, + STATE(1695), 1, sym_expression, - STATE(2377), 1, + STATE(2308), 1, sym_yield, - STATE(2379), 1, + STATE(2580), 1, + sym__named_expression_lhs, + STATE(2604), 1, + sym__collection_elements, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(755), 2, + sym_ellipsis, + sym_float, + ACTIONS(1125), 2, + anon_sym_match, + anon_sym_type, + STATE(2354), 2, sym_list_splat, - STATE(2381), 1, sym_parenthesized_list_splat, - STATE(2601), 1, - sym__collection_elements, - STATE(2771), 1, + ACTIONS(751), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1123), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(737), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1797), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1347), 16, + 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_await, + [15684] = 28, + ACTIONS(749), 1, + anon_sym_LBRACK, + ACTIONS(753), 1, + anon_sym_LBRACE, + ACTIONS(759), 1, + sym_string_start, + ACTIONS(833), 1, + anon_sym_STAR, + ACTIONS(841), 1, + anon_sym_not, + ACTIONS(843), 1, + anon_sym_lambda, + ACTIONS(845), 1, + anon_sym_yield, + ACTIONS(1029), 1, + anon_sym_LPAREN, + ACTIONS(1119), 1, + sym_identifier, + ACTIONS(1127), 1, + anon_sym_await, + ACTIONS(1219), 1, + anon_sym_RPAREN, + STATE(947), 1, + sym_primary_expression, + STATE(1018), 1, + sym_string, + STATE(1281), 1, + sym_list_splat_pattern, + STATE(1668), 1, + sym_expression, + STATE(2231), 1, + sym_list_splat, + STATE(2232), 1, + sym_parenthesized_list_splat, + STATE(2324), 1, + sym_yield, + STATE(2580), 1, sym__named_expression_lhs, + STATE(2649), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(755), 2, sym_ellipsis, sym_float, - ACTIONS(1059), 2, + ACTIONS(1125), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(751), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1057), 3, + ACTIONS(1123), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + ACTIONS(737), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1797), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40875,7 +40595,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1347), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40893,65 +40613,65 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [15800] = 25, - ACTIONS(755), 1, + ACTIONS(739), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(749), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(753), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(759), 1, sym_string_start, - ACTIONS(835), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(1051), 1, + ACTIONS(1119), 1, sym_identifier, - ACTIONS(1061), 1, + ACTIONS(1127), 1, anon_sym_await, - ACTIONS(1249), 1, + ACTIONS(1233), 1, anon_sym_RPAREN, - ACTIONS(1251), 1, + ACTIONS(1235), 1, anon_sym_STAR, - ACTIONS(1255), 1, + ACTIONS(1239), 1, anon_sym_lambda, - STATE(963), 1, + STATE(947), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1018), 1, sym_string, - STATE(1258), 1, + STATE(1281), 1, sym_list_splat_pattern, - STATE(1783), 1, + STATE(1810), 1, sym_expression, - STATE(2771), 1, + STATE(2580), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(755), 2, sym_ellipsis, sym_float, - ACTIONS(1057), 2, + ACTIONS(1123), 2, anon_sym_print, anon_sym_exec, - ACTIONS(1059), 2, + ACTIONS(1125), 2, anon_sym_match, anon_sym_type, - STATE(2105), 2, + STATE(2008), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(767), 3, + ACTIONS(751), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1253), 3, + ACTIONS(1237), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(753), 4, + ACTIONS(737), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1797), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40959,7 +40679,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1347), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40977,65 +40697,65 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [15909] = 25, - ACTIONS(809), 1, + ACTIONS(681), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(685), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(691), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(869), 1, anon_sym_yield, - ACTIONS(987), 1, - anon_sym_not, ACTIONS(989), 1, - anon_sym_lambda, + anon_sym_not, ACTIONS(991), 1, - anon_sym_await, - ACTIONS(1257), 1, + anon_sym_lambda, + ACTIONS(1077), 1, sym_identifier, - ACTIONS(1259), 1, + ACTIONS(1087), 1, + anon_sym_await, + ACTIONS(1241), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(1243), 1, anon_sym_STAR, - ACTIONS(1263), 1, - anon_sym_RBRACK, - STATE(976), 1, + ACTIONS(1245), 1, + anon_sym_RBRACE, + STATE(932), 1, sym_primary_expression, - STATE(1107), 1, + STATE(963), 1, sym_string, - STATE(1437), 1, + STATE(1223), 1, sym_list_splat_pattern, - STATE(1944), 1, + STATE(1971), 1, sym_expression, - STATE(2777), 1, + STATE(2688), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(687), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(1085), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(683), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(1083), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2560), 3, + STATE(2548), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(799), 4, + ACTIONS(671), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1744), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41043,7 +40763,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1198), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41060,72 +40780,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16018] = 23, - ACTIONS(686), 1, - anon_sym_LPAREN, - ACTIONS(694), 1, - anon_sym_LBRACK, - ACTIONS(698), 1, + [16018] = 19, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(704), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(652), 1, + anon_sym_LPAREN, + ACTIONS(656), 1, anon_sym_STAR, - ACTIONS(1015), 1, - anon_sym_not, - ACTIONS(1017), 1, - anon_sym_lambda, - ACTIONS(1095), 1, - sym_identifier, - ACTIONS(1105), 1, + ACTIONS(662), 1, + anon_sym_LBRACK, + ACTIONS(666), 1, anon_sym_await, - STATE(909), 1, - sym_primary_expression, STATE(975), 1, sym_string, - STATE(1214), 1, + STATE(1090), 1, + sym_primary_expression, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1762), 1, - sym_expression, - STATE(2773), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(700), 2, + ACTIONS(271), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(1103), 2, + ACTIONS(660), 2, anon_sym_match, anon_sym_type, - ACTIONS(696), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1101), 3, + ACTIONS(658), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(684), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1265), 5, + ACTIONS(311), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - STATE(1767), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1172), 16, + ACTIONS(315), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 9, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41142,66 +40858,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16123] = 25, - ACTIONS(779), 1, + [16115] = 25, + ACTIONS(739), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(749), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(753), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(759), 1, sym_string_start, - ACTIONS(883), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(1159), 1, + ACTIONS(1119), 1, sym_identifier, - ACTIONS(1169), 1, + ACTIONS(1127), 1, anon_sym_await, - ACTIONS(1267), 1, + ACTIONS(1235), 1, anon_sym_STAR, - ACTIONS(1271), 1, - anon_sym_RBRACK, - ACTIONS(1273), 1, + ACTIONS(1239), 1, anon_sym_lambda, - STATE(965), 1, + ACTIONS(1247), 1, + anon_sym_RPAREN, + STATE(947), 1, sym_primary_expression, - STATE(996), 1, + STATE(1018), 1, sym_string, - STATE(1360), 1, + STATE(1281), 1, sym_list_splat_pattern, - STATE(1802), 1, + STATE(1810), 1, sym_expression, - STATE(2611), 1, + STATE(2580), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(755), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1123), 2, anon_sym_print, anon_sym_exec, - ACTIONS(1165), 2, + ACTIONS(1125), 2, anon_sym_match, anon_sym_type, - STATE(1998), 2, + STATE(2008), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(789), 3, + ACTIONS(751), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1269), 3, + ACTIONS(1249), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(777), 4, + ACTIONS(737), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1797), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41209,7 +40925,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1347), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41226,66 +40942,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16232] = 25, - ACTIONS(694), 1, + [16224] = 25, + ACTIONS(717), 1, + anon_sym_LPAREN, + ACTIONS(725), 1, anon_sym_LBRACK, - ACTIONS(698), 1, + ACTIONS(729), 1, anon_sym_LBRACE, - ACTIONS(704), 1, + ACTIONS(735), 1, sym_string_start, - ACTIONS(863), 1, - anon_sym_yield, - ACTIONS(1015), 1, - anon_sym_not, - ACTIONS(1017), 1, - anon_sym_lambda, - ACTIONS(1095), 1, + ACTIONS(849), 1, sym_identifier, - ACTIONS(1105), 1, + ACTIONS(865), 1, + anon_sym_not, + ACTIONS(871), 1, anon_sym_await, - ACTIONS(1263), 1, - anon_sym_RBRACE, - ACTIONS(1275), 1, - anon_sym_LPAREN, - ACTIONS(1277), 1, + ACTIONS(1251), 1, anon_sym_STAR, - STATE(909), 1, + ACTIONS(1255), 1, + anon_sym_RBRACE, + ACTIONS(1257), 1, + anon_sym_lambda, + STATE(946), 1, sym_primary_expression, - STATE(975), 1, + STATE(957), 1, sym_string, - STATE(1214), 1, + STATE(1164), 1, sym_list_splat_pattern, - STATE(1902), 1, + STATE(1814), 1, sym_expression, - STATE(2773), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(700), 2, + ACTIONS(731), 2, sym_ellipsis, sym_float, - ACTIONS(1103), 2, + ACTIONS(857), 2, + anon_sym_print, + anon_sym_exec, + ACTIONS(859), 2, anon_sym_match, anon_sym_type, - ACTIONS(696), 3, + STATE(2028), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(727), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1101), 3, - anon_sym_print, + ACTIONS(1253), 3, + anon_sym_if, anon_sym_async, - anon_sym_exec, - STATE(2509), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(684), 4, + anon_sym_for, + ACTIONS(715), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41293,7 +41009,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1172), 16, + STATE(1149), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41310,66 +41026,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16341] = 25, - ACTIONS(719), 1, + [16333] = 25, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(1025), 1, - sym_identifier, - ACTIONS(1027), 1, - anon_sym_LPAREN, - ACTIONS(1033), 1, - anon_sym_STAR, - ACTIONS(1039), 1, - anon_sym_STAR_STAR, - ACTIONS(1041), 1, + ACTIONS(823), 1, + anon_sym_yield, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(1045), 1, + ACTIONS(975), 1, anon_sym_await, - STATE(967), 1, + ACTIONS(1259), 1, + sym_identifier, + ACTIONS(1261), 1, + anon_sym_LPAREN, + ACTIONS(1263), 1, + anon_sym_STAR, + ACTIONS(1265), 1, + anon_sym_RBRACK, + STATE(960), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1038), 1, sym_string, - STATE(1388), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1873), 1, sym_expression, - STATE(2582), 1, - sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(1037), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1035), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2569), 3, + STATE(2562), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(709), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41377,7 +41093,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41394,66 +41110,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16450] = 25, - ACTIONS(779), 1, + [16442] = 23, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(681), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(685), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(691), 1, sym_string_start, - ACTIONS(883), 1, + ACTIONS(981), 1, + anon_sym_STAR, + ACTIONS(989), 1, anon_sym_not, - ACTIONS(1159), 1, + ACTIONS(991), 1, + anon_sym_lambda, + ACTIONS(1077), 1, sym_identifier, - ACTIONS(1169), 1, + ACTIONS(1087), 1, anon_sym_await, - ACTIONS(1267), 1, - anon_sym_STAR, - ACTIONS(1273), 1, - anon_sym_lambda, - ACTIONS(1281), 1, - anon_sym_RBRACK, - STATE(965), 1, + STATE(932), 1, sym_primary_expression, - STATE(996), 1, + STATE(963), 1, sym_string, - STATE(1360), 1, + STATE(1223), 1, sym_list_splat_pattern, - STATE(1802), 1, + STATE(1753), 1, sym_expression, - STATE(2611), 1, + STATE(2688), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(687), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, - anon_sym_print, - anon_sym_exec, - ACTIONS(1165), 2, + ACTIONS(1085), 2, anon_sym_match, anon_sym_type, - STATE(1998), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(789), 3, + ACTIONS(683), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1279), 3, - anon_sym_if, + ACTIONS(1083), 3, + anon_sym_print, anon_sym_async, - anon_sym_for, - ACTIONS(777), 4, + anon_sym_exec, + ACTIONS(671), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + ACTIONS(1267), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + STATE(1744), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41461,7 +41175,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1198), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41478,66 +41192,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16559] = 25, - ACTIONS(755), 1, + [16547] = 25, + ACTIONS(717), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(725), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(729), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(735), 1, sym_string_start, - ACTIONS(835), 1, - anon_sym_not, - ACTIONS(1051), 1, + ACTIONS(849), 1, sym_identifier, - ACTIONS(1061), 1, + ACTIONS(865), 1, + anon_sym_not, + ACTIONS(871), 1, anon_sym_await, + ACTIONS(1247), 1, + anon_sym_RBRACE, ACTIONS(1251), 1, anon_sym_STAR, - ACTIONS(1255), 1, + ACTIONS(1257), 1, anon_sym_lambda, - ACTIONS(1281), 1, - anon_sym_RPAREN, - STATE(963), 1, + STATE(946), 1, sym_primary_expression, - STATE(1015), 1, + STATE(957), 1, sym_string, - STATE(1258), 1, + STATE(1164), 1, sym_list_splat_pattern, - STATE(1783), 1, + STATE(1814), 1, sym_expression, - STATE(2771), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(731), 2, sym_ellipsis, sym_float, - ACTIONS(1057), 2, + ACTIONS(857), 2, anon_sym_print, anon_sym_exec, - ACTIONS(1059), 2, + ACTIONS(859), 2, anon_sym_match, anon_sym_type, - STATE(2105), 2, + STATE(2028), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(767), 3, + ACTIONS(727), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1279), 3, + ACTIONS(1249), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(753), 4, + ACTIONS(715), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41545,7 +41259,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1149), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41562,66 +41276,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16668] = 25, - ACTIONS(755), 1, - anon_sym_LPAREN, - ACTIONS(765), 1, + [16656] = 25, + ACTIONS(703), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(713), 1, sym_string_start, - ACTIONS(835), 1, + ACTIONS(845), 1, + anon_sym_yield, + ACTIONS(1047), 1, + anon_sym_LPAREN, + ACTIONS(1059), 1, anon_sym_not, - ACTIONS(1051), 1, - sym_identifier, ACTIONS(1061), 1, - anon_sym_await, - ACTIONS(1251), 1, - anon_sym_STAR, - ACTIONS(1255), 1, anon_sym_lambda, - ACTIONS(1283), 1, + ACTIONS(1075), 1, + anon_sym_await, + ACTIONS(1245), 1, anon_sym_RPAREN, - STATE(963), 1, + ACTIONS(1269), 1, + sym_identifier, + ACTIONS(1271), 1, + anon_sym_STAR, + STATE(952), 1, sym_primary_expression, - STATE(1015), 1, + STATE(992), 1, sym_string, - STATE(1258), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1783), 1, + STATE(1938), 1, sym_expression, - STATE(2771), 1, + STATE(2633), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(1057), 2, - anon_sym_print, - anon_sym_exec, - ACTIONS(1059), 2, + ACTIONS(1071), 2, anon_sym_match, anon_sym_type, - STATE(2105), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(767), 3, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1285), 3, - anon_sym_if, + ACTIONS(1069), 3, + anon_sym_print, anon_sym_async, - anon_sym_for, - ACTIONS(753), 4, + anon_sym_exec, + STATE(2502), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41629,7 +41343,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41646,66 +41360,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16777] = 25, - ACTIONS(779), 1, + [16765] = 25, + ACTIONS(717), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(725), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(729), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(735), 1, sym_string_start, - ACTIONS(883), 1, - anon_sym_not, - ACTIONS(1159), 1, + ACTIONS(849), 1, sym_identifier, - ACTIONS(1169), 1, + ACTIONS(865), 1, + anon_sym_not, + ACTIONS(871), 1, anon_sym_await, - ACTIONS(1249), 1, - anon_sym_RBRACK, - ACTIONS(1267), 1, + ACTIONS(1251), 1, anon_sym_STAR, - ACTIONS(1273), 1, + ACTIONS(1257), 1, anon_sym_lambda, - STATE(965), 1, + ACTIONS(1275), 1, + anon_sym_RBRACE, + STATE(946), 1, sym_primary_expression, - STATE(996), 1, + STATE(957), 1, sym_string, - STATE(1360), 1, + STATE(1164), 1, sym_list_splat_pattern, - STATE(1802), 1, + STATE(1814), 1, sym_expression, - STATE(2611), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(731), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(857), 2, anon_sym_print, anon_sym_exec, - ACTIONS(1165), 2, + ACTIONS(859), 2, anon_sym_match, anon_sym_type, - STATE(1998), 2, + STATE(2028), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(789), 3, + ACTIONS(727), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1253), 3, + ACTIONS(1273), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(777), 4, + ACTIONS(715), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41713,7 +41427,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1149), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41730,66 +41444,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16886] = 25, - ACTIONS(755), 1, + [16874] = 25, + ACTIONS(717), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(725), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(729), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(735), 1, sym_string_start, - ACTIONS(835), 1, - anon_sym_not, - ACTIONS(1051), 1, + ACTIONS(849), 1, sym_identifier, - ACTIONS(1061), 1, + ACTIONS(865), 1, + anon_sym_not, + ACTIONS(871), 1, anon_sym_await, + ACTIONS(1233), 1, + anon_sym_RBRACE, ACTIONS(1251), 1, anon_sym_STAR, - ACTIONS(1255), 1, + ACTIONS(1257), 1, anon_sym_lambda, - ACTIONS(1271), 1, - anon_sym_RPAREN, - STATE(963), 1, + STATE(946), 1, sym_primary_expression, - STATE(1015), 1, + STATE(957), 1, sym_string, - STATE(1258), 1, + STATE(1164), 1, sym_list_splat_pattern, - STATE(1783), 1, + STATE(1814), 1, sym_expression, - STATE(2771), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(731), 2, sym_ellipsis, sym_float, - ACTIONS(1057), 2, + ACTIONS(857), 2, anon_sym_print, anon_sym_exec, - ACTIONS(1059), 2, + ACTIONS(859), 2, anon_sym_match, anon_sym_type, - STATE(2105), 2, + STATE(2028), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(767), 3, + ACTIONS(727), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1269), 3, + ACTIONS(1237), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(753), 4, + ACTIONS(715), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41797,7 +41511,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1149), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41814,66 +41528,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16995] = 25, - ACTIONS(733), 1, + [16983] = 25, + ACTIONS(739), 1, anon_sym_LPAREN, - ACTIONS(741), 1, + ACTIONS(749), 1, anon_sym_LBRACK, - ACTIONS(745), 1, + ACTIONS(753), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(759), 1, sym_string_start, - ACTIONS(843), 1, - sym_identifier, - ACTIONS(859), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(1119), 1, + sym_identifier, + ACTIONS(1127), 1, anon_sym_await, - ACTIONS(1271), 1, - anon_sym_RBRACE, - ACTIONS(1287), 1, + ACTIONS(1235), 1, anon_sym_STAR, - ACTIONS(1289), 1, + ACTIONS(1239), 1, anon_sym_lambda, - STATE(912), 1, + ACTIONS(1275), 1, + anon_sym_RPAREN, + STATE(947), 1, sym_primary_expression, - STATE(971), 1, + STATE(1018), 1, sym_string, - STATE(1203), 1, + STATE(1281), 1, sym_list_splat_pattern, - STATE(1824), 1, + STATE(1810), 1, sym_expression, - STATE(2683), 1, + STATE(2580), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(747), 2, + ACTIONS(755), 2, sym_ellipsis, sym_float, - ACTIONS(851), 2, + ACTIONS(1123), 2, anon_sym_print, anon_sym_exec, - ACTIONS(853), 2, + ACTIONS(1125), 2, anon_sym_match, anon_sym_type, - STATE(2093), 2, + STATE(2008), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(743), 3, + ACTIONS(751), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1269), 3, + ACTIONS(1273), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(731), 4, + ACTIONS(737), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1771), 7, + STATE(1797), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41881,7 +41595,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1138), 16, + STATE(1347), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41898,66 +41612,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17104] = 25, - ACTIONS(733), 1, - anon_sym_LPAREN, - ACTIONS(741), 1, + [17092] = 25, + ACTIONS(703), 1, anon_sym_LBRACK, - ACTIONS(745), 1, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(713), 1, sym_string_start, - ACTIONS(843), 1, + ACTIONS(1041), 1, + anon_sym_STAR_STAR, + ACTIONS(1045), 1, sym_identifier, - ACTIONS(859), 1, - anon_sym_not, - ACTIONS(865), 1, - anon_sym_await, - ACTIONS(1281), 1, - anon_sym_RBRACE, - ACTIONS(1287), 1, + ACTIONS(1047), 1, + anon_sym_LPAREN, + ACTIONS(1053), 1, anon_sym_STAR, - ACTIONS(1289), 1, + ACTIONS(1059), 1, + anon_sym_not, + ACTIONS(1061), 1, anon_sym_lambda, - STATE(912), 1, + ACTIONS(1063), 1, + anon_sym_await, + STATE(952), 1, sym_primary_expression, - STATE(971), 1, + STATE(992), 1, sym_string, - STATE(1203), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1824), 1, + STATE(1914), 1, sym_expression, - STATE(2683), 1, + STATE(2567), 1, + sym_parenthesized_list_splat, + STATE(2633), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(747), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(851), 2, - anon_sym_print, - anon_sym_exec, - ACTIONS(853), 2, + ACTIONS(1057), 2, anon_sym_match, anon_sym_type, - STATE(2093), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(743), 3, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1279), 3, - anon_sym_if, + ACTIONS(1055), 3, + anon_sym_print, anon_sym_async, - anon_sym_for, - ACTIONS(731), 4, + anon_sym_exec, + STATE(2550), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1771), 7, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41965,7 +41679,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1138), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41982,66 +41696,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17213] = 25, - ACTIONS(733), 1, - anon_sym_LPAREN, - ACTIONS(741), 1, + [17201] = 25, + ACTIONS(703), 1, anon_sym_LBRACK, - ACTIONS(745), 1, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(713), 1, sym_string_start, - ACTIONS(843), 1, - sym_identifier, - ACTIONS(859), 1, + ACTIONS(845), 1, + anon_sym_yield, + ACTIONS(1047), 1, + anon_sym_LPAREN, + ACTIONS(1059), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(1061), 1, + anon_sym_lambda, + ACTIONS(1075), 1, anon_sym_await, - ACTIONS(1249), 1, - anon_sym_RBRACE, - ACTIONS(1287), 1, + ACTIONS(1265), 1, + anon_sym_RPAREN, + ACTIONS(1269), 1, + sym_identifier, + ACTIONS(1271), 1, anon_sym_STAR, - ACTIONS(1289), 1, - anon_sym_lambda, - STATE(912), 1, + STATE(952), 1, sym_primary_expression, - STATE(971), 1, + STATE(992), 1, sym_string, - STATE(1203), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1824), 1, + STATE(1938), 1, sym_expression, - STATE(2683), 1, + STATE(2633), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(747), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(851), 2, - anon_sym_print, - anon_sym_exec, - ACTIONS(853), 2, + ACTIONS(1071), 2, anon_sym_match, anon_sym_type, - STATE(2093), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(743), 3, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1253), 3, - anon_sym_if, + ACTIONS(1069), 3, + anon_sym_print, anon_sym_async, - anon_sym_for, - ACTIONS(731), 4, + anon_sym_exec, + STATE(2502), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1771), 7, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42049,7 +41763,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1138), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42066,66 +41780,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17322] = 25, - ACTIONS(779), 1, - anon_sym_LPAREN, - ACTIONS(787), 1, + [17310] = 25, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(883), 1, + ACTIONS(823), 1, + anon_sym_yield, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(1159), 1, - sym_identifier, - ACTIONS(1169), 1, - anon_sym_await, - ACTIONS(1267), 1, - anon_sym_STAR, - ACTIONS(1273), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(1283), 1, + ACTIONS(975), 1, + anon_sym_await, + ACTIONS(1245), 1, anon_sym_RBRACK, - STATE(965), 1, + ACTIONS(1259), 1, + sym_identifier, + ACTIONS(1261), 1, + anon_sym_LPAREN, + ACTIONS(1263), 1, + anon_sym_STAR, + STATE(960), 1, sym_primary_expression, - STATE(996), 1, + STATE(1038), 1, sym_string, - STATE(1360), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1802), 1, + STATE(1873), 1, sym_expression, - STATE(2611), 1, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, - anon_sym_print, - anon_sym_exec, - ACTIONS(1165), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - STATE(1998), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(789), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1285), 3, - anon_sym_if, + ACTIONS(963), 3, + anon_sym_print, anon_sym_async, - anon_sym_for, - ACTIONS(777), 4, + anon_sym_exec, + STATE(2562), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42133,7 +41847,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42150,66 +41864,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17431] = 25, - ACTIONS(694), 1, + [17419] = 23, + ACTIONS(673), 1, + anon_sym_LPAREN, + ACTIONS(681), 1, anon_sym_LBRACK, - ACTIONS(698), 1, + ACTIONS(685), 1, anon_sym_LBRACE, - ACTIONS(704), 1, + ACTIONS(691), 1, sym_string_start, - ACTIONS(863), 1, - anon_sym_yield, - ACTIONS(1015), 1, + ACTIONS(981), 1, + anon_sym_STAR, + ACTIONS(989), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(991), 1, anon_sym_lambda, - ACTIONS(1095), 1, + ACTIONS(1077), 1, sym_identifier, - ACTIONS(1105), 1, + ACTIONS(1087), 1, anon_sym_await, - ACTIONS(1275), 1, - anon_sym_LPAREN, - ACTIONS(1277), 1, - anon_sym_STAR, - ACTIONS(1291), 1, - anon_sym_RBRACE, - STATE(909), 1, + STATE(932), 1, sym_primary_expression, - STATE(975), 1, + STATE(963), 1, sym_string, - STATE(1214), 1, + STATE(1223), 1, sym_list_splat_pattern, - STATE(1902), 1, + STATE(1753), 1, sym_expression, - STATE(2773), 1, + STATE(2688), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(700), 2, + ACTIONS(687), 2, sym_ellipsis, sym_float, - ACTIONS(1103), 2, + ACTIONS(1085), 2, anon_sym_match, anon_sym_type, - ACTIONS(696), 3, + ACTIONS(683), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1101), 3, + ACTIONS(1083), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2509), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(684), 4, + ACTIONS(671), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + ACTIONS(1277), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + STATE(1744), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42217,7 +41929,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1172), 16, + STATE(1198), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42234,64 +41946,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17540] = 23, - ACTIONS(686), 1, - anon_sym_LPAREN, - ACTIONS(694), 1, + [17524] = 25, + ACTIONS(681), 1, anon_sym_LBRACK, - ACTIONS(698), 1, + ACTIONS(685), 1, anon_sym_LBRACE, - ACTIONS(704), 1, + ACTIONS(691), 1, sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(869), 1, + anon_sym_yield, + ACTIONS(989), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(991), 1, anon_sym_lambda, - ACTIONS(1095), 1, + ACTIONS(1077), 1, sym_identifier, - ACTIONS(1105), 1, + ACTIONS(1087), 1, anon_sym_await, - STATE(909), 1, + ACTIONS(1241), 1, + anon_sym_LPAREN, + ACTIONS(1243), 1, + anon_sym_STAR, + ACTIONS(1265), 1, + anon_sym_RBRACE, + STATE(932), 1, sym_primary_expression, - STATE(975), 1, + STATE(963), 1, sym_string, - STATE(1214), 1, + STATE(1223), 1, sym_list_splat_pattern, - STATE(1762), 1, + STATE(1971), 1, sym_expression, - STATE(2773), 1, + STATE(2688), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(700), 2, + ACTIONS(687), 2, sym_ellipsis, sym_float, - ACTIONS(1103), 2, + ACTIONS(1085), 2, anon_sym_match, anon_sym_type, - ACTIONS(696), 3, + ACTIONS(683), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1101), 3, + ACTIONS(1083), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(684), 4, + STATE(2548), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(671), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1293), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - STATE(1767), 7, + STATE(1744), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42299,7 +42013,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1172), 16, + STATE(1198), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42316,66 +42030,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17645] = 25, - ACTIONS(719), 1, + [17633] = 25, + ACTIONS(785), 1, + anon_sym_LPAREN, + ACTIONS(793), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(797), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(803), 1, sym_string_start, - ACTIONS(839), 1, - anon_sym_yield, - ACTIONS(1027), 1, - anon_sym_LPAREN, - ACTIONS(1041), 1, + ACTIONS(819), 1, anon_sym_not, - ACTIONS(1043), 1, - anon_sym_lambda, - ACTIONS(1079), 1, - anon_sym_await, - ACTIONS(1263), 1, - anon_sym_RPAREN, - ACTIONS(1295), 1, + ACTIONS(1129), 1, sym_identifier, - ACTIONS(1297), 1, + ACTIONS(1139), 1, + anon_sym_await, + ACTIONS(1247), 1, + anon_sym_RBRACK, + ACTIONS(1279), 1, anon_sym_STAR, - STATE(967), 1, + ACTIONS(1281), 1, + anon_sym_lambda, + STATE(951), 1, sym_primary_expression, - STATE(1028), 1, + STATE(980), 1, sym_string, - STATE(1388), 1, + STATE(1345), 1, sym_list_splat_pattern, - STATE(1936), 1, + STATE(1795), 1, sym_expression, - STATE(2638), 1, + STATE(2647), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(799), 2, sym_ellipsis, sym_float, - ACTIONS(1075), 2, + ACTIONS(1133), 2, + anon_sym_print, + anon_sym_exec, + ACTIONS(1135), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + STATE(2073), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(795), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1073), 3, - anon_sym_print, + ACTIONS(1249), 3, + anon_sym_if, anon_sym_async, - anon_sym_exec, - STATE(2558), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(709), 4, + anon_sym_for, + ACTIONS(783), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1801), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42383,7 +42097,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1290), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42400,68 +42114,74 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17754] = 19, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(668), 1, + [17742] = 25, + ACTIONS(739), 1, anon_sym_LPAREN, - ACTIONS(672), 1, - anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(749), 1, anon_sym_LBRACK, - ACTIONS(682), 1, + ACTIONS(753), 1, + anon_sym_LBRACE, + ACTIONS(759), 1, + sym_string_start, + ACTIONS(841), 1, + anon_sym_not, + ACTIONS(1119), 1, + sym_identifier, + ACTIONS(1127), 1, anon_sym_await, - STATE(1010), 1, - sym_string, - STATE(1051), 1, + ACTIONS(1235), 1, + anon_sym_STAR, + ACTIONS(1239), 1, + anon_sym_lambda, + ACTIONS(1255), 1, + anon_sym_RPAREN, + STATE(947), 1, sym_primary_expression, - STATE(1342), 1, + STATE(1018), 1, + sym_string, + STATE(1281), 1, sym_list_splat_pattern, + STATE(1810), 1, + sym_expression, + STATE(2580), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(321), 2, + ACTIONS(755), 2, sym_ellipsis, sym_float, - ACTIONS(676), 2, + ACTIONS(1123), 2, + anon_sym_print, + anon_sym_exec, + ACTIONS(1125), 2, anon_sym_match, anon_sym_type, - ACTIONS(315), 3, + STATE(2008), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(751), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(674), 3, - anon_sym_print, + ACTIONS(1253), 3, + anon_sym_if, anon_sym_async, - anon_sym_exec, - ACTIONS(319), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(323), 5, + anon_sym_for, + ACTIONS(737), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(277), 9, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PIPE, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1268), 16, + STATE(1797), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1347), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42479,65 +42199,65 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [17851] = 25, - ACTIONS(733), 1, + ACTIONS(785), 1, anon_sym_LPAREN, - ACTIONS(741), 1, + ACTIONS(793), 1, anon_sym_LBRACK, - ACTIONS(745), 1, + ACTIONS(797), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(803), 1, sym_string_start, - ACTIONS(843), 1, - sym_identifier, - ACTIONS(859), 1, + ACTIONS(819), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(1129), 1, + sym_identifier, + ACTIONS(1139), 1, anon_sym_await, - ACTIONS(1283), 1, - anon_sym_RBRACE, - ACTIONS(1287), 1, + ACTIONS(1275), 1, + anon_sym_RBRACK, + ACTIONS(1279), 1, anon_sym_STAR, - ACTIONS(1289), 1, + ACTIONS(1281), 1, anon_sym_lambda, - STATE(912), 1, + STATE(951), 1, sym_primary_expression, - STATE(971), 1, + STATE(980), 1, sym_string, - STATE(1203), 1, + STATE(1345), 1, sym_list_splat_pattern, - STATE(1824), 1, + STATE(1795), 1, sym_expression, - STATE(2683), 1, + STATE(2647), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(747), 2, + ACTIONS(799), 2, sym_ellipsis, sym_float, - ACTIONS(851), 2, + ACTIONS(1133), 2, anon_sym_print, anon_sym_exec, - ACTIONS(853), 2, + ACTIONS(1135), 2, anon_sym_match, anon_sym_type, - STATE(2093), 2, + STATE(2073), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(743), 3, + ACTIONS(795), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1285), 3, + ACTIONS(1273), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(731), 4, + ACTIONS(783), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1771), 7, + STATE(1801), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42545,7 +42265,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1138), 16, + STATE(1290), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42563,65 +42283,65 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [17960] = 25, - ACTIONS(719), 1, + ACTIONS(785), 1, + anon_sym_LPAREN, + ACTIONS(793), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(797), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(803), 1, sym_string_start, - ACTIONS(839), 1, - anon_sym_yield, - ACTIONS(1027), 1, - anon_sym_LPAREN, - ACTIONS(1041), 1, + ACTIONS(819), 1, anon_sym_not, - ACTIONS(1043), 1, - anon_sym_lambda, - ACTIONS(1079), 1, - anon_sym_await, - ACTIONS(1291), 1, - anon_sym_RPAREN, - ACTIONS(1295), 1, + ACTIONS(1129), 1, sym_identifier, - ACTIONS(1297), 1, + ACTIONS(1139), 1, + anon_sym_await, + ACTIONS(1255), 1, + anon_sym_RBRACK, + ACTIONS(1279), 1, anon_sym_STAR, - STATE(967), 1, + ACTIONS(1281), 1, + anon_sym_lambda, + STATE(951), 1, sym_primary_expression, - STATE(1028), 1, + STATE(980), 1, sym_string, - STATE(1388), 1, + STATE(1345), 1, sym_list_splat_pattern, - STATE(1936), 1, + STATE(1795), 1, sym_expression, - STATE(2638), 1, + STATE(2647), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(799), 2, sym_ellipsis, sym_float, - ACTIONS(1075), 2, + ACTIONS(1133), 2, + anon_sym_print, + anon_sym_exec, + ACTIONS(1135), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + STATE(2073), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(795), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1073), 3, - anon_sym_print, + ACTIONS(1253), 3, + anon_sym_if, anon_sym_async, - anon_sym_exec, - STATE(2558), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(709), 4, + anon_sym_for, + ACTIONS(783), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1801), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42629,7 +42349,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1290), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42647,65 +42367,65 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [18069] = 25, - ACTIONS(809), 1, + ACTIONS(785), 1, + anon_sym_LPAREN, + ACTIONS(793), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(797), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(803), 1, sym_string_start, - ACTIONS(887), 1, - anon_sym_yield, - ACTIONS(987), 1, + ACTIONS(819), 1, anon_sym_not, - ACTIONS(989), 1, - anon_sym_lambda, - ACTIONS(991), 1, - anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1129), 1, sym_identifier, - ACTIONS(1259), 1, - anon_sym_LPAREN, - ACTIONS(1261), 1, - anon_sym_STAR, - ACTIONS(1291), 1, + ACTIONS(1139), 1, + anon_sym_await, + ACTIONS(1233), 1, anon_sym_RBRACK, - STATE(976), 1, + ACTIONS(1279), 1, + anon_sym_STAR, + ACTIONS(1281), 1, + anon_sym_lambda, + STATE(951), 1, sym_primary_expression, - STATE(1107), 1, + STATE(980), 1, sym_string, - STATE(1437), 1, + STATE(1345), 1, sym_list_splat_pattern, - STATE(1944), 1, + STATE(1795), 1, sym_expression, - STATE(2777), 1, + STATE(2647), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(799), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(1133), 2, + anon_sym_print, + anon_sym_exec, + ACTIONS(1135), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + STATE(2073), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(795), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, - anon_sym_print, + ACTIONS(1237), 3, + anon_sym_if, anon_sym_async, - anon_sym_exec, - STATE(2560), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(799), 4, + anon_sym_for, + ACTIONS(783), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1801), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42713,7 +42433,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1290), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42730,64 +42450,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18178] = 24, - ACTIONS(719), 1, + [18178] = 25, + ACTIONS(763), 1, + anon_sym_LPAREN, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(839), 1, - anon_sym_yield, - ACTIONS(1027), 1, - anon_sym_LPAREN, - ACTIONS(1041), 1, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(1079), 1, + ACTIONS(975), 1, anon_sym_await, - ACTIONS(1295), 1, + ACTIONS(1259), 1, sym_identifier, - ACTIONS(1297), 1, + ACTIONS(1283), 1, + anon_sym_from, + ACTIONS(1285), 1, anon_sym_STAR, - STATE(967), 1, + STATE(960), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1038), 1, sym_string, - STATE(1388), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1936), 1, + STATE(1853), 1, sym_expression, - STATE(2638), 1, + STATE(2564), 1, + sym_expression_list, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(1075), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(1081), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1073), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2558), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(709), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42795,7 +42516,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42812,65 +42533,147 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18284] = 25, - ACTIONS(67), 1, + [18286] = 25, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(317), 1, + anon_sym_await, + ACTIONS(319), 1, sym_string_start, - ACTIONS(383), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(406), 1, - anon_sym_await, - ACTIONS(649), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(656), 1, + anon_sym_STAR, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(1301), 1, - anon_sym_from, - ACTIONS(1303), 1, + ACTIONS(861), 1, + anon_sym_STAR_STAR, + ACTIONS(1011), 1, + anon_sym_not, + ACTIONS(1287), 1, + anon_sym_RBRACE, + STATE(953), 1, + sym_primary_expression, + STATE(975), 1, + sym_string, + STATE(1333), 1, + sym_list_splat_pattern, + STATE(1979), 1, + sym_expression, + STATE(2759), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(289), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(313), 2, + sym_ellipsis, + sym_float, + STATE(2574), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(282), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(307), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(315), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1720), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1276), 16, + 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_await, + [18394] = 24, + ACTIONS(681), 1, + anon_sym_LBRACK, + ACTIONS(685), 1, + anon_sym_LBRACE, + ACTIONS(691), 1, + sym_string_start, + ACTIONS(869), 1, + anon_sym_yield, + ACTIONS(989), 1, + anon_sym_not, + ACTIONS(991), 1, + anon_sym_lambda, + ACTIONS(1077), 1, + sym_identifier, + ACTIONS(1087), 1, + anon_sym_await, + ACTIONS(1241), 1, + anon_sym_LPAREN, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(865), 1, + STATE(932), 1, sym_primary_expression, - STATE(969), 1, + STATE(963), 1, sym_string, - STATE(1119), 1, + STATE(1223), 1, sym_list_splat_pattern, - STATE(1746), 1, + STATE(1971), 1, sym_expression, - STATE(2359), 1, - sym_expression_list, - STATE(2751), 1, + STATE(2688), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(687), 2, sym_ellipsis, sym_float, - ACTIONS(395), 2, + ACTIONS(1085), 2, anon_sym_match, anon_sym_type, - ACTIONS(1299), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + ACTIONS(683), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(1083), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + STATE(2548), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(671), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1666), 7, + STATE(1744), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42878,7 +42681,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1198), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42895,65 +42698,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18392] = 25, - ACTIONS(310), 1, + [18500] = 25, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(317), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(855), 1, + ACTIONS(861), 1, anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(1305), 1, + ACTIONS(1289), 1, anon_sym_RBRACE, - STATE(970), 1, + STATE(953), 1, sym_primary_expression, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1342), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1999), 1, + STATE(1979), 1, sym_expression, - STATE(2775), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - STATE(2575), 2, + STATE(2574), 2, sym_dictionary_splat, sym_pair, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42961,7 +42764,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42978,65 +42781,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18500] = 25, - ACTIONS(310), 1, + [18608] = 25, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(325), 1, - anon_sym_await, - ACTIONS(327), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(375), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(398), 1, + anon_sym_await, + ACTIONS(633), 1, anon_sym_LPAREN, - ACTIONS(672), 1, - anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(641), 1, anon_sym_LBRACK, - ACTIONS(855), 1, - anon_sym_STAR_STAR, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1307), 1, - anon_sym_RBRACE, - STATE(970), 1, + ACTIONS(1291), 1, + anon_sym_from, + ACTIONS(1293), 1, + anon_sym_STAR, + STATE(851), 1, sym_primary_expression, - STATE(1010), 1, + STATE(954), 1, sym_string, - STATE(1342), 1, + STATE(1046), 1, sym_list_splat_pattern, - STATE(1999), 1, + STATE(1799), 1, sym_expression, - STATE(2775), 1, + STATE(2486), 1, + sym_expression_list, + STATE(2658), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - STATE(2575), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(387), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1081), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(383), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43044,7 +42847,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1063), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43061,65 +42864,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18608] = 25, - ACTIONS(310), 1, + [18716] = 25, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(317), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(855), 1, + ACTIONS(861), 1, anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(1309), 1, + ACTIONS(1295), 1, anon_sym_RBRACE, - STATE(970), 1, + STATE(953), 1, sym_primary_expression, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1342), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1999), 1, + STATE(1979), 1, sym_expression, - STATE(2775), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - STATE(2575), 2, + STATE(2574), 2, sym_dictionary_splat, sym_pair, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43127,7 +42930,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43144,65 +42947,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18716] = 25, - ACTIONS(310), 1, + [18824] = 25, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(317), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(855), 1, + ACTIONS(861), 1, anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(1311), 1, + ACTIONS(1297), 1, anon_sym_RBRACE, - STATE(970), 1, + STATE(953), 1, sym_primary_expression, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1342), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1999), 1, + STATE(1979), 1, sym_expression, - STATE(2775), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - STATE(2575), 2, + STATE(2574), 2, sym_dictionary_splat, sym_pair, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43210,7 +43013,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43227,65 +43030,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18824] = 25, - ACTIONS(711), 1, - anon_sym_LPAREN, - ACTIONS(719), 1, + [18932] = 24, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(1041), 1, + ACTIONS(823), 1, + anon_sym_yield, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(1079), 1, + ACTIONS(975), 1, anon_sym_await, - ACTIONS(1295), 1, + ACTIONS(1259), 1, sym_identifier, - ACTIONS(1313), 1, - anon_sym_from, - ACTIONS(1315), 1, + ACTIONS(1261), 1, + anon_sym_LPAREN, + ACTIONS(1263), 1, anon_sym_STAR, - STATE(967), 1, + STATE(960), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1038), 1, sym_string, - STATE(1388), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1848), 1, + STATE(1873), 1, sym_expression, - STATE(2555), 1, - sym_expression_list, - STATE(2638), 1, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(1075), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(1099), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(721), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1073), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + STATE(2562), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43293,7 +43095,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43310,65 +43112,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18932] = 25, - ACTIONS(310), 1, + [19038] = 25, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(317), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(855), 1, + ACTIONS(861), 1, anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(1317), 1, + ACTIONS(1299), 1, anon_sym_RBRACE, - STATE(970), 1, + STATE(953), 1, sym_primary_expression, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1342), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1999), 1, + STATE(1979), 1, sym_expression, - STATE(2775), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - STATE(2575), 2, + STATE(2574), 2, sym_dictionary_splat, sym_pair, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43376,7 +43178,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43393,147 +43195,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19040] = 24, - ACTIONS(694), 1, - anon_sym_LBRACK, - ACTIONS(698), 1, + [19146] = 25, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(704), 1, - sym_string_start, - ACTIONS(863), 1, - anon_sym_yield, - ACTIONS(1015), 1, - anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(1095), 1, - sym_identifier, - ACTIONS(1105), 1, + ACTIONS(317), 1, anon_sym_await, - ACTIONS(1275), 1, - anon_sym_LPAREN, - ACTIONS(1277), 1, - anon_sym_STAR, - STATE(909), 1, - sym_primary_expression, - STATE(975), 1, - sym_string, - STATE(1214), 1, - sym_list_splat_pattern, - STATE(1902), 1, - sym_expression, - STATE(2773), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(700), 2, - sym_ellipsis, - sym_float, - ACTIONS(1103), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(696), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1101), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - STATE(2509), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(684), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1767), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1172), 16, - 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_await, - [19146] = 25, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(317), 1, - anon_sym_lambda, - ACTIONS(325), 1, - anon_sym_await, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(855), 1, + ACTIONS(861), 1, anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(1319), 1, + ACTIONS(1301), 1, anon_sym_RBRACE, - STATE(970), 1, + STATE(953), 1, sym_primary_expression, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1342), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1999), 1, + STATE(1979), 1, sym_expression, - STATE(2775), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - STATE(2575), 2, + STATE(2574), 2, sym_dictionary_splat, sym_pair, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43541,7 +43261,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43559,64 +43279,64 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [19254] = 25, - ACTIONS(310), 1, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(317), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(855), 1, + ACTIONS(861), 1, anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(1321), 1, + ACTIONS(1303), 1, anon_sym_RBRACE, - STATE(970), 1, + STATE(953), 1, sym_primary_expression, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1342), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1999), 1, + STATE(1979), 1, sym_expression, - STATE(2775), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - STATE(2575), 2, + STATE(2574), 2, sym_dictionary_splat, sym_pair, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43624,7 +43344,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43642,64 +43362,64 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [19362] = 25, - ACTIONS(310), 1, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(317), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(855), 1, + ACTIONS(861), 1, anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(1323), 1, + ACTIONS(1305), 1, anon_sym_RBRACE, - STATE(970), 1, + STATE(953), 1, sym_primary_expression, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1342), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1999), 1, + STATE(1979), 1, sym_expression, - STATE(2775), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - STATE(2575), 2, + STATE(2574), 2, sym_dictionary_splat, sym_pair, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43707,7 +43427,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43725,64 +43445,64 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [19470] = 25, - ACTIONS(67), 1, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(317), 1, + anon_sym_await, + ACTIONS(319), 1, sym_string_start, - ACTIONS(383), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(406), 1, - anon_sym_await, - ACTIONS(649), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(657), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(656), 1, anon_sym_STAR, - ACTIONS(1325), 1, - anon_sym_from, - STATE(865), 1, + ACTIONS(662), 1, + anon_sym_LBRACK, + ACTIONS(861), 1, + anon_sym_STAR_STAR, + ACTIONS(1011), 1, + anon_sym_not, + ACTIONS(1307), 1, + anon_sym_RBRACE, + STATE(953), 1, sym_primary_expression, - STATE(969), 1, + STATE(975), 1, sym_string, - STATE(1119), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1829), 1, + STATE(1979), 1, sym_expression, - STATE(2596), 1, - sym_expression_list, - STATE(2751), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(395), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(1099), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(313), 2, + sym_ellipsis, + sym_float, + STATE(2574), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(307), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1666), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43790,7 +43510,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43808,64 +43528,64 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [19578] = 25, - ACTIONS(310), 1, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(317), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(855), 1, + ACTIONS(861), 1, anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(1327), 1, + ACTIONS(1309), 1, anon_sym_RBRACE, - STATE(970), 1, + STATE(953), 1, sym_primary_expression, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1342), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1999), 1, + STATE(1979), 1, sym_expression, - STATE(2775), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - STATE(2575), 2, + STATE(2574), 2, sym_dictionary_splat, sym_pair, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43873,7 +43593,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43891,64 +43611,64 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [19686] = 25, - ACTIONS(310), 1, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(317), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(855), 1, + ACTIONS(861), 1, anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(1329), 1, + ACTIONS(1311), 1, anon_sym_RBRACE, - STATE(970), 1, + STATE(953), 1, sym_primary_expression, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1342), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1999), 1, + STATE(1979), 1, sym_expression, - STATE(2775), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - STATE(2575), 2, + STATE(2574), 2, sym_dictionary_splat, sym_pair, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43956,7 +43676,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43974,147 +43694,64 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [19794] = 25, - ACTIONS(801), 1, - anon_sym_LPAREN, - ACTIONS(809), 1, - anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(819), 1, - sym_string_start, - ACTIONS(987), 1, - anon_sym_not, - ACTIONS(989), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(991), 1, - anon_sym_await, - ACTIONS(1257), 1, - sym_identifier, - ACTIONS(1331), 1, - anon_sym_from, - ACTIONS(1333), 1, - anon_sym_STAR, - STATE(976), 1, - sym_primary_expression, - STATE(1107), 1, - sym_string, - STATE(1437), 1, - sym_list_splat_pattern, - STATE(1837), 1, - sym_expression, - STATE(2502), 1, - sym_expression_list, - STATE(2777), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(815), 2, - sym_ellipsis, - sym_float, - ACTIONS(981), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(1099), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(811), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(979), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(799), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1751), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1442), 16, - 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_await, - [19902] = 25, - ACTIONS(310), 1, - anon_sym_LBRACE, ACTIONS(317), 1, - anon_sym_lambda, - ACTIONS(325), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(855), 1, + ACTIONS(861), 1, anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(1335), 1, + ACTIONS(1313), 1, anon_sym_RBRACE, - STATE(970), 1, + STATE(953), 1, sym_primary_expression, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1342), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1999), 1, + STATE(1979), 1, sym_expression, - STATE(2775), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - STATE(2575), 2, + STATE(2574), 2, sym_dictionary_splat, sym_pair, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44122,7 +43759,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44139,65 +43776,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20010] = 25, - ACTIONS(310), 1, + [19902] = 25, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(317), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(855), 1, + ACTIONS(861), 1, anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(1337), 1, + ACTIONS(1315), 1, anon_sym_RBRACE, - STATE(970), 1, + STATE(953), 1, sym_primary_expression, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1342), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1999), 1, + STATE(1979), 1, sym_expression, - STATE(2775), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - STATE(2575), 2, + STATE(2574), 2, sym_dictionary_splat, sym_pair, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44205,7 +43842,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44222,65 +43859,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20118] = 25, - ACTIONS(310), 1, + [20010] = 25, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(317), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(855), 1, + ACTIONS(861), 1, anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(1339), 1, + ACTIONS(1317), 1, anon_sym_RBRACE, - STATE(970), 1, + STATE(953), 1, sym_primary_expression, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1342), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1999), 1, + STATE(1979), 1, sym_expression, - STATE(2775), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - STATE(2575), 2, + STATE(2574), 2, sym_dictionary_splat, sym_pair, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44288,7 +43925,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44305,65 +43942,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20226] = 25, - ACTIONS(310), 1, + [20118] = 24, + ACTIONS(703), 1, + anon_sym_LBRACK, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(713), 1, + sym_string_start, + ACTIONS(845), 1, + anon_sym_yield, + ACTIONS(1047), 1, + anon_sym_LPAREN, + ACTIONS(1059), 1, + anon_sym_not, + ACTIONS(1061), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(1075), 1, anon_sym_await, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(408), 1, + ACTIONS(1269), 1, sym_identifier, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(672), 1, + ACTIONS(1271), 1, anon_sym_STAR, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(855), 1, - anon_sym_STAR_STAR, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1341), 1, - anon_sym_RBRACE, - STATE(970), 1, + STATE(952), 1, sym_primary_expression, - STATE(1010), 1, + STATE(992), 1, sym_string, - STATE(1342), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1999), 1, + STATE(1938), 1, sym_expression, - STATE(2775), 1, + STATE(2633), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - STATE(2575), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(1071), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(1069), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + STATE(2502), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44371,7 +44007,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44388,65 +44024,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20334] = 25, - ACTIONS(310), 1, + [20224] = 25, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(325), 1, - anon_sym_await, - ACTIONS(327), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(375), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(398), 1, + anon_sym_await, + ACTIONS(633), 1, anon_sym_LPAREN, - ACTIONS(672), 1, - anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(641), 1, anon_sym_LBRACK, - ACTIONS(855), 1, - anon_sym_STAR_STAR, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1343), 1, - anon_sym_RBRACE, - STATE(970), 1, + ACTIONS(1293), 1, + anon_sym_STAR, + ACTIONS(1321), 1, + anon_sym_from, + STATE(851), 1, sym_primary_expression, - STATE(1010), 1, + STATE(954), 1, sym_string, - STATE(1342), 1, + STATE(1046), 1, sym_list_splat_pattern, - STATE(1999), 1, + STATE(1739), 1, sym_expression, - STATE(2775), 1, + STATE(2466), 1, + sym_expression_list, + STATE(2658), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - STATE(2575), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(387), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1319), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(383), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44454,7 +44090,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1063), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44471,64 +44107,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20442] = 24, - ACTIONS(809), 1, + [20332] = 25, + ACTIONS(695), 1, + anon_sym_LPAREN, + ACTIONS(703), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(713), 1, sym_string_start, - ACTIONS(887), 1, - anon_sym_yield, - ACTIONS(987), 1, + ACTIONS(1059), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(1061), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(1075), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1269), 1, sym_identifier, - ACTIONS(1259), 1, - anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(1323), 1, + anon_sym_from, + ACTIONS(1325), 1, anon_sym_STAR, - STATE(976), 1, + STATE(952), 1, sym_primary_expression, - STATE(1107), 1, + STATE(992), 1, sym_string, - STATE(1437), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1944), 1, + STATE(1834), 1, sym_expression, - STATE(2777), 1, + STATE(2523), 1, + sym_expression_list, + STATE(2633), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(1071), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(1081), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(1069), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2560), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(799), 4, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44536,7 +44173,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44553,65 +44190,148 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20548] = 25, - ACTIONS(310), 1, + [20440] = 25, + ACTIONS(302), 1, anon_sym_LBRACE, + ACTIONS(309), 1, + anon_sym_lambda, ACTIONS(317), 1, + anon_sym_await, + ACTIONS(319), 1, + sym_string_start, + ACTIONS(400), 1, + sym_identifier, + ACTIONS(652), 1, + anon_sym_LPAREN, + ACTIONS(656), 1, + anon_sym_STAR, + ACTIONS(662), 1, + anon_sym_LBRACK, + ACTIONS(861), 1, + anon_sym_STAR_STAR, + ACTIONS(1011), 1, + anon_sym_not, + ACTIONS(1327), 1, + anon_sym_RBRACE, + STATE(953), 1, + sym_primary_expression, + STATE(975), 1, + sym_string, + STATE(1333), 1, + sym_list_splat_pattern, + STATE(1979), 1, + sym_expression, + STATE(2759), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(289), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(313), 2, + sym_ellipsis, + sym_float, + STATE(2574), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(282), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(307), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(315), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1720), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1276), 16, + 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_await, + [20548] = 25, + ACTIONS(302), 1, + anon_sym_LBRACE, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(317), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(855), 1, + ACTIONS(861), 1, anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(1345), 1, + ACTIONS(1329), 1, anon_sym_RBRACE, - STATE(970), 1, + STATE(953), 1, sym_primary_expression, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1342), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1999), 1, + STATE(1979), 1, sym_expression, - STATE(2775), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - STATE(2575), 2, + STATE(2574), 2, sym_dictionary_splat, sym_pair, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44619,7 +44339,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44637,58 +44357,58 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [20656] = 25, - ACTIONS(801), 1, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(975), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1259), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1285), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1331), 1, anon_sym_COLON, - ACTIONS(1349), 1, + ACTIONS(1333), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(960), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1038), 1, sym_string, STATE(1437), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1860), 1, sym_expression, - STATE(2503), 1, + STATE(2579), 1, sym_slice, - STATE(2777), 1, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, @@ -44701,7 +44421,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44718,58 +44438,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20763] = 24, - ACTIONS(801), 1, + [20763] = 25, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(975), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1259), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1285), 1, anon_sym_STAR, - ACTIONS(1353), 1, + ACTIONS(1331), 1, anon_sym_COLON, - STATE(976), 1, + ACTIONS(1335), 1, + anon_sym_RBRACK, + STATE(960), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1038), 1, sym_string, STATE(1437), 1, sym_list_splat_pattern, - STATE(1853), 1, + STATE(1860), 1, sym_expression, - STATE(2777), 1, + STATE(2579), 1, + sym_slice, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(1351), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(811), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, @@ -44782,7 +44503,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44799,59 +44520,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20868] = 25, - ACTIONS(801), 1, + [20870] = 25, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(975), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1259), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1285), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1331), 1, anon_sym_COLON, - ACTIONS(1355), 1, + ACTIONS(1337), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(960), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1038), 1, sym_string, STATE(1437), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1860), 1, sym_expression, - STATE(2503), 1, + STATE(2579), 1, sym_slice, - STATE(2777), 1, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, @@ -44864,7 +44585,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44881,59 +44602,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20975] = 25, - ACTIONS(801), 1, + [20977] = 25, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(975), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1259), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1285), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1331), 1, anon_sym_COLON, - ACTIONS(1357), 1, + ACTIONS(1339), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(960), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1038), 1, sym_string, STATE(1437), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1860), 1, sym_expression, - STATE(2503), 1, + STATE(2579), 1, sym_slice, - STATE(2777), 1, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, @@ -44946,7 +44667,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44963,59 +44684,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21082] = 25, - ACTIONS(801), 1, + [21084] = 25, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(975), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1259), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1285), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1331), 1, anon_sym_COLON, - ACTIONS(1359), 1, + ACTIONS(1341), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(960), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1038), 1, sym_string, STATE(1437), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1860), 1, sym_expression, - STATE(2503), 1, + STATE(2579), 1, sym_slice, - STATE(2777), 1, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, @@ -45028,7 +44749,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45045,59 +44766,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21189] = 25, - ACTIONS(801), 1, + [21191] = 25, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(975), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1259), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1285), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1331), 1, anon_sym_COLON, - ACTIONS(1361), 1, + ACTIONS(1343), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(960), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1038), 1, sym_string, STATE(1437), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1860), 1, sym_expression, - STATE(2503), 1, + STATE(2579), 1, sym_slice, - STATE(2777), 1, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, @@ -45110,7 +44831,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45127,59 +44848,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21296] = 25, - ACTIONS(801), 1, + [21298] = 24, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(975), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1259), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1285), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, - ACTIONS(1363), 1, - anon_sym_RBRACK, - STATE(976), 1, + STATE(960), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1038), 1, sym_string, STATE(1437), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1865), 1, sym_expression, - STATE(2503), 1, - sym_slice, - STATE(2777), 1, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(1345), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, @@ -45192,7 +44912,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45209,64 +44929,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21403] = 25, - ACTIONS(801), 1, - anon_sym_LPAREN, - ACTIONS(809), 1, - anon_sym_LBRACK, - ACTIONS(813), 1, + [21403] = 24, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(819), 1, - sym_string_start, - ACTIONS(987), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(991), 1, - anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(375), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(398), 1, + anon_sym_await, + ACTIONS(633), 1, + anon_sym_LPAREN, + ACTIONS(641), 1, + anon_sym_LBRACK, + ACTIONS(1293), 1, anon_sym_STAR, - ACTIONS(1347), 1, - anon_sym_COLON, - ACTIONS(1365), 1, - anon_sym_RBRACK, - STATE(976), 1, + ACTIONS(1349), 1, + anon_sym_from, + STATE(851), 1, sym_primary_expression, - STATE(1107), 1, + STATE(954), 1, sym_string, - STATE(1437), 1, + STATE(1046), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1760), 1, sym_expression, - STATE(2503), 1, - sym_slice, - STATE(2777), 1, + STATE(2658), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(1277), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45274,7 +44993,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1063), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45291,59 +45010,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21510] = 25, - ACTIONS(801), 1, + [21508] = 25, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(975), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1259), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1285), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1331), 1, anon_sym_COLON, - ACTIONS(1367), 1, + ACTIONS(1351), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(960), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1038), 1, sym_string, STATE(1437), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1860), 1, sym_expression, - STATE(2503), 1, + STATE(2579), 1, sym_slice, - STATE(2777), 1, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, @@ -45356,7 +45075,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45373,144 +45092,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21617] = 24, - ACTIONS(67), 1, + [21615] = 25, + ACTIONS(763), 1, + anon_sym_LPAREN, + ACTIONS(771), 1, + anon_sym_LBRACK, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(781), 1, + sym_string_start, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(383), 1, - sym_identifier, - ACTIONS(406), 1, + ACTIONS(975), 1, anon_sym_await, - ACTIONS(649), 1, - anon_sym_LPAREN, - ACTIONS(657), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1259), 1, + sym_identifier, + ACTIONS(1285), 1, anon_sym_STAR, - ACTIONS(1369), 1, - anon_sym_from, - STATE(865), 1, + ACTIONS(1331), 1, + anon_sym_COLON, + ACTIONS(1353), 1, + anon_sym_RBRACK, + STATE(960), 1, sym_primary_expression, - STATE(969), 1, + STATE(1038), 1, sym_string, - STATE(1119), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1805), 1, + STATE(1860), 1, sym_expression, - STATE(2751), 1, + STATE(2579), 1, + sym_slice, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(395), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(1265), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1666), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1035), 16, - 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_await, - [21722] = 24, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(317), 1, - anon_sym_lambda, - ACTIONS(325), 1, - anon_sym_await, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(408), 1, - sym_identifier, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(672), 1, - anon_sym_STAR, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(855), 1, - anon_sym_STAR_STAR, - ACTIONS(1049), 1, - anon_sym_not, - STATE(970), 1, - sym_primary_expression, - STATE(1010), 1, - sym_string, - STATE(1342), 1, - sym_list_splat_pattern, - STATE(1999), 1, - sym_expression, - STATE(2775), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - STATE(2575), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(323), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1717), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45518,7 +45157,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45535,59 +45174,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21827] = 25, - ACTIONS(801), 1, + [21722] = 25, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(975), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1259), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1285), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1331), 1, anon_sym_COLON, - ACTIONS(1371), 1, + ACTIONS(1355), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(960), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1038), 1, sym_string, STATE(1437), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1860), 1, sym_expression, - STATE(2503), 1, + STATE(2579), 1, sym_slice, - STATE(2777), 1, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, @@ -45600,7 +45239,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45617,63 +45256,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21934] = 24, - ACTIONS(67), 1, + [21829] = 25, + ACTIONS(763), 1, + anon_sym_LPAREN, + ACTIONS(771), 1, + anon_sym_LBRACK, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(781), 1, + sym_string_start, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(383), 1, - sym_identifier, - ACTIONS(406), 1, + ACTIONS(975), 1, anon_sym_await, - ACTIONS(649), 1, - anon_sym_LPAREN, - ACTIONS(657), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1259), 1, + sym_identifier, + ACTIONS(1285), 1, anon_sym_STAR, - ACTIONS(1373), 1, - anon_sym_from, - STATE(865), 1, + ACTIONS(1331), 1, + anon_sym_COLON, + ACTIONS(1357), 1, + anon_sym_RBRACK, + STATE(960), 1, sym_primary_expression, - STATE(969), 1, + STATE(1038), 1, sym_string, - STATE(1119), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1805), 1, + STATE(1860), 1, sym_expression, - STATE(2751), 1, + STATE(2579), 1, + sym_slice, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(395), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(1293), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1666), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45681,7 +45321,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45698,59 +45338,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22039] = 25, - ACTIONS(801), 1, + [21936] = 25, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(975), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1259), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1285), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1331), 1, anon_sym_COLON, - ACTIONS(1375), 1, + ACTIONS(1359), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(960), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1038), 1, sym_string, STATE(1437), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1860), 1, sym_expression, - STATE(2503), 1, + STATE(2579), 1, sym_slice, - STATE(2777), 1, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, @@ -45763,7 +45403,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45780,59 +45420,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22146] = 25, - ACTIONS(801), 1, + [22043] = 25, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(975), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1259), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1285), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1331), 1, anon_sym_COLON, - ACTIONS(1377), 1, + ACTIONS(1361), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(960), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1038), 1, sym_string, STATE(1437), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1860), 1, sym_expression, - STATE(2503), 1, + STATE(2579), 1, sym_slice, - STATE(2777), 1, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, @@ -45845,7 +45485,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45862,59 +45502,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22253] = 25, - ACTIONS(801), 1, + [22150] = 25, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(975), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1259), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1285), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1331), 1, anon_sym_COLON, - ACTIONS(1379), 1, + ACTIONS(1363), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(960), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1038), 1, sym_string, STATE(1437), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1860), 1, sym_expression, - STATE(2503), 1, + STATE(2579), 1, sym_slice, - STATE(2777), 1, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, @@ -45927,7 +45567,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45944,59 +45584,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22360] = 25, - ACTIONS(801), 1, + [22257] = 25, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(975), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1259), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1285), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1331), 1, anon_sym_COLON, - ACTIONS(1381), 1, + ACTIONS(1365), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(960), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1038), 1, sym_string, STATE(1437), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1860), 1, sym_expression, - STATE(2503), 1, + STATE(2579), 1, sym_slice, - STATE(2777), 1, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, @@ -46009,7 +45649,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46026,59 +45666,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22467] = 25, - ACTIONS(801), 1, + [22364] = 25, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(975), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1259), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1285), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1331), 1, anon_sym_COLON, - ACTIONS(1383), 1, + ACTIONS(1367), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(960), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1038), 1, sym_string, STATE(1437), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1860), 1, sym_expression, - STATE(2503), 1, + STATE(2579), 1, sym_slice, - STATE(2777), 1, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, @@ -46091,7 +45731,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46108,56 +45748,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22574] = 19, - ACTIONS(310), 1, + [22471] = 19, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(668), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_await, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1051), 1, + STATE(1090), 1, sym_primary_expression, - STATE(1342), 1, + STATE(1333), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(271), 2, anon_sym_DOT, anon_sym_SLASH, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(676), 2, + ACTIONS(660), 2, anon_sym_match, anon_sym_type, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(663), 3, + ACTIONS(647), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(674), 3, + ACTIONS(658), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 5, + ACTIONS(315), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(277), 9, + ACTIONS(269), 9, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, @@ -46167,7 +45807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - STATE(1268), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46184,59 +45824,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22669] = 25, - ACTIONS(801), 1, + [22566] = 25, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(975), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1259), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1285), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1331), 1, anon_sym_COLON, - ACTIONS(1385), 1, + ACTIONS(1369), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(960), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1038), 1, sym_string, STATE(1437), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1860), 1, sym_expression, - STATE(2503), 1, + STATE(2579), 1, sym_slice, - STATE(2777), 1, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, @@ -46249,7 +45889,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46266,59 +45906,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22776] = 25, - ACTIONS(801), 1, + [22673] = 25, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(975), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1259), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1285), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1331), 1, anon_sym_COLON, - ACTIONS(1387), 1, + ACTIONS(1371), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(960), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1038), 1, sym_string, STATE(1437), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1860), 1, sym_expression, - STATE(2503), 1, + STATE(2579), 1, sym_slice, - STATE(2777), 1, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, @@ -46331,7 +45971,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46348,59 +45988,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22883] = 25, - ACTIONS(801), 1, + [22780] = 25, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(975), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1259), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1285), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1331), 1, anon_sym_COLON, - ACTIONS(1389), 1, + ACTIONS(1373), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(960), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1038), 1, sym_string, STATE(1437), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1860), 1, sym_expression, - STATE(2503), 1, + STATE(2579), 1, sym_slice, - STATE(2777), 1, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, @@ -46413,7 +46053,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46430,59 +46070,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22990] = 25, - ACTIONS(801), 1, + [22887] = 25, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(975), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1259), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1285), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1331), 1, anon_sym_COLON, - ACTIONS(1391), 1, + ACTIONS(1375), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(960), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1038), 1, sym_string, STATE(1437), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1860), 1, sym_expression, - STATE(2503), 1, + STATE(2579), 1, sym_slice, - STATE(2777), 1, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, @@ -46495,7 +46135,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46512,59 +46152,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23097] = 25, - ACTIONS(801), 1, + [22994] = 25, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(975), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1259), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1285), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1331), 1, anon_sym_COLON, - ACTIONS(1393), 1, + ACTIONS(1377), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(960), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1038), 1, sym_string, STATE(1437), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1860), 1, sym_expression, - STATE(2503), 1, + STATE(2579), 1, sym_slice, - STATE(2777), 1, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, @@ -46577,7 +46217,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46594,59 +46234,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23204] = 25, - ACTIONS(801), 1, + [23101] = 25, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(975), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1259), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1285), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1331), 1, anon_sym_COLON, - ACTIONS(1395), 1, + ACTIONS(1379), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(960), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1038), 1, sym_string, STATE(1437), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1860), 1, sym_expression, - STATE(2503), 1, + STATE(2579), 1, sym_slice, - STATE(2777), 1, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, @@ -46659,7 +46299,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46676,59 +46316,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23311] = 25, - ACTIONS(801), 1, + [23208] = 25, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(975), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1259), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1285), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1331), 1, anon_sym_COLON, - ACTIONS(1397), 1, + ACTIONS(1381), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(960), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1038), 1, sym_string, STATE(1437), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1860), 1, sym_expression, - STATE(2503), 1, + STATE(2579), 1, sym_slice, - STATE(2777), 1, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, @@ -46741,7 +46381,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46758,59 +46398,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23418] = 25, - ACTIONS(801), 1, + [23315] = 25, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(975), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1259), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1285), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1331), 1, anon_sym_COLON, - ACTIONS(1399), 1, + ACTIONS(1383), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(960), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1038), 1, sym_string, STATE(1437), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1860), 1, sym_expression, - STATE(2503), 1, + STATE(2579), 1, sym_slice, - STATE(2777), 1, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, @@ -46823,7 +46463,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46840,59 +46480,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23525] = 25, - ACTIONS(801), 1, + [23422] = 25, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(975), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1259), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1285), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1331), 1, anon_sym_COLON, - ACTIONS(1401), 1, + ACTIONS(1385), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(960), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1038), 1, sym_string, STATE(1437), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1860), 1, sym_expression, - STATE(2503), 1, + STATE(2579), 1, sym_slice, - STATE(2777), 1, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, @@ -46905,7 +46545,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46922,59 +46562,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23632] = 25, - ACTIONS(801), 1, + [23529] = 25, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(975), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1259), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1285), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1331), 1, anon_sym_COLON, - ACTIONS(1403), 1, + ACTIONS(1387), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(960), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1038), 1, sym_string, STATE(1437), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1860), 1, sym_expression, - STATE(2503), 1, + STATE(2579), 1, sym_slice, - STATE(2777), 1, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, @@ -46987,7 +46627,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47004,59 +46644,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23739] = 25, - ACTIONS(801), 1, + [23636] = 25, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(975), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1259), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1285), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1331), 1, anon_sym_COLON, - ACTIONS(1405), 1, + ACTIONS(1389), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(960), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1038), 1, sym_string, STATE(1437), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1860), 1, sym_expression, - STATE(2503), 1, + STATE(2579), 1, sym_slice, - STATE(2777), 1, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, @@ -47069,7 +46709,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47086,58 +46726,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23846] = 24, - ACTIONS(801), 1, + [23743] = 25, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(975), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1259), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1285), 1, anon_sym_STAR, - ACTIONS(1409), 1, + ACTIONS(1331), 1, anon_sym_COLON, - STATE(976), 1, + ACTIONS(1391), 1, + anon_sym_RBRACK, + STATE(960), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1038), 1, sym_string, STATE(1437), 1, sym_list_splat_pattern, - STATE(1850), 1, + STATE(1860), 1, sym_expression, - STATE(2777), 1, + STATE(2579), 1, + sym_slice, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(1407), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(811), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, @@ -47150,7 +46791,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47167,59 +46808,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23951] = 25, - ACTIONS(801), 1, + [23850] = 24, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(975), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1259), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1285), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1395), 1, anon_sym_COLON, - ACTIONS(1411), 1, - anon_sym_RBRACK, - STATE(976), 1, + STATE(960), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1038), 1, sym_string, STATE(1437), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1848), 1, sym_expression, - STATE(2503), 1, - sym_slice, - STATE(2777), 1, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(1393), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, @@ -47232,7 +46872,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47249,63 +46889,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24058] = 24, - ACTIONS(67), 1, + [23955] = 25, + ACTIONS(763), 1, + anon_sym_LPAREN, + ACTIONS(771), 1, + anon_sym_LBRACK, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(781), 1, + sym_string_start, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(383), 1, - sym_identifier, - ACTIONS(406), 1, + ACTIONS(975), 1, anon_sym_await, - ACTIONS(649), 1, - anon_sym_LPAREN, - ACTIONS(657), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1259), 1, + sym_identifier, + ACTIONS(1285), 1, anon_sym_STAR, - STATE(865), 1, + ACTIONS(1331), 1, + anon_sym_COLON, + ACTIONS(1397), 1, + anon_sym_RBRACK, + STATE(960), 1, sym_primary_expression, - STATE(969), 1, + STATE(1038), 1, sym_string, - STATE(1119), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1815), 1, + STATE(1860), 1, sym_expression, - STATE(2585), 1, - sym_expression_list, - STATE(2751), 1, + STATE(2579), 1, + sym_slice, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(395), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(1413), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1666), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47313,7 +46954,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47330,66 +46971,71 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24163] = 19, - ACTIONS(310), 1, + [24062] = 24, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(309), 1, + anon_sym_lambda, + ACTIONS(317), 1, + anon_sym_await, + ACTIONS(319), 1, sym_string_start, - ACTIONS(668), 1, + ACTIONS(400), 1, + sym_identifier, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(682), 1, - anon_sym_await, - STATE(1010), 1, - sym_string, - STATE(1051), 1, + ACTIONS(861), 1, + anon_sym_STAR_STAR, + ACTIONS(1011), 1, + anon_sym_not, + STATE(953), 1, sym_primary_expression, - STATE(1342), 1, + STATE(975), 1, + sym_string, + STATE(1333), 1, sym_list_splat_pattern, + STATE(1979), 1, + sym_expression, + STATE(2759), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(676), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(674), 3, + ACTIONS(313), 2, + sym_ellipsis, + sym_float, + STATE(2574), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(1415), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(323), 5, + ACTIONS(307), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(315), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(277), 9, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PIPE, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1268), 16, + STATE(1720), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47406,59 +47052,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24258] = 25, - ACTIONS(801), 1, + [24167] = 25, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(975), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1259), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1285), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1331), 1, anon_sym_COLON, - ACTIONS(1417), 1, + ACTIONS(1399), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(960), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1038), 1, sym_string, STATE(1437), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1860), 1, sym_expression, - STATE(2503), 1, + STATE(2579), 1, sym_slice, - STATE(2777), 1, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, @@ -47471,7 +47117,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47488,59 +47134,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24365] = 25, - ACTIONS(801), 1, + [24274] = 25, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(975), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1259), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1285), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1331), 1, anon_sym_COLON, - ACTIONS(1419), 1, + ACTIONS(1401), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(960), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1038), 1, sym_string, STATE(1437), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1860), 1, sym_expression, - STATE(2503), 1, + STATE(2579), 1, sym_slice, - STATE(2777), 1, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, @@ -47553,7 +47199,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47570,64 +47216,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24472] = 25, - ACTIONS(801), 1, - anon_sym_LPAREN, - ACTIONS(809), 1, - anon_sym_LBRACK, - ACTIONS(813), 1, + [24381] = 24, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(819), 1, - sym_string_start, - ACTIONS(987), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(991), 1, - anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(375), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(398), 1, + anon_sym_await, + ACTIONS(633), 1, + anon_sym_LPAREN, + ACTIONS(641), 1, + anon_sym_LBRACK, + ACTIONS(1293), 1, anon_sym_STAR, - ACTIONS(1347), 1, - anon_sym_COLON, - ACTIONS(1421), 1, - anon_sym_RBRACK, - STATE(976), 1, + ACTIONS(1403), 1, + anon_sym_from, + STATE(851), 1, sym_primary_expression, - STATE(1107), 1, + STATE(954), 1, sym_string, - STATE(1437), 1, + STATE(1046), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1760), 1, sym_expression, - STATE(2503), 1, - sym_slice, - STATE(2777), 1, + STATE(2658), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(1267), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47635,7 +47280,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1063), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47652,64 +47297,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24579] = 25, - ACTIONS(801), 1, - anon_sym_LPAREN, - ACTIONS(809), 1, - anon_sym_LBRACK, - ACTIONS(813), 1, + [24486] = 24, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(819), 1, - sym_string_start, - ACTIONS(987), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(991), 1, - anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(375), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(398), 1, + anon_sym_await, + ACTIONS(633), 1, + anon_sym_LPAREN, + ACTIONS(641), 1, + anon_sym_LBRACK, + ACTIONS(1293), 1, anon_sym_STAR, - ACTIONS(1347), 1, - anon_sym_COLON, - ACTIONS(1423), 1, - anon_sym_RBRACK, - STATE(976), 1, + STATE(851), 1, sym_primary_expression, - STATE(1107), 1, + STATE(954), 1, sym_string, - STATE(1437), 1, + STATE(1046), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1790), 1, sym_expression, - STATE(2503), 1, - sym_slice, - STATE(2777), 1, + STATE(2533), 1, + sym_expression_list, + STATE(2658), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(1405), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47717,7 +47361,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1063), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47734,70 +47378,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24686] = 24, - ACTIONS(801), 1, - anon_sym_LPAREN, - ACTIONS(809), 1, - anon_sym_LBRACK, - ACTIONS(813), 1, + [24591] = 19, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(987), 1, - anon_sym_not, - ACTIONS(989), 1, - anon_sym_lambda, - ACTIONS(991), 1, - anon_sym_await, - ACTIONS(1257), 1, - sym_identifier, - ACTIONS(1333), 1, + ACTIONS(652), 1, + anon_sym_LPAREN, + ACTIONS(656), 1, anon_sym_STAR, - ACTIONS(1347), 1, - anon_sym_COLON, - STATE(976), 1, - sym_primary_expression, - STATE(1107), 1, + ACTIONS(662), 1, + anon_sym_LBRACK, + ACTIONS(666), 1, + anon_sym_await, + STATE(975), 1, sym_string, - STATE(1437), 1, + STATE(1090), 1, + sym_primary_expression, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1820), 1, - sym_expression, - STATE(2414), 1, - sym_slice, - STATE(2777), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(271), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(660), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(658), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(1407), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(315), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1751), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1442), 16, + ACTIONS(269), 9, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47814,62 +47454,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24790] = 24, - ACTIONS(801), 1, - anon_sym_LPAREN, - ACTIONS(809), 1, - anon_sym_LBRACK, - ACTIONS(813), 1, + [24686] = 23, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(819), 1, - sym_string_start, - ACTIONS(987), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(991), 1, - anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(375), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(398), 1, + anon_sym_await, + ACTIONS(633), 1, + anon_sym_LPAREN, + ACTIONS(641), 1, + anon_sym_LBRACK, + ACTIONS(1293), 1, anon_sym_STAR, - ACTIONS(1347), 1, - anon_sym_COLON, - STATE(976), 1, + STATE(851), 1, sym_primary_expression, - STATE(1107), 1, + STATE(954), 1, sym_string, - STATE(1437), 1, + STATE(1046), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1830), 1, sym_expression, - STATE(2503), 1, - sym_slice, - STATE(2777), 1, + STATE(2658), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(1409), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47877,7 +47516,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1063), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47894,61 +47533,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24894] = 23, - ACTIONS(755), 1, - anon_sym_LPAREN, - ACTIONS(765), 1, - anon_sym_LBRACK, - ACTIONS(769), 1, + [24788] = 24, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(309), 1, + anon_sym_lambda, + ACTIONS(317), 1, + anon_sym_await, + ACTIONS(319), 1, sym_string_start, - ACTIONS(835), 1, - anon_sym_not, - ACTIONS(1051), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(1061), 1, - anon_sym_await, - ACTIONS(1251), 1, + ACTIONS(662), 1, + anon_sym_LBRACK, + ACTIONS(1011), 1, + anon_sym_not, + ACTIONS(1411), 1, + anon_sym_LPAREN, + ACTIONS(1413), 1, anon_sym_STAR, - ACTIONS(1255), 1, - anon_sym_lambda, - STATE(963), 1, + STATE(953), 1, sym_primary_expression, - STATE(1015), 1, + STATE(975), 1, sym_string, - STATE(1258), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1830), 1, + STATE(1902), 1, sym_expression, - STATE(2771), 1, + STATE(2279), 1, + sym_with_item, + STATE(2659), 1, + sym_with_clause, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, - sym_ellipsis, - sym_float, - ACTIONS(1059), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - STATE(2106), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(767), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1057), 3, + ACTIONS(313), 2, + sym_ellipsis, + sym_float, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + ACTIONS(307), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47956,7 +47596,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47973,69 +47613,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24996] = 23, - ACTIONS(801), 1, - anon_sym_LPAREN, - ACTIONS(809), 1, - anon_sym_LBRACK, - ACTIONS(813), 1, + [24892] = 19, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(987), 1, - anon_sym_not, - ACTIONS(989), 1, - anon_sym_lambda, - ACTIONS(991), 1, - anon_sym_await, - ACTIONS(1257), 1, - sym_identifier, - ACTIONS(1333), 1, + ACTIONS(652), 1, + anon_sym_LPAREN, + ACTIONS(656), 1, anon_sym_STAR, - STATE(976), 1, - sym_primary_expression, - STATE(1107), 1, + ACTIONS(662), 1, + anon_sym_LBRACK, + ACTIONS(666), 1, + anon_sym_await, + STATE(975), 1, sym_string, - STATE(1437), 1, + STATE(1090), 1, + sym_primary_expression, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1914), 1, - sym_expression, - STATE(2777), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(271), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(660), 2, anon_sym_match, anon_sym_type, - ACTIONS(1425), 2, + ACTIONS(1407), 2, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(811), 3, + anon_sym_COLON, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(658), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(315), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1751), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1442), 16, + ACTIONS(269), 9, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48052,61 +47688,136 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25098] = 23, - ACTIONS(801), 1, + [24986] = 19, + ACTIONS(302), 1, + anon_sym_LBRACE, + ACTIONS(319), 1, + sym_string_start, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(656), 1, + anon_sym_STAR, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(666), 1, + anon_sym_await, + STATE(975), 1, + sym_string, + STATE(1090), 1, + sym_primary_expression, + STATE(1333), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(271), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(311), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(313), 2, + sym_ellipsis, + sym_float, + ACTIONS(660), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(307), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(658), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(315), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 9, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1276), 16, + 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_await, + [25080] = 23, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(819), 1, - sym_string_start, - ACTIONS(987), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(991), 1, - anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(375), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(398), 1, + anon_sym_await, + ACTIONS(633), 1, + anon_sym_LPAREN, + ACTIONS(641), 1, + anon_sym_LBRACK, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(976), 1, + STATE(851), 1, sym_primary_expression, - STATE(1107), 1, + STATE(954), 1, sym_string, - STATE(1437), 1, + STATE(1046), 1, sym_list_splat_pattern, - STATE(1956), 1, + STATE(1760), 1, sym_expression, - STATE(2777), 1, + STATE(2658), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, - ACTIONS(1265), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(811), 3, + ACTIONS(1415), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48114,7 +47825,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1063), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48131,61 +47842,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25200] = 23, - ACTIONS(67), 1, + [25182] = 23, + ACTIONS(695), 1, + anon_sym_LPAREN, + ACTIONS(703), 1, + anon_sym_LBRACK, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(713), 1, + sym_string_start, + ACTIONS(1059), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1061), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(383), 1, - sym_identifier, - ACTIONS(406), 1, + ACTIONS(1075), 1, anon_sym_await, - ACTIONS(649), 1, - anon_sym_LPAREN, - ACTIONS(657), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1269), 1, + sym_identifier, + ACTIONS(1325), 1, anon_sym_STAR, - STATE(865), 1, + STATE(952), 1, sym_primary_expression, - STATE(969), 1, + STATE(992), 1, sym_string, - STATE(1119), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1805), 1, + STATE(1957), 1, sym_expression, - STATE(2751), 1, + STATE(2633), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(395), 2, + ACTIONS(1071), 2, anon_sym_match, anon_sym_type, - ACTIONS(1427), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + ACTIONS(1267), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(1069), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1666), 7, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48193,7 +47904,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48210,7 +47921,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25302] = 23, + [25284] = 23, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -48219,25 +47930,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym_string_start, - ACTIONS(383), 1, + ACTIONS(375), 1, sym_identifier, - ACTIONS(406), 1, + ACTIONS(398), 1, anon_sym_await, - ACTIONS(649), 1, + ACTIONS(633), 1, anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(641), 1, anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(865), 1, + STATE(851), 1, sym_primary_expression, - STATE(969), 1, + STATE(954), 1, sym_string, - STATE(1119), 1, + STATE(1046), 1, sym_list_splat_pattern, - STATE(1805), 1, + STATE(1830), 1, sym_expression, - STATE(2751), 1, + STATE(2658), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -48245,17 +47956,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(395), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, - ACTIONS(1429), 2, + ACTIONS(1417), 2, sym__newline, anon_sym_SEMI, ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -48264,7 +47975,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1666), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48272,7 +47983,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1063), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48289,62 +48000,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25404] = 24, - ACTIONS(310), 1, + [25386] = 23, + ACTIONS(695), 1, + anon_sym_LPAREN, + ACTIONS(703), 1, + anon_sym_LBRACK, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(713), 1, + sym_string_start, + ACTIONS(1059), 1, + anon_sym_not, + ACTIONS(1061), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(1075), 1, anon_sym_await, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(408), 1, + ACTIONS(1269), 1, sym_identifier, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1431), 1, - anon_sym_LPAREN, - ACTIONS(1433), 1, + ACTIONS(1325), 1, anon_sym_STAR, - STATE(970), 1, + STATE(952), 1, sym_primary_expression, - STATE(1010), 1, + STATE(992), 1, sym_string, - STATE(1342), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1930), 1, + STATE(1957), 1, sym_expression, - STATE(2269), 1, - sym_with_item, - STATE(2775), 1, + STATE(2633), 1, sym__named_expression_lhs, - STATE(2776), 1, - sym_with_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(1071), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1277), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(1069), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48352,7 +48062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48369,55 +48079,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25508] = 19, - ACTIONS(310), 1, + [25488] = 19, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(668), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(672), 1, + ACTIONS(656), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_await, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1051), 1, + STATE(1090), 1, sym_primary_expression, - STATE(1342), 1, + STATE(1333), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(271), 2, anon_sym_DOT, anon_sym_SLASH, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(663), 2, + ACTIONS(647), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(676), 2, + ACTIONS(660), 2, anon_sym_match, anon_sym_type, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(674), 3, + ACTIONS(658), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 5, + ACTIONS(315), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(277), 9, + ACTIONS(269), 9, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, @@ -48427,7 +48137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - STATE(1268), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48444,69 +48154,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25602] = 23, - ACTIONS(733), 1, - anon_sym_LPAREN, - ACTIONS(741), 1, - anon_sym_LBRACK, - ACTIONS(745), 1, + [25582] = 19, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(843), 1, - sym_identifier, - ACTIONS(859), 1, - anon_sym_not, - ACTIONS(865), 1, - anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(652), 1, + anon_sym_LPAREN, + ACTIONS(656), 1, anon_sym_STAR, - ACTIONS(1289), 1, - anon_sym_lambda, - STATE(912), 1, - sym_primary_expression, - STATE(971), 1, + ACTIONS(662), 1, + anon_sym_LBRACK, + ACTIONS(666), 1, + anon_sym_await, + STATE(975), 1, sym_string, - STATE(1203), 1, + STATE(1090), 1, + sym_primary_expression, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1824), 1, - sym_expression, - STATE(2683), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(747), 2, + ACTIONS(271), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(311), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(853), 2, + ACTIONS(660), 2, anon_sym_match, anon_sym_type, - STATE(1988), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(743), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(658), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + ACTIONS(315), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1771), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1138), 16, + ACTIONS(269), 9, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48523,61 +48229,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25704] = 23, - ACTIONS(67), 1, + [25676] = 24, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(317), 1, + anon_sym_await, + ACTIONS(319), 1, sym_string_start, - ACTIONS(383), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(406), 1, - anon_sym_await, - ACTIONS(649), 1, - anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1011), 1, + anon_sym_not, + ACTIONS(1411), 1, + anon_sym_LPAREN, + ACTIONS(1413), 1, anon_sym_STAR, - STATE(865), 1, + STATE(953), 1, sym_primary_expression, - STATE(969), 1, + STATE(975), 1, sym_string, - STATE(1119), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1877), 1, + STATE(1902), 1, sym_expression, - STATE(2751), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, + STATE(2279), 1, + sym_with_item, + STATE(2621), 1, + sym_with_clause, + STATE(2759), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(395), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(1435), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(313), 2, + sym_ellipsis, + sym_float, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(307), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1666), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48585,7 +48292,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48602,61 +48309,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25806] = 23, - ACTIONS(779), 1, + [25780] = 23, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(883), 1, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(1159), 1, - sym_identifier, - ACTIONS(1169), 1, + ACTIONS(973), 1, + anon_sym_lambda, + ACTIONS(975), 1, anon_sym_await, - ACTIONS(1267), 1, + ACTIONS(1259), 1, + sym_identifier, + ACTIONS(1285), 1, anon_sym_STAR, - ACTIONS(1273), 1, - anon_sym_lambda, - STATE(965), 1, + STATE(960), 1, sym_primary_expression, - STATE(996), 1, + STATE(1038), 1, sym_string, - STATE(1360), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1802), 1, + STATE(1910), 1, sym_expression, - STATE(2611), 1, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(1165), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - STATE(1986), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(789), 3, + ACTIONS(1267), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1163), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48664,7 +48371,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48681,69 +48388,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25908] = 23, - ACTIONS(755), 1, - anon_sym_LPAREN, - ACTIONS(765), 1, - anon_sym_LBRACK, - ACTIONS(769), 1, + [25882] = 20, + ACTIONS(294), 1, + anon_sym_in, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(311), 1, + anon_sym_COMMA, + ACTIONS(319), 1, sym_string_start, - ACTIONS(835), 1, - anon_sym_not, - ACTIONS(1051), 1, - sym_identifier, - ACTIONS(1061), 1, - anon_sym_await, - ACTIONS(1251), 1, + ACTIONS(652), 1, + anon_sym_LPAREN, + ACTIONS(656), 1, anon_sym_STAR, - ACTIONS(1255), 1, - anon_sym_lambda, - STATE(963), 1, - sym_primary_expression, - STATE(1015), 1, + ACTIONS(662), 1, + anon_sym_LBRACK, + ACTIONS(666), 1, + anon_sym_await, + STATE(975), 1, sym_string, - STATE(1258), 1, + STATE(1090), 1, + sym_primary_expression, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1783), 1, - sym_expression, - STATE(2771), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(271), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(1059), 2, + ACTIONS(660), 2, anon_sym_match, anon_sym_type, - STATE(1962), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(767), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1057), 3, + ACTIONS(658), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + ACTIONS(315), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1806), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1367), 16, + ACTIONS(269), 9, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48760,65 +48464,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26010] = 19, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(668), 1, + [25978] = 23, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(672), 1, - anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(682), 1, + ACTIONS(775), 1, + anon_sym_LBRACE, + ACTIONS(781), 1, + sym_string_start, + ACTIONS(971), 1, + anon_sym_not, + ACTIONS(973), 1, + anon_sym_lambda, + ACTIONS(975), 1, anon_sym_await, - STATE(1010), 1, - sym_string, - STATE(1051), 1, + ACTIONS(1259), 1, + sym_identifier, + ACTIONS(1285), 1, + anon_sym_STAR, + STATE(960), 1, sym_primary_expression, - STATE(1342), 1, + STATE(1038), 1, + sym_string, + STATE(1437), 1, sym_list_splat_pattern, + STATE(1910), 1, + sym_expression, + STATE(2581), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(319), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(321), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(676), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(315), 3, + ACTIONS(1277), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(674), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 5, + ACTIONS(761), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(277), 9, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PIPE, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1268), 16, + STATE(1751), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48835,66 +48543,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26104] = 20, - ACTIONS(302), 1, - anon_sym_in, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(319), 1, - anon_sym_COMMA, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(668), 1, + [26080] = 24, + ACTIONS(695), 1, anon_sym_LPAREN, - ACTIONS(672), 1, - anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(703), 1, anon_sym_LBRACK, - ACTIONS(682), 1, + ACTIONS(707), 1, + anon_sym_LBRACE, + ACTIONS(713), 1, + sym_string_start, + ACTIONS(1059), 1, + anon_sym_not, + ACTIONS(1061), 1, + anon_sym_lambda, + ACTIONS(1075), 1, anon_sym_await, - STATE(1010), 1, - sym_string, - STATE(1051), 1, + ACTIONS(1269), 1, + sym_identifier, + ACTIONS(1325), 1, + anon_sym_STAR, + ACTIONS(1419), 1, + anon_sym_RPAREN, + STATE(952), 1, sym_primary_expression, - STATE(1342), 1, + STATE(992), 1, + sym_string, + STATE(1322), 1, sym_list_splat_pattern, + STATE(1924), 1, + sym_expression, + STATE(2532), 1, + sym_with_item, + STATE(2633), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(321), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(676), 2, + ACTIONS(1071), 2, anon_sym_match, anon_sym_type, - ACTIONS(315), 3, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(674), 3, + ACTIONS(1069), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 5, + ACTIONS(693), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(277), 9, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PIPE, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1268), 16, + STATE(1702), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48911,61 +48623,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26200] = 23, - ACTIONS(67), 1, + [26184] = 24, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(317), 1, + anon_sym_await, + ACTIONS(319), 1, sym_string_start, - ACTIONS(383), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(406), 1, - anon_sym_await, - ACTIONS(649), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1011), 1, + anon_sym_not, + ACTIONS(1413), 1, anon_sym_STAR, - STATE(865), 1, + ACTIONS(1421), 1, + anon_sym_COLON, + STATE(953), 1, sym_primary_expression, - STATE(969), 1, + STATE(975), 1, sym_string, - STATE(1119), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1877), 1, + STATE(1902), 1, sym_expression, - STATE(2751), 1, + STATE(2553), 1, + sym_with_item, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(395), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(1437), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(313), 2, + sym_ellipsis, + sym_float, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(307), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1666), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48973,7 +48686,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48990,56 +48703,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26302] = 23, - ACTIONS(801), 1, + [26288] = 23, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(975), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1259), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1285), 1, anon_sym_STAR, - STATE(976), 1, + STATE(960), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1038), 1, sym_string, STATE(1437), 1, sym_list_splat_pattern, - STATE(1931), 1, + STATE(1927), 1, sym_expression, - STATE(2777), 1, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(1407), 2, + ACTIONS(1345), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(811), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, @@ -49052,7 +48765,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49069,61 +48782,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26404] = 23, - ACTIONS(733), 1, + [26390] = 23, + ACTIONS(739), 1, anon_sym_LPAREN, - ACTIONS(741), 1, + ACTIONS(749), 1, anon_sym_LBRACK, - ACTIONS(745), 1, + ACTIONS(753), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(759), 1, sym_string_start, - ACTIONS(843), 1, - sym_identifier, - ACTIONS(859), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(1119), 1, + sym_identifier, + ACTIONS(1127), 1, anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(1235), 1, anon_sym_STAR, - ACTIONS(1289), 1, + ACTIONS(1239), 1, anon_sym_lambda, - STATE(912), 1, + STATE(947), 1, sym_primary_expression, - STATE(971), 1, + STATE(1018), 1, sym_string, - STATE(1203), 1, + STATE(1281), 1, sym_list_splat_pattern, - STATE(1824), 1, + STATE(1810), 1, sym_expression, - STATE(2683), 1, + STATE(2580), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(747), 2, + ACTIONS(755), 2, sym_ellipsis, sym_float, - ACTIONS(853), 2, + ACTIONS(1125), 2, anon_sym_match, anon_sym_type, - STATE(1900), 2, + STATE(1897), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(743), 3, + ACTIONS(751), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(1123), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + ACTIONS(737), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1771), 7, + STATE(1797), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49131,7 +48844,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1138), 16, + STATE(1347), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49148,61 +48861,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26506] = 23, - ACTIONS(711), 1, + [26492] = 23, + ACTIONS(785), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(793), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(797), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(803), 1, sym_string_start, - ACTIONS(1041), 1, + ACTIONS(819), 1, anon_sym_not, - ACTIONS(1043), 1, - anon_sym_lambda, - ACTIONS(1079), 1, - anon_sym_await, - ACTIONS(1295), 1, + ACTIONS(1129), 1, sym_identifier, - ACTIONS(1315), 1, + ACTIONS(1139), 1, + anon_sym_await, + ACTIONS(1279), 1, anon_sym_STAR, - STATE(967), 1, + ACTIONS(1281), 1, + anon_sym_lambda, + STATE(951), 1, sym_primary_expression, - STATE(1028), 1, + STATE(980), 1, sym_string, - STATE(1388), 1, + STATE(1345), 1, sym_list_splat_pattern, - STATE(1949), 1, + STATE(1795), 1, sym_expression, - STATE(2638), 1, + STATE(2647), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(799), 2, sym_ellipsis, sym_float, - ACTIONS(1075), 2, + ACTIONS(1135), 2, anon_sym_match, anon_sym_type, - ACTIONS(1265), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(721), 3, + STATE(1975), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(795), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1073), 3, + ACTIONS(1133), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(783), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1801), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49210,7 +48923,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1290), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49227,62 +48940,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26608] = 24, - ACTIONS(711), 1, + [26594] = 23, + ACTIONS(785), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(793), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(797), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(803), 1, sym_string_start, - ACTIONS(1041), 1, + ACTIONS(819), 1, anon_sym_not, - ACTIONS(1043), 1, - anon_sym_lambda, - ACTIONS(1079), 1, - anon_sym_await, - ACTIONS(1295), 1, + ACTIONS(1129), 1, sym_identifier, - ACTIONS(1315), 1, + ACTIONS(1139), 1, + anon_sym_await, + ACTIONS(1279), 1, anon_sym_STAR, - ACTIONS(1439), 1, - anon_sym_RPAREN, - STATE(967), 1, + ACTIONS(1281), 1, + anon_sym_lambda, + STATE(951), 1, sym_primary_expression, - STATE(1028), 1, + STATE(980), 1, sym_string, - STATE(1388), 1, + STATE(1345), 1, sym_list_splat_pattern, - STATE(1987), 1, + STATE(1795), 1, sym_expression, - STATE(2583), 1, - sym_with_item, - STATE(2638), 1, + STATE(2647), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(799), 2, sym_ellipsis, sym_float, - ACTIONS(1075), 2, + ACTIONS(1135), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + STATE(1949), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(795), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1073), 3, + ACTIONS(1133), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(783), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1801), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49290,7 +49002,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1290), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49307,62 +49019,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26712] = 24, - ACTIONS(801), 1, + [26696] = 24, + ACTIONS(695), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(703), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(713), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(1059), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(1061), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(1075), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1269), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1325), 1, anon_sym_STAR, - ACTIONS(1347), 1, - anon_sym_COLON, - STATE(976), 1, + ACTIONS(1423), 1, + anon_sym_RPAREN, + STATE(952), 1, sym_primary_expression, - STATE(1107), 1, + STATE(992), 1, sym_string, - STATE(1437), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1795), 1, + STATE(1924), 1, sym_expression, - STATE(2461), 1, - sym_slice, - STATE(2777), 1, + STATE(2532), 1, + sym_with_item, + STATE(2633), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(1071), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(1069), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49370,7 +49082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49387,61 +49099,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26816] = 23, - ACTIONS(733), 1, + [26800] = 23, + ACTIONS(785), 1, anon_sym_LPAREN, - ACTIONS(741), 1, + ACTIONS(793), 1, anon_sym_LBRACK, - ACTIONS(745), 1, + ACTIONS(797), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(803), 1, sym_string_start, - ACTIONS(843), 1, - sym_identifier, - ACTIONS(859), 1, + ACTIONS(819), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(1129), 1, + sym_identifier, + ACTIONS(1139), 1, anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(1279), 1, anon_sym_STAR, - ACTIONS(1289), 1, + ACTIONS(1281), 1, anon_sym_lambda, - STATE(912), 1, + STATE(951), 1, sym_primary_expression, - STATE(971), 1, + STATE(980), 1, sym_string, - STATE(1203), 1, + STATE(1345), 1, sym_list_splat_pattern, - STATE(1804), 1, + STATE(1803), 1, sym_expression, - STATE(2683), 1, + STATE(2647), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(747), 2, + ACTIONS(799), 2, sym_ellipsis, sym_float, - ACTIONS(853), 2, + ACTIONS(1135), 2, anon_sym_match, anon_sym_type, - STATE(2090), 2, + STATE(2072), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(743), 3, + ACTIONS(795), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(1133), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + ACTIONS(783), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1771), 7, + STATE(1801), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49449,7 +49161,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1138), 16, + STATE(1290), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49466,62 +49178,140 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26918] = 24, - ACTIONS(310), 1, + [26902] = 23, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(325), 1, - anon_sym_await, - ACTIONS(327), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(375), 1, sym_identifier, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1431), 1, + ACTIONS(398), 1, + anon_sym_await, + ACTIONS(633), 1, anon_sym_LPAREN, - ACTIONS(1433), 1, + ACTIONS(641), 1, + anon_sym_LBRACK, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(970), 1, + STATE(851), 1, sym_primary_expression, - STATE(1010), 1, + STATE(954), 1, sym_string, - STATE(1342), 1, + STATE(1046), 1, sym_list_splat_pattern, - STATE(1930), 1, + STATE(1760), 1, sym_expression, - STATE(2269), 1, - sym_with_item, - STATE(2767), 1, - sym_with_clause, - STATE(2775), 1, + STATE(2658), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(387), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1425), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1640), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1063), 16, + 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_await, + [27004] = 23, + ACTIONS(785), 1, + anon_sym_LPAREN, + ACTIONS(793), 1, + anon_sym_LBRACK, + ACTIONS(797), 1, + anon_sym_LBRACE, + ACTIONS(803), 1, + sym_string_start, + ACTIONS(819), 1, + anon_sym_not, + ACTIONS(1129), 1, + sym_identifier, + ACTIONS(1139), 1, + anon_sym_await, + ACTIONS(1279), 1, + anon_sym_STAR, + ACTIONS(1281), 1, + anon_sym_lambda, + STATE(951), 1, + sym_primary_expression, + STATE(980), 1, + sym_string, + STATE(1345), 1, + sym_list_splat_pattern, + STATE(1782), 1, + sym_expression, + STATE(2647), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(799), 2, + sym_ellipsis, + sym_float, + ACTIONS(1135), 2, + anon_sym_match, + anon_sym_type, + STATE(2088), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(795), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(1133), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(783), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1801), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49529,7 +49319,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1290), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49546,56 +49336,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27022] = 23, - ACTIONS(801), 1, + [27106] = 23, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(975), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1259), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1285), 1, anon_sym_STAR, - STATE(976), 1, + STATE(960), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1038), 1, sym_string, STATE(1437), 1, sym_list_splat_pattern, - STATE(1956), 1, + STATE(1908), 1, sym_expression, - STATE(2777), 1, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(1293), 2, + ACTIONS(1427), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(811), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, @@ -49608,7 +49398,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49625,61 +49415,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27124] = 23, - ACTIONS(779), 1, + [27208] = 23, + ACTIONS(785), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(793), 1, anon_sym_LBRACK, - ACTIONS(791), 1, - anon_sym_LBRACE, ACTIONS(797), 1, + anon_sym_LBRACE, + ACTIONS(803), 1, sym_string_start, - ACTIONS(883), 1, + ACTIONS(819), 1, anon_sym_not, - ACTIONS(1159), 1, + ACTIONS(1129), 1, sym_identifier, - ACTIONS(1169), 1, + ACTIONS(1139), 1, anon_sym_await, - ACTIONS(1267), 1, + ACTIONS(1279), 1, anon_sym_STAR, - ACTIONS(1273), 1, + ACTIONS(1281), 1, anon_sym_lambda, - STATE(965), 1, + STATE(951), 1, sym_primary_expression, - STATE(996), 1, + STATE(980), 1, sym_string, - STATE(1360), 1, + STATE(1345), 1, sym_list_splat_pattern, - STATE(1831), 1, + STATE(1795), 1, sym_expression, - STATE(2611), 1, + STATE(2647), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(799), 2, sym_ellipsis, sym_float, - ACTIONS(1165), 2, + ACTIONS(1135), 2, anon_sym_match, anon_sym_type, - STATE(2048), 2, + STATE(2073), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(789), 3, + ACTIONS(795), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1163), 3, + ACTIONS(1133), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(783), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1801), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49687,7 +49477,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1290), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49704,61 +49494,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27226] = 23, - ACTIONS(67), 1, + [27310] = 23, + ACTIONS(739), 1, + anon_sym_LPAREN, + ACTIONS(749), 1, + anon_sym_LBRACK, + ACTIONS(753), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(759), 1, sym_string_start, - ACTIONS(383), 1, + ACTIONS(841), 1, + anon_sym_not, + ACTIONS(1119), 1, sym_identifier, - ACTIONS(406), 1, + ACTIONS(1127), 1, anon_sym_await, - ACTIONS(649), 1, - anon_sym_LPAREN, - ACTIONS(657), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1235), 1, anon_sym_STAR, - STATE(865), 1, + ACTIONS(1239), 1, + anon_sym_lambda, + STATE(947), 1, sym_primary_expression, - STATE(969), 1, + STATE(1018), 1, sym_string, - STATE(1119), 1, + STATE(1281), 1, sym_list_splat_pattern, - STATE(1877), 1, + STATE(1810), 1, sym_expression, - STATE(2751), 1, + STATE(2580), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(755), 2, sym_ellipsis, sym_float, - ACTIONS(395), 2, + ACTIONS(1125), 2, anon_sym_match, anon_sym_type, - ACTIONS(1441), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + STATE(1919), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(751), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(1123), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(737), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1666), 7, + STATE(1797), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49766,7 +49556,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1347), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49783,61 +49573,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27328] = 23, - ACTIONS(733), 1, + [27412] = 23, + ACTIONS(717), 1, anon_sym_LPAREN, - ACTIONS(741), 1, + ACTIONS(725), 1, anon_sym_LBRACK, - ACTIONS(745), 1, + ACTIONS(729), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(735), 1, sym_string_start, - ACTIONS(843), 1, + ACTIONS(849), 1, sym_identifier, - ACTIONS(859), 1, - anon_sym_not, ACTIONS(865), 1, + anon_sym_not, + ACTIONS(871), 1, anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(1251), 1, anon_sym_STAR, - ACTIONS(1289), 1, + ACTIONS(1257), 1, anon_sym_lambda, - STATE(912), 1, + STATE(946), 1, sym_primary_expression, - STATE(971), 1, + STATE(957), 1, sym_string, - STATE(1203), 1, + STATE(1164), 1, sym_list_splat_pattern, - STATE(1794), 1, + STATE(1814), 1, sym_expression, - STATE(2683), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(747), 2, + ACTIONS(731), 2, sym_ellipsis, sym_float, - ACTIONS(853), 2, + ACTIONS(859), 2, anon_sym_match, anon_sym_type, - STATE(2104), 2, + STATE(1935), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(743), 3, + ACTIONS(727), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(857), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + ACTIONS(715), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1771), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49845,7 +49635,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1138), 16, + STATE(1149), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49862,61 +49652,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27430] = 23, - ACTIONS(801), 1, + [27514] = 23, + ACTIONS(717), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(725), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(729), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(735), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(849), 1, + sym_identifier, + ACTIONS(865), 1, anon_sym_not, - ACTIONS(989), 1, - anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(871), 1, anon_sym_await, - ACTIONS(1257), 1, - sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1251), 1, anon_sym_STAR, - STATE(976), 1, + ACTIONS(1257), 1, + anon_sym_lambda, + STATE(946), 1, sym_primary_expression, - STATE(1107), 1, + STATE(957), 1, sym_string, - STATE(1437), 1, + STATE(1164), 1, sym_list_splat_pattern, - STATE(1909), 1, + STATE(1814), 1, sym_expression, - STATE(2777), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(731), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(859), 2, anon_sym_match, anon_sym_type, - ACTIONS(1443), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(811), 3, + STATE(1886), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(727), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(857), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(715), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49924,7 +49714,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1149), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49941,61 +49731,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27532] = 23, - ACTIONS(779), 1, + [27616] = 23, + ACTIONS(717), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(725), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(729), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(735), 1, sym_string_start, - ACTIONS(883), 1, - anon_sym_not, - ACTIONS(1159), 1, + ACTIONS(849), 1, sym_identifier, - ACTIONS(1169), 1, + ACTIONS(865), 1, + anon_sym_not, + ACTIONS(871), 1, anon_sym_await, - ACTIONS(1267), 1, + ACTIONS(1251), 1, anon_sym_STAR, - ACTIONS(1273), 1, + ACTIONS(1257), 1, anon_sym_lambda, - STATE(965), 1, + STATE(946), 1, sym_primary_expression, - STATE(996), 1, + STATE(957), 1, sym_string, - STATE(1360), 1, + STATE(1164), 1, sym_list_splat_pattern, - STATE(1801), 1, + STATE(1811), 1, sym_expression, - STATE(2611), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(731), 2, sym_ellipsis, sym_float, - ACTIONS(1165), 2, + ACTIONS(859), 2, anon_sym_match, anon_sym_type, - STATE(1996), 2, + STATE(2026), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(789), 3, + ACTIONS(727), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1163), 3, + ACTIONS(857), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(715), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50003,7 +49793,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1149), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50020,61 +49810,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27634] = 23, - ACTIONS(67), 1, + [27718] = 23, + ACTIONS(717), 1, + anon_sym_LPAREN, + ACTIONS(725), 1, + anon_sym_LBRACK, + ACTIONS(729), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(735), 1, sym_string_start, - ACTIONS(383), 1, + ACTIONS(849), 1, sym_identifier, - ACTIONS(406), 1, + ACTIONS(865), 1, + anon_sym_not, + ACTIONS(871), 1, anon_sym_await, - ACTIONS(649), 1, - anon_sym_LPAREN, - ACTIONS(657), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1251), 1, anon_sym_STAR, - STATE(865), 1, + ACTIONS(1257), 1, + anon_sym_lambda, + STATE(946), 1, sym_primary_expression, - STATE(969), 1, + STATE(957), 1, sym_string, - STATE(1119), 1, + STATE(1164), 1, sym_list_splat_pattern, - STATE(1877), 1, + STATE(1764), 1, sym_expression, - STATE(2751), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(731), 2, sym_ellipsis, sym_float, - ACTIONS(395), 2, + ACTIONS(859), 2, anon_sym_match, anon_sym_type, - ACTIONS(1445), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + STATE(2033), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(727), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(857), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(715), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1666), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50082,7 +49872,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1149), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50099,65 +49889,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27736] = 19, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(668), 1, + [27820] = 23, + ACTIONS(717), 1, anon_sym_LPAREN, - ACTIONS(672), 1, - anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(725), 1, anon_sym_LBRACK, - ACTIONS(682), 1, + ACTIONS(729), 1, + anon_sym_LBRACE, + ACTIONS(735), 1, + sym_string_start, + ACTIONS(849), 1, + sym_identifier, + ACTIONS(865), 1, + anon_sym_not, + ACTIONS(871), 1, anon_sym_await, - STATE(1010), 1, - sym_string, - STATE(1051), 1, + ACTIONS(1251), 1, + anon_sym_STAR, + ACTIONS(1257), 1, + anon_sym_lambda, + STATE(946), 1, sym_primary_expression, - STATE(1342), 1, + STATE(957), 1, + sym_string, + STATE(1164), 1, sym_list_splat_pattern, + STATE(1814), 1, + sym_expression, + STATE(2638), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(321), 2, + ACTIONS(731), 2, sym_ellipsis, sym_float, - ACTIONS(676), 2, + ACTIONS(859), 2, anon_sym_match, anon_sym_type, - ACTIONS(1415), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(315), 3, + STATE(2028), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(727), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(674), 3, + ACTIONS(857), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 5, + ACTIONS(715), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(277), 9, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PIPE, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1268), 16, + STATE(1754), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1149), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50174,57 +49968,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27830] = 24, - ACTIONS(801), 1, + [27922] = 23, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(975), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1259), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1285), 1, anon_sym_STAR, - ACTIONS(1347), 1, - anon_sym_COLON, - STATE(976), 1, + STATE(960), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1038), 1, sym_string, STATE(1437), 1, sym_list_splat_pattern, - STATE(1814), 1, + STATE(1972), 1, sym_expression, - STATE(2455), 1, - sym_slice, - STATE(2777), 1, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(1429), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, @@ -50237,7 +50030,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50254,61 +50047,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27934] = 23, - ACTIONS(733), 1, + [28024] = 24, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(741), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(745), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(843), 1, - sym_identifier, - ACTIONS(859), 1, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(973), 1, + anon_sym_lambda, + ACTIONS(975), 1, anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(1259), 1, + sym_identifier, + ACTIONS(1285), 1, anon_sym_STAR, - ACTIONS(1289), 1, - anon_sym_lambda, - STATE(912), 1, + ACTIONS(1331), 1, + anon_sym_COLON, + STATE(960), 1, sym_primary_expression, - STATE(971), 1, + STATE(1038), 1, sym_string, - STATE(1203), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1824), 1, + STATE(1860), 1, sym_expression, - STATE(2683), 1, + STATE(2579), 1, + sym_slice, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(747), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(853), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - STATE(2093), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(743), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1771), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50316,7 +50110,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1138), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50333,61 +50127,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28036] = 23, - ACTIONS(711), 1, + [28128] = 23, + ACTIONS(739), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(749), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(753), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(759), 1, sym_string_start, - ACTIONS(1041), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(1043), 1, - anon_sym_lambda, - ACTIONS(1079), 1, - anon_sym_await, - ACTIONS(1295), 1, + ACTIONS(1119), 1, sym_identifier, - ACTIONS(1315), 1, + ACTIONS(1127), 1, + anon_sym_await, + ACTIONS(1235), 1, anon_sym_STAR, - STATE(967), 1, + ACTIONS(1239), 1, + anon_sym_lambda, + STATE(947), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1018), 1, sym_string, - STATE(1388), 1, + STATE(1281), 1, sym_list_splat_pattern, - STATE(1949), 1, + STATE(1759), 1, sym_expression, - STATE(2638), 1, + STATE(2580), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(755), 2, sym_ellipsis, sym_float, - ACTIONS(1075), 2, + ACTIONS(1125), 2, anon_sym_match, anon_sym_type, - ACTIONS(1293), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(721), 3, + STATE(2004), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(751), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1073), 3, + ACTIONS(1123), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(737), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1797), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50395,7 +50189,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1347), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50412,62 +50206,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28138] = 24, - ACTIONS(801), 1, - anon_sym_LPAREN, - ACTIONS(809), 1, - anon_sym_LBRACK, - ACTIONS(813), 1, + [28230] = 23, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(819), 1, - sym_string_start, - ACTIONS(987), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(991), 1, - anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(375), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(398), 1, + anon_sym_await, + ACTIONS(633), 1, + anon_sym_LPAREN, + ACTIONS(641), 1, + anon_sym_LBRACK, + ACTIONS(1293), 1, anon_sym_STAR, - ACTIONS(1347), 1, - anon_sym_COLON, - STATE(976), 1, + STATE(851), 1, sym_primary_expression, - STATE(1107), 1, + STATE(954), 1, sym_string, - STATE(1437), 1, + STATE(1046), 1, sym_list_splat_pattern, - STATE(1803), 1, + STATE(1830), 1, sym_expression, - STATE(2330), 1, - sym_slice, - STATE(2777), 1, + STATE(2658), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(1431), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50475,7 +50268,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1063), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50492,62 +50285,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28242] = 24, - ACTIONS(310), 1, + [28332] = 23, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(325), 1, - anon_sym_await, - ACTIONS(327), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(375), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(398), 1, + anon_sym_await, + ACTIONS(633), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(641), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1293), 1, anon_sym_STAR, - ACTIONS(1447), 1, - anon_sym_COLON, - STATE(970), 1, + STATE(851), 1, sym_primary_expression, - STATE(1010), 1, + STATE(954), 1, sym_string, - STATE(1342), 1, + STATE(1046), 1, sym_list_splat_pattern, - STATE(1930), 1, + STATE(1830), 1, sym_expression, - STATE(2554), 1, - sym_with_item, - STATE(2775), 1, + STATE(2658), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(387), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1433), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(383), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50555,7 +50347,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1063), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50572,62 +50364,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28346] = 24, - ACTIONS(801), 1, + [28434] = 23, + ACTIONS(739), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(749), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(753), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(759), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(989), 1, - anon_sym_lambda, - ACTIONS(991), 1, - anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1119), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1127), 1, + anon_sym_await, + ACTIONS(1235), 1, anon_sym_STAR, - ACTIONS(1347), 1, - anon_sym_COLON, - STATE(976), 1, + ACTIONS(1239), 1, + anon_sym_lambda, + STATE(947), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1018), 1, sym_string, - STATE(1437), 1, + STATE(1281), 1, sym_list_splat_pattern, - STATE(1784), 1, + STATE(1762), 1, sym_expression, - STATE(2469), 1, - sym_slice, - STATE(2777), 1, + STATE(2580), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(755), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(1125), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + STATE(2044), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(751), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(1123), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(737), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1797), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50635,7 +50426,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1347), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50652,65 +50443,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28450] = 19, - ACTIONS(310), 1, + [28536] = 24, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(309), 1, + anon_sym_lambda, + ACTIONS(317), 1, + anon_sym_await, + ACTIONS(319), 1, sym_string_start, - ACTIONS(668), 1, + ACTIONS(400), 1, + sym_identifier, + ACTIONS(662), 1, + anon_sym_LBRACK, + ACTIONS(1011), 1, + anon_sym_not, + ACTIONS(1411), 1, anon_sym_LPAREN, - ACTIONS(672), 1, + ACTIONS(1413), 1, anon_sym_STAR, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(682), 1, - anon_sym_await, - STATE(1010), 1, - sym_string, - STATE(1051), 1, + STATE(953), 1, sym_primary_expression, - STATE(1342), 1, + STATE(975), 1, + sym_string, + STATE(1333), 1, sym_list_splat_pattern, + STATE(1902), 1, + sym_expression, + STATE(2279), 1, + sym_with_item, + STATE(2639), 1, + sym_with_clause, + STATE(2759), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(319), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(676), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(674), 3, + ACTIONS(313), 2, + sym_ellipsis, + sym_float, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 5, + ACTIONS(307), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(315), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(277), 9, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PIPE, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1268), 16, + STATE(1720), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50727,62 +50523,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28544] = 24, - ACTIONS(801), 1, - anon_sym_LPAREN, - ACTIONS(809), 1, - anon_sym_LBRACK, - ACTIONS(813), 1, + [28640] = 24, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(819), 1, - sym_string_start, - ACTIONS(987), 1, - anon_sym_not, - ACTIONS(989), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(317), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(319), 1, + sym_string_start, + ACTIONS(400), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(652), 1, + anon_sym_LPAREN, + ACTIONS(662), 1, + anon_sym_LBRACK, + ACTIONS(1011), 1, + anon_sym_not, + ACTIONS(1413), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1435), 1, anon_sym_COLON, - STATE(976), 1, + STATE(953), 1, sym_primary_expression, - STATE(1107), 1, + STATE(975), 1, sym_string, - STATE(1437), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1790), 1, + STATE(1902), 1, sym_expression, - STATE(2277), 1, - sym_slice, - STATE(2777), 1, + STATE(2553), 1, + sym_with_item, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, - sym_ellipsis, - sym_float, - ACTIONS(981), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(313), 2, + sym_ellipsis, + sym_float, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(307), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50790,7 +50586,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50807,62 +50603,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28648] = 24, - ACTIONS(801), 1, + [28744] = 23, + ACTIONS(739), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(749), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(753), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(759), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(989), 1, - anon_sym_lambda, - ACTIONS(991), 1, - anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1119), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1127), 1, + anon_sym_await, + ACTIONS(1235), 1, anon_sym_STAR, - ACTIONS(1347), 1, - anon_sym_COLON, - STATE(976), 1, + ACTIONS(1239), 1, + anon_sym_lambda, + STATE(947), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1018), 1, sym_string, - STATE(1437), 1, + STATE(1281), 1, sym_list_splat_pattern, - STATE(1797), 1, + STATE(1810), 1, sym_expression, - STATE(2320), 1, - sym_slice, - STATE(2777), 1, + STATE(2580), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(755), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(1125), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + STATE(2008), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(751), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(1123), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(737), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1797), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50870,7 +50665,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1347), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50887,57 +50682,57 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28752] = 24, - ACTIONS(801), 1, + [28846] = 24, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(975), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1259), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1285), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1331), 1, anon_sym_COLON, - STATE(976), 1, + STATE(960), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1038), 1, sym_string, STATE(1437), 1, sym_list_splat_pattern, - STATE(1800), 1, + STATE(1792), 1, sym_expression, - STATE(2358), 1, + STATE(2278), 1, sym_slice, - STATE(2777), 1, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, @@ -50950,7 +50745,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50967,57 +50762,57 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28856] = 24, - ACTIONS(801), 1, + [28950] = 24, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(975), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1259), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1285), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1331), 1, anon_sym_COLON, - STATE(976), 1, + STATE(960), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1038), 1, sym_string, STATE(1437), 1, sym_list_splat_pattern, - STATE(1810), 1, + STATE(1787), 1, sym_expression, - STATE(2391), 1, + STATE(2238), 1, sym_slice, - STATE(2777), 1, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, @@ -51030,7 +50825,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51047,57 +50842,57 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28960] = 24, - ACTIONS(801), 1, + [29054] = 24, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(975), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1259), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1285), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1331), 1, anon_sym_COLON, - STATE(976), 1, + STATE(960), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1038), 1, sym_string, STATE(1437), 1, sym_list_splat_pattern, - STATE(1817), 1, + STATE(1767), 1, sym_expression, - STATE(2408), 1, + STATE(2290), 1, sym_slice, - STATE(2777), 1, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, @@ -51110,7 +50905,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51127,61 +50922,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29064] = 23, - ACTIONS(755), 1, + [29158] = 24, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(769), 1, - anon_sym_LBRACE, ACTIONS(775), 1, + anon_sym_LBRACE, + ACTIONS(781), 1, sym_string_start, - ACTIONS(835), 1, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(1051), 1, - sym_identifier, - ACTIONS(1061), 1, + ACTIONS(973), 1, + anon_sym_lambda, + ACTIONS(975), 1, anon_sym_await, - ACTIONS(1251), 1, + ACTIONS(1259), 1, + sym_identifier, + ACTIONS(1285), 1, anon_sym_STAR, - ACTIONS(1255), 1, - anon_sym_lambda, - STATE(963), 1, + ACTIONS(1331), 1, + anon_sym_COLON, + STATE(960), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1038), 1, sym_string, - STATE(1258), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1827), 1, + STATE(1769), 1, sym_expression, - STATE(2771), 1, + STATE(2335), 1, + sym_slice, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(1059), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - STATE(2020), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(767), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1057), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51189,7 +50985,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51206,61 +51002,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29166] = 23, - ACTIONS(755), 1, + [29262] = 24, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(769), 1, - anon_sym_LBRACE, ACTIONS(775), 1, + anon_sym_LBRACE, + ACTIONS(781), 1, sym_string_start, - ACTIONS(835), 1, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(1051), 1, - sym_identifier, - ACTIONS(1061), 1, + ACTIONS(973), 1, + anon_sym_lambda, + ACTIONS(975), 1, anon_sym_await, - ACTIONS(1251), 1, + ACTIONS(1259), 1, + sym_identifier, + ACTIONS(1285), 1, anon_sym_STAR, - ACTIONS(1255), 1, - anon_sym_lambda, - STATE(963), 1, + ACTIONS(1331), 1, + anon_sym_COLON, + STATE(960), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1038), 1, sym_string, - STATE(1258), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1783), 1, + STATE(1812), 1, sym_expression, - STATE(2771), 1, + STATE(2363), 1, + sym_slice, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(1059), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - STATE(2105), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(767), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1057), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51268,7 +51065,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51285,62 +51082,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29268] = 24, - ACTIONS(310), 1, + [29366] = 24, + ACTIONS(763), 1, + anon_sym_LPAREN, + ACTIONS(771), 1, + anon_sym_LBRACK, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(781), 1, + sym_string_start, + ACTIONS(971), 1, + anon_sym_not, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(975), 1, anon_sym_await, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(408), 1, + ACTIONS(1259), 1, sym_identifier, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1431), 1, - anon_sym_LPAREN, - ACTIONS(1433), 1, + ACTIONS(1285), 1, anon_sym_STAR, - STATE(970), 1, + ACTIONS(1331), 1, + anon_sym_COLON, + STATE(960), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1038), 1, sym_string, - STATE(1342), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1930), 1, + STATE(1765), 1, sym_expression, - STATE(2269), 1, - sym_with_item, - STATE(2672), 1, - sym_with_clause, - STATE(2775), 1, + STATE(2382), 1, + sym_slice, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(965), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(963), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51348,7 +51145,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51365,62 +51162,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29372] = 24, - ACTIONS(310), 1, + [29470] = 24, + ACTIONS(763), 1, + anon_sym_LPAREN, + ACTIONS(771), 1, + anon_sym_LBRACK, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(781), 1, + sym_string_start, + ACTIONS(971), 1, + anon_sym_not, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(975), 1, anon_sym_await, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(408), 1, + ACTIONS(1259), 1, sym_identifier, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1431), 1, - anon_sym_LPAREN, - ACTIONS(1433), 1, + ACTIONS(1285), 1, anon_sym_STAR, - STATE(970), 1, + ACTIONS(1331), 1, + anon_sym_COLON, + STATE(960), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1038), 1, sym_string, - STATE(1342), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1930), 1, + STATE(1778), 1, sym_expression, - STATE(2269), 1, - sym_with_item, - STATE(2679), 1, - sym_with_clause, - STATE(2775), 1, + STATE(2408), 1, + sym_slice, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(965), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(963), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51428,7 +51225,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51445,61 +51242,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29476] = 23, - ACTIONS(779), 1, + [29574] = 24, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(883), 1, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(1159), 1, - sym_identifier, - ACTIONS(1169), 1, + ACTIONS(973), 1, + anon_sym_lambda, + ACTIONS(975), 1, anon_sym_await, - ACTIONS(1267), 1, + ACTIONS(1259), 1, + sym_identifier, + ACTIONS(1285), 1, anon_sym_STAR, - ACTIONS(1273), 1, - anon_sym_lambda, - STATE(965), 1, + ACTIONS(1331), 1, + anon_sym_COLON, + STATE(960), 1, sym_primary_expression, - STATE(996), 1, + STATE(1038), 1, sym_string, - STATE(1360), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1802), 1, + STATE(1783), 1, sym_expression, - STATE(2611), 1, + STATE(2415), 1, + sym_slice, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(1165), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - STATE(1998), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(789), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1163), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51507,7 +51305,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51524,61 +51322,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29578] = 23, - ACTIONS(755), 1, + [29678] = 24, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(769), 1, - anon_sym_LBRACE, ACTIONS(775), 1, + anon_sym_LBRACE, + ACTIONS(781), 1, sym_string_start, - ACTIONS(835), 1, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(1051), 1, - sym_identifier, - ACTIONS(1061), 1, + ACTIONS(973), 1, + anon_sym_lambda, + ACTIONS(975), 1, anon_sym_await, - ACTIONS(1251), 1, + ACTIONS(1259), 1, + sym_identifier, + ACTIONS(1285), 1, anon_sym_STAR, - ACTIONS(1255), 1, - anon_sym_lambda, - STATE(963), 1, + ACTIONS(1331), 1, + anon_sym_COLON, + STATE(960), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1038), 1, sym_string, - STATE(1258), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1783), 1, + STATE(1785), 1, sym_expression, - STATE(2771), 1, + STATE(2420), 1, + sym_slice, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(1059), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - STATE(1899), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(767), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1057), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51586,7 +51385,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51603,61 +51402,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29680] = 23, - ACTIONS(779), 1, - anon_sym_LPAREN, - ACTIONS(787), 1, - anon_sym_LBRACK, - ACTIONS(791), 1, + [29782] = 24, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(309), 1, + anon_sym_lambda, + ACTIONS(317), 1, + anon_sym_await, + ACTIONS(319), 1, sym_string_start, - ACTIONS(883), 1, - anon_sym_not, - ACTIONS(1159), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(1169), 1, - anon_sym_await, - ACTIONS(1267), 1, + ACTIONS(662), 1, + anon_sym_LBRACK, + ACTIONS(1011), 1, + anon_sym_not, + ACTIONS(1411), 1, + anon_sym_LPAREN, + ACTIONS(1413), 1, anon_sym_STAR, - ACTIONS(1273), 1, - anon_sym_lambda, - STATE(965), 1, + STATE(953), 1, sym_primary_expression, - STATE(996), 1, + STATE(975), 1, sym_string, - STATE(1360), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1802), 1, + STATE(1902), 1, sym_expression, - STATE(2611), 1, + STATE(2279), 1, + sym_with_item, + STATE(2652), 1, + sym_with_clause, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, - sym_ellipsis, - sym_float, - ACTIONS(1165), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - STATE(1901), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(789), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1163), 3, + ACTIONS(313), 2, + sym_ellipsis, + sym_float, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(307), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51665,7 +51465,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51682,62 +51482,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29782] = 24, - ACTIONS(711), 1, + [29886] = 24, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(1041), 1, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(1079), 1, + ACTIONS(975), 1, anon_sym_await, - ACTIONS(1295), 1, + ACTIONS(1259), 1, sym_identifier, - ACTIONS(1315), 1, + ACTIONS(1285), 1, anon_sym_STAR, - ACTIONS(1449), 1, - anon_sym_RPAREN, - STATE(967), 1, + ACTIONS(1331), 1, + anon_sym_COLON, + STATE(960), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1038), 1, sym_string, - STATE(1388), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1987), 1, + STATE(1796), 1, sym_expression, - STATE(2583), 1, - sym_with_item, - STATE(2638), 1, + STATE(2346), 1, + sym_slice, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(1075), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1073), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51745,7 +51545,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51762,104 +51562,25 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29886] = 24, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(317), 1, - anon_sym_lambda, - ACTIONS(325), 1, - anon_sym_await, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(408), 1, - sym_identifier, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(1451), 1, - anon_sym_COLON, - STATE(970), 1, - sym_primary_expression, - STATE(1010), 1, - sym_string, - STATE(1342), 1, - sym_list_splat_pattern, - STATE(1930), 1, - sym_expression, - STATE(2554), 1, - sym_with_item, - STATE(2775), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(323), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1717), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1268), 16, - 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_await, - [29990] = 10, - ACTIONS(284), 1, + [29990] = 11, + ACTIONS(276), 1, anon_sym_COMMA, - ACTIONS(292), 1, + ACTIONS(284), 1, anon_sym_COLON_EQ, - ACTIONS(1453), 1, + ACTIONS(286), 1, + anon_sym_COLON, + ACTIONS(294), 1, + anon_sym_EQ, + ACTIONS(1437), 1, sym_identifier, - ACTIONS(1455), 1, + ACTIONS(1439), 1, sym_string_start, - STATE(2385), 1, + STATE(2473), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(277), 10, + ACTIONS(269), 10, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -51870,7 +51591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(319), 13, + ACTIONS(311), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -51884,7 +51605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(279), 22, + ACTIONS(271), 22, anon_sym_as, anon_sym_STAR, anon_sym_GT_GT, @@ -51907,60 +51628,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_LT, anon_sym_GT, - [30065] = 23, - ACTIONS(310), 1, + [30067] = 23, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(317), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1413), 1, anon_sym_STAR, - STATE(970), 1, + ACTIONS(1441), 1, + anon_sym_COLON, + STATE(953), 1, sym_primary_expression, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1342), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1835), 1, + STATE(1884), 1, sym_expression, - STATE(2697), 1, - sym_expression_list, - STATE(2775), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51968,7 +51689,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51985,24 +51706,35 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30166] = 10, - ACTIONS(284), 1, + [30168] = 10, + ACTIONS(276), 1, anon_sym_COMMA, - ACTIONS(292), 1, + ACTIONS(284), 1, anon_sym_COLON_EQ, - ACTIONS(1457), 1, - anon_sym_for, - ACTIONS(1459), 1, - anon_sym_with, - ACTIONS(1461), 1, - anon_sym_def, + ACTIONS(1437), 1, + sym_identifier, + ACTIONS(1439), 1, + sym_string_start, + STATE(2473), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(294), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(319), 13, + ACTIONS(269), 10, + sym__newline, + anon_sym_SEMI, + 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, + ACTIONS(311), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -52016,94 +51748,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(279), 15, + ACTIONS(271), 22, + anon_sym_as, anon_sym_STAR, anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + 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_is, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [30241] = 23, - ACTIONS(310), 1, + [30243] = 23, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(317), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1413), 1, anon_sym_STAR, - STATE(970), 1, + ACTIONS(1443), 1, + anon_sym_COLON, + STATE(953), 1, sym_primary_expression, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1342), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1930), 1, + STATE(1884), 1, sym_expression, - STATE(2554), 1, - sym_with_item, - STATE(2775), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52111,7 +51832,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52128,60 +51849,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30342] = 23, - ACTIONS(310), 1, + [30344] = 23, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(317), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(1293), 1, - anon_sym_COLON, - ACTIONS(1433), 1, + ACTIONS(1413), 1, anon_sym_STAR, - STATE(970), 1, + ACTIONS(1445), 1, + anon_sym_COLON, + STATE(953), 1, sym_primary_expression, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1342), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1911), 1, + STATE(1884), 1, sym_expression, - STATE(2775), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52189,7 +51910,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52206,60 +51927,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30443] = 23, - ACTIONS(310), 1, + [30445] = 23, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(317), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(1265), 1, - anon_sym_COLON, - ACTIONS(1433), 1, + ACTIONS(1413), 1, anon_sym_STAR, - STATE(970), 1, + ACTIONS(1447), 1, + anon_sym_COLON, + STATE(953), 1, sym_primary_expression, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1342), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1911), 1, + STATE(1943), 1, sym_expression, - STATE(2775), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52267,7 +51988,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52284,125 +52005,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30544] = 10, - ACTIONS(284), 1, - anon_sym_COMMA, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(1463), 1, - anon_sym_for, - ACTIONS(1465), 1, - anon_sym_with, - ACTIONS(1467), 1, - anon_sym_def, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(302), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(319), 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(279), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - 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(277), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [30619] = 23, - ACTIONS(310), 1, + [30546] = 23, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(317), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1413), 1, anon_sym_STAR, - ACTIONS(1469), 1, - anon_sym_COLON, - STATE(970), 1, + STATE(953), 1, sym_primary_expression, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1342), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1941), 1, + STATE(1863), 1, sym_expression, - STATE(2775), 1, + STATE(2655), 1, + sym_expression_list, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52410,7 +52066,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52427,60 +52083,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30720] = 23, - ACTIONS(310), 1, + [30647] = 23, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(317), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1267), 1, + anon_sym_COLON, + ACTIONS(1413), 1, anon_sym_STAR, - STATE(970), 1, + STATE(953), 1, sym_primary_expression, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1342), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1863), 1, + STATE(1888), 1, sym_expression, - STATE(2712), 1, - sym_expression_list, - STATE(2775), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52488,7 +52144,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52505,60 +52161,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30821] = 23, - ACTIONS(310), 1, + [30748] = 23, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(325), 1, - anon_sym_await, - ACTIONS(327), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(375), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(398), 1, + anon_sym_await, + ACTIONS(633), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(641), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1293), 1, anon_sym_STAR, - ACTIONS(1471), 1, - anon_sym_COLON, - STATE(970), 1, + STATE(851), 1, sym_primary_expression, - STATE(1010), 1, + STATE(954), 1, sym_string, - STATE(1342), 1, + STATE(1046), 1, sym_list_splat_pattern, - STATE(1941), 1, + STATE(1793), 1, sym_expression, - STATE(2775), 1, + STATE(2544), 1, + sym_expression_list, + STATE(2658), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(387), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(383), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52566,7 +52222,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1063), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52583,60 +52239,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30922] = 23, - ACTIONS(67), 1, + [30849] = 23, + ACTIONS(695), 1, + anon_sym_LPAREN, + ACTIONS(703), 1, + anon_sym_LBRACK, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(713), 1, + sym_string_start, + ACTIONS(1059), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1061), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(383), 1, - sym_identifier, - ACTIONS(406), 1, + ACTIONS(1075), 1, anon_sym_await, - ACTIONS(649), 1, - anon_sym_LPAREN, - ACTIONS(657), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1269), 1, + sym_identifier, + ACTIONS(1325), 1, anon_sym_STAR, - STATE(865), 1, + STATE(952), 1, sym_primary_expression, - STATE(969), 1, + STATE(992), 1, sym_string, - STATE(1119), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1781), 1, + STATE(1924), 1, sym_expression, - STATE(2595), 1, - sym_expression_list, - STATE(2751), 1, + STATE(2532), 1, + sym_with_item, + STATE(2633), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(395), 2, + ACTIONS(1071), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(1069), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1666), 7, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52644,7 +52300,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52661,60 +52317,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31023] = 23, - ACTIONS(711), 1, - anon_sym_LPAREN, - ACTIONS(719), 1, - anon_sym_LBRACK, - ACTIONS(723), 1, + [30950] = 23, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(729), 1, - sym_string_start, - ACTIONS(1041), 1, - anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(1079), 1, + ACTIONS(317), 1, anon_sym_await, - ACTIONS(1295), 1, + ACTIONS(319), 1, + sym_string_start, + ACTIONS(400), 1, sym_identifier, - ACTIONS(1315), 1, + ACTIONS(652), 1, + anon_sym_LPAREN, + ACTIONS(662), 1, + anon_sym_LBRACK, + ACTIONS(1011), 1, + anon_sym_not, + ACTIONS(1277), 1, + anon_sym_COLON, + ACTIONS(1413), 1, anon_sym_STAR, - STATE(967), 1, + STATE(953), 1, sym_primary_expression, - STATE(1028), 1, + STATE(975), 1, sym_string, - STATE(1388), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1987), 1, + STATE(1888), 1, sym_expression, - STATE(2583), 1, - sym_with_item, - STATE(2638), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, - sym_ellipsis, - sym_float, - ACTIONS(1075), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1073), 3, + ACTIONS(313), 2, + sym_ellipsis, + sym_float, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(307), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52722,7 +52378,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52739,60 +52395,125 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31124] = 23, - ACTIONS(310), 1, + [31051] = 10, + ACTIONS(276), 1, + anon_sym_COMMA, + ACTIONS(284), 1, + anon_sym_COLON_EQ, + ACTIONS(1449), 1, + anon_sym_for, + ACTIONS(1451), 1, + anon_sym_with, + ACTIONS(1453), 1, + anon_sym_def, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(294), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(311), 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(271), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + 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(269), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [31126] = 23, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(317), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1413), 1, anon_sym_STAR, - ACTIONS(1473), 1, + ACTIONS(1455), 1, anon_sym_COLON, - STATE(970), 1, + STATE(953), 1, sym_primary_expression, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1342), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1941), 1, + STATE(1923), 1, sym_expression, - STATE(2775), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52800,7 +52521,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52817,60 +52538,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31225] = 23, - ACTIONS(310), 1, + [31227] = 23, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(317), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1413), 1, anon_sym_STAR, - STATE(970), 1, + STATE(953), 1, sym_primary_expression, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1342), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1839), 1, + STATE(1902), 1, sym_expression, - STATE(2641), 1, - sym_expression_list, - STATE(2775), 1, + STATE(2553), 1, + sym_with_item, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52878,7 +52599,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52895,60 +52616,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31326] = 23, - ACTIONS(310), 1, + [31328] = 23, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(317), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1413), 1, anon_sym_STAR, - ACTIONS(1475), 1, + ACTIONS(1457), 1, anon_sym_COLON, - STATE(970), 1, + STATE(953), 1, sym_primary_expression, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1342), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1967), 1, + STATE(1884), 1, sym_expression, - STATE(2775), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52956,7 +52677,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52973,126 +52694,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31427] = 11, - ACTIONS(284), 1, - anon_sym_COMMA, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(294), 1, - anon_sym_COLON, + [31429] = 23, ACTIONS(302), 1, - anon_sym_EQ, - ACTIONS(1453), 1, - sym_identifier, - ACTIONS(1455), 1, - sym_string_start, - STATE(2385), 1, - sym_string, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(277), 10, - sym__newline, - anon_sym_SEMI, - 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, - ACTIONS(319), 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(279), 22, - anon_sym_as, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - 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_is, - anon_sym_LT, - anon_sym_GT, - [31504] = 23, - ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(317), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1413), 1, anon_sym_STAR, - ACTIONS(1477), 1, - anon_sym_COLON, - STATE(970), 1, + STATE(953), 1, sym_primary_expression, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1342), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1941), 1, + STATE(1845), 1, sym_expression, - STATE(2775), 1, + STATE(2645), 1, + sym_expression_list, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53100,7 +52755,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53117,60 +52772,125 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, + [31530] = 10, + ACTIONS(276), 1, + anon_sym_COMMA, + ACTIONS(284), 1, + anon_sym_COLON_EQ, + ACTIONS(1459), 1, + anon_sym_for, + ACTIONS(1461), 1, + anon_sym_with, + ACTIONS(1463), 1, + anon_sym_def, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(294), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(311), 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(271), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + 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(269), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, [31605] = 23, - ACTIONS(310), 1, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(317), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1413), 1, anon_sym_STAR, - ACTIONS(1479), 1, - anon_sym_COLON, - STATE(970), 1, + STATE(953), 1, sym_primary_expression, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1342), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1947), 1, + STATE(1859), 1, sym_expression, - STATE(2775), 1, + STATE(2668), 1, + sym_expression_list, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53178,7 +52898,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53196,59 +52916,59 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [31706] = 23, - ACTIONS(310), 1, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(317), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1413), 1, anon_sym_STAR, - STATE(970), 1, + STATE(953), 1, sym_primary_expression, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1342), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1857), 1, + STATE(1861), 1, sym_expression, - STATE(2688), 1, + STATE(2677), 1, sym_expression_list, - STATE(2775), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53256,7 +52976,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53274,57 +52994,57 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [31807] = 22, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(317), 1, - anon_sym_lambda, - ACTIONS(325), 1, - anon_sym_await, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(408), 1, - sym_identifier, - ACTIONS(668), 1, + ACTIONS(739), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(749), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(753), 1, + anon_sym_LBRACE, + ACTIONS(759), 1, + sym_string_start, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(843), 1, + anon_sym_lambda, + ACTIONS(1119), 1, + sym_identifier, + ACTIONS(1127), 1, + anon_sym_await, + ACTIONS(1235), 1, anon_sym_STAR, - STATE(970), 1, + STATE(947), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1018), 1, sym_string, - STATE(1342), 1, + STATE(1281), 1, sym_list_splat_pattern, - STATE(1734), 1, + STATE(1774), 1, sym_expression, - STATE(2775), 1, + STATE(2580), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(755), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(1125), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(751), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(1123), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(737), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1797), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53332,7 +53052,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1347), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53350,57 +53070,57 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [31905] = 22, - ACTIONS(779), 1, + ACTIONS(739), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(749), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(753), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(759), 1, sym_string_start, - ACTIONS(883), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(885), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(1159), 1, + ACTIONS(1119), 1, sym_identifier, - ACTIONS(1169), 1, + ACTIONS(1127), 1, anon_sym_await, - ACTIONS(1267), 1, + ACTIONS(1235), 1, anon_sym_STAR, - STATE(965), 1, + STATE(947), 1, sym_primary_expression, - STATE(996), 1, + STATE(1018), 1, sym_string, - STATE(1360), 1, + STATE(1281), 1, sym_list_splat_pattern, - STATE(1821), 1, + STATE(1800), 1, sym_expression, - STATE(2611), 1, + STATE(2580), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(755), 2, sym_ellipsis, sym_float, - ACTIONS(1165), 2, + ACTIONS(1125), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(751), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1163), 3, + ACTIONS(1123), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(737), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1797), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53408,7 +53128,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1347), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53426,57 +53146,57 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [32003] = 22, - ACTIONS(779), 1, + ACTIONS(739), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(749), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(753), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(759), 1, sym_string_start, - ACTIONS(883), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(885), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(1159), 1, + ACTIONS(1119), 1, sym_identifier, - ACTIONS(1169), 1, + ACTIONS(1127), 1, anon_sym_await, - ACTIONS(1267), 1, + ACTIONS(1235), 1, anon_sym_STAR, - STATE(965), 1, + STATE(947), 1, sym_primary_expression, - STATE(996), 1, + STATE(1018), 1, sym_string, - STATE(1360), 1, + STATE(1281), 1, sym_list_splat_pattern, - STATE(1823), 1, + STATE(1806), 1, sym_expression, - STATE(2611), 1, + STATE(2580), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(755), 2, sym_ellipsis, sym_float, - ACTIONS(1165), 2, + ACTIONS(1125), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(751), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1163), 3, + ACTIONS(1123), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(737), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1797), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53484,7 +53204,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1347), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53502,57 +53222,57 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [32101] = 22, - ACTIONS(779), 1, + ACTIONS(785), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(793), 1, anon_sym_LBRACK, - ACTIONS(791), 1, - anon_sym_LBRACE, ACTIONS(797), 1, + anon_sym_LBRACE, + ACTIONS(803), 1, sym_string_start, - ACTIONS(883), 1, + ACTIONS(819), 1, anon_sym_not, - ACTIONS(885), 1, + ACTIONS(821), 1, anon_sym_lambda, - ACTIONS(1159), 1, + ACTIONS(1129), 1, sym_identifier, - ACTIONS(1169), 1, + ACTIONS(1139), 1, anon_sym_await, - ACTIONS(1267), 1, + ACTIONS(1279), 1, anon_sym_STAR, - STATE(965), 1, + STATE(951), 1, sym_primary_expression, - STATE(996), 1, + STATE(980), 1, sym_string, - STATE(1360), 1, + STATE(1345), 1, sym_list_splat_pattern, - STATE(1825), 1, + STATE(1763), 1, sym_expression, - STATE(2611), 1, + STATE(2647), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(799), 2, sym_ellipsis, sym_float, - ACTIONS(1165), 2, + ACTIONS(1135), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(795), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1163), 3, + ACTIONS(1133), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(783), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1801), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53560,7 +53280,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1290), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53578,57 +53298,57 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [32199] = 22, - ACTIONS(779), 1, + ACTIONS(785), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(793), 1, anon_sym_LBRACK, - ACTIONS(791), 1, - anon_sym_LBRACE, ACTIONS(797), 1, + anon_sym_LBRACE, + ACTIONS(803), 1, sym_string_start, - ACTIONS(883), 1, + ACTIONS(819), 1, anon_sym_not, - ACTIONS(885), 1, + ACTIONS(821), 1, anon_sym_lambda, - ACTIONS(1159), 1, + ACTIONS(1129), 1, sym_identifier, - ACTIONS(1169), 1, + ACTIONS(1139), 1, anon_sym_await, - ACTIONS(1267), 1, + ACTIONS(1279), 1, anon_sym_STAR, - STATE(965), 1, + STATE(951), 1, sym_primary_expression, - STATE(996), 1, + STATE(980), 1, sym_string, - STATE(1360), 1, + STATE(1345), 1, sym_list_splat_pattern, - STATE(1826), 1, + STATE(1768), 1, sym_expression, - STATE(2611), 1, + STATE(2647), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(799), 2, sym_ellipsis, sym_float, - ACTIONS(1165), 2, + ACTIONS(1135), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(795), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1163), 3, + ACTIONS(1133), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(783), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1801), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53636,7 +53356,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1290), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53653,184 +53373,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32297] = 9, - ACTIONS(1485), 1, - anon_sym_else, - ACTIONS(1487), 1, - anon_sym_except, - ACTIONS(1489), 1, - anon_sym_finally, - STATE(705), 1, - sym_else_clause, - STATE(747), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(622), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1481), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1483), 32, - anon_sym_import, - anon_sym_from, - 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_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - 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, - [32369] = 9, - ACTIONS(1485), 1, - anon_sym_else, - ACTIONS(1489), 1, - anon_sym_finally, - ACTIONS(1491), 1, - anon_sym_except_STAR, - STATE(705), 1, - sym_else_clause, - STATE(747), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(623), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1481), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1483), 32, - anon_sym_import, - anon_sym_from, - 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_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - 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, - [32441] = 22, - ACTIONS(779), 1, + [32297] = 22, + ACTIONS(785), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(793), 1, anon_sym_LBRACK, - ACTIONS(791), 1, - anon_sym_LBRACE, ACTIONS(797), 1, + anon_sym_LBRACE, + ACTIONS(803), 1, sym_string_start, - ACTIONS(883), 1, + ACTIONS(819), 1, anon_sym_not, - ACTIONS(885), 1, + ACTIONS(821), 1, anon_sym_lambda, - ACTIONS(1159), 1, + ACTIONS(1129), 1, sym_identifier, - ACTIONS(1169), 1, + ACTIONS(1139), 1, anon_sym_await, - ACTIONS(1267), 1, + ACTIONS(1279), 1, anon_sym_STAR, - STATE(965), 1, + STATE(951), 1, sym_primary_expression, - STATE(996), 1, + STATE(980), 1, sym_string, - STATE(1360), 1, + STATE(1345), 1, sym_list_splat_pattern, - STATE(1787), 1, + STATE(1771), 1, sym_expression, - STATE(2611), 1, + STATE(2647), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(799), 2, sym_ellipsis, sym_float, - ACTIONS(1165), 2, + ACTIONS(1135), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(795), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1163), 3, + ACTIONS(1133), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(783), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1801), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53838,7 +53432,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1290), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53855,58 +53449,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32539] = 22, - ACTIONS(779), 1, + [32395] = 22, + ACTIONS(785), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(793), 1, anon_sym_LBRACK, - ACTIONS(791), 1, - anon_sym_LBRACE, ACTIONS(797), 1, + anon_sym_LBRACE, + ACTIONS(803), 1, sym_string_start, - ACTIONS(883), 1, + ACTIONS(819), 1, anon_sym_not, - ACTIONS(885), 1, + ACTIONS(821), 1, anon_sym_lambda, - ACTIONS(1159), 1, + ACTIONS(1129), 1, sym_identifier, - ACTIONS(1169), 1, + ACTIONS(1139), 1, anon_sym_await, - ACTIONS(1267), 1, + ACTIONS(1279), 1, anon_sym_STAR, - STATE(965), 1, + STATE(951), 1, sym_primary_expression, - STATE(996), 1, + STATE(980), 1, sym_string, - STATE(1360), 1, + STATE(1345), 1, sym_list_splat_pattern, - STATE(1816), 1, + STATE(1772), 1, sym_expression, - STATE(2611), 1, + STATE(2647), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(799), 2, sym_ellipsis, sym_float, - ACTIONS(1165), 2, + ACTIONS(1135), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(795), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1163), 3, + ACTIONS(1133), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(783), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1801), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53914,7 +53508,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1290), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53931,58 +53525,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32637] = 22, - ACTIONS(779), 1, + [32493] = 22, + ACTIONS(785), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(793), 1, anon_sym_LBRACK, - ACTIONS(791), 1, - anon_sym_LBRACE, ACTIONS(797), 1, + anon_sym_LBRACE, + ACTIONS(803), 1, sym_string_start, - ACTIONS(883), 1, + ACTIONS(819), 1, anon_sym_not, - ACTIONS(885), 1, + ACTIONS(821), 1, anon_sym_lambda, - ACTIONS(1159), 1, + ACTIONS(1129), 1, sym_identifier, - ACTIONS(1169), 1, + ACTIONS(1139), 1, anon_sym_await, - ACTIONS(1267), 1, + ACTIONS(1279), 1, anon_sym_STAR, - STATE(965), 1, + STATE(951), 1, sym_primary_expression, - STATE(996), 1, + STATE(980), 1, sym_string, - STATE(1360), 1, + STATE(1345), 1, sym_list_splat_pattern, - STATE(1777), 1, + STATE(1773), 1, sym_expression, - STATE(2611), 1, + STATE(2647), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(799), 2, sym_ellipsis, sym_float, - ACTIONS(1165), 2, + ACTIONS(1135), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(795), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1163), 3, + ACTIONS(1133), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(783), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1801), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53990,7 +53584,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1290), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54007,58 +53601,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32735] = 22, - ACTIONS(733), 1, + [32591] = 22, + ACTIONS(739), 1, anon_sym_LPAREN, - ACTIONS(741), 1, + ACTIONS(749), 1, anon_sym_LBRACK, - ACTIONS(745), 1, + ACTIONS(753), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(759), 1, sym_string_start, - ACTIONS(843), 1, - sym_identifier, - ACTIONS(859), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(861), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(865), 1, + ACTIONS(1119), 1, + sym_identifier, + ACTIONS(1127), 1, anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(1235), 1, anon_sym_STAR, - STATE(912), 1, + STATE(947), 1, sym_primary_expression, - STATE(971), 1, + STATE(1018), 1, sym_string, - STATE(1203), 1, + STATE(1281), 1, sym_list_splat_pattern, - STATE(1739), 1, + STATE(1808), 1, sym_expression, - STATE(2683), 1, + STATE(2580), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(747), 2, + ACTIONS(755), 2, sym_ellipsis, sym_float, - ACTIONS(853), 2, + ACTIONS(1125), 2, anon_sym_match, anon_sym_type, - ACTIONS(743), 3, + ACTIONS(751), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(1123), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + ACTIONS(737), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1771), 7, + STATE(1797), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54066,7 +53660,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1138), 16, + STATE(1347), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54083,58 +53677,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32833] = 22, - ACTIONS(733), 1, + [32689] = 22, + ACTIONS(739), 1, anon_sym_LPAREN, - ACTIONS(741), 1, + ACTIONS(749), 1, anon_sym_LBRACK, - ACTIONS(745), 1, + ACTIONS(753), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(759), 1, sym_string_start, - ACTIONS(843), 1, - sym_identifier, - ACTIONS(859), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(861), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(865), 1, + ACTIONS(1119), 1, + sym_identifier, + ACTIONS(1127), 1, anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(1235), 1, anon_sym_STAR, - STATE(912), 1, + STATE(947), 1, sym_primary_expression, - STATE(971), 1, + STATE(1018), 1, sym_string, - STATE(1203), 1, + STATE(1281), 1, sym_list_splat_pattern, - STATE(1752), 1, + STATE(1809), 1, sym_expression, - STATE(2683), 1, + STATE(2580), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(747), 2, + ACTIONS(755), 2, sym_ellipsis, sym_float, - ACTIONS(853), 2, + ACTIONS(1125), 2, anon_sym_match, anon_sym_type, - ACTIONS(743), 3, + ACTIONS(751), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(1123), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + ACTIONS(737), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1771), 7, + STATE(1797), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54142,7 +53736,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1138), 16, + STATE(1347), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54159,58 +53753,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32931] = 22, - ACTIONS(733), 1, + [32787] = 22, + ACTIONS(717), 1, anon_sym_LPAREN, - ACTIONS(741), 1, + ACTIONS(725), 1, anon_sym_LBRACK, - ACTIONS(745), 1, + ACTIONS(729), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(735), 1, sym_string_start, - ACTIONS(843), 1, + ACTIONS(849), 1, sym_identifier, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_not, - ACTIONS(861), 1, + ACTIONS(867), 1, anon_sym_lambda, - ACTIONS(865), 1, + ACTIONS(871), 1, anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(1251), 1, anon_sym_STAR, - STATE(912), 1, + STATE(946), 1, sym_primary_expression, - STATE(971), 1, + STATE(957), 1, sym_string, - STATE(1203), 1, + STATE(1164), 1, sym_list_splat_pattern, - STATE(1753), 1, + STATE(1770), 1, sym_expression, - STATE(2683), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(747), 2, + ACTIONS(731), 2, sym_ellipsis, sym_float, - ACTIONS(853), 2, + ACTIONS(859), 2, anon_sym_match, anon_sym_type, - ACTIONS(743), 3, + ACTIONS(727), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(857), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + ACTIONS(715), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1771), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54218,7 +53812,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1138), 16, + STATE(1149), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54235,58 +53829,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33029] = 22, - ACTIONS(733), 1, + [32885] = 22, + ACTIONS(785), 1, anon_sym_LPAREN, - ACTIONS(741), 1, + ACTIONS(793), 1, anon_sym_LBRACK, - ACTIONS(745), 1, + ACTIONS(797), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(803), 1, sym_string_start, - ACTIONS(843), 1, - sym_identifier, - ACTIONS(859), 1, + ACTIONS(819), 1, anon_sym_not, - ACTIONS(861), 1, + ACTIONS(821), 1, anon_sym_lambda, - ACTIONS(865), 1, + ACTIONS(1129), 1, + sym_identifier, + ACTIONS(1139), 1, anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(1279), 1, anon_sym_STAR, - STATE(912), 1, + STATE(951), 1, sym_primary_expression, - STATE(971), 1, + STATE(980), 1, sym_string, - STATE(1203), 1, + STATE(1345), 1, sym_list_splat_pattern, - STATE(1754), 1, + STATE(1786), 1, sym_expression, - STATE(2683), 1, + STATE(2647), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(747), 2, + ACTIONS(799), 2, sym_ellipsis, sym_float, - ACTIONS(853), 2, + ACTIONS(1135), 2, anon_sym_match, anon_sym_type, - ACTIONS(743), 3, + ACTIONS(795), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(1133), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + ACTIONS(783), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1771), 7, + STATE(1801), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54294,7 +53888,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1138), 16, + STATE(1290), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54311,58 +53905,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33127] = 22, - ACTIONS(733), 1, - anon_sym_LPAREN, - ACTIONS(741), 1, - anon_sym_LBRACK, - ACTIONS(745), 1, + [32983] = 22, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(309), 1, + anon_sym_lambda, + ACTIONS(317), 1, + anon_sym_await, + ACTIONS(319), 1, sym_string_start, - ACTIONS(843), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(859), 1, + ACTIONS(652), 1, + anon_sym_LPAREN, + ACTIONS(662), 1, + anon_sym_LBRACK, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(861), 1, - anon_sym_lambda, - ACTIONS(865), 1, - anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(1413), 1, anon_sym_STAR, - STATE(912), 1, + STATE(953), 1, sym_primary_expression, - STATE(971), 1, + STATE(975), 1, sym_string, - STATE(1203), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1774), 1, + STATE(1981), 1, sym_expression, - STATE(2683), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(747), 2, - sym_ellipsis, - sym_float, - ACTIONS(853), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(743), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(313), 2, + sym_ellipsis, + sym_float, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + ACTIONS(307), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1771), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54370,7 +53964,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1138), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54387,58 +53981,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33225] = 22, - ACTIONS(733), 1, + [33081] = 22, + ACTIONS(785), 1, anon_sym_LPAREN, - ACTIONS(741), 1, + ACTIONS(793), 1, anon_sym_LBRACK, - ACTIONS(745), 1, + ACTIONS(797), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(803), 1, sym_string_start, - ACTIONS(843), 1, - sym_identifier, - ACTIONS(859), 1, + ACTIONS(819), 1, anon_sym_not, - ACTIONS(861), 1, + ACTIONS(821), 1, anon_sym_lambda, - ACTIONS(865), 1, + ACTIONS(1129), 1, + sym_identifier, + ACTIONS(1139), 1, anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(1279), 1, anon_sym_STAR, - STATE(912), 1, + STATE(951), 1, sym_primary_expression, - STATE(971), 1, + STATE(980), 1, sym_string, - STATE(1203), 1, + STATE(1345), 1, sym_list_splat_pattern, - STATE(1758), 1, + STATE(1791), 1, sym_expression, - STATE(2683), 1, + STATE(2647), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(747), 2, + ACTIONS(799), 2, sym_ellipsis, sym_float, - ACTIONS(853), 2, + ACTIONS(1135), 2, anon_sym_match, anon_sym_type, - ACTIONS(743), 3, + ACTIONS(795), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(1133), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + ACTIONS(783), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1771), 7, + STATE(1801), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54446,7 +54040,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1138), 16, + STATE(1290), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54463,58 +54057,184 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33323] = 22, - ACTIONS(733), 1, + [33179] = 9, + ACTIONS(1469), 1, + anon_sym_else, + ACTIONS(1471), 1, + anon_sym_except, + ACTIONS(1473), 1, + anon_sym_finally, + STATE(693), 1, + sym_else_clause, + STATE(740), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(609), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1465), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(741), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(745), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(751), 1, - sym_string_start, - ACTIONS(843), 1, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1467), 32, + anon_sym_import, + anon_sym_from, + 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_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + 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(859), 1, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [33251] = 9, + ACTIONS(1469), 1, + anon_sym_else, + ACTIONS(1473), 1, + anon_sym_finally, + ACTIONS(1475), 1, + anon_sym_except_STAR, + STATE(693), 1, + sym_else_clause, + STATE(740), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(610), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(1465), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1467), 32, + anon_sym_import, + anon_sym_from, + 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_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(861), 1, anon_sym_lambda, - ACTIONS(865), 1, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(1287), 1, + sym_true, + sym_false, + sym_none, + [33323] = 22, + ACTIONS(673), 1, + anon_sym_LPAREN, + ACTIONS(681), 1, + anon_sym_LBRACK, + ACTIONS(685), 1, + anon_sym_LBRACE, + ACTIONS(691), 1, + sym_string_start, + ACTIONS(981), 1, anon_sym_STAR, - STATE(912), 1, + ACTIONS(989), 1, + anon_sym_not, + ACTIONS(991), 1, + anon_sym_lambda, + ACTIONS(1077), 1, + sym_identifier, + ACTIONS(1087), 1, + anon_sym_await, + STATE(932), 1, sym_primary_expression, - STATE(971), 1, + STATE(963), 1, sym_string, - STATE(1203), 1, + STATE(1223), 1, sym_list_splat_pattern, - STATE(1759), 1, + STATE(1753), 1, sym_expression, - STATE(2683), 1, + STATE(2688), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(747), 2, + ACTIONS(687), 2, sym_ellipsis, sym_float, - ACTIONS(853), 2, + ACTIONS(1085), 2, anon_sym_match, anon_sym_type, - ACTIONS(743), 3, + ACTIONS(683), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(1083), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + ACTIONS(671), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1771), 7, + STATE(1744), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54522,7 +54242,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1138), 16, + STATE(1198), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54540,57 +54260,57 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [33421] = 22, - ACTIONS(67), 1, + ACTIONS(717), 1, + anon_sym_LPAREN, + ACTIONS(725), 1, + anon_sym_LBRACK, + ACTIONS(729), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(735), 1, sym_string_start, - ACTIONS(383), 1, + ACTIONS(849), 1, sym_identifier, - ACTIONS(406), 1, + ACTIONS(865), 1, + anon_sym_not, + ACTIONS(867), 1, + anon_sym_lambda, + ACTIONS(871), 1, anon_sym_await, - ACTIONS(649), 1, - anon_sym_LPAREN, - ACTIONS(657), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1251), 1, anon_sym_STAR, - STATE(865), 1, + STATE(946), 1, sym_primary_expression, - STATE(969), 1, + STATE(957), 1, sym_string, - STATE(1119), 1, + STATE(1164), 1, sym_list_splat_pattern, - STATE(1805), 1, + STATE(1748), 1, sym_expression, - STATE(2751), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(731), 2, sym_ellipsis, sym_float, - ACTIONS(395), 2, + ACTIONS(859), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(727), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(857), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(715), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1666), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54598,7 +54318,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1149), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54616,57 +54336,57 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [33519] = 22, - ACTIONS(686), 1, + ACTIONS(717), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(725), 1, anon_sym_LBRACK, - ACTIONS(698), 1, + ACTIONS(729), 1, anon_sym_LBRACE, - ACTIONS(704), 1, + ACTIONS(735), 1, sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(849), 1, + sym_identifier, + ACTIONS(865), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(867), 1, anon_sym_lambda, - ACTIONS(1095), 1, - sym_identifier, - ACTIONS(1105), 1, + ACTIONS(871), 1, anon_sym_await, - STATE(909), 1, + ACTIONS(1251), 1, + anon_sym_STAR, + STATE(946), 1, sym_primary_expression, - STATE(975), 1, + STATE(957), 1, sym_string, - STATE(1214), 1, + STATE(1164), 1, sym_list_splat_pattern, - STATE(1740), 1, + STATE(1749), 1, sym_expression, - STATE(2773), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(700), 2, + ACTIONS(731), 2, sym_ellipsis, sym_float, - ACTIONS(1103), 2, + ACTIONS(859), 2, anon_sym_match, anon_sym_type, - ACTIONS(696), 3, + ACTIONS(727), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1101), 3, + ACTIONS(857), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(684), 4, + ACTIONS(715), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54674,7 +54394,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1172), 16, + STATE(1149), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54692,57 +54412,57 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [33617] = 22, - ACTIONS(686), 1, + ACTIONS(717), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(725), 1, anon_sym_LBRACK, - ACTIONS(698), 1, + ACTIONS(729), 1, anon_sym_LBRACE, - ACTIONS(704), 1, + ACTIONS(735), 1, sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(849), 1, + sym_identifier, + ACTIONS(865), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(867), 1, anon_sym_lambda, - ACTIONS(1095), 1, - sym_identifier, - ACTIONS(1105), 1, + ACTIONS(871), 1, anon_sym_await, - STATE(909), 1, + ACTIONS(1251), 1, + anon_sym_STAR, + STATE(946), 1, sym_primary_expression, - STATE(975), 1, + STATE(957), 1, sym_string, - STATE(1214), 1, + STATE(1164), 1, sym_list_splat_pattern, - STATE(1741), 1, + STATE(1750), 1, sym_expression, - STATE(2773), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(700), 2, + ACTIONS(731), 2, sym_ellipsis, sym_float, - ACTIONS(1103), 2, + ACTIONS(859), 2, anon_sym_match, anon_sym_type, - ACTIONS(696), 3, + ACTIONS(727), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1101), 3, + ACTIONS(857), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(684), 4, + ACTIONS(715), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54750,7 +54470,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1172), 16, + STATE(1149), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54768,57 +54488,57 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [33715] = 22, - ACTIONS(686), 1, + ACTIONS(717), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(725), 1, anon_sym_LBRACK, - ACTIONS(698), 1, + ACTIONS(729), 1, anon_sym_LBRACE, - ACTIONS(704), 1, + ACTIONS(735), 1, sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(849), 1, + sym_identifier, + ACTIONS(865), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(867), 1, anon_sym_lambda, - ACTIONS(1095), 1, - sym_identifier, - ACTIONS(1105), 1, + ACTIONS(871), 1, anon_sym_await, - STATE(909), 1, + ACTIONS(1251), 1, + anon_sym_STAR, + STATE(946), 1, sym_primary_expression, - STATE(975), 1, + STATE(957), 1, sym_string, - STATE(1214), 1, + STATE(1164), 1, sym_list_splat_pattern, - STATE(1742), 1, + STATE(1755), 1, sym_expression, - STATE(2773), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(700), 2, + ACTIONS(731), 2, sym_ellipsis, sym_float, - ACTIONS(1103), 2, + ACTIONS(859), 2, anon_sym_match, anon_sym_type, - ACTIONS(696), 3, + ACTIONS(727), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1101), 3, + ACTIONS(857), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(684), 4, + ACTIONS(715), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54826,7 +54546,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1172), 16, + STATE(1149), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54844,57 +54564,57 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [33813] = 22, - ACTIONS(686), 1, + ACTIONS(717), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(725), 1, anon_sym_LBRACK, - ACTIONS(698), 1, + ACTIONS(729), 1, anon_sym_LBRACE, - ACTIONS(704), 1, + ACTIONS(735), 1, sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(849), 1, + sym_identifier, + ACTIONS(865), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(867), 1, anon_sym_lambda, - ACTIONS(1095), 1, - sym_identifier, - ACTIONS(1105), 1, + ACTIONS(871), 1, anon_sym_await, - STATE(909), 1, + ACTIONS(1251), 1, + anon_sym_STAR, + STATE(946), 1, sym_primary_expression, - STATE(975), 1, + STATE(957), 1, sym_string, - STATE(1214), 1, + STATE(1164), 1, sym_list_splat_pattern, - STATE(1743), 1, + STATE(1758), 1, sym_expression, - STATE(2773), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(700), 2, + ACTIONS(731), 2, sym_ellipsis, sym_float, - ACTIONS(1103), 2, + ACTIONS(859), 2, anon_sym_match, anon_sym_type, - ACTIONS(696), 3, + ACTIONS(727), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1101), 3, + ACTIONS(857), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(684), 4, + ACTIONS(715), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54902,7 +54622,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1172), 16, + STATE(1149), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54920,57 +54640,57 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [33911] = 22, - ACTIONS(686), 1, - anon_sym_LPAREN, - ACTIONS(694), 1, - anon_sym_LBRACK, - ACTIONS(698), 1, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(704), 1, - sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1095), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(375), 1, sym_identifier, - ACTIONS(1105), 1, + ACTIONS(398), 1, anon_sym_await, - STATE(909), 1, + ACTIONS(633), 1, + anon_sym_LPAREN, + ACTIONS(641), 1, + anon_sym_LBRACK, + ACTIONS(1293), 1, + anon_sym_STAR, + STATE(851), 1, sym_primary_expression, - STATE(975), 1, + STATE(954), 1, sym_string, - STATE(1214), 1, + STATE(1046), 1, sym_list_splat_pattern, - STATE(1744), 1, + STATE(1824), 1, sym_expression, - STATE(2773), 1, + STATE(2658), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(700), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1103), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, - ACTIONS(696), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1101), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(684), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54978,7 +54698,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1172), 16, + STATE(1063), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54996,57 +54716,57 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [34009] = 22, - ACTIONS(686), 1, + ACTIONS(717), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(725), 1, anon_sym_LBRACK, - ACTIONS(698), 1, + ACTIONS(729), 1, anon_sym_LBRACE, - ACTIONS(704), 1, + ACTIONS(735), 1, sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(849), 1, + sym_identifier, + ACTIONS(865), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(867), 1, anon_sym_lambda, - ACTIONS(1095), 1, - sym_identifier, - ACTIONS(1105), 1, + ACTIONS(871), 1, anon_sym_await, - STATE(909), 1, + ACTIONS(1251), 1, + anon_sym_STAR, + STATE(946), 1, sym_primary_expression, - STATE(975), 1, + STATE(957), 1, sym_string, - STATE(1214), 1, + STATE(1164), 1, sym_list_splat_pattern, - STATE(1749), 1, + STATE(1741), 1, sym_expression, - STATE(2773), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(700), 2, + ACTIONS(731), 2, sym_ellipsis, sym_float, - ACTIONS(1103), 2, + ACTIONS(859), 2, anon_sym_match, anon_sym_type, - ACTIONS(696), 3, + ACTIONS(727), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1101), 3, + ACTIONS(857), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(684), 4, + ACTIONS(715), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55054,7 +54774,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1172), 16, + STATE(1149), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55072,57 +54792,57 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [34107] = 22, - ACTIONS(686), 1, + ACTIONS(739), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(749), 1, anon_sym_LBRACK, - ACTIONS(698), 1, + ACTIONS(753), 1, anon_sym_LBRACE, - ACTIONS(704), 1, + ACTIONS(759), 1, sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(1095), 1, + ACTIONS(1119), 1, sym_identifier, - ACTIONS(1105), 1, + ACTIONS(1127), 1, anon_sym_await, - STATE(909), 1, + ACTIONS(1235), 1, + anon_sym_STAR, + STATE(947), 1, sym_primary_expression, - STATE(975), 1, + STATE(1018), 1, sym_string, - STATE(1214), 1, + STATE(1281), 1, sym_list_splat_pattern, - STATE(1750), 1, + STATE(1818), 1, sym_expression, - STATE(2773), 1, + STATE(2580), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(700), 2, + ACTIONS(755), 2, sym_ellipsis, sym_float, - ACTIONS(1103), 2, + ACTIONS(1125), 2, anon_sym_match, anon_sym_type, - ACTIONS(696), 3, + ACTIONS(751), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1101), 3, + ACTIONS(1123), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(684), 4, + ACTIONS(737), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1797), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55130,7 +54850,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1172), 16, + STATE(1347), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55148,57 +54868,57 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [34205] = 22, - ACTIONS(310), 1, + ACTIONS(717), 1, + anon_sym_LPAREN, + ACTIONS(725), 1, + anon_sym_LBRACK, + ACTIONS(729), 1, anon_sym_LBRACE, - ACTIONS(317), 1, - anon_sym_lambda, - ACTIONS(325), 1, - anon_sym_await, - ACTIONS(327), 1, + ACTIONS(735), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(849), 1, sym_identifier, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(865), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(867), 1, + anon_sym_lambda, + ACTIONS(871), 1, + anon_sym_await, + ACTIONS(1251), 1, anon_sym_STAR, - STATE(970), 1, + STATE(946), 1, sym_primary_expression, - STATE(1010), 1, + STATE(957), 1, sym_string, - STATE(1342), 1, + STATE(1164), 1, sym_list_splat_pattern, - STATE(1721), 1, + STATE(1742), 1, sym_expression, - STATE(2775), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(731), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(859), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(727), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(857), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(715), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55206,7 +54926,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1149), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55224,57 +54944,57 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [34303] = 22, - ACTIONS(67), 1, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(317), 1, + anon_sym_await, + ACTIONS(319), 1, sym_string_start, - ACTIONS(383), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(406), 1, - anon_sym_await, - ACTIONS(649), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1011), 1, + anon_sym_not, + ACTIONS(1413), 1, anon_sym_STAR, - STATE(865), 1, + STATE(953), 1, sym_primary_expression, - STATE(969), 1, + STATE(975), 1, sym_string, - STATE(1119), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1970), 1, + STATE(2041), 1, sym_expression, - STATE(2751), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(395), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(313), 2, + sym_ellipsis, + sym_float, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(307), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1666), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55282,7 +55002,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55300,57 +55020,57 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [34401] = 22, - ACTIONS(711), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(681), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(685), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(691), 1, sym_string_start, - ACTIONS(1041), 1, + ACTIONS(981), 1, + anon_sym_STAR, + ACTIONS(989), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(991), 1, anon_sym_lambda, - ACTIONS(1079), 1, - anon_sym_await, - ACTIONS(1295), 1, + ACTIONS(1077), 1, sym_identifier, - ACTIONS(1315), 1, - anon_sym_STAR, - STATE(967), 1, + ACTIONS(1087), 1, + anon_sym_await, + STATE(932), 1, sym_primary_expression, - STATE(1028), 1, + STATE(963), 1, sym_string, - STATE(1388), 1, + STATE(1223), 1, sym_list_splat_pattern, - STATE(1728), 1, + STATE(1731), 1, sym_expression, - STATE(2638), 1, + STATE(2688), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(687), 2, sym_ellipsis, sym_float, - ACTIONS(1075), 2, + ACTIONS(1085), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(683), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1073), 3, + ACTIONS(1083), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(671), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1744), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55358,7 +55078,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1198), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55376,57 +55096,57 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [34499] = 22, - ACTIONS(711), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(681), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(685), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(691), 1, sym_string_start, - ACTIONS(1041), 1, + ACTIONS(981), 1, + anon_sym_STAR, + ACTIONS(989), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(991), 1, anon_sym_lambda, - ACTIONS(1079), 1, - anon_sym_await, - ACTIONS(1295), 1, + ACTIONS(1077), 1, sym_identifier, - ACTIONS(1315), 1, - anon_sym_STAR, - STATE(967), 1, + ACTIONS(1087), 1, + anon_sym_await, + STATE(932), 1, sym_primary_expression, - STATE(1028), 1, + STATE(963), 1, sym_string, - STATE(1388), 1, + STATE(1223), 1, sym_list_splat_pattern, - STATE(1736), 1, + STATE(1733), 1, sym_expression, - STATE(2638), 1, + STATE(2688), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(687), 2, sym_ellipsis, sym_float, - ACTIONS(1075), 2, + ACTIONS(1085), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(683), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1073), 3, + ACTIONS(1083), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(671), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1744), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55434,7 +55154,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1198), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55452,57 +55172,57 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [34597] = 22, - ACTIONS(711), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(681), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(685), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(691), 1, sym_string_start, - ACTIONS(1041), 1, + ACTIONS(981), 1, + anon_sym_STAR, + ACTIONS(989), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(991), 1, anon_sym_lambda, - ACTIONS(1079), 1, - anon_sym_await, - ACTIONS(1295), 1, + ACTIONS(1077), 1, sym_identifier, - ACTIONS(1315), 1, - anon_sym_STAR, - STATE(967), 1, + ACTIONS(1087), 1, + anon_sym_await, + STATE(932), 1, sym_primary_expression, - STATE(1028), 1, + STATE(963), 1, sym_string, - STATE(1388), 1, + STATE(1223), 1, sym_list_splat_pattern, - STATE(1718), 1, + STATE(1734), 1, sym_expression, - STATE(2638), 1, + STATE(2688), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(687), 2, sym_ellipsis, sym_float, - ACTIONS(1075), 2, + ACTIONS(1085), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(683), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1073), 3, + ACTIONS(1083), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(671), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1744), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55510,7 +55230,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1198), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55528,57 +55248,57 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [34695] = 22, - ACTIONS(711), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(681), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(685), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(691), 1, sym_string_start, - ACTIONS(1041), 1, + ACTIONS(981), 1, + anon_sym_STAR, + ACTIONS(989), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(991), 1, anon_sym_lambda, - ACTIONS(1079), 1, - anon_sym_await, - ACTIONS(1295), 1, + ACTIONS(1077), 1, sym_identifier, - ACTIONS(1315), 1, - anon_sym_STAR, - STATE(967), 1, + ACTIONS(1087), 1, + anon_sym_await, + STATE(932), 1, sym_primary_expression, - STATE(1028), 1, + STATE(963), 1, sym_string, - STATE(1388), 1, + STATE(1223), 1, sym_list_splat_pattern, - STATE(1719), 1, + STATE(1735), 1, sym_expression, - STATE(2638), 1, + STATE(2688), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(687), 2, sym_ellipsis, sym_float, - ACTIONS(1075), 2, + ACTIONS(1085), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(683), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1073), 3, + ACTIONS(1083), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(671), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1744), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55586,7 +55306,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1198), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55604,57 +55324,57 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [34793] = 22, - ACTIONS(711), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(681), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(685), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(691), 1, sym_string_start, - ACTIONS(1041), 1, + ACTIONS(981), 1, + anon_sym_STAR, + ACTIONS(989), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(991), 1, anon_sym_lambda, - ACTIONS(1079), 1, - anon_sym_await, - ACTIONS(1295), 1, + ACTIONS(1077), 1, sym_identifier, - ACTIONS(1315), 1, - anon_sym_STAR, - STATE(967), 1, + ACTIONS(1087), 1, + anon_sym_await, + STATE(932), 1, sym_primary_expression, - STATE(1028), 1, + STATE(963), 1, sym_string, - STATE(1388), 1, + STATE(1223), 1, sym_list_splat_pattern, - STATE(1735), 1, + STATE(1736), 1, sym_expression, - STATE(2638), 1, + STATE(2688), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(687), 2, sym_ellipsis, sym_float, - ACTIONS(1075), 2, + ACTIONS(1085), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(683), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1073), 3, + ACTIONS(1083), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(671), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1744), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55662,7 +55382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1198), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55680,57 +55400,57 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [34891] = 22, - ACTIONS(711), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(681), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(685), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(691), 1, sym_string_start, - ACTIONS(1041), 1, + ACTIONS(981), 1, + anon_sym_STAR, + ACTIONS(989), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(991), 1, anon_sym_lambda, - ACTIONS(1079), 1, - anon_sym_await, - ACTIONS(1295), 1, + ACTIONS(1077), 1, sym_identifier, - ACTIONS(1315), 1, - anon_sym_STAR, - STATE(967), 1, + ACTIONS(1087), 1, + anon_sym_await, + STATE(932), 1, sym_primary_expression, - STATE(1028), 1, + STATE(963), 1, sym_string, - STATE(1388), 1, + STATE(1223), 1, sym_list_splat_pattern, - STATE(1722), 1, + STATE(1737), 1, sym_expression, - STATE(2638), 1, + STATE(2688), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(687), 2, sym_ellipsis, sym_float, - ACTIONS(1075), 2, + ACTIONS(1085), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(683), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1073), 3, + ACTIONS(1083), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(671), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1744), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55738,7 +55458,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1198), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55756,57 +55476,57 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [34989] = 22, - ACTIONS(711), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(681), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(685), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(691), 1, sym_string_start, - ACTIONS(1041), 1, + ACTIONS(981), 1, + anon_sym_STAR, + ACTIONS(989), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(991), 1, anon_sym_lambda, - ACTIONS(1079), 1, - anon_sym_await, - ACTIONS(1295), 1, + ACTIONS(1077), 1, sym_identifier, - ACTIONS(1315), 1, - anon_sym_STAR, - STATE(967), 1, + ACTIONS(1087), 1, + anon_sym_await, + STATE(932), 1, sym_primary_expression, - STATE(1028), 1, + STATE(963), 1, sym_string, - STATE(1388), 1, + STATE(1223), 1, sym_list_splat_pattern, - STATE(1726), 1, + STATE(1738), 1, sym_expression, - STATE(2638), 1, + STATE(2688), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(687), 2, sym_ellipsis, sym_float, - ACTIONS(1075), 2, + ACTIONS(1085), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(683), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1073), 3, + ACTIONS(1083), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(671), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1744), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55814,7 +55534,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1198), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55832,57 +55552,57 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [35087] = 22, - ACTIONS(310), 1, + ACTIONS(695), 1, + anon_sym_LPAREN, + ACTIONS(703), 1, + anon_sym_LBRACK, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(713), 1, + sym_string_start, + ACTIONS(1059), 1, + anon_sym_not, + ACTIONS(1061), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(1075), 1, anon_sym_await, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(408), 1, + ACTIONS(1269), 1, sym_identifier, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1325), 1, anon_sym_STAR, - STATE(970), 1, + STATE(952), 1, sym_primary_expression, - STATE(1010), 1, + STATE(992), 1, sym_string, - STATE(1342), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1984), 1, + STATE(1711), 1, sym_expression, - STATE(2775), 1, + STATE(2633), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(1071), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(1069), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55890,7 +55610,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55908,57 +55628,57 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [35185] = 22, - ACTIONS(801), 1, + ACTIONS(695), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(703), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(713), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(1059), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(1061), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(1075), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1269), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1325), 1, anon_sym_STAR, - STATE(976), 1, + STATE(952), 1, sym_primary_expression, - STATE(1107), 1, + STATE(992), 1, sym_string, - STATE(1437), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1760), 1, + STATE(1704), 1, sym_expression, - STATE(2777), 1, + STATE(2633), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(1071), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(1069), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55966,7 +55686,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55984,57 +55704,57 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [35283] = 22, - ACTIONS(801), 1, + ACTIONS(695), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(703), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(713), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(1059), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(1061), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(1075), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1269), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1325), 1, anon_sym_STAR, - STATE(976), 1, + STATE(952), 1, sym_primary_expression, - STATE(1107), 1, + STATE(992), 1, sym_string, - STATE(1437), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1763), 1, + STATE(1707), 1, sym_expression, - STATE(2777), 1, + STATE(2633), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(1071), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(1069), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56042,7 +55762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56060,57 +55780,57 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [35381] = 22, - ACTIONS(801), 1, + ACTIONS(695), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(703), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(713), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(1059), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(1061), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(1075), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1269), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1325), 1, anon_sym_STAR, - STATE(976), 1, + STATE(952), 1, sym_primary_expression, - STATE(1107), 1, + STATE(992), 1, sym_string, - STATE(1437), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1764), 1, + STATE(1719), 1, sym_expression, - STATE(2777), 1, + STATE(2633), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(1071), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(1069), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56118,7 +55838,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56136,57 +55856,57 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [35479] = 22, - ACTIONS(801), 1, + ACTIONS(695), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(703), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(713), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(1059), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(1061), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(1075), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1269), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1325), 1, anon_sym_STAR, - STATE(976), 1, + STATE(952), 1, sym_primary_expression, - STATE(1107), 1, + STATE(992), 1, sym_string, - STATE(1437), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1765), 1, + STATE(1701), 1, sym_expression, - STATE(2777), 1, + STATE(2633), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(1071), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(1069), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56194,7 +55914,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56212,57 +55932,57 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [35577] = 22, - ACTIONS(801), 1, + ACTIONS(695), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(703), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(713), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(1059), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(1061), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(1075), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1269), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1325), 1, anon_sym_STAR, - STATE(976), 1, + STATE(952), 1, sym_primary_expression, - STATE(1107), 1, + STATE(992), 1, sym_string, - STATE(1437), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1766), 1, + STATE(1722), 1, sym_expression, - STATE(2777), 1, + STATE(2633), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(1071), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(1069), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56270,7 +55990,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56288,57 +56008,57 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [35675] = 22, - ACTIONS(801), 1, + ACTIONS(695), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(703), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(713), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(1059), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(1061), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(1075), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1269), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1325), 1, anon_sym_STAR, - STATE(976), 1, + STATE(952), 1, sym_primary_expression, - STATE(1107), 1, + STATE(992), 1, sym_string, - STATE(1437), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1772), 1, + STATE(1715), 1, sym_expression, - STATE(2777), 1, + STATE(2633), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(1071), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(1069), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56346,7 +56066,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56364,52 +56084,52 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [35773] = 22, - ACTIONS(801), 1, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(975), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1259), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1285), 1, anon_sym_STAR, - STATE(976), 1, + STATE(960), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1038), 1, sym_string, STATE(1437), 1, sym_list_splat_pattern, - STATE(1773), 1, + STATE(1724), 1, sym_expression, - STATE(2777), 1, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, @@ -56422,7 +56142,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56440,133 +56160,57 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [35871] = 22, - ACTIONS(310), 1, + ACTIONS(763), 1, + anon_sym_LPAREN, + ACTIONS(771), 1, + anon_sym_LBRACK, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(781), 1, + sym_string_start, + ACTIONS(971), 1, + anon_sym_not, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(975), 1, anon_sym_await, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(408), 1, + ACTIONS(1259), 1, sym_identifier, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1285), 1, anon_sym_STAR, - STATE(970), 1, + STATE(960), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1038), 1, sym_string, - STATE(1342), 1, + STATE(1437), 1, sym_list_splat_pattern, STATE(1725), 1, sym_expression, - STATE(2775), 1, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(965), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1717), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1268), 16, - 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_await, - [35969] = 22, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(317), 1, - anon_sym_lambda, - ACTIONS(325), 1, - anon_sym_await, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(408), 1, - sym_identifier, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1433), 1, - anon_sym_STAR, - STATE(970), 1, - sym_primary_expression, - STATE(1010), 1, - sym_string, - STATE(1342), 1, - sym_list_splat_pattern, - STATE(1727), 1, - sym_expression, - STATE(2775), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(290), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56574,7 +56218,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56591,58 +56235,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36067] = 22, - ACTIONS(67), 1, + [35969] = 22, + ACTIONS(763), 1, + anon_sym_LPAREN, + ACTIONS(771), 1, + anon_sym_LBRACK, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(781), 1, + sym_string_start, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(383), 1, - sym_identifier, - ACTIONS(406), 1, + ACTIONS(975), 1, anon_sym_await, - ACTIONS(649), 1, - anon_sym_LPAREN, - ACTIONS(657), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1259), 1, + sym_identifier, + ACTIONS(1285), 1, anon_sym_STAR, - STATE(865), 1, + STATE(960), 1, sym_primary_expression, - STATE(969), 1, + STATE(1038), 1, sym_string, - STATE(1119), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1860), 1, + STATE(1726), 1, sym_expression, - STATE(2751), 1, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(395), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1666), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56650,7 +56294,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56667,58 +56311,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36165] = 22, - ACTIONS(755), 1, + [36067] = 22, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(769), 1, - anon_sym_LBRACE, ACTIONS(775), 1, + anon_sym_LBRACE, + ACTIONS(781), 1, sym_string_start, - ACTIONS(835), 1, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(1051), 1, - sym_identifier, - ACTIONS(1061), 1, + ACTIONS(975), 1, anon_sym_await, - ACTIONS(1251), 1, + ACTIONS(1259), 1, + sym_identifier, + ACTIONS(1285), 1, anon_sym_STAR, - STATE(963), 1, + STATE(960), 1, sym_primary_expression, - STATE(1015), 1, + STATE(1038), 1, sym_string, - STATE(1258), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1785), 1, + STATE(1727), 1, sym_expression, - STATE(2771), 1, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(1059), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1057), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56726,7 +56370,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56743,56 +56387,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36263] = 23, - ACTIONS(801), 1, + [36165] = 22, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(1333), 1, - anon_sym_STAR, - ACTIONS(1493), 1, - sym_identifier, - ACTIONS(1499), 1, + ACTIONS(975), 1, anon_sym_await, - STATE(1008), 1, + ACTIONS(1259), 1, + sym_identifier, + ACTIONS(1285), 1, + anon_sym_STAR, + STATE(960), 1, sym_primary_expression, - STATE(1107), 1, + STATE(1038), 1, sym_string, STATE(1437), 1, sym_list_splat_pattern, - STATE(1973), 1, + STATE(1728), 1, sym_expression, - STATE(2777), 1, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(1497), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - STATE(1257), 2, - sym_attribute, - sym_subscript, - ACTIONS(811), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1495), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, @@ -56805,9 +56446,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 14, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -56820,58 +56463,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36363] = 22, - ACTIONS(711), 1, + [36263] = 22, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(1041), 1, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(1079), 1, + ACTIONS(975), 1, anon_sym_await, - ACTIONS(1295), 1, + ACTIONS(1259), 1, sym_identifier, - ACTIONS(1315), 1, + ACTIONS(1285), 1, anon_sym_STAR, - STATE(967), 1, + STATE(960), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1038), 1, sym_string, - STATE(1388), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1897), 1, + STATE(1729), 1, sym_expression, - STATE(2638), 1, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(1075), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1073), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56879,7 +56522,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56896,58 +56539,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36461] = 22, - ACTIONS(67), 1, + [36361] = 22, + ACTIONS(763), 1, + anon_sym_LPAREN, + ACTIONS(771), 1, + anon_sym_LBRACK, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(781), 1, + sym_string_start, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(383), 1, - sym_identifier, - ACTIONS(406), 1, + ACTIONS(975), 1, anon_sym_await, - ACTIONS(649), 1, - anon_sym_LPAREN, - ACTIONS(657), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1259), 1, + sym_identifier, + ACTIONS(1285), 1, anon_sym_STAR, - STATE(865), 1, + STATE(960), 1, sym_primary_expression, - STATE(969), 1, + STATE(1038), 1, sym_string, - STATE(1119), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1664), 1, + STATE(1732), 1, sym_expression, - STATE(2751), 1, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(395), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1666), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56955,7 +56598,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56972,134 +56615,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36559] = 22, - ACTIONS(686), 1, - anon_sym_LPAREN, - ACTIONS(694), 1, - anon_sym_LBRACK, - ACTIONS(698), 1, + [36459] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(704), 1, - sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1095), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(375), 1, sym_identifier, - ACTIONS(1105), 1, + ACTIONS(398), 1, anon_sym_await, - STATE(909), 1, - sym_primary_expression, - STATE(975), 1, - sym_string, - STATE(1214), 1, - sym_list_splat_pattern, - STATE(1978), 1, - sym_expression, - STATE(2773), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(700), 2, - sym_ellipsis, - sym_float, - ACTIONS(1103), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(696), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1101), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(684), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1767), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1172), 16, - 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_await, - [36657] = 22, - ACTIONS(711), 1, + ACTIONS(633), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(641), 1, anon_sym_LBRACK, - ACTIONS(723), 1, - anon_sym_LBRACE, - ACTIONS(729), 1, - sym_string_start, - ACTIONS(1041), 1, - anon_sym_not, - ACTIONS(1043), 1, - anon_sym_lambda, - ACTIONS(1079), 1, - anon_sym_await, - ACTIONS(1295), 1, - sym_identifier, - ACTIONS(1315), 1, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(967), 1, + STATE(851), 1, sym_primary_expression, - STATE(1028), 1, + STATE(954), 1, sym_string, - STATE(1388), 1, + STATE(1046), 1, sym_list_splat_pattern, - STATE(1982), 1, + STATE(1647), 1, sym_expression, - STATE(2638), 1, + STATE(2658), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1075), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1073), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57107,7 +56674,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1063), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57124,7 +56691,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36755] = 22, + [36557] = 22, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -57133,25 +56700,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym_string_start, - ACTIONS(383), 1, + ACTIONS(375), 1, sym_identifier, - ACTIONS(406), 1, + ACTIONS(398), 1, anon_sym_await, - ACTIONS(649), 1, + ACTIONS(633), 1, anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(641), 1, anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(865), 1, + STATE(851), 1, sym_primary_expression, - STATE(969), 1, + STATE(954), 1, sym_string, - STATE(1119), 1, + STATE(1046), 1, sym_list_splat_pattern, - STATE(1927), 1, + STATE(1781), 1, sym_expression, - STATE(2751), 1, + STATE(2658), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -57159,14 +56726,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(395), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -57175,7 +56742,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1666), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57183,7 +56750,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1063), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57200,58 +56767,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36853] = 22, - ACTIONS(779), 1, + [36655] = 23, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(883), 1, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(885), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(1159), 1, + ACTIONS(1285), 1, + anon_sym_STAR, + ACTIONS(1477), 1, sym_identifier, - ACTIONS(1169), 1, + ACTIONS(1483), 1, anon_sym_await, - ACTIONS(1267), 1, - anon_sym_STAR, - STATE(965), 1, + STATE(979), 1, sym_primary_expression, - STATE(996), 1, + STATE(1038), 1, sym_string, - STATE(1360), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1882), 1, + STATE(1921), 1, sym_expression, - STATE(2611), 1, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(1165), 2, + ACTIONS(1481), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + STATE(1280), 2, + sym_attribute, + sym_subscript, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1163), 3, + ACTIONS(1479), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57259,11 +56829,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1435), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -57276,58 +56844,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36951] = 22, - ACTIONS(310), 1, + [36755] = 22, + ACTIONS(695), 1, + anon_sym_LPAREN, + ACTIONS(703), 1, + anon_sym_LBRACK, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(713), 1, + sym_string_start, + ACTIONS(1059), 1, + anon_sym_not, + ACTIONS(1061), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(1075), 1, anon_sym_await, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(408), 1, + ACTIONS(1269), 1, sym_identifier, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1325), 1, anon_sym_STAR, - STATE(970), 1, + STATE(952), 1, sym_primary_expression, - STATE(1010), 1, + STATE(992), 1, sym_string, - STATE(1342), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1730), 1, + STATE(1878), 1, sym_expression, - STATE(2775), 1, + STATE(2633), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(1071), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(1069), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57335,7 +56903,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57352,7 +56920,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37049] = 22, + [36853] = 22, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -57361,25 +56929,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym_string_start, - ACTIONS(383), 1, + ACTIONS(375), 1, sym_identifier, - ACTIONS(406), 1, + ACTIONS(398), 1, anon_sym_await, - ACTIONS(649), 1, + ACTIONS(633), 1, anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(641), 1, anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(865), 1, + STATE(851), 1, sym_primary_expression, - STATE(969), 1, + STATE(954), 1, sym_string, - STATE(1119), 1, + STATE(1046), 1, sym_list_splat_pattern, - STATE(1789), 1, + STATE(1653), 1, sym_expression, - STATE(2751), 1, + STATE(2658), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -57387,14 +56955,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(395), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -57403,7 +56971,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1666), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57411,7 +56979,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1063), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57428,58 +56996,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37147] = 22, - ACTIONS(310), 1, + [36951] = 22, + ACTIONS(695), 1, + anon_sym_LPAREN, + ACTIONS(703), 1, + anon_sym_LBRACK, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(713), 1, + sym_string_start, + ACTIONS(1059), 1, + anon_sym_not, + ACTIONS(1061), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(1075), 1, anon_sym_await, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(408), 1, + ACTIONS(1269), 1, sym_identifier, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1325), 1, anon_sym_STAR, - STATE(970), 1, + STATE(952), 1, sym_primary_expression, - STATE(1010), 1, + STATE(992), 1, sym_string, - STATE(1342), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(2014), 1, + STATE(1907), 1, sym_expression, - STATE(2775), 1, + STATE(2633), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(1071), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(1069), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57487,7 +57055,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57504,58 +57072,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37245] = 22, - ACTIONS(310), 1, + [37049] = 22, + ACTIONS(695), 1, + anon_sym_LPAREN, + ACTIONS(703), 1, + anon_sym_LBRACK, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(713), 1, + sym_string_start, + ACTIONS(1059), 1, + anon_sym_not, + ACTIONS(1061), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(1075), 1, anon_sym_await, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(408), 1, + ACTIONS(1269), 1, sym_identifier, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1325), 1, anon_sym_STAR, - STATE(970), 1, + STATE(952), 1, sym_primary_expression, - STATE(1010), 1, + STATE(992), 1, sym_string, - STATE(1342), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(2079), 1, + STATE(1911), 1, sym_expression, - STATE(2775), 1, + STATE(2633), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(1071), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(1069), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57563,7 +57131,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57580,58 +57148,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37343] = 22, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(317), 1, - anon_sym_lambda, - ACTIONS(325), 1, - anon_sym_await, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(408), 1, - sym_identifier, - ACTIONS(668), 1, + [37147] = 22, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(681), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(685), 1, + anon_sym_LBRACE, + ACTIONS(691), 1, + sym_string_start, + ACTIONS(981), 1, anon_sym_STAR, - STATE(970), 1, + ACTIONS(989), 1, + anon_sym_not, + ACTIONS(991), 1, + anon_sym_lambda, + ACTIONS(1077), 1, + sym_identifier, + ACTIONS(1087), 1, + anon_sym_await, + STATE(932), 1, sym_primary_expression, - STATE(1010), 1, + STATE(963), 1, sym_string, - STATE(1342), 1, + STATE(1223), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1942), 1, sym_expression, - STATE(2775), 1, + STATE(2688), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(687), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(1085), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(683), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(1083), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(671), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1744), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57639,7 +57207,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1198), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57656,58 +57224,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37441] = 22, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(317), 1, - anon_sym_lambda, - ACTIONS(325), 1, - anon_sym_await, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(408), 1, - sym_identifier, - ACTIONS(668), 1, + [37245] = 22, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(681), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(685), 1, + anon_sym_LBRACE, + ACTIONS(691), 1, + sym_string_start, + ACTIONS(981), 1, anon_sym_STAR, - STATE(970), 1, + ACTIONS(989), 1, + anon_sym_not, + ACTIONS(991), 1, + anon_sym_lambda, + ACTIONS(1077), 1, + sym_identifier, + ACTIONS(1087), 1, + anon_sym_await, + STATE(932), 1, sym_primary_expression, - STATE(1010), 1, + STATE(963), 1, sym_string, - STATE(1342), 1, + STATE(1223), 1, sym_list_splat_pattern, - STATE(1731), 1, + STATE(1871), 1, sym_expression, - STATE(2775), 1, + STATE(2688), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(687), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(1085), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(683), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(1083), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(671), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1744), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57715,7 +57283,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1198), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57732,58 +57300,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37539] = 22, - ACTIONS(310), 1, + [37343] = 22, + ACTIONS(695), 1, + anon_sym_LPAREN, + ACTIONS(703), 1, + anon_sym_LBRACK, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(713), 1, + sym_string_start, + ACTIONS(1059), 1, + anon_sym_not, + ACTIONS(1061), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(1075), 1, anon_sym_await, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(408), 1, + ACTIONS(1269), 1, sym_identifier, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1325), 1, anon_sym_STAR, - STATE(970), 1, + STATE(952), 1, sym_primary_expression, - STATE(1010), 1, + STATE(992), 1, sym_string, - STATE(1342), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(2083), 1, + STATE(1874), 1, sym_expression, - STATE(2775), 1, + STATE(2633), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(1071), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(1069), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57791,7 +57359,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57808,58 +57376,121 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37637] = 22, - ACTIONS(733), 1, + [37441] = 9, + ACTIONS(1485), 1, + anon_sym_else, + ACTIONS(1487), 1, + anon_sym_except, + ACTIONS(1489), 1, + anon_sym_finally, + STATE(684), 1, + sym_else_clause, + STATE(759), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(612), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1465), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(741), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(745), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(751), 1, - sym_string_start, - ACTIONS(843), 1, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1467), 32, + anon_sym_import, + anon_sym_from, + 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_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + 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(859), 1, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [37513] = 22, + ACTIONS(785), 1, + anon_sym_LPAREN, + ACTIONS(793), 1, + anon_sym_LBRACK, + ACTIONS(797), 1, + anon_sym_LBRACE, + ACTIONS(803), 1, + sym_string_start, + ACTIONS(819), 1, anon_sym_not, - ACTIONS(861), 1, + ACTIONS(821), 1, anon_sym_lambda, - ACTIONS(865), 1, + ACTIONS(1129), 1, + sym_identifier, + ACTIONS(1139), 1, anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(1279), 1, anon_sym_STAR, - STATE(912), 1, + STATE(951), 1, sym_primary_expression, - STATE(971), 1, + STATE(980), 1, sym_string, - STATE(1203), 1, + STATE(1345), 1, sym_list_splat_pattern, - STATE(1792), 1, + STATE(1835), 1, sym_expression, - STATE(2683), 1, + STATE(2647), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(747), 2, + ACTIONS(799), 2, sym_ellipsis, sym_float, - ACTIONS(853), 2, + ACTIONS(1135), 2, anon_sym_match, anon_sym_type, - ACTIONS(743), 3, + ACTIONS(795), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(1133), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + ACTIONS(783), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1771), 7, + STATE(1801), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57867,7 +57498,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1138), 16, + STATE(1290), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57884,134 +57515,121 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37735] = 22, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(317), 1, - anon_sym_lambda, - ACTIONS(325), 1, - anon_sym_await, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(408), 1, - sym_identifier, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1433), 1, - anon_sym_STAR, - STATE(970), 1, - sym_primary_expression, - STATE(1010), 1, - sym_string, - STATE(1342), 1, - sym_list_splat_pattern, - STATE(1911), 1, - sym_expression, - STATE(2775), 1, - sym__named_expression_lhs, + [37611] = 9, + ACTIONS(1485), 1, + anon_sym_else, + ACTIONS(1489), 1, + anon_sym_finally, + ACTIONS(1491), 1, + anon_sym_except_STAR, + STATE(684), 1, + sym_else_clause, + STATE(759), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + STATE(613), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(1465), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(1467), 32, + anon_sym_import, + anon_sym_from, 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_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(323), 4, + 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, - STATE(1717), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1268), 16, - 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_await, - [37833] = 22, - ACTIONS(310), 1, + [37683] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(325), 1, - anon_sym_await, - ACTIONS(327), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(375), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(398), 1, + anon_sym_await, + ACTIONS(633), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(641), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(970), 1, + STATE(851), 1, sym_primary_expression, - STATE(1010), 1, + STATE(954), 1, sym_string, - STATE(1342), 1, + STATE(1046), 1, sym_list_splat_pattern, - STATE(1919), 1, + STATE(1649), 1, sym_expression, - STATE(2775), 1, + STATE(2658), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(387), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(383), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58019,7 +57637,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1063), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58036,7 +57654,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37931] = 22, + [37781] = 22, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -58045,25 +57663,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym_string_start, - ACTIONS(383), 1, + ACTIONS(375), 1, sym_identifier, - ACTIONS(406), 1, + ACTIONS(398), 1, anon_sym_await, - ACTIONS(649), 1, + ACTIONS(633), 1, anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(641), 1, anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(865), 1, + STATE(851), 1, sym_primary_expression, - STATE(969), 1, + STATE(954), 1, sym_string, - STATE(1119), 1, + STATE(1046), 1, sym_list_splat_pattern, - STATE(1660), 1, + STATE(1830), 1, sym_expression, - STATE(2751), 1, + STATE(2658), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -58071,14 +57689,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(395), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -58087,7 +57705,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1666), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58095,7 +57713,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1063), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58112,58 +57730,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38029] = 22, - ACTIONS(711), 1, - anon_sym_LPAREN, - ACTIONS(719), 1, - anon_sym_LBRACK, - ACTIONS(723), 1, + [37879] = 22, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(729), 1, - sym_string_start, - ACTIONS(1041), 1, - anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(1079), 1, + ACTIONS(317), 1, anon_sym_await, - ACTIONS(1295), 1, + ACTIONS(319), 1, + sym_string_start, + ACTIONS(400), 1, sym_identifier, - ACTIONS(1315), 1, + ACTIONS(652), 1, + anon_sym_LPAREN, + ACTIONS(662), 1, + anon_sym_LBRACK, + ACTIONS(1011), 1, + anon_sym_not, + ACTIONS(1413), 1, anon_sym_STAR, - STATE(967), 1, + STATE(953), 1, sym_primary_expression, - STATE(1028), 1, + STATE(975), 1, sym_string, - STATE(1388), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1948), 1, + STATE(2059), 1, sym_expression, - STATE(2638), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, - sym_ellipsis, - sym_float, - ACTIONS(1075), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1073), 3, + ACTIONS(313), 2, + sym_ellipsis, + sym_float, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(307), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58171,7 +57789,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58188,58 +57806,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38127] = 22, - ACTIONS(686), 1, + [37977] = 22, + ACTIONS(739), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(749), 1, anon_sym_LBRACK, - ACTIONS(698), 1, + ACTIONS(753), 1, anon_sym_LBRACE, - ACTIONS(704), 1, + ACTIONS(759), 1, sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(1095), 1, + ACTIONS(1119), 1, sym_identifier, - ACTIONS(1105), 1, + ACTIONS(1127), 1, anon_sym_await, - STATE(909), 1, + ACTIONS(1235), 1, + anon_sym_STAR, + STATE(947), 1, sym_primary_expression, - STATE(975), 1, + STATE(1018), 1, sym_string, - STATE(1214), 1, + STATE(1281), 1, sym_list_splat_pattern, - STATE(1892), 1, + STATE(1775), 1, sym_expression, - STATE(2773), 1, + STATE(2580), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(700), 2, + ACTIONS(755), 2, sym_ellipsis, sym_float, - ACTIONS(1103), 2, + ACTIONS(1125), 2, anon_sym_match, anon_sym_type, - ACTIONS(696), 3, + ACTIONS(751), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1101), 3, + ACTIONS(1123), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(684), 4, + ACTIONS(737), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1797), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58247,7 +57865,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1172), 16, + STATE(1347), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58264,58 +57882,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38225] = 22, - ACTIONS(801), 1, - anon_sym_LPAREN, - ACTIONS(809), 1, - anon_sym_LBRACK, - ACTIONS(813), 1, + [38075] = 22, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(819), 1, - sym_string_start, - ACTIONS(987), 1, - anon_sym_not, - ACTIONS(989), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(317), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(319), 1, + sym_string_start, + ACTIONS(400), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(652), 1, + anon_sym_LPAREN, + ACTIONS(662), 1, + anon_sym_LBRACK, + ACTIONS(1011), 1, + anon_sym_not, + ACTIONS(1413), 1, anon_sym_STAR, - STATE(976), 1, + STATE(953), 1, sym_primary_expression, - STATE(1107), 1, + STATE(975), 1, sym_string, - STATE(1437), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1929), 1, + STATE(1884), 1, sym_expression, - STATE(2777), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, - sym_ellipsis, - sym_float, - ACTIONS(981), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(313), 2, + sym_ellipsis, + sym_float, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(307), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58323,7 +57941,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58340,58 +57958,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38323] = 22, - ACTIONS(711), 1, - anon_sym_LPAREN, - ACTIONS(719), 1, - anon_sym_LBRACK, - ACTIONS(723), 1, + [38173] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(729), 1, - sym_string_start, - ACTIONS(1041), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1079), 1, - anon_sym_await, - ACTIONS(1295), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(375), 1, sym_identifier, - ACTIONS(1315), 1, + ACTIONS(398), 1, + anon_sym_await, + ACTIONS(633), 1, + anon_sym_LPAREN, + ACTIONS(641), 1, + anon_sym_LBRACK, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(967), 1, + STATE(851), 1, sym_primary_expression, - STATE(1028), 1, + STATE(954), 1, sym_string, - STATE(1388), 1, + STATE(1046), 1, sym_list_splat_pattern, - STATE(1949), 1, + STATE(1883), 1, sym_expression, - STATE(2638), 1, + STATE(2658), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1075), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1073), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58399,7 +58017,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1063), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58416,58 +58034,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38421] = 22, - ACTIONS(755), 1, - anon_sym_LPAREN, - ACTIONS(765), 1, - anon_sym_LBRACK, - ACTIONS(769), 1, + [38271] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(775), 1, - sym_string_start, - ACTIONS(835), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1051), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(375), 1, sym_identifier, - ACTIONS(1061), 1, + ACTIONS(398), 1, anon_sym_await, - ACTIONS(1251), 1, + ACTIONS(633), 1, + anon_sym_LPAREN, + ACTIONS(641), 1, + anon_sym_LBRACK, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(963), 1, + STATE(851), 1, sym_primary_expression, - STATE(1015), 1, + STATE(954), 1, sym_string, - STATE(1258), 1, + STATE(1046), 1, sym_list_splat_pattern, - STATE(1852), 1, + STATE(1646), 1, sym_expression, - STATE(2771), 1, + STATE(2658), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1059), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1057), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58475,7 +58093,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1063), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58492,58 +58110,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38519] = 22, - ACTIONS(67), 1, + [38369] = 22, + ACTIONS(695), 1, + anon_sym_LPAREN, + ACTIONS(703), 1, + anon_sym_LBRACK, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(713), 1, + sym_string_start, + ACTIONS(1059), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1061), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(383), 1, - sym_identifier, - ACTIONS(406), 1, + ACTIONS(1075), 1, anon_sym_await, - ACTIONS(649), 1, - anon_sym_LPAREN, - ACTIONS(657), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1269), 1, + sym_identifier, + ACTIONS(1325), 1, anon_sym_STAR, - STATE(865), 1, + STATE(952), 1, sym_primary_expression, - STATE(969), 1, + STATE(992), 1, sym_string, - STATE(1119), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1661), 1, + STATE(1961), 1, sym_expression, - STATE(2751), 1, + STATE(2633), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(395), 2, + ACTIONS(1071), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(1069), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1666), 7, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58551,7 +58169,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58568,58 +58186,247 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38617] = 22, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(317), 1, - anon_sym_lambda, - ACTIONS(325), 1, - anon_sym_await, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(408), 1, - sym_identifier, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, + [38467] = 9, + ACTIONS(1469), 1, + anon_sym_else, + ACTIONS(1471), 1, + anon_sym_except, + ACTIONS(1473), 1, + anon_sym_finally, + STATE(697), 1, + sym_else_clause, + STATE(835), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(609), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1493), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1495), 32, + anon_sym_import, + anon_sym_from, + 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_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + 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, + [38539] = 9, + ACTIONS(1469), 1, + anon_sym_else, + ACTIONS(1473), 1, + anon_sym_finally, + ACTIONS(1475), 1, + anon_sym_except_STAR, + STATE(697), 1, + sym_else_clause, + STATE(835), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(610), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(1493), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1495), 32, + anon_sym_import, + anon_sym_from, + 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_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + 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, + [38611] = 9, + ACTIONS(1485), 1, + anon_sym_else, + ACTIONS(1489), 1, + anon_sym_finally, + ACTIONS(1491), 1, + anon_sym_except_STAR, + STATE(698), 1, + sym_else_clause, + STATE(807), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(613), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(1493), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1495), 32, + anon_sym_import, + anon_sym_from, + 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_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + 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, + [38683] = 22, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(375), 1, + sym_identifier, + ACTIONS(398), 1, + anon_sym_await, + ACTIONS(633), 1, + anon_sym_LPAREN, + ACTIONS(641), 1, + anon_sym_LBRACK, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(970), 1, + STATE(851), 1, sym_primary_expression, - STATE(1010), 1, + STATE(954), 1, sym_string, - STATE(1342), 1, + STATE(1046), 1, sym_list_splat_pattern, - STATE(1729), 1, + STATE(1641), 1, sym_expression, - STATE(2775), 1, + STATE(2658), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(387), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(383), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58627,7 +58434,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1063), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58644,61 +58451,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38715] = 23, - ACTIONS(686), 1, - anon_sym_LPAREN, - ACTIONS(694), 1, - anon_sym_LBRACK, - ACTIONS(698), 1, + [38781] = 22, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(704), 1, - sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, - anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(1501), 1, - sym_identifier, - ACTIONS(1507), 1, + ACTIONS(317), 1, anon_sym_await, + ACTIONS(319), 1, + sym_string_start, + ACTIONS(400), 1, + sym_identifier, + ACTIONS(652), 1, + anon_sym_LPAREN, + ACTIONS(662), 1, + anon_sym_LBRACK, + ACTIONS(1011), 1, + anon_sym_not, + ACTIONS(1413), 1, + anon_sym_STAR, + STATE(953), 1, + sym_primary_expression, STATE(975), 1, sym_string, - STATE(991), 1, - sym_primary_expression, - STATE(1214), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1905), 1, + STATE(1980), 1, sym_expression, - STATE(2773), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(700), 2, - sym_ellipsis, - sym_float, - ACTIONS(1505), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - STATE(1173), 2, - sym_attribute, - sym_subscript, - ACTIONS(696), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1503), 3, + ACTIONS(313), 2, + sym_ellipsis, + sym_float, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(684), 4, + ACTIONS(307), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58706,9 +58510,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1172), 14, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -58721,7 +58527,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38815] = 22, + [38879] = 22, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -58730,25 +58536,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym_string_start, - ACTIONS(383), 1, + ACTIONS(375), 1, sym_identifier, - ACTIONS(406), 1, + ACTIONS(398), 1, anon_sym_await, - ACTIONS(649), 1, + ACTIONS(633), 1, anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(641), 1, anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(865), 1, + STATE(851), 1, sym_primary_expression, - STATE(969), 1, + STATE(954), 1, sym_string, - STATE(1119), 1, + STATE(1046), 1, sym_list_splat_pattern, - STATE(1965), 1, + STATE(1643), 1, sym_expression, - STATE(2751), 1, + STATE(2658), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -58756,14 +58562,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(395), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -58772,7 +58578,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1666), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58780,7 +58586,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1063), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58797,58 +58603,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38913] = 22, - ACTIONS(733), 1, - anon_sym_LPAREN, - ACTIONS(741), 1, - anon_sym_LBRACK, - ACTIONS(745), 1, + [38977] = 22, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(309), 1, + anon_sym_lambda, + ACTIONS(317), 1, + anon_sym_await, + ACTIONS(319), 1, sym_string_start, - ACTIONS(843), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(859), 1, + ACTIONS(652), 1, + anon_sym_LPAREN, + ACTIONS(662), 1, + anon_sym_LBRACK, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(861), 1, - anon_sym_lambda, - ACTIONS(865), 1, - anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(1413), 1, anon_sym_STAR, - STATE(912), 1, + STATE(953), 1, sym_primary_expression, - STATE(971), 1, + STATE(975), 1, sym_string, - STATE(1203), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1880), 1, + STATE(1904), 1, sym_expression, - STATE(2683), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(747), 2, - sym_ellipsis, - sym_float, - ACTIONS(853), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(743), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(313), 2, + sym_ellipsis, + sym_float, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + ACTIONS(307), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1771), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58856,7 +58662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1138), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58873,58 +58679,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39011] = 22, - ACTIONS(310), 1, + [39075] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(325), 1, - anon_sym_await, - ACTIONS(327), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(375), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(398), 1, + anon_sym_await, + ACTIONS(633), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(641), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(970), 1, + STATE(851), 1, sym_primary_expression, - STATE(1010), 1, + STATE(954), 1, sym_string, - STATE(1342), 1, + STATE(1046), 1, sym_list_splat_pattern, - STATE(1941), 1, + STATE(1644), 1, sym_expression, - STATE(2775), 1, + STATE(2658), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(387), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(383), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58932,7 +58738,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1063), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58949,58 +58755,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39109] = 22, - ACTIONS(310), 1, + [39173] = 22, + ACTIONS(763), 1, + anon_sym_LPAREN, + ACTIONS(771), 1, + anon_sym_LBRACK, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(781), 1, + sym_string_start, + ACTIONS(971), 1, + anon_sym_not, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(975), 1, anon_sym_await, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(408), 1, + ACTIONS(1259), 1, sym_identifier, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1285), 1, anon_sym_STAR, - STATE(970), 1, + STATE(960), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1038), 1, sym_string, - STATE(1342), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1720), 1, + STATE(1955), 1, sym_expression, - STATE(2775), 1, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(965), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(963), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59008,7 +58814,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59025,58 +58831,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39207] = 22, - ACTIONS(67), 1, + [39271] = 22, + ACTIONS(695), 1, + anon_sym_LPAREN, + ACTIONS(703), 1, + anon_sym_LBRACK, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(713), 1, + sym_string_start, + ACTIONS(1059), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1061), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(383), 1, - sym_identifier, - ACTIONS(406), 1, + ACTIONS(1075), 1, anon_sym_await, - ACTIONS(649), 1, - anon_sym_LPAREN, - ACTIONS(657), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1269), 1, + sym_identifier, + ACTIONS(1325), 1, anon_sym_STAR, - STATE(865), 1, + STATE(952), 1, sym_primary_expression, - STATE(969), 1, + STATE(992), 1, sym_string, - STATE(1119), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1877), 1, + STATE(1957), 1, sym_expression, - STATE(2751), 1, + STATE(2633), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(395), 2, + ACTIONS(1071), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(1069), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1666), 7, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59084,7 +58890,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59101,58 +58907,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39305] = 22, - ACTIONS(310), 1, + [39369] = 22, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(317), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1413), 1, anon_sym_STAR, - STATE(970), 1, + STATE(953), 1, sym_primary_expression, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1342), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(2000), 1, + STATE(1703), 1, sym_expression, - STATE(2775), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59160,7 +58966,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59177,58 +58983,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39403] = 22, - ACTIONS(686), 1, + [39467] = 23, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(681), 1, anon_sym_LBRACK, - ACTIONS(698), 1, + ACTIONS(685), 1, anon_sym_LBRACE, - ACTIONS(704), 1, + ACTIONS(691), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(981), 1, anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(989), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(991), 1, anon_sym_lambda, - ACTIONS(1095), 1, + ACTIONS(1497), 1, sym_identifier, - ACTIONS(1105), 1, + ACTIONS(1503), 1, anon_sym_await, - STATE(909), 1, - sym_primary_expression, - STATE(975), 1, + STATE(963), 1, sym_string, - STATE(1214), 1, + STATE(978), 1, + sym_primary_expression, + STATE(1223), 1, sym_list_splat_pattern, - STATE(1769), 1, + STATE(1948), 1, sym_expression, - STATE(2773), 1, + STATE(2688), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(700), 2, + ACTIONS(687), 2, sym_ellipsis, sym_float, - ACTIONS(1103), 2, + ACTIONS(1501), 2, anon_sym_match, anon_sym_type, - ACTIONS(696), 3, + STATE(1201), 2, + sym_attribute, + sym_subscript, + ACTIONS(683), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1101), 3, + ACTIONS(1499), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(684), 4, + ACTIONS(671), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1744), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59236,11 +59045,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1172), 16, + STATE(1198), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -59253,58 +59060,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39501] = 22, - ACTIONS(801), 1, + [39567] = 22, + ACTIONS(717), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(725), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(729), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(735), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(849), 1, + sym_identifier, + ACTIONS(865), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(867), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(871), 1, anon_sym_await, - ACTIONS(1257), 1, - sym_identifier, - ACTIONS(1333), 1, + ACTIONS(1251), 1, anon_sym_STAR, - STATE(976), 1, + STATE(946), 1, sym_primary_expression, - STATE(1107), 1, + STATE(957), 1, sym_string, - STATE(1437), 1, + STATE(1164), 1, sym_list_splat_pattern, - STATE(1956), 1, + STATE(1820), 1, sym_expression, - STATE(2777), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(731), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(859), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(727), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(857), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(715), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59312,7 +59119,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1149), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59329,58 +59136,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39599] = 22, - ACTIONS(779), 1, - anon_sym_LPAREN, - ACTIONS(787), 1, - anon_sym_LBRACK, - ACTIONS(791), 1, + [39665] = 22, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(797), 1, - sym_string_start, - ACTIONS(883), 1, - anon_sym_not, - ACTIONS(885), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(1159), 1, - sym_identifier, - ACTIONS(1169), 1, + ACTIONS(317), 1, anon_sym_await, - ACTIONS(1267), 1, + ACTIONS(319), 1, + sym_string_start, + ACTIONS(400), 1, + sym_identifier, + ACTIONS(652), 1, + anon_sym_LPAREN, + ACTIONS(662), 1, + anon_sym_LBRACK, + ACTIONS(1011), 1, + anon_sym_not, + ACTIONS(1413), 1, anon_sym_STAR, - STATE(965), 1, + STATE(953), 1, sym_primary_expression, - STATE(996), 1, + STATE(975), 1, sym_string, - STATE(1360), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1779), 1, + STATE(1998), 1, sym_expression, - STATE(2611), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, - sym_ellipsis, - sym_float, - ACTIONS(1165), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1163), 3, + ACTIONS(313), 2, + sym_ellipsis, + sym_float, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(307), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1793), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59388,7 +59195,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59405,61 +59212,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39697] = 23, - ACTIONS(711), 1, + [39763] = 22, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(681), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(685), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(691), 1, sym_string_start, - ACTIONS(1041), 1, + ACTIONS(981), 1, + anon_sym_STAR, + ACTIONS(989), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(991), 1, anon_sym_lambda, - ACTIONS(1315), 1, - anon_sym_STAR, - ACTIONS(1509), 1, + ACTIONS(1077), 1, sym_identifier, - ACTIONS(1515), 1, + ACTIONS(1087), 1, anon_sym_await, - STATE(967), 1, + STATE(932), 1, sym_primary_expression, - STATE(1028), 1, + STATE(963), 1, sym_string, - STATE(1388), 1, + STATE(1223), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(1745), 1, sym_expression, - STATE(2638), 1, + STATE(2688), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(687), 2, sym_ellipsis, sym_float, - ACTIONS(1513), 2, + ACTIONS(1085), 2, anon_sym_match, anon_sym_type, - STATE(1477), 2, - sym_attribute, - sym_subscript, - ACTIONS(721), 3, + ACTIONS(683), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1511), 3, + ACTIONS(1083), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(671), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1744), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59467,9 +59271,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 14, + STATE(1198), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -59482,184 +59288,134 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39797] = 9, - ACTIONS(1485), 1, - anon_sym_else, - ACTIONS(1487), 1, - anon_sym_except, - ACTIONS(1489), 1, - anon_sym_finally, - STATE(704), 1, - sym_else_clause, - STATE(729), 1, - sym_finally_clause, + [39861] = 22, + ACTIONS(763), 1, + anon_sym_LPAREN, + ACTIONS(771), 1, + anon_sym_LBRACK, + ACTIONS(775), 1, + anon_sym_LBRACE, + ACTIONS(781), 1, + sym_string_start, + ACTIONS(971), 1, + anon_sym_not, + ACTIONS(973), 1, + anon_sym_lambda, + ACTIONS(975), 1, + anon_sym_await, + ACTIONS(1259), 1, + sym_identifier, + ACTIONS(1285), 1, + anon_sym_STAR, + STATE(960), 1, + sym_primary_expression, + STATE(1038), 1, + sym_string, + STATE(1437), 1, + sym_list_splat_pattern, + STATE(1910), 1, + sym_expression, + STATE(2581), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(622), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1517), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(777), 2, + sym_ellipsis, + sym_float, + ACTIONS(965), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(773), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1519), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(963), 3, 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_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - 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(761), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [39869] = 9, - ACTIONS(1485), 1, - anon_sym_else, - ACTIONS(1489), 1, - anon_sym_finally, - ACTIONS(1491), 1, - anon_sym_except_STAR, - STATE(704), 1, - sym_else_clause, - STATE(729), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(623), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1517), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + STATE(1751), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1435), 16, + 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_await, + [39959] = 22, + ACTIONS(302), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1519), 32, - anon_sym_import, - anon_sym_from, - 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_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, + ACTIONS(309), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, + ACTIONS(317), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [39941] = 22, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(383), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(406), 1, - anon_sym_await, - ACTIONS(649), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1011), 1, + anon_sym_not, + ACTIONS(1413), 1, anon_sym_STAR, - STATE(865), 1, + STATE(953), 1, sym_primary_expression, - STATE(969), 1, + STATE(975), 1, sym_string, - STATE(1119), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1665), 1, + STATE(1952), 1, sym_expression, - STATE(2751), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(395), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(313), 2, + sym_ellipsis, + sym_float, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(307), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1666), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59667,7 +59423,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59684,58 +59440,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40039] = 22, - ACTIONS(310), 1, + [40057] = 22, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(317), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1413), 1, anon_sym_STAR, - STATE(970), 1, + STATE(953), 1, sym_primary_expression, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1342), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(2064), 1, + STATE(1999), 1, sym_expression, - STATE(2775), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59743,7 +59499,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59760,58 +59516,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40137] = 22, - ACTIONS(67), 1, + [40155] = 22, + ACTIONS(785), 1, + anon_sym_LPAREN, + ACTIONS(793), 1, + anon_sym_LBRACK, + ACTIONS(797), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(803), 1, + sym_string_start, + ACTIONS(819), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(821), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(383), 1, + ACTIONS(1129), 1, sym_identifier, - ACTIONS(406), 1, + ACTIONS(1139), 1, anon_sym_await, - ACTIONS(649), 1, - anon_sym_LPAREN, - ACTIONS(657), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1279), 1, anon_sym_STAR, - STATE(865), 1, + STATE(951), 1, sym_primary_expression, - STATE(969), 1, + STATE(980), 1, sym_string, - STATE(1119), 1, + STATE(1345), 1, sym_list_splat_pattern, - STATE(1780), 1, + STATE(1766), 1, sym_expression, - STATE(2751), 1, + STATE(2647), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(799), 2, sym_ellipsis, sym_float, - ACTIONS(395), 2, + ACTIONS(1135), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(795), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(1133), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(783), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1666), 7, + STATE(1801), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59819,7 +59575,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1290), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59836,58 +59592,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40235] = 22, - ACTIONS(67), 1, + [40253] = 23, + ACTIONS(695), 1, + anon_sym_LPAREN, + ACTIONS(703), 1, + anon_sym_LBRACK, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(713), 1, + sym_string_start, + ACTIONS(1059), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1061), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(383), 1, + ACTIONS(1325), 1, + anon_sym_STAR, + ACTIONS(1505), 1, sym_identifier, - ACTIONS(406), 1, + ACTIONS(1511), 1, anon_sym_await, - ACTIONS(649), 1, - anon_sym_LPAREN, - ACTIONS(657), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, - anon_sym_STAR, - STATE(865), 1, + STATE(952), 1, sym_primary_expression, - STATE(969), 1, + STATE(992), 1, sym_string, - STATE(1119), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(2034), 1, + STATE(1891), 1, sym_expression, - STATE(2751), 1, + STATE(2633), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(395), 2, + ACTIONS(1509), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + STATE(1458), 2, + sym_attribute, + sym_subscript, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(1507), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1666), 7, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59895,11 +59654,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1384), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -59912,58 +59669,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40333] = 22, - ACTIONS(310), 1, + [40353] = 22, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(317), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1413), 1, anon_sym_STAR, - STATE(970), 1, + STATE(953), 1, sym_primary_expression, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1342), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(2091), 1, + STATE(2079), 1, sym_expression, - STATE(2775), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59971,7 +59728,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59988,58 +59745,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40431] = 22, - ACTIONS(67), 1, + [40451] = 22, + ACTIONS(717), 1, + anon_sym_LPAREN, + ACTIONS(725), 1, + anon_sym_LBRACK, + ACTIONS(729), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(735), 1, sym_string_start, - ACTIONS(383), 1, + ACTIONS(849), 1, sym_identifier, - ACTIONS(406), 1, + ACTIONS(865), 1, + anon_sym_not, + ACTIONS(867), 1, + anon_sym_lambda, + ACTIONS(871), 1, anon_sym_await, - ACTIONS(649), 1, - anon_sym_LPAREN, - ACTIONS(657), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1251), 1, anon_sym_STAR, - STATE(865), 1, + STATE(946), 1, sym_primary_expression, - STATE(969), 1, + STATE(957), 1, sym_string, - STATE(1119), 1, + STATE(1164), 1, sym_list_splat_pattern, - STATE(1657), 1, + STATE(1747), 1, sym_expression, - STATE(2751), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(731), 2, sym_ellipsis, sym_float, - ACTIONS(395), 2, + ACTIONS(859), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(727), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(857), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(715), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1666), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60047,7 +59804,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1149), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60064,58 +59821,135 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40529] = 22, - ACTIONS(310), 1, + [40549] = 23, + ACTIONS(763), 1, + anon_sym_LPAREN, + ACTIONS(771), 1, + anon_sym_LBRACK, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(781), 1, + sym_string_start, + ACTIONS(971), 1, + anon_sym_not, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(1285), 1, + anon_sym_STAR, + ACTIONS(1483), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(1513), 1, + sym_identifier, + STATE(960), 1, + sym_primary_expression, + STATE(1038), 1, + sym_string, + STATE(1437), 1, + sym_list_splat_pattern, + STATE(1921), 1, + sym_expression, + STATE(2581), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(777), 2, + sym_ellipsis, + sym_float, + ACTIONS(1517), 2, + anon_sym_match, + anon_sym_type, + STATE(1457), 2, + sym_attribute, + sym_subscript, + ACTIONS(773), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1515), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(761), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1751), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1435), 14, + 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_await, + [40649] = 22, + ACTIONS(302), 1, + anon_sym_LBRACE, + ACTIONS(309), 1, + anon_sym_lambda, + ACTIONS(317), 1, + anon_sym_await, + ACTIONS(319), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1413), 1, anon_sym_STAR, - STATE(970), 1, + STATE(953), 1, sym_primary_expression, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1342), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(2013), 1, + STATE(1708), 1, sym_expression, - STATE(2775), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60123,7 +59957,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60140,58 +59974,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40627] = 22, - ACTIONS(733), 1, + [40747] = 22, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(741), 1, + ACTIONS(681), 1, anon_sym_LBRACK, - ACTIONS(745), 1, + ACTIONS(685), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(691), 1, sym_string_start, - ACTIONS(843), 1, - sym_identifier, - ACTIONS(859), 1, + ACTIONS(981), 1, + anon_sym_STAR, + ACTIONS(989), 1, anon_sym_not, - ACTIONS(861), 1, + ACTIONS(991), 1, anon_sym_lambda, - ACTIONS(865), 1, + ACTIONS(1077), 1, + sym_identifier, + ACTIONS(1087), 1, anon_sym_await, - ACTIONS(1287), 1, - anon_sym_STAR, - STATE(912), 1, + STATE(932), 1, sym_primary_expression, - STATE(971), 1, + STATE(963), 1, sym_string, - STATE(1203), 1, + STATE(1223), 1, sym_list_splat_pattern, - STATE(1745), 1, + STATE(1752), 1, sym_expression, - STATE(2683), 1, + STATE(2688), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(747), 2, + ACTIONS(687), 2, sym_ellipsis, sym_float, - ACTIONS(853), 2, + ACTIONS(1085), 2, anon_sym_match, anon_sym_type, - ACTIONS(743), 3, + ACTIONS(683), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(1083), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + ACTIONS(671), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1771), 7, + STATE(1744), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60199,7 +60033,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1138), 16, + STATE(1198), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60216,61 +60050,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40725] = 23, - ACTIONS(801), 1, + [40845] = 23, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(681), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(685), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(691), 1, sym_string_start, - ACTIONS(987), 1, - anon_sym_not, + ACTIONS(981), 1, + anon_sym_STAR, ACTIONS(989), 1, + anon_sym_not, + ACTIONS(991), 1, anon_sym_lambda, - ACTIONS(1333), 1, - anon_sym_STAR, - ACTIONS(1499), 1, + ACTIONS(1503), 1, anon_sym_await, - ACTIONS(1521), 1, + ACTIONS(1519), 1, sym_identifier, - STATE(976), 1, + STATE(932), 1, sym_primary_expression, - STATE(1107), 1, + STATE(963), 1, sym_string, - STATE(1437), 1, + STATE(1223), 1, sym_list_splat_pattern, - STATE(1973), 1, + STATE(1948), 1, sym_expression, - STATE(2777), 1, + STATE(2688), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(687), 2, sym_ellipsis, sym_float, - ACTIONS(1525), 2, + ACTIONS(1523), 2, anon_sym_match, anon_sym_type, - STATE(1478), 2, + STATE(1459), 2, sym_attribute, sym_subscript, - ACTIONS(811), 3, + ACTIONS(683), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1523), 3, + ACTIONS(1521), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(671), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1744), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60278,7 +60112,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 14, + STATE(1198), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -60293,58 +60127,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40825] = 22, - ACTIONS(67), 1, + [40945] = 22, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(317), 1, + anon_sym_await, + ACTIONS(319), 1, sym_string_start, - ACTIONS(383), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(406), 1, - anon_sym_await, - ACTIONS(649), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1011), 1, + anon_sym_not, + ACTIONS(1413), 1, anon_sym_STAR, - STATE(865), 1, + STATE(953), 1, sym_primary_expression, - STATE(969), 1, + STATE(975), 1, sym_string, - STATE(1119), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1658), 1, + STATE(1709), 1, sym_expression, - STATE(2751), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(395), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(313), 2, + sym_ellipsis, + sym_float, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(307), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1666), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60352,7 +60186,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60369,7 +60203,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40923] = 22, + [41043] = 22, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -60378,25 +60212,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym_string_start, - ACTIONS(383), 1, + ACTIONS(375), 1, sym_identifier, - ACTIONS(406), 1, + ACTIONS(398), 1, anon_sym_await, - ACTIONS(649), 1, + ACTIONS(633), 1, anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(641), 1, anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(865), 1, + STATE(851), 1, sym_primary_expression, - STATE(969), 1, + STATE(954), 1, sym_string, - STATE(1119), 1, + STATE(1046), 1, sym_list_splat_pattern, - STATE(1659), 1, + STATE(1760), 1, sym_expression, - STATE(2751), 1, + STATE(2658), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -60404,14 +60238,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(395), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -60420,7 +60254,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1666), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60428,7 +60262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1063), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60445,58 +60279,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41021] = 22, - ACTIONS(755), 1, - anon_sym_LPAREN, - ACTIONS(765), 1, - anon_sym_LBRACK, - ACTIONS(769), 1, + [41141] = 22, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(775), 1, - sym_string_start, - ACTIONS(835), 1, - anon_sym_not, - ACTIONS(837), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(1051), 1, - sym_identifier, - ACTIONS(1061), 1, + ACTIONS(317), 1, anon_sym_await, - ACTIONS(1251), 1, + ACTIONS(319), 1, + sym_string_start, + ACTIONS(400), 1, + sym_identifier, + ACTIONS(652), 1, + anon_sym_LPAREN, + ACTIONS(662), 1, + anon_sym_LBRACK, + ACTIONS(1011), 1, + anon_sym_not, + ACTIONS(1413), 1, anon_sym_STAR, - STATE(963), 1, + STATE(953), 1, sym_primary_expression, - STATE(1015), 1, + STATE(975), 1, sym_string, - STATE(1258), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1798), 1, + STATE(2078), 1, sym_expression, - STATE(2771), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, - sym_ellipsis, - sym_float, - ACTIONS(1059), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1057), 3, + ACTIONS(313), 2, + sym_ellipsis, + sym_float, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + ACTIONS(307), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60504,7 +60338,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60521,58 +60355,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41119] = 22, - ACTIONS(711), 1, + [41239] = 22, + ACTIONS(695), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(703), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(713), 1, sym_string_start, - ACTIONS(1041), 1, + ACTIONS(1059), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(1061), 1, anon_sym_lambda, - ACTIONS(1079), 1, + ACTIONS(1075), 1, anon_sym_await, - ACTIONS(1295), 1, + ACTIONS(1269), 1, sym_identifier, - ACTIONS(1315), 1, + ACTIONS(1325), 1, anon_sym_STAR, - STATE(967), 1, + STATE(952), 1, sym_primary_expression, - STATE(1028), 1, + STATE(992), 1, sym_string, - STATE(1388), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1907), 1, + STATE(1706), 1, sym_expression, - STATE(2638), 1, + STATE(2633), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(1075), 2, + ACTIONS(1071), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1073), 3, + ACTIONS(1069), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60580,7 +60414,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60597,58 +60431,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41217] = 22, - ACTIONS(755), 1, - anon_sym_LPAREN, - ACTIONS(765), 1, - anon_sym_LBRACK, - ACTIONS(769), 1, + [41337] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(775), 1, - sym_string_start, - ACTIONS(835), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1051), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(375), 1, sym_identifier, - ACTIONS(1061), 1, + ACTIONS(398), 1, anon_sym_await, - ACTIONS(1251), 1, + ACTIONS(633), 1, + anon_sym_LPAREN, + ACTIONS(641), 1, + anon_sym_LBRACK, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(963), 1, + STATE(851), 1, sym_primary_expression, - STATE(1015), 1, + STATE(954), 1, sym_string, - STATE(1258), 1, + STATE(1046), 1, sym_list_splat_pattern, - STATE(1834), 1, + STATE(1877), 1, sym_expression, - STATE(2771), 1, + STATE(2658), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1059), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1057), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60656,7 +60490,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1063), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60673,58 +60507,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41315] = 22, - ACTIONS(755), 1, - anon_sym_LPAREN, - ACTIONS(765), 1, - anon_sym_LBRACK, - ACTIONS(769), 1, + [41435] = 22, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(775), 1, - sym_string_start, - ACTIONS(835), 1, - anon_sym_not, - ACTIONS(837), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(1051), 1, - sym_identifier, - ACTIONS(1061), 1, + ACTIONS(317), 1, anon_sym_await, - ACTIONS(1251), 1, + ACTIONS(319), 1, + sym_string_start, + ACTIONS(400), 1, + sym_identifier, + ACTIONS(652), 1, + anon_sym_LPAREN, + ACTIONS(662), 1, + anon_sym_LBRACK, + ACTIONS(1011), 1, + anon_sym_not, + ACTIONS(1413), 1, anon_sym_STAR, - STATE(963), 1, + STATE(953), 1, sym_primary_expression, - STATE(1015), 1, + STATE(975), 1, sym_string, - STATE(1258), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1807), 1, + STATE(1710), 1, sym_expression, - STATE(2771), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, - sym_ellipsis, - sym_float, - ACTIONS(1059), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1057), 3, + ACTIONS(313), 2, + sym_ellipsis, + sym_float, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + ACTIONS(307), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60732,7 +60566,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60749,58 +60583,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41413] = 22, - ACTIONS(755), 1, - anon_sym_LPAREN, - ACTIONS(765), 1, - anon_sym_LBRACK, - ACTIONS(769), 1, + [41533] = 22, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(775), 1, - sym_string_start, - ACTIONS(835), 1, - anon_sym_not, - ACTIONS(837), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(1051), 1, - sym_identifier, - ACTIONS(1061), 1, + ACTIONS(317), 1, anon_sym_await, - ACTIONS(1251), 1, + ACTIONS(319), 1, + sym_string_start, + ACTIONS(400), 1, + sym_identifier, + ACTIONS(652), 1, + anon_sym_LPAREN, + ACTIONS(662), 1, + anon_sym_LBRACK, + ACTIONS(1011), 1, + anon_sym_not, + ACTIONS(1413), 1, anon_sym_STAR, - STATE(963), 1, + STATE(953), 1, sym_primary_expression, - STATE(1015), 1, + STATE(975), 1, sym_string, - STATE(1258), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1808), 1, + STATE(1712), 1, sym_expression, - STATE(2771), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, - sym_ellipsis, - sym_float, - ACTIONS(1059), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1057), 3, + ACTIONS(313), 2, + sym_ellipsis, + sym_float, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + ACTIONS(307), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60808,7 +60642,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60825,58 +60659,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41511] = 22, - ACTIONS(755), 1, - anon_sym_LPAREN, - ACTIONS(765), 1, - anon_sym_LBRACK, - ACTIONS(769), 1, + [41631] = 22, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(775), 1, - sym_string_start, - ACTIONS(835), 1, - anon_sym_not, - ACTIONS(837), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(1051), 1, - sym_identifier, - ACTIONS(1061), 1, + ACTIONS(317), 1, anon_sym_await, - ACTIONS(1251), 1, + ACTIONS(319), 1, + sym_string_start, + ACTIONS(400), 1, + sym_identifier, + ACTIONS(652), 1, + anon_sym_LPAREN, + ACTIONS(662), 1, + anon_sym_LBRACK, + ACTIONS(1011), 1, + anon_sym_not, + ACTIONS(1413), 1, anon_sym_STAR, - STATE(963), 1, + STATE(953), 1, sym_primary_expression, - STATE(1015), 1, + STATE(975), 1, sym_string, - STATE(1258), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1809), 1, + STATE(1713), 1, sym_expression, - STATE(2771), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, - sym_ellipsis, - sym_float, - ACTIONS(1059), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1057), 3, + ACTIONS(313), 2, + sym_ellipsis, + sym_float, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + ACTIONS(307), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60884,7 +60718,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60901,58 +60735,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41609] = 22, - ACTIONS(686), 1, + [41729] = 22, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(698), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(704), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(971), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(973), 1, anon_sym_lambda, - ACTIONS(1095), 1, - sym_identifier, - ACTIONS(1105), 1, + ACTIONS(975), 1, anon_sym_await, - STATE(909), 1, + ACTIONS(1259), 1, + sym_identifier, + ACTIONS(1285), 1, + anon_sym_STAR, + STATE(960), 1, sym_primary_expression, - STATE(975), 1, + STATE(1038), 1, sym_string, - STATE(1214), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1755), 1, + STATE(1756), 1, sym_expression, - STATE(2773), 1, + STATE(2581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(700), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(1103), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - ACTIONS(696), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1101), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(684), 4, + ACTIONS(761), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60960,7 +60794,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1172), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60977,61 +60811,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41707] = 23, - ACTIONS(686), 1, + [41827] = 23, + ACTIONS(695), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(703), 1, anon_sym_LBRACK, - ACTIONS(698), 1, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(704), 1, + ACTIONS(713), 1, sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(1059), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(1061), 1, anon_sym_lambda, - ACTIONS(1507), 1, + ACTIONS(1325), 1, + anon_sym_STAR, + ACTIONS(1511), 1, anon_sym_await, - ACTIONS(1527), 1, + ACTIONS(1525), 1, sym_identifier, - STATE(909), 1, - sym_primary_expression, - STATE(975), 1, + STATE(992), 1, sym_string, - STATE(1214), 1, + STATE(1005), 1, + sym_primary_expression, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1905), 1, + STATE(1891), 1, sym_expression, - STATE(2773), 1, + STATE(2633), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(700), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(1531), 2, + ACTIONS(1529), 2, anon_sym_match, anon_sym_type, - STATE(1479), 2, + STATE(1248), 2, sym_attribute, sym_subscript, - ACTIONS(696), 3, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1529), 3, + ACTIONS(1527), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(684), 4, + ACTIONS(693), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1702), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61039,7 +60873,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1172), 14, + STATE(1384), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -61054,58 +60888,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41807] = 22, - ACTIONS(686), 1, - anon_sym_LPAREN, - ACTIONS(694), 1, - anon_sym_LBRACK, - ACTIONS(698), 1, + [41927] = 22, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(704), 1, - sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, - anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(1095), 1, - sym_identifier, - ACTIONS(1105), 1, + ACTIONS(317), 1, anon_sym_await, - STATE(909), 1, + ACTIONS(319), 1, + sym_string_start, + ACTIONS(400), 1, + sym_identifier, + ACTIONS(652), 1, + anon_sym_LPAREN, + ACTIONS(662), 1, + anon_sym_LBRACK, + ACTIONS(1011), 1, + anon_sym_not, + ACTIONS(1413), 1, + anon_sym_STAR, + STATE(953), 1, sym_primary_expression, STATE(975), 1, sym_string, - STATE(1214), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1762), 1, + STATE(1888), 1, sym_expression, - STATE(2773), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(700), 2, - sym_ellipsis, - sym_float, - ACTIONS(1103), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(696), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1101), 3, + ACTIONS(313), 2, + sym_ellipsis, + sym_float, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(684), 4, + ACTIONS(307), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61113,7 +60947,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1172), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61130,58 +60964,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41905] = 22, - ACTIONS(67), 1, + [42025] = 22, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(317), 1, + anon_sym_await, + ACTIONS(319), 1, sym_string_start, - ACTIONS(383), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(406), 1, - anon_sym_await, - ACTIONS(649), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1011), 1, + anon_sym_not, + ACTIONS(1413), 1, anon_sym_STAR, - STATE(865), 1, + STATE(953), 1, sym_primary_expression, - STATE(969), 1, + STATE(975), 1, sym_string, - STATE(1119), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1662), 1, + STATE(1898), 1, sym_expression, - STATE(2751), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(395), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(313), 2, + sym_ellipsis, + sym_float, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(307), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1666), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61189,7 +61023,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1035), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61206,58 +61040,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42003] = 22, - ACTIONS(711), 1, - anon_sym_LPAREN, - ACTIONS(719), 1, - anon_sym_LBRACK, - ACTIONS(723), 1, + [42123] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(729), 1, - sym_string_start, - ACTIONS(1041), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1079), 1, - anon_sym_await, - ACTIONS(1295), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(375), 1, sym_identifier, - ACTIONS(1315), 1, + ACTIONS(398), 1, + anon_sym_await, + ACTIONS(633), 1, + anon_sym_LPAREN, + ACTIONS(641), 1, + anon_sym_LBRACK, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(967), 1, + STATE(851), 1, sym_primary_expression, - STATE(1028), 1, + STATE(954), 1, sym_string, - STATE(1388), 1, + STATE(1046), 1, sym_list_splat_pattern, - STATE(1910), 1, + STATE(1776), 1, sym_expression, - STATE(2638), 1, + STATE(2658), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1075), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1073), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61265,7 +61099,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1063), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61282,58 +61116,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42101] = 22, - ACTIONS(711), 1, + [42221] = 22, + ACTIONS(739), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(749), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(753), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(759), 1, sym_string_start, - ACTIONS(1041), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(1079), 1, - anon_sym_await, - ACTIONS(1295), 1, + ACTIONS(1119), 1, sym_identifier, - ACTIONS(1315), 1, + ACTIONS(1127), 1, + anon_sym_await, + ACTIONS(1235), 1, anon_sym_STAR, - STATE(967), 1, + STATE(947), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1018), 1, sym_string, - STATE(1388), 1, + STATE(1281), 1, sym_list_splat_pattern, - STATE(1916), 1, + STATE(1841), 1, sym_expression, - STATE(2638), 1, + STATE(2580), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(755), 2, sym_ellipsis, sym_float, - ACTIONS(1075), 2, + ACTIONS(1125), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(751), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1073), 3, + ACTIONS(1123), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(737), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1797), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61341,7 +61175,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1347), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61358,58 +61192,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42199] = 22, - ACTIONS(755), 1, - anon_sym_LPAREN, - ACTIONS(765), 1, - anon_sym_LBRACK, - ACTIONS(769), 1, + [42319] = 22, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(775), 1, - sym_string_start, - ACTIONS(835), 1, - anon_sym_not, - ACTIONS(837), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(1051), 1, - sym_identifier, - ACTIONS(1061), 1, + ACTIONS(317), 1, anon_sym_await, - ACTIONS(1251), 1, + ACTIONS(319), 1, + sym_string_start, + ACTIONS(400), 1, + sym_identifier, + ACTIONS(652), 1, + anon_sym_LPAREN, + ACTIONS(662), 1, + anon_sym_LBRACK, + ACTIONS(1011), 1, + anon_sym_not, + ACTIONS(1413), 1, anon_sym_STAR, - STATE(963), 1, + STATE(953), 1, sym_primary_expression, - STATE(1015), 1, + STATE(975), 1, sym_string, - STATE(1258), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1832), 1, + STATE(1991), 1, sym_expression, - STATE(2771), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, - sym_ellipsis, - sym_float, - ACTIONS(1059), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1057), 3, + ACTIONS(313), 2, + sym_ellipsis, + sym_float, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + ACTIONS(307), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61417,7 +61251,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61434,58 +61268,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42297] = 22, - ACTIONS(711), 1, - anon_sym_LPAREN, - ACTIONS(719), 1, - anon_sym_LBRACK, - ACTIONS(723), 1, + [42417] = 22, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(729), 1, - sym_string_start, - ACTIONS(1041), 1, - anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(1079), 1, + ACTIONS(317), 1, anon_sym_await, - ACTIONS(1295), 1, + ACTIONS(319), 1, + sym_string_start, + ACTIONS(400), 1, sym_identifier, - ACTIONS(1315), 1, + ACTIONS(652), 1, + anon_sym_LPAREN, + ACTIONS(662), 1, + anon_sym_LBRACK, + ACTIONS(1011), 1, + anon_sym_not, + ACTIONS(1413), 1, anon_sym_STAR, - STATE(967), 1, + STATE(953), 1, sym_primary_expression, - STATE(1028), 1, + STATE(975), 1, sym_string, - STATE(1388), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1733), 1, + STATE(1718), 1, sym_expression, - STATE(2638), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, - sym_ellipsis, - sym_float, - ACTIONS(1075), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1073), 3, + ACTIONS(313), 2, + sym_ellipsis, + sym_float, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(307), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61493,7 +61327,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61510,61 +61344,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42395] = 23, - ACTIONS(711), 1, - anon_sym_LPAREN, - ACTIONS(719), 1, - anon_sym_LBRACK, - ACTIONS(723), 1, + [42515] = 22, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(729), 1, - sym_string_start, - ACTIONS(1041), 1, - anon_sym_not, - ACTIONS(1043), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(1315), 1, - anon_sym_STAR, - ACTIONS(1515), 1, + ACTIONS(317), 1, anon_sym_await, - ACTIONS(1533), 1, + ACTIONS(319), 1, + sym_string_start, + ACTIONS(400), 1, sym_identifier, - STATE(1028), 1, - sym_string, - STATE(1030), 1, + ACTIONS(652), 1, + anon_sym_LPAREN, + ACTIONS(662), 1, + anon_sym_LBRACK, + ACTIONS(1011), 1, + anon_sym_not, + ACTIONS(1413), 1, + anon_sym_STAR, + STATE(953), 1, sym_primary_expression, - STATE(1388), 1, + STATE(975), 1, + sym_string, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(2019), 1, sym_expression, - STATE(2638), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, - sym_ellipsis, - sym_float, - ACTIONS(1537), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - STATE(1377), 2, - sym_attribute, - sym_subscript, - ACTIONS(721), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1535), 3, + ACTIONS(313), 2, + sym_ellipsis, + sym_float, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(307), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61572,9 +61403,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1270), 14, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -61587,184 +61420,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42495] = 9, - ACTIONS(1539), 1, - anon_sym_else, - ACTIONS(1541), 1, - anon_sym_except, - ACTIONS(1543), 1, - anon_sym_finally, - STATE(718), 1, - sym_else_clause, - STATE(818), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(624), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1517), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + [42613] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1519), 32, - anon_sym_import, - anon_sym_from, - 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_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + ACTIONS(69), 1, anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [42567] = 9, - ACTIONS(1539), 1, - anon_sym_else, - ACTIONS(1543), 1, - anon_sym_finally, - ACTIONS(1545), 1, - anon_sym_except_STAR, - STATE(718), 1, - sym_else_clause, - STATE(818), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(625), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1517), 12, - sym__dedent, + ACTIONS(81), 1, sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1519), 32, - anon_sym_import, - anon_sym_from, - 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_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - 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(375), 1, sym_identifier, + ACTIONS(398), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [42639] = 22, - ACTIONS(755), 1, + ACTIONS(633), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(641), 1, anon_sym_LBRACK, - ACTIONS(769), 1, - anon_sym_LBRACE, - ACTIONS(775), 1, - sym_string_start, - ACTIONS(835), 1, - anon_sym_not, - ACTIONS(837), 1, - anon_sym_lambda, - ACTIONS(1051), 1, - sym_identifier, - ACTIONS(1061), 1, - anon_sym_await, - ACTIONS(1251), 1, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(963), 1, + STATE(851), 1, sym_primary_expression, - STATE(1015), 1, + STATE(954), 1, sym_string, - STATE(1258), 1, + STATE(1046), 1, sym_list_splat_pattern, - STATE(1813), 1, + STATE(1645), 1, sym_expression, - STATE(2771), 1, + STATE(2658), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1059), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1057), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(753), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1806), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61772,7 +61479,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1063), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61789,58 +61496,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42737] = 22, - ACTIONS(801), 1, - anon_sym_LPAREN, - ACTIONS(809), 1, - anon_sym_LBRACK, - ACTIONS(813), 1, + [42711] = 22, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(819), 1, - sym_string_start, - ACTIONS(987), 1, - anon_sym_not, - ACTIONS(989), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(317), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(319), 1, + sym_string_start, + ACTIONS(400), 1, sym_identifier, - ACTIONS(1333), 1, + ACTIONS(652), 1, + anon_sym_LPAREN, + ACTIONS(662), 1, + anon_sym_LBRACK, + ACTIONS(1011), 1, + anon_sym_not, + ACTIONS(1413), 1, anon_sym_STAR, - STATE(976), 1, + STATE(953), 1, sym_primary_expression, - STATE(1107), 1, + STATE(975), 1, sym_string, - STATE(1437), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1756), 1, + STATE(2035), 1, sym_expression, - STATE(2777), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, - sym_ellipsis, - sym_float, - ACTIONS(981), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(313), 2, + sym_ellipsis, + sym_float, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(307), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1751), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61848,7 +61555,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1442), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61865,184 +61572,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42835] = 9, - ACTIONS(1539), 1, - anon_sym_else, - ACTIONS(1541), 1, - anon_sym_except, - ACTIONS(1543), 1, - anon_sym_finally, - STATE(720), 1, - sym_else_clause, - STATE(834), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(624), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1481), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1483), 32, - anon_sym_import, - anon_sym_from, - 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_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - 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, - [42907] = 9, - ACTIONS(1539), 1, - anon_sym_else, - ACTIONS(1543), 1, - anon_sym_finally, - ACTIONS(1545), 1, - anon_sym_except_STAR, - STATE(720), 1, - sym_else_clause, - STATE(834), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(625), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1481), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + [42809] = 22, + ACTIONS(302), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1483), 32, - anon_sym_import, - anon_sym_from, - 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_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, + ACTIONS(309), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [42979] = 22, - ACTIONS(310), 1, - anon_sym_LBRACE, ACTIONS(317), 1, - anon_sym_lambda, - ACTIONS(325), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1413), 1, anon_sym_STAR, - STATE(970), 1, + STATE(953), 1, sym_primary_expression, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1342), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(2011), 1, + STATE(2046), 1, sym_expression, - STATE(2775), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62050,7 +61631,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62067,58 +61648,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43077] = 22, - ACTIONS(310), 1, + [42907] = 22, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(317), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1413), 1, anon_sym_STAR, - STATE(970), 1, + STATE(953), 1, sym_primary_expression, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1342), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(2049), 1, + STATE(2057), 1, sym_expression, - STATE(2775), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62126,7 +61707,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62143,58 +61724,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43175] = 22, - ACTIONS(310), 1, + [43005] = 22, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(317), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1413), 1, anon_sym_STAR, - STATE(970), 1, + STATE(953), 1, sym_primary_expression, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1342), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(2063), 1, + STATE(1721), 1, sym_expression, - STATE(2775), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62202,7 +61783,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62219,58 +61800,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43273] = 22, - ACTIONS(310), 1, + [43103] = 22, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(317), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1413), 1, anon_sym_STAR, - STATE(970), 1, + STATE(953), 1, sym_primary_expression, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1342), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(2070), 1, + STATE(2062), 1, sym_expression, - STATE(2775), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62278,7 +61859,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62295,58 +61876,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43371] = 22, - ACTIONS(310), 1, + [43201] = 22, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(317), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1413), 1, anon_sym_STAR, - STATE(970), 1, + STATE(953), 1, sym_primary_expression, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1342), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(2076), 1, + STATE(2071), 1, sym_expression, - STATE(2775), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62354,7 +61935,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62371,58 +61952,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43469] = 22, - ACTIONS(310), 1, + [43299] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(325), 1, - anon_sym_await, - ACTIONS(327), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(375), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(398), 1, + anon_sym_await, + ACTIONS(633), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(641), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(970), 1, + STATE(851), 1, sym_primary_expression, - STATE(1010), 1, + STATE(954), 1, sym_string, - STATE(1342), 1, + STATE(1046), 1, sym_list_splat_pattern, - STATE(1992), 1, + STATE(2061), 1, sym_expression, - STATE(2775), 1, + STATE(2658), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(387), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(383), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62430,7 +62011,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1063), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62447,58 +62028,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43567] = 22, - ACTIONS(310), 1, + [43397] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(325), 1, - anon_sym_await, - ACTIONS(327), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(375), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(398), 1, + anon_sym_await, + ACTIONS(633), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(641), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(970), 1, + STATE(851), 1, sym_primary_expression, - STATE(1010), 1, + STATE(954), 1, sym_string, - STATE(1342), 1, + STATE(1046), 1, sym_list_splat_pattern, - STATE(2084), 1, + STATE(1940), 1, sym_expression, - STATE(2775), 1, + STATE(2658), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(387), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(383), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62506,7 +62087,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1063), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62523,58 +62104,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43665] = 22, - ACTIONS(310), 1, + [43495] = 22, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(317), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1413), 1, anon_sym_STAR, - STATE(970), 1, + STATE(953), 1, sym_primary_expression, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1342), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(2094), 1, + STATE(2075), 1, sym_expression, - STATE(2775), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62582,7 +62163,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62599,58 +62180,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43763] = 22, - ACTIONS(310), 1, + [43593] = 22, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(317), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1413), 1, anon_sym_STAR, - STATE(970), 1, + STATE(953), 1, sym_primary_expression, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1342), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(2095), 1, + STATE(2076), 1, sym_expression, - STATE(2775), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62658,7 +62239,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62675,58 +62256,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43861] = 22, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(317), 1, - anon_sym_lambda, - ACTIONS(325), 1, - anon_sym_await, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(408), 1, - sym_identifier, - ACTIONS(668), 1, + [43691] = 22, + ACTIONS(739), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(749), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(753), 1, + anon_sym_LBRACE, + ACTIONS(759), 1, + sym_string_start, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(843), 1, + anon_sym_lambda, + ACTIONS(1119), 1, + sym_identifier, + ACTIONS(1127), 1, + anon_sym_await, + ACTIONS(1235), 1, anon_sym_STAR, - STATE(970), 1, + STATE(947), 1, sym_primary_expression, - STATE(1010), 1, + STATE(1018), 1, sym_string, - STATE(1342), 1, + STATE(1281), 1, sym_list_splat_pattern, - STATE(2099), 1, + STATE(1780), 1, sym_expression, - STATE(2775), 1, + STATE(2580), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(321), 2, + ACTIONS(755), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(1125), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(751), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(1123), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(737), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1797), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62734,7 +62315,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1347), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62751,58 +62332,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43959] = 22, - ACTIONS(310), 1, + [43789] = 22, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(317), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1413), 1, anon_sym_STAR, - STATE(970), 1, + STATE(953), 1, sym_primary_expression, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1342), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(2100), 1, + STATE(2081), 1, sym_expression, - STATE(2775), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62810,7 +62391,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62827,58 +62408,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [44057] = 22, - ACTIONS(310), 1, + [43887] = 22, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(317), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1413), 1, anon_sym_STAR, - STATE(970), 1, + STATE(953), 1, sym_primary_expression, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1342), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(2101), 1, + STATE(2082), 1, sym_expression, - STATE(2775), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62886,7 +62467,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62903,58 +62484,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [44155] = 22, - ACTIONS(310), 1, + [43985] = 22, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(317), 1, + ACTIONS(309), 1, anon_sym_lambda, - ACTIONS(325), 1, + ACTIONS(317), 1, anon_sym_await, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1011), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1413), 1, anon_sym_STAR, - STATE(970), 1, + STATE(953), 1, sym_primary_expression, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1342), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(2088), 1, + STATE(2083), 1, sym_expression, - STATE(2775), 1, + STATE(2759), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(289), 2, anon_sym_match, anon_sym_type, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(282), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1717), 7, + STATE(1720), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62962,7 +62543,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1268), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62979,146 +62560,102 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [44253] = 10, - ACTIONS(1549), 1, - anon_sym_COMMA, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, - ACTIONS(1556), 1, - anon_sym_COLON, - ACTIONS(1559), 1, - anon_sym_EQ, - ACTIONS(1561), 1, - anon_sym_LBRACK, - STATE(2018), 1, - sym_type_parameter, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1563), 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(1552), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - 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(1547), 16, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, + [44083] = 22, + ACTIONS(695), 1, anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - anon_sym_in, + ACTIONS(703), 1, + anon_sym_LBRACK, + ACTIONS(707), 1, + anon_sym_LBRACE, + ACTIONS(713), 1, + sym_string_start, + ACTIONS(1059), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [44326] = 8, - ACTIONS(1539), 1, - anon_sym_else, - ACTIONS(1569), 1, - anon_sym_elif, - STATE(630), 1, - aux_sym_if_statement_repeat1, - STATE(716), 1, - sym_elif_clause, - STATE(841), 1, - sym_else_clause, + ACTIONS(1061), 1, + anon_sym_lambda, + ACTIONS(1075), 1, + anon_sym_await, + ACTIONS(1269), 1, + sym_identifier, + ACTIONS(1325), 1, + anon_sym_STAR, + STATE(952), 1, + sym_primary_expression, + STATE(992), 1, + sym_string, + STATE(1322), 1, + sym_list_splat_pattern, + STATE(1906), 1, + sym_expression, + STATE(2633), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1567), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(709), 2, + sym_ellipsis, + sym_float, + ACTIONS(1071), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(705), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1565), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(1069), 3, 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_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - 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(693), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [44394] = 8, + STATE(1702), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1384), 16, + 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_await, + [44181] = 9, ACTIONS(1485), 1, anon_sym_else, - ACTIONS(1575), 1, - anon_sym_elif, - STATE(614), 1, - aux_sym_if_statement_repeat1, - STATE(701), 1, - sym_elif_clause, - STATE(733), 1, + ACTIONS(1487), 1, + anon_sym_except, + ACTIONS(1489), 1, + anon_sym_finally, + STATE(698), 1, sym_else_clause, + STATE(807), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1571), 12, + STATE(612), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1493), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -63129,7 +62666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1573), 32, + ACTIONS(1495), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63162,78 +62699,23 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44462] = 7, - ACTIONS(284), 1, + [44253] = 10, + ACTIONS(1533), 1, anon_sym_COMMA, - ACTIONS(292), 1, + ACTIONS(1538), 1, anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(1540), 1, anon_sym_COLON, + ACTIONS(1543), 1, anon_sym_EQ, - ACTIONS(319), 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(279), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - 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(277), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - anon_sym_in, + ACTIONS(1545), 1, anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [44528] = 8, - ACTIONS(284), 1, - anon_sym_COMMA, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(294), 1, - anon_sym_COLON, - ACTIONS(302), 1, - anon_sym_EQ, + STATE(2043), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(319), 13, + ACTIONS(1547), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -63247,7 +62729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(279), 15, + ACTIONS(1536), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -63263,7 +62745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 17, + ACTIONS(1531), 16, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -63271,7 +62753,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_if, anon_sym_in, - anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -63281,21 +62762,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [44596] = 8, - ACTIONS(1485), 1, + [44326] = 8, + ACTIONS(1469), 1, anon_sym_else, - ACTIONS(1575), 1, + ACTIONS(1553), 1, anon_sym_elif, - STATE(632), 1, + STATE(648), 1, aux_sym_if_statement_repeat1, - STATE(701), 1, + STATE(691), 1, sym_elif_clause, - STATE(756), 1, + STATE(789), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1567), 12, + ACTIONS(1549), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -63308,7 +62789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1565), 32, + ACTIONS(1551), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63341,23 +62822,82 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44664] = 8, - ACTIONS(1539), 1, + [44394] = 7, + ACTIONS(276), 1, + anon_sym_COMMA, + ACTIONS(284), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(294), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(311), 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(271), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + 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(269), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [44460] = 8, + ACTIONS(1469), 1, anon_sym_else, - ACTIONS(1569), 1, + ACTIONS(1553), 1, anon_sym_elif, - STATE(619), 1, + STATE(648), 1, aux_sym_if_statement_repeat1, - STATE(716), 1, + STATE(691), 1, sym_elif_clause, - STATE(808), 1, + STATE(761), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1579), 12, - sym__dedent, + ACTIONS(1555), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -63368,7 +62908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1577), 32, + ACTIONS(1557), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63401,21 +62941,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44732] = 8, - ACTIONS(1485), 1, + [44528] = 8, + ACTIONS(1469), 1, anon_sym_else, - ACTIONS(1575), 1, + ACTIONS(1553), 1, anon_sym_elif, - STATE(632), 1, + STATE(604), 1, aux_sym_if_statement_repeat1, - STATE(701), 1, + STATE(691), 1, sym_elif_clause, - STATE(732), 1, + STATE(762), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1581), 12, + ACTIONS(1559), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -63428,7 +62968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1583), 32, + ACTIONS(1561), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63461,82 +63001,23 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44800] = 7, - ACTIONS(284), 1, - anon_sym_COMMA, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(302), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(319), 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(279), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - 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(277), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [44866] = 8, + [44596] = 8, ACTIONS(1485), 1, anon_sym_else, - ACTIONS(1575), 1, + ACTIONS(1563), 1, anon_sym_elif, - STATE(616), 1, + STATE(636), 1, aux_sym_if_statement_repeat1, - STATE(701), 1, + STATE(690), 1, sym_elif_clause, - STATE(786), 1, + STATE(776), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1579), 12, + ACTIONS(1555), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -63547,7 +63028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1577), 32, + ACTIONS(1557), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63580,23 +63061,18 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44934] = 8, - ACTIONS(1539), 1, - anon_sym_else, + [44664] = 5, ACTIONS(1569), 1, - anon_sym_elif, - STATE(630), 1, - aux_sym_if_statement_repeat1, - STATE(716), 1, - sym_elif_clause, - STATE(825), 1, - sym_else_clause, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1581), 12, - sym__dedent, + STATE(609), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1565), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -63607,7 +63083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1583), 32, + ACTIONS(1567), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63619,11 +63095,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -63640,23 +63118,18 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45002] = 8, - ACTIONS(1539), 1, - anon_sym_else, - ACTIONS(1569), 1, - anon_sym_elif, - STATE(610), 1, - aux_sym_if_statement_repeat1, - STATE(716), 1, - sym_elif_clause, - STATE(826), 1, - sym_else_clause, + [44726] = 5, + ACTIONS(1576), 1, + anon_sym_except_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1571), 12, - sym__dedent, + STATE(610), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(1572), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -63667,7 +63140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1573), 32, + ACTIONS(1574), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63679,11 +63152,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -63700,78 +63175,23 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45070] = 8, - ACTIONS(284), 1, - anon_sym_COMMA, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(294), 1, - anon_sym_COLON, - ACTIONS(302), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(319), 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(279), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - 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(277), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [45138] = 5, - ACTIONS(1589), 1, - anon_sym_except, + [44788] = 8, + ACTIONS(1485), 1, + anon_sym_else, + ACTIONS(1563), 1, + anon_sym_elif, + STATE(617), 1, + aux_sym_if_statement_repeat1, + STATE(690), 1, + sym_elif_clause, + STATE(783), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(622), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1585), 12, + ACTIONS(1559), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -63782,7 +63202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1587), 34, + ACTIONS(1561), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63794,13 +63214,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -63817,18 +63235,18 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45200] = 5, - ACTIONS(1596), 1, - anon_sym_except_STAR, + [44856] = 5, + ACTIONS(1579), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(623), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1592), 12, + STATE(612), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1565), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -63839,7 +63257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1594), 34, + ACTIONS(1567), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63874,16 +63292,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45262] = 5, - ACTIONS(1599), 1, - anon_sym_except, + [44918] = 5, + ACTIONS(1582), 1, + anon_sym_except_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(624), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1585), 12, + STATE(613), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(1572), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -63896,7 +63314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1587), 34, + ACTIONS(1574), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63931,16 +63349,80 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45324] = 5, - ACTIONS(1602), 1, - anon_sym_except_STAR, + [44980] = 7, + ACTIONS(1533), 1, + anon_sym_COMMA, + ACTIONS(1538), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(625), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1592), 12, + ACTIONS(1543), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(1547), 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(1536), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + 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(1531), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [45046] = 8, + ACTIONS(1485), 1, + anon_sym_else, + ACTIONS(1563), 1, + anon_sym_elif, + STATE(608), 1, + aux_sym_if_statement_repeat1, + STATE(690), 1, + sym_elif_clause, + STATE(746), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1587), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -63953,7 +63435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1594), 34, + ACTIONS(1585), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63965,13 +63447,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -63988,18 +63468,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45386] = 7, - ACTIONS(1549), 1, + [45114] = 8, + ACTIONS(276), 1, anon_sym_COMMA, - ACTIONS(1554), 1, + ACTIONS(284), 1, anon_sym_COLON_EQ, + ACTIONS(286), 1, + anon_sym_COLON, + ACTIONS(294), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1559), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(1563), 13, + ACTIONS(311), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -64013,7 +63494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1552), 15, + ACTIONS(271), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -64029,175 +63510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [45452] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1607), 16, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - 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(1605), 32, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - 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, - [45509] = 6, - ACTIONS(1559), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1611), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1563), 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(1614), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - 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(1609), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [45572] = 6, - ACTIONS(1559), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1549), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1563), 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(1552), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - 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(1547), 17, + ACTIONS(269), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -64215,17 +63528,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [45635] = 6, - ACTIONS(1620), 1, + [45182] = 8, + ACTIONS(1485), 1, + anon_sym_else, + ACTIONS(1563), 1, anon_sym_elif, - STATE(630), 1, + STATE(636), 1, aux_sym_if_statement_repeat1, - STATE(716), 1, + STATE(690), 1, sym_elif_clause, + STATE(822), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1618), 12, + ACTIONS(1549), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -64238,7 +63555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1616), 33, + ACTIONS(1551), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -64250,7 +63567,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, @@ -64272,16 +63588,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45698] = 6, - ACTIONS(1625), 1, + [45250] = 8, + ACTIONS(276), 1, anon_sym_COMMA, - ACTIONS(1632), 1, + ACTIONS(284), 1, + anon_sym_COLON_EQ, + ACTIONS(286), 1, + anon_sym_COLON, + ACTIONS(294), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1630), 14, - anon_sym_COLON, + ACTIONS(311), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -64295,7 +63614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1628), 15, + ACTIONS(271), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -64311,7 +63630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 17, + ACTIONS(269), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -64329,17 +63648,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [45761] = 6, - ACTIONS(1634), 1, + [45318] = 8, + ACTIONS(1469), 1, + anon_sym_else, + ACTIONS(1553), 1, anon_sym_elif, - STATE(632), 1, + STATE(606), 1, aux_sym_if_statement_repeat1, - STATE(701), 1, + STATE(691), 1, sym_elif_clause, + STATE(732), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1618), 12, + ACTIONS(1587), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -64352,7 +63675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1616), 33, + ACTIONS(1585), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -64364,7 +63687,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, @@ -64386,16 +63708,18 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45824] = 6, - ACTIONS(1632), 1, - anon_sym_EQ, + [45386] = 7, + ACTIONS(276), 1, + anon_sym_COMMA, + ACTIONS(284), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1625), 2, - anon_sym_COMMA, + ACTIONS(294), 2, anon_sym_COLON, - ACTIONS(1630), 13, + anon_sym_EQ, + ACTIONS(311), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -64409,7 +63733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1628), 15, + ACTIONS(271), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -64425,7 +63749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 17, + ACTIONS(269), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -64443,16 +63767,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [45887] = 6, - ACTIONS(1644), 1, + [45452] = 6, + ACTIONS(1591), 1, + anon_sym_COMMA, + ACTIONS(1598), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1639), 2, - anon_sym_COMMA, + ACTIONS(1596), 14, anon_sym_COLON, - ACTIONS(1646), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -64466,7 +63790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1642), 15, + ACTIONS(1594), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -64482,7 +63806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1637), 17, + ACTIONS(1589), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -64500,33 +63824,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [45950] = 6, - ACTIONS(1639), 1, - anon_sym_COMMA, - ACTIONS(1644), 1, - anon_sym_EQ, + [45515] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1646), 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(1642), 15, + ACTIONS(1602), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1600), 36, + anon_sym_import, + anon_sym_from, + 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_elif, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + 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, + [45572] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1606), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -64539,13 +63899,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1637), 17, + ACTIONS(1604), 32, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_LBRACK, anon_sym_not, @@ -64557,28 +63919,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [46013] = 7, - ACTIONS(1660), 1, - anon_sym_PIPE, + 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, + [45629] = 6, + ACTIONS(1543), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1650), 2, - anon_sym_DOT, + ACTIONS(1610), 2, + anon_sym_COMMA, anon_sym_COLON, - ACTIONS(1652), 2, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1658), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1655), 12, + ACTIONS(1547), 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(1613), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PERCENT, @@ -64586,13 +63969,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1648), 28, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1608), 17, sym__newline, anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_as, anon_sym_if, anon_sym_in, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -64602,24 +63989,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - 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, - [46078] = 3, + [45692] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 16, + ACTIONS(1617), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -64636,7 +64010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 32, + ACTIONS(1615), 32, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -64669,19 +64043,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46135] = 5, + [45749] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1652), 3, - anon_sym_DOT, + ACTIONS(1619), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(1658), 3, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1621), 36, + anon_sym_import, + anon_sym_from, + 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_elif, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + 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, + [45806] = 6, + ACTIONS(1543), 1, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1655), 13, + ACTIONS(1610), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1547), 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(1613), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -64695,14 +64134,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1648), 29, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1608), 17, sym__newline, anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_as, anon_sym_if, - anon_sym_COLON, anon_sym_in, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -64712,32 +64154,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - 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, - [46196] = 5, + [45869] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1623), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1625), 36, + anon_sym_import, + anon_sym_from, + 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_elif, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + 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, + [45926] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1627), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1629), 36, + anon_sym_import, + anon_sym_from, + 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_elif, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + 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, + [45983] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(670), 3, + ACTIONS(654), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 3, + ACTIONS(668), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(665), 13, + ACTIONS(649), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -64751,7 +64288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(663), 29, + ACTIONS(647), 29, sym__newline, anon_sym_SEMI, anon_sym_COMMA, @@ -64781,16 +64318,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46257] = 6, - ACTIONS(1549), 1, - anon_sym_COMMA, - ACTIONS(1559), 1, + [46044] = 6, + ACTIONS(1638), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1563), 14, + ACTIONS(1633), 2, + anon_sym_COMMA, anon_sym_COLON, + ACTIONS(1640), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -64804,7 +64341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1552), 15, + ACTIONS(1636), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -64820,7 +64357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 17, + ACTIONS(1631), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -64838,30 +64375,359 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [46320] = 6, - ACTIONS(1559), 1, - anon_sym_EQ, - ACTIONS(1611), 1, - anon_sym_COMMA, + [46107] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1563), 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, + ACTIONS(1627), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1629), 36, + anon_sym_import, + anon_sym_from, + 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_elif, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + 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, + [46164] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1644), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1642), 36, + anon_sym_import, + anon_sym_from, + 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_elif, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + 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, + [46221] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(654), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(668), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(649), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(647), 29, + sym__newline, + anon_sym_SEMI, + 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_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + 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, + [46282] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1619), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1621), 36, + anon_sym_import, + anon_sym_from, + 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_elif, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + 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, + [46339] = 6, + ACTIONS(1650), 1, + anon_sym_elif, + STATE(636), 1, + aux_sym_if_statement_repeat1, + STATE(690), 1, + sym_elif_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1648), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1646), 33, + anon_sym_import, + anon_sym_from, + 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_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + 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, + [46402] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1644), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1642), 36, + anon_sym_import, + anon_sym_from, + 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_elif, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + 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, + [46459] = 6, + ACTIONS(1533), 1, + anon_sym_COMMA, + ACTIONS(1543), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1547), 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(1614), 15, + ACTIONS(1536), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -64877,7 +64743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 17, + ACTIONS(1531), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -64895,11 +64761,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [46383] = 3, + [46522] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1623), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1625), 36, + anon_sym_import, + anon_sym_from, + 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_elif, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + 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, + [46579] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1602), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1600), 36, + anon_sym_import, + anon_sym_from, + 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_elif, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + 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, + [46636] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 16, + ACTIONS(1655), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -64916,7 +64890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 32, + ACTIONS(1653), 32, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -64949,11 +64923,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46440] = 3, + [46693] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 16, + ACTIONS(1659), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -64970,7 +64944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 32, + ACTIONS(1657), 32, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -65003,11 +64977,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46497] = 3, + [46750] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 16, + ACTIONS(1659), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -65024,7 +64998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 32, + ACTIONS(1657), 32, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -65057,11 +65031,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46554] = 3, + [46807] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1676), 16, + ACTIONS(1606), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -65078,7 +65052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 32, + ACTIONS(1604), 32, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -65111,19 +65085,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46611] = 5, + [46864] = 6, + ACTIONS(1543), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(670), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(706), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(665), 13, + ACTIONS(1533), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1547), 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(1536), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -65137,14 +65122,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(663), 29, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1531), 17, sym__newline, anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_as, anon_sym_if, - anon_sym_COLON, anon_sym_in, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -65154,6 +65142,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, + [46927] = 6, + ACTIONS(1598), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1591), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1596), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -65167,15 +65165,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46672] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1676), 16, + ACTIONS(1594), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -65188,15 +65181,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 32, + ACTIONS(1589), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_LBRACK, anon_sym_not, @@ -65208,6 +65199,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, + [46990] = 6, + ACTIONS(1633), 1, + anon_sym_COMMA, + ACTIONS(1638), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1640), 14, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -65221,16 +65222,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46729] = 3, + ACTIONS(1636), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + 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(1631), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [47053] = 6, + ACTIONS(1661), 1, + anon_sym_elif, + STATE(648), 1, + aux_sym_if_statement_repeat1, + STATE(691), 1, + sym_elif_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1678), 13, + ACTIONS(1648), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -65239,7 +65279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1680), 34, + ACTIONS(1646), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65257,7 +65297,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_def, anon_sym_global, @@ -65274,15 +65313,184 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46785] = 3, + [47116] = 7, + ACTIONS(1676), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1684), 12, - sym__dedent, - sym_string_start, + ACTIONS(1666), 2, + anon_sym_DOT, + anon_sym_COLON, + ACTIONS(1668), 2, anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1674), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1671), 12, anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1664), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + 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, + [47181] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1668), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1674), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1671), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1664), 29, + sym__newline, + anon_sym_SEMI, + 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_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + 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, + [47242] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1680), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + 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(1678), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + 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, + [47299] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1682), 13, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -65291,7 +65499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1682), 35, + ACTIONS(1684), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65309,7 +65517,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -65327,11 +65534,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46841] = 3, + [47355] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1678), 13, + ACTIONS(1688), 13, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -65345,7 +65552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1680), 34, + ACTIONS(1686), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65380,11 +65587,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46897] = 3, + [47411] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1688), 12, + ACTIONS(1692), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -65397,7 +65604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1686), 35, + ACTIONS(1690), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65433,15 +65640,87 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46953] = 3, + [47467] = 21, + ACTIONS(302), 1, + anon_sym_LBRACE, + ACTIONS(319), 1, + sym_string_start, + ACTIONS(1694), 1, + sym_identifier, + ACTIONS(1696), 1, + anon_sym_LPAREN, + ACTIONS(1698), 1, + anon_sym_STAR, + ACTIONS(1704), 1, + anon_sym_LBRACK, + ACTIONS(1706), 1, + anon_sym_await, + STATE(975), 1, + sym_string, + STATE(1555), 1, + sym_list_splat_pattern, + STATE(1604), 1, + sym_primary_expression, + STATE(2063), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1692), 12, + ACTIONS(313), 2, + sym_ellipsis, + sym_float, + ACTIONS(1702), 2, + anon_sym_match, + anon_sym_type, + STATE(1562), 2, + sym_attribute, + sym_subscript, + STATE(2093), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(307), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1700), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(315), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(943), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + STATE(1276), 14, + 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_await, + [47559] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1619), 13, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -65450,7 +65729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1690), 35, + ACTIONS(1621), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65468,7 +65747,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -65486,15 +65764,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47009] = 3, + [47615] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1696), 12, + ACTIONS(1623), 13, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -65503,7 +65782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1694), 35, + ACTIONS(1625), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65521,7 +65800,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -65539,13 +65817,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47065] = 3, + [47671] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1700), 12, - sym__dedent, + ACTIONS(1708), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -65556,7 +65834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1698), 35, + ACTIONS(1710), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65592,13 +65870,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47121] = 3, + [47727] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1704), 12, - sym__dedent, + ACTIONS(1712), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -65609,7 +65887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1702), 35, + ACTIONS(1714), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65621,13 +65899,13 @@ 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_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -65645,84 +65923,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47177] = 21, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(1706), 1, - sym_identifier, - ACTIONS(1708), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_STAR, - ACTIONS(1716), 1, - anon_sym_LBRACK, - ACTIONS(1718), 1, - anon_sym_await, - STATE(1010), 1, - sym_string, - STATE(1578), 1, - sym_list_splat_pattern, - STATE(1620), 1, - sym_primary_expression, - STATE(2046), 1, - sym_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(1714), 2, - anon_sym_match, - anon_sym_type, - STATE(1576), 2, - sym_attribute, - sym_subscript, - STATE(2052), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1712), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(323), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(973), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - STATE(1268), 14, - 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_await, - [47269] = 3, + [47783] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1684), 13, - sym__dedent, + ACTIONS(1623), 13, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_except_STAR, @@ -65734,7 +65941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1682), 34, + ACTIONS(1625), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65769,15 +65976,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47325] = 3, + [47839] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1692), 12, + ACTIONS(1602), 13, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -65786,7 +65994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1690), 35, + ACTIONS(1600), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65804,7 +66012,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -65822,15 +66029,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47381] = 3, + [47895] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1696), 12, + ACTIONS(1718), 13, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -65839,7 +66047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1694), 35, + ACTIONS(1716), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65851,7 +66059,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_match, anon_sym_async, @@ -65875,16 +66082,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47437] = 3, + [47951] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1704), 13, + ACTIONS(1708), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -65893,7 +66099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1702), 34, + ACTIONS(1710), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65911,6 +66117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -65928,11 +66135,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47493] = 3, + [48007] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1692), 13, + ACTIONS(1722), 13, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -65946,7 +66153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1690), 34, + ACTIONS(1720), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65981,16 +66188,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47549] = 3, + [48063] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1696), 13, - sym__dedent, + ACTIONS(1724), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -65999,7 +66205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1694), 34, + ACTIONS(1726), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66017,6 +66223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -66034,16 +66241,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47605] = 3, + [48119] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1700), 13, + ACTIONS(1712), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -66052,7 +66258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1698), 34, + ACTIONS(1714), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66070,6 +66276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -66087,15 +66294,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47661] = 3, + [48175] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1700), 12, + ACTIONS(1627), 13, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -66104,7 +66312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1698), 35, + ACTIONS(1629), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66122,7 +66330,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -66140,13 +66347,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47717] = 3, + [48231] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1722), 12, - sym__dedent, + ACTIONS(1728), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -66157,7 +66364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1720), 35, + ACTIONS(1730), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66193,64 +66400,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47773] = 3, + [48287] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1726), 13, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_except_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1724), 34, - anon_sym_import, - anon_sym_from, - 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_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - 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, - [47829] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1684), 12, + ACTIONS(1692), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -66263,7 +66417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1682), 35, + ACTIONS(1690), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66299,15 +66453,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47885] = 3, + [48343] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1730), 12, - sym__dedent, + ACTIONS(1718), 13, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -66316,7 +66471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1728), 35, + ACTIONS(1716), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66334,7 +66489,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -66352,7 +66506,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47941] = 3, + [48399] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -66405,13 +66559,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47997] = 3, + [48455] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1738), 13, - sym__dedent, + ACTIONS(1619), 13, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_except_STAR, @@ -66423,7 +66577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1736), 34, + ACTIONS(1621), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66458,15 +66612,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48053] = 3, + [48511] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1704), 12, + ACTIONS(1722), 13, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -66475,7 +66630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1702), 35, + ACTIONS(1720), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66487,7 +66642,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_match, anon_sym_async, @@ -66511,11 +66665,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48109] = 3, + [48567] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1742), 12, + ACTIONS(1724), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -66528,7 +66682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1740), 35, + ACTIONS(1726), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66564,15 +66718,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48165] = 3, + [48623] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1704), 12, + ACTIONS(1688), 13, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -66581,7 +66736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1702), 35, + ACTIONS(1686), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66599,7 +66754,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -66617,13 +66771,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48221] = 3, + [48679] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1688), 12, + ACTIONS(1728), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -66634,7 +66788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1686), 35, + ACTIONS(1730), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66670,13 +66824,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48277] = 3, + [48735] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1744), 12, + ACTIONS(1732), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -66687,7 +66841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1746), 35, + ACTIONS(1734), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66723,15 +66877,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48333] = 3, + [48791] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1744), 12, - sym__dedent, + ACTIONS(1644), 13, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -66740,7 +66895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1746), 35, + ACTIONS(1642), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66758,7 +66913,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -66776,11 +66930,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48389] = 3, + [48847] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1750), 13, + ACTIONS(1602), 13, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -66794,7 +66948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1748), 34, + ACTIONS(1600), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66829,13 +66983,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48445] = 3, + [48903] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1692), 13, + ACTIONS(1627), 13, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_except_STAR, @@ -66847,7 +67001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1690), 34, + ACTIONS(1629), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66882,15 +67036,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48501] = 3, + [48959] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1696), 12, + ACTIONS(1682), 13, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -66899,7 +67054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1694), 35, + ACTIONS(1684), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66917,7 +67072,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -66935,119 +67089,84 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48557] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1700), 13, + [49015] = 21, + ACTIONS(302), 1, + anon_sym_LBRACE, + ACTIONS(319), 1, sym_string_start, - ts_builtin_sym_end, + ACTIONS(1694), 1, + sym_identifier, + ACTIONS(1696), 1, anon_sym_LPAREN, + ACTIONS(1698), 1, anon_sym_STAR, - anon_sym_except_STAR, + ACTIONS(1704), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1698), 34, - anon_sym_import, - anon_sym_from, - 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_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - 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(1706), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [48613] = 3, + STATE(975), 1, + sym_string, + STATE(1555), 1, + sym_list_splat_pattern, + STATE(1604), 1, + sym_primary_expression, + STATE(2063), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1722), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(313), 2, + sym_ellipsis, + sym_float, + ACTIONS(1702), 2, + anon_sym_match, + anon_sym_type, + STATE(1562), 2, + sym_attribute, + sym_subscript, + STATE(2093), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(307), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1720), 35, - anon_sym_import, - anon_sym_from, + ACTIONS(1700), 3, 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_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - 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(315), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [48669] = 3, + ACTIONS(957), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + STATE(1276), 14, + 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_await, + [49107] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1726), 13, + ACTIONS(1644), 13, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_except_STAR, @@ -67059,7 +67178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1724), 34, + ACTIONS(1642), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67094,13 +67213,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48725] = 3, + [49163] = 5, + ACTIONS(1489), 1, + anon_sym_finally, + STATE(806), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1684), 12, + ACTIONS(1738), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -67111,7 +67234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1682), 35, + ACTIONS(1736), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67123,14 +67246,11 @@ 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_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -67147,16 +67267,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48781] = 3, + [49222] = 5, + ACTIONS(1485), 1, + anon_sym_else, + STATE(717), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1684), 13, + ACTIONS(1742), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -67165,7 +67288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1682), 34, + ACTIONS(1740), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67177,13 +67300,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -67200,13 +67321,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48837] = 3, + [49281] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1730), 12, + ACTIONS(1746), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -67217,7 +67338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1728), 35, + ACTIONS(1744), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67229,14 +67350,13 @@ 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_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -67253,16 +67373,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48893] = 3, + [49336] = 5, + ACTIONS(1469), 1, + anon_sym_else, + STATE(770), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1738), 13, + ACTIONS(1748), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -67271,7 +67394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1736), 34, + ACTIONS(1750), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67283,13 +67406,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -67306,13 +67427,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48949] = 3, + [49395] = 5, + ACTIONS(1485), 1, + anon_sym_else, + STATE(720), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1742), 12, + ACTIONS(1754), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -67323,7 +67448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1740), 35, + ACTIONS(1752), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67335,14 +67460,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -67359,16 +67481,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49005] = 3, + [49454] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1750), 13, + ACTIONS(1758), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -67377,7 +67498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1748), 34, + ACTIONS(1756), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67389,13 +67510,13 @@ 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_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -67412,11 +67533,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49061] = 3, + [49509] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1684), 12, + ACTIONS(1762), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -67429,7 +67550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1682), 35, + ACTIONS(1760), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67448,7 +67569,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_def, anon_sym_global, @@ -67465,87 +67585,179 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49117] = 21, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, + [49564] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1762), 12, sym_string_start, - ACTIONS(1706), 1, - sym_identifier, - ACTIONS(1708), 1, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(1710), 1, anon_sym_STAR, - ACTIONS(1716), 1, anon_sym_LBRACK, - ACTIONS(1718), 1, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1760), 34, + anon_sym_import, + anon_sym_from, + 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_elif, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + 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, - STATE(1010), 1, - sym_string, - STATE(1578), 1, - sym_list_splat_pattern, - STATE(1620), 1, - sym_primary_expression, - STATE(2046), 1, - sym_pattern, + sym_true, + sym_false, + sym_none, + [49619] = 5, + ACTIONS(1485), 1, + anon_sym_else, + STATE(757), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(1766), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1714), 2, + ACTIONS(1764), 32, + anon_sym_import, + anon_sym_from, + 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_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, anon_sym_type, - STATE(1576), 2, - sym_attribute, - sym_subscript, - STATE(2052), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(315), 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, + [49678] = 5, + ACTIONS(1473), 1, + anon_sym_finally, + STATE(774), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1738), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1712), 3, + sym_ellipsis, + sym_float, + ACTIONS(1736), 32, + anon_sym_import, + anon_sym_from, 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_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - ACTIONS(323), 4, + 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(959), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - STATE(1268), 14, - 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_await, - [49209] = 3, + [49737] = 5, + ACTIONS(1485), 1, + anon_sym_else, + STATE(801), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1704), 13, + ACTIONS(1748), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -67554,7 +67766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1702), 34, + ACTIONS(1750), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67566,13 +67778,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -67589,11 +67799,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49265] = 3, + [49796] = 5, + ACTIONS(1469), 1, + anon_sym_else, + STATE(738), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1696), 12, + ACTIONS(1766), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -67606,7 +67820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1694), 35, + ACTIONS(1764), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67618,14 +67832,11 @@ 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_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -67642,13 +67853,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49321] = 3, + [49855] = 5, + ACTIONS(1469), 1, + anon_sym_else, + STATE(794), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1692), 12, - sym__dedent, + ACTIONS(1768), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -67659,7 +67874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1690), 35, + ACTIONS(1770), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67671,14 +67886,11 @@ 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_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -67695,16 +67907,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49377] = 3, + [49914] = 5, + ACTIONS(1473), 1, + anon_sym_finally, + STATE(799), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1696), 13, + ACTIONS(1772), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -67713,7 +67928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1694), 34, + ACTIONS(1774), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67725,13 +67940,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -67748,11 +67961,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49433] = 3, + [49973] = 5, + ACTIONS(1489), 1, + anon_sym_finally, + STATE(729), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1700), 12, + ACTIONS(1772), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -67765,7 +67982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1698), 35, + ACTIONS(1774), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67777,14 +67994,11 @@ 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_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -67801,11 +68015,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49489] = 3, + [50032] = 5, + ACTIONS(1469), 1, + anon_sym_else, + STATE(810), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1692), 12, + ACTIONS(1776), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -67818,7 +68036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1690), 35, + ACTIONS(1778), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67830,14 +68048,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + 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, + [50091] = 5, + ACTIONS(1485), 1, anon_sym_else, + STATE(826), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1768), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1770), 32, + anon_sym_import, + anon_sym_from, + 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_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -67854,11 +68123,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49545] = 3, + [50150] = 5, + ACTIONS(1469), 1, + anon_sym_else, + STATE(815), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1700), 12, + ACTIONS(1742), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -67871,7 +68144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1698), 35, + ACTIONS(1740), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67883,14 +68156,11 @@ 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_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -67907,13 +68177,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49601] = 3, + [50209] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1732), 12, - sym__dedent, + ACTIONS(1746), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -67924,7 +68194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1734), 35, + ACTIONS(1744), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67936,14 +68206,13 @@ 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_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -67960,13 +68229,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49657] = 3, + [50264] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1704), 12, - sym__dedent, + ACTIONS(1758), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -67977,7 +68246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1702), 35, + ACTIONS(1756), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67989,14 +68258,13 @@ 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_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -68013,15 +68281,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49713] = 5, - ACTIONS(1485), 1, + [50319] = 5, + ACTIONS(1469), 1, anon_sym_else, - STATE(805), 1, + STATE(818), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1752), 12, + ACTIONS(1754), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -68034,7 +68302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1754), 32, + ACTIONS(1752), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68067,13 +68335,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49772] = 3, + [50378] = 5, + ACTIONS(1485), 1, + anon_sym_else, + STATE(714), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1756), 12, + ACTIONS(1776), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68084,7 +68356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1758), 34, + ACTIONS(1778), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68096,8 +68368,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_match, anon_sym_async, anon_sym_for, @@ -68119,17 +68389,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49827] = 5, - ACTIONS(1485), 1, - anon_sym_else, - STATE(775), 1, - sym_else_clause, + [50437] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1760), 12, + ACTIONS(1782), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68140,7 +68406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1762), 32, + ACTIONS(1780), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68157,6 +68423,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_def, anon_sym_global, @@ -68173,177 +68440,151 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49886] = 5, - ACTIONS(1485), 1, - anon_sym_else, - STATE(760), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1764), 12, + [50491] = 22, + ACTIONS(302), 1, + anon_sym_LBRACE, + ACTIONS(319), 1, sym_string_start, - ts_builtin_sym_end, + ACTIONS(1784), 1, + sym_identifier, + ACTIONS(1786), 1, anon_sym_LPAREN, + ACTIONS(1788), 1, + anon_sym_RPAREN, + ACTIONS(1790), 1, anon_sym_STAR, + ACTIONS(1796), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1766), 32, - anon_sym_import, - anon_sym_from, - 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_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - 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(1798), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [49945] = 5, - ACTIONS(1489), 1, - anon_sym_finally, - STATE(746), 1, - sym_finally_clause, + STATE(975), 1, + sym_string, + STATE(1579), 1, + sym_list_splat_pattern, + STATE(1603), 1, + sym_primary_expression, + STATE(2395), 1, + sym_pattern, + STATE(2691), 1, + sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1768), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(313), 2, + sym_ellipsis, + sym_float, + ACTIONS(1794), 2, + anon_sym_match, + anon_sym_type, + STATE(1580), 2, + sym_attribute, + sym_subscript, + STATE(2559), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(307), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1770), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(1792), 3, 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_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - 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(315), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [50004] = 5, - ACTIONS(1489), 1, - anon_sym_finally, - STATE(763), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1772), 12, + STATE(1276), 14, + 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_await, + [50583] = 22, + ACTIONS(302), 1, + anon_sym_LBRACE, + ACTIONS(319), 1, sym_string_start, - ts_builtin_sym_end, + ACTIONS(1784), 1, + sym_identifier, + ACTIONS(1786), 1, anon_sym_LPAREN, + ACTIONS(1790), 1, anon_sym_STAR, + ACTIONS(1796), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1798), 1, + anon_sym_await, + ACTIONS(1800), 1, + anon_sym_RPAREN, + STATE(975), 1, + sym_string, + STATE(1579), 1, + sym_list_splat_pattern, + STATE(1603), 1, + sym_primary_expression, + STATE(2395), 1, + sym_pattern, + STATE(2726), 1, + sym__patterns, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(313), 2, + sym_ellipsis, + sym_float, + ACTIONS(1794), 2, + anon_sym_match, + anon_sym_type, + STATE(1580), 2, + sym_attribute, + sym_subscript, + STATE(2559), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(307), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1774), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(1792), 3, 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_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - 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(315), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [50063] = 5, - ACTIONS(1485), 1, - anon_sym_else, - STATE(744), 1, - sym_else_clause, + STATE(1276), 14, + 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_await, + [50675] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1776), 12, + ACTIONS(1782), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -68356,7 +68597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1778), 32, + ACTIONS(1780), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68373,6 +68614,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_def, anon_sym_global, @@ -68389,13 +68631,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50122] = 3, + [50729] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1782), 12, - sym__dedent, + ACTIONS(1802), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68406,7 +68648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1780), 34, + ACTIONS(1804), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68418,13 +68660,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_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -68441,15 +68682,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50177] = 5, - ACTIONS(1539), 1, - anon_sym_else, - STATE(736), 1, - sym_else_clause, + [50783] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1786), 12, + ACTIONS(1802), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -68462,7 +68699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1784), 32, + ACTIONS(1804), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68479,6 +68716,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_def, anon_sym_global, @@ -68495,13 +68733,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50236] = 3, + [50837] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1788), 12, + ACTIONS(1808), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68512,7 +68750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1790), 34, + ACTIONS(1806), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68524,8 +68762,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_match, anon_sym_async, anon_sym_for, @@ -68547,13 +68783,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50291] = 3, + [50890] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1788), 12, - sym__dedent, + ACTIONS(1810), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68564,7 +68800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1790), 34, + ACTIONS(1812), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68576,8 +68812,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_match, anon_sym_async, anon_sym_for, @@ -68599,17 +68833,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50346] = 5, - ACTIONS(1485), 1, - anon_sym_else, - STATE(782), 1, - sym_else_clause, + [50943] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1786), 12, + ACTIONS(1816), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68620,7 +68850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1784), 32, + ACTIONS(1814), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68653,15 +68883,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50405] = 5, - ACTIONS(1539), 1, - anon_sym_else, - STATE(812), 1, - sym_else_clause, + [50996] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1794), 12, + ACTIONS(1820), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -68674,7 +68900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1792), 32, + ACTIONS(1818), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68707,15 +68933,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50464] = 5, - ACTIONS(1539), 1, - anon_sym_else, - STATE(816), 1, - sym_else_clause, + [51049] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1752), 12, + ACTIONS(1824), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -68728,7 +68950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1754), 32, + ACTIONS(1822), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68761,13 +68983,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50523] = 3, + [51102] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1782), 12, + ACTIONS(1828), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68778,7 +69000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1780), 34, + ACTIONS(1826), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68790,8 +69012,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_match, anon_sym_async, anon_sym_for, @@ -68813,17 +69033,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50578] = 5, - ACTIONS(1485), 1, - anon_sym_else, - STATE(771), 1, - sym_else_clause, + [51155] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1794), 12, + ACTIONS(1832), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68834,7 +69050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1792), 32, + ACTIONS(1830), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68867,11 +69083,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50637] = 3, + [51208] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1756), 12, + ACTIONS(1836), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -68884,7 +69100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1758), 34, + ACTIONS(1834), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68896,8 +69112,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_match, anon_sym_async, anon_sym_for, @@ -68919,15 +69133,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50692] = 5, - ACTIONS(1539), 1, - anon_sym_else, - STATE(831), 1, - sym_else_clause, + [51261] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1776), 12, + ACTIONS(1840), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -68940,7 +69150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1778), 32, + ACTIONS(1838), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68973,15 +69183,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50751] = 5, - ACTIONS(1543), 1, - anon_sym_finally, - STATE(833), 1, - sym_finally_clause, + [51314] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1768), 12, + ACTIONS(1844), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -68994,7 +69200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1770), 32, + ACTIONS(1842), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69027,15 +69233,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50810] = 5, - ACTIONS(1539), 1, - anon_sym_else, - STATE(847), 1, - sym_else_clause, + [51367] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1764), 12, + ACTIONS(1848), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -69048,7 +69250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1766), 32, + ACTIONS(1846), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69081,15 +69283,79 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50869] = 5, - ACTIONS(1543), 1, - anon_sym_finally, - STATE(769), 1, - sym_finally_clause, + [51420] = 21, + ACTIONS(302), 1, + anon_sym_LBRACE, + ACTIONS(319), 1, + sym_string_start, + ACTIONS(1413), 1, + anon_sym_STAR, + ACTIONS(1850), 1, + sym_identifier, + ACTIONS(1852), 1, + anon_sym_LPAREN, + ACTIONS(1858), 1, + anon_sym_in, + ACTIONS(1860), 1, + anon_sym_LBRACK, + ACTIONS(1862), 1, + anon_sym_await, + STATE(975), 1, + sym_string, + STATE(1593), 1, + sym_list_splat_pattern, + STATE(1601), 1, + sym_primary_expression, + STATE(1611), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1772), 12, + ACTIONS(313), 2, + sym_ellipsis, + sym_float, + ACTIONS(1856), 2, + anon_sym_match, + anon_sym_type, + STATE(1594), 2, + sym_attribute, + sym_subscript, + STATE(1623), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(307), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1854), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(315), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1276), 14, + 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_await, + [51509] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1866), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -69102,7 +69368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1774), 32, + ACTIONS(1864), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69135,15 +69401,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50928] = 5, - ACTIONS(1539), 1, - anon_sym_else, - STATE(800), 1, - sym_else_clause, + [51562] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1760), 12, + ACTIONS(1870), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -69156,7 +69418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1762), 32, + ACTIONS(1868), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69189,62 +69451,60 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50987] = 22, - ACTIONS(310), 1, + [51615] = 21, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(1796), 1, + ACTIONS(1872), 1, sym_identifier, - ACTIONS(1798), 1, + ACTIONS(1874), 1, anon_sym_LPAREN, - ACTIONS(1800), 1, - anon_sym_RPAREN, - ACTIONS(1802), 1, + ACTIONS(1876), 1, anon_sym_STAR, - ACTIONS(1808), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1810), 1, + ACTIONS(1884), 1, + anon_sym_RBRACK, + ACTIONS(1886), 1, anon_sym_await, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1590), 1, + STATE(1586), 1, sym_list_splat_pattern, - STATE(1615), 1, + STATE(1609), 1, sym_primary_expression, - STATE(2340), 1, + STATE(2500), 1, sym_pattern, - STATE(2602), 1, - sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(1806), 2, + ACTIONS(1880), 2, anon_sym_match, anon_sym_type, - STATE(1598), 2, + STATE(1587), 2, sym_attribute, sym_subscript, - STATE(2573), 2, + STATE(2576), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1804), 3, + ACTIONS(1878), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1276), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -69259,13 +69519,13 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [51079] = 3, + [51704] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1812), 12, + ACTIONS(1890), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69276,7 +69536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1814), 33, + ACTIONS(1888), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69293,7 +69553,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_def, anon_sym_global, @@ -69310,83 +69569,163 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51133] = 22, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, + [51757] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1894), 12, + sym__dedent, sym_string_start, - ACTIONS(1796), 1, - sym_identifier, - ACTIONS(1798), 1, anon_sym_LPAREN, - ACTIONS(1802), 1, anon_sym_STAR, - ACTIONS(1808), 1, anon_sym_LBRACK, - ACTIONS(1810), 1, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1892), 32, + anon_sym_import, + anon_sym_from, + 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_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + 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, - ACTIONS(1816), 1, - anon_sym_RPAREN, - STATE(1010), 1, - sym_string, - STATE(1590), 1, - sym_list_splat_pattern, - STATE(1615), 1, - sym_primary_expression, - STATE(2340), 1, - sym_pattern, - STATE(2625), 1, - sym__patterns, + sym_true, + sym_false, + sym_none, + [51810] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(1898), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1806), 2, + ACTIONS(1896), 32, + anon_sym_import, + anon_sym_from, + 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_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, anon_sym_type, - STATE(1598), 2, - sym_attribute, - sym_subscript, - STATE(2573), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(315), 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, + [51863] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1902), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1804), 3, + sym_ellipsis, + sym_float, + ACTIONS(1900), 32, + anon_sym_import, + anon_sym_from, 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_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - ACTIONS(323), 4, + 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, - STATE(1268), 14, - 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_await, - [51225] = 3, + [51916] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1818), 12, + ACTIONS(1465), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69397,7 +69736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1820), 33, + ACTIONS(1467), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69414,7 +69753,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_def, anon_sym_global, @@ -69431,13 +69769,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51279] = 3, + [51969] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1818), 12, - sym__dedent, + ACTIONS(1904), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69448,7 +69786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1820), 33, + ACTIONS(1906), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69465,7 +69803,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_def, anon_sym_global, @@ -69482,13 +69819,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51333] = 3, + [52022] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1812), 12, - sym__dedent, + ACTIONS(1908), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69499,7 +69836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1814), 33, + ACTIONS(1910), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69516,7 +69853,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_def, anon_sym_global, @@ -69533,13 +69869,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51387] = 3, + [52075] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1824), 12, - sym__dedent, + ACTIONS(1912), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69550,7 +69886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1822), 32, + ACTIONS(1914), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69583,11 +69919,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51440] = 3, + [52128] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1768), 12, + ACTIONS(1916), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -69600,7 +69936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1770), 32, + ACTIONS(1918), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69633,11 +69969,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51493] = 3, + [52181] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1826), 12, + ACTIONS(1920), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -69650,7 +69986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1828), 32, + ACTIONS(1922), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69683,61 +70019,79 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51546] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1832), 12, - sym__dedent, + [52234] = 21, + ACTIONS(302), 1, + anon_sym_LBRACE, + ACTIONS(319), 1, sym_string_start, + ACTIONS(1784), 1, + sym_identifier, + ACTIONS(1786), 1, anon_sym_LPAREN, + ACTIONS(1790), 1, anon_sym_STAR, + ACTIONS(1796), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1798), 1, + anon_sym_await, + ACTIONS(1884), 1, + anon_sym_RPAREN, + STATE(975), 1, + sym_string, + STATE(1579), 1, + sym_list_splat_pattern, + STATE(1603), 1, + sym_primary_expression, + STATE(2493), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(313), 2, + sym_ellipsis, + sym_float, + ACTIONS(1794), 2, + anon_sym_match, + anon_sym_type, + STATE(1580), 2, + sym_attribute, + sym_subscript, + STATE(2559), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(307), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1830), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(1792), 3, 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_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - 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(315), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [51599] = 3, + STATE(1276), 14, + 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_await, + [52323] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1834), 12, + ACTIONS(1924), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -69750,7 +70104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1836), 32, + ACTIONS(1926), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69783,11 +70137,79 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51652] = 3, + [52376] = 21, + ACTIONS(302), 1, + anon_sym_LBRACE, + ACTIONS(319), 1, + sym_string_start, + ACTIONS(1413), 1, + anon_sym_STAR, + ACTIONS(1850), 1, + sym_identifier, + ACTIONS(1852), 1, + anon_sym_LPAREN, + ACTIONS(1860), 1, + anon_sym_LBRACK, + ACTIONS(1862), 1, + anon_sym_await, + STATE(975), 1, + sym_string, + STATE(1593), 1, + sym_list_splat_pattern, + STATE(1601), 1, + sym_primary_expression, + STATE(2318), 1, + sym_pattern, + STATE(2774), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1838), 12, + ACTIONS(313), 2, + sym_ellipsis, + sym_float, + ACTIONS(1856), 2, + anon_sym_match, + anon_sym_type, + STATE(1594), 2, + sym_attribute, + sym_subscript, + STATE(1623), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(307), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1854), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(315), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1276), 14, + 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_await, + [52465] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1738), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -69800,7 +70222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1840), 32, + ACTIONS(1736), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69833,13 +70255,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51705] = 3, + [52518] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1842), 12, + ACTIONS(1930), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69850,7 +70272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1844), 32, + ACTIONS(1928), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69883,11 +70305,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51758] = 3, + [52571] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1846), 12, + ACTIONS(1493), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -69900,7 +70322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1848), 32, + ACTIONS(1495), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69933,11 +70355,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51811] = 3, + [52624] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1852), 12, + ACTIONS(1810), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -69950,7 +70372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1850), 32, + ACTIONS(1812), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69983,11 +70405,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51864] = 3, + [52677] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1481), 12, + ACTIONS(1932), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70000,7 +70422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1483), 32, + ACTIONS(1934), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70033,11 +70455,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51917] = 3, + [52730] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1854), 12, + ACTIONS(1936), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70050,7 +70472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1856), 32, + ACTIONS(1938), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70083,11 +70505,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51970] = 3, + [52783] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1860), 12, + ACTIONS(1904), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -70100,7 +70522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1858), 32, + ACTIONS(1906), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70133,11 +70555,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52023] = 3, + [52836] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1862), 12, + ACTIONS(1940), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70150,7 +70572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1864), 32, + ACTIONS(1942), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70183,13 +70605,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52076] = 3, + [52889] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1868), 12, - sym__dedent, + ACTIONS(1944), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70200,7 +70622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1866), 32, + ACTIONS(1946), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70233,149 +70655,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52129] = 21, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(1870), 1, - sym_identifier, - ACTIONS(1872), 1, - anon_sym_LPAREN, - ACTIONS(1878), 1, - anon_sym_LBRACK, - ACTIONS(1880), 1, - anon_sym_await, - STATE(1010), 1, - sym_string, - STATE(1603), 1, - sym_list_splat_pattern, - STATE(1612), 1, - sym_primary_expression, - STATE(2485), 1, - sym_pattern, - STATE(2774), 1, - sym_pattern_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(1876), 2, - anon_sym_match, - anon_sym_type, - STATE(1613), 2, - sym_attribute, - sym_subscript, - STATE(1640), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1874), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(323), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1268), 14, - 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_await, - [52218] = 21, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(1870), 1, - sym_identifier, - ACTIONS(1872), 1, - anon_sym_LPAREN, - ACTIONS(1878), 1, - anon_sym_LBRACK, - ACTIONS(1880), 1, - anon_sym_await, - STATE(1010), 1, - sym_string, - STATE(1603), 1, - sym_list_splat_pattern, - STATE(1612), 1, - sym_primary_expression, - STATE(2470), 1, - sym_pattern, - STATE(2735), 1, - sym_pattern_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(1876), 2, - anon_sym_match, - anon_sym_type, - STATE(1613), 2, - sym_attribute, - sym_subscript, - STATE(1640), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1874), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(323), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1268), 14, - 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_await, - [52307] = 3, + [52942] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1882), 12, + ACTIONS(1908), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70386,7 +70672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1884), 32, + ACTIONS(1910), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70419,13 +70705,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52360] = 3, + [52995] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1886), 12, + ACTIONS(1912), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70436,7 +70722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1888), 32, + ACTIONS(1914), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70469,11 +70755,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52413] = 3, + [53048] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1890), 12, + ACTIONS(1948), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70486,7 +70772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1892), 32, + ACTIONS(1950), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70519,13 +70805,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52466] = 3, + [53101] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1772), 12, + ACTIONS(1916), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70536,7 +70822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1774), 32, + ACTIONS(1918), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70569,13 +70855,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52519] = 3, + [53154] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1894), 12, + ACTIONS(1920), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70586,7 +70872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1896), 32, + ACTIONS(1922), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70619,61 +70905,79 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52572] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1898), 12, + [53207] = 21, + ACTIONS(302), 1, + anon_sym_LBRACE, + ACTIONS(319), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, + ACTIONS(1413), 1, anon_sym_STAR, + ACTIONS(1850), 1, + sym_identifier, + ACTIONS(1852), 1, + anon_sym_LPAREN, + ACTIONS(1860), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1862), 1, + anon_sym_await, + STATE(975), 1, + sym_string, + STATE(1593), 1, + sym_list_splat_pattern, + STATE(1601), 1, + sym_primary_expression, + STATE(2365), 1, + sym_pattern, + STATE(2617), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(313), 2, + sym_ellipsis, + sym_float, + ACTIONS(1856), 2, + anon_sym_match, + anon_sym_type, + STATE(1594), 2, + sym_attribute, + sym_subscript, + STATE(1623), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(307), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1900), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(1854), 3, 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_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - 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(315), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [52625] = 3, + STATE(1276), 14, + 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_await, + [53296] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1902), 12, + ACTIONS(1890), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70686,7 +70990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1904), 32, + ACTIONS(1888), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70719,11 +71023,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52678] = 3, + [53349] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1906), 12, + ACTIONS(1894), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70736,7 +71040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1908), 32, + ACTIONS(1892), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70769,11 +71073,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52731] = 3, + [53402] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1912), 12, + ACTIONS(1924), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -70786,7 +71090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1910), 32, + ACTIONS(1926), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70819,163 +71123,81 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52784] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1914), 12, + [53455] = 21, + ACTIONS(302), 1, + anon_sym_LBRACE, + ACTIONS(319), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, + ACTIONS(1413), 1, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1916), 32, - anon_sym_import, - anon_sym_from, - 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_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - 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(1850), 1, sym_identifier, + ACTIONS(1852), 1, + anon_sym_LPAREN, + ACTIONS(1860), 1, + anon_sym_LBRACK, + ACTIONS(1862), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [52837] = 3, + STATE(975), 1, + sym_string, + STATE(1593), 1, + sym_list_splat_pattern, + STATE(1601), 1, + sym_primary_expression, + STATE(2477), 1, + sym_pattern, + STATE(2770), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1920), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(1918), 32, - anon_sym_import, - anon_sym_from, - 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, + ACTIONS(1856), 2, anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - 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, - [52890] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1922), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + STATE(1594), 2, + sym_attribute, + sym_subscript, + STATE(1623), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(307), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1924), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(1854), 3, 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_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - 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(315), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [52943] = 3, + STATE(1276), 14, + 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_await, + [53544] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1926), 12, + ACTIONS(1738), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70986,7 +71208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1928), 32, + ACTIONS(1736), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71019,13 +71241,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52996] = 3, + [53597] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1930), 12, + ACTIONS(1493), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71036,7 +71258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1932), 32, + ACTIONS(1495), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71069,11 +71291,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53049] = 3, + [53650] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1934), 12, + ACTIONS(1952), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71086,7 +71308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1936), 32, + ACTIONS(1954), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71119,11 +71341,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53102] = 3, + [53703] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1938), 12, + ACTIONS(1956), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71136,7 +71358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1940), 32, + ACTIONS(1958), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71169,11 +71391,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53155] = 3, + [53756] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1942), 12, + ACTIONS(1960), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71186,7 +71408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1944), 32, + ACTIONS(1962), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71219,13 +71441,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53208] = 3, + [53809] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1948), 12, - sym__dedent, + ACTIONS(1964), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71236,7 +71458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1946), 32, + ACTIONS(1966), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71269,13 +71491,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53261] = 3, + [53862] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1950), 12, + ACTIONS(1932), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71286,7 +71508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1952), 32, + ACTIONS(1934), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71319,11 +71541,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53314] = 3, + [53915] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1954), 12, + ACTIONS(1968), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71336,7 +71558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1956), 32, + ACTIONS(1970), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71369,11 +71591,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53367] = 3, + [53968] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1958), 12, + ACTIONS(1972), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71386,7 +71608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1960), 32, + ACTIONS(1974), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71419,13 +71641,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53420] = 3, + [54021] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1962), 12, + ACTIONS(1936), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71436,7 +71658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1964), 32, + ACTIONS(1938), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71469,13 +71691,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53473] = 3, + [54074] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1966), 12, + ACTIONS(1940), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71486,7 +71708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1968), 32, + ACTIONS(1942), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71519,149 +71741,163 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53526] = 21, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, + [54127] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1976), 12, sym_string_start, - ACTIONS(1796), 1, - sym_identifier, - ACTIONS(1798), 1, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(1802), 1, anon_sym_STAR, - ACTIONS(1808), 1, anon_sym_LBRACK, - ACTIONS(1810), 1, - anon_sym_await, - ACTIONS(1970), 1, - anon_sym_RPAREN, - STATE(1010), 1, - sym_string, - STATE(1590), 1, - sym_list_splat_pattern, - STATE(1615), 1, - sym_primary_expression, - STATE(2528), 1, - sym_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(1806), 2, - anon_sym_match, - anon_sym_type, - STATE(1598), 2, - sym_attribute, - sym_subscript, - STATE(2573), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(315), 3, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1804), 3, + sym_ellipsis, + sym_float, + ACTIONS(1978), 32, + anon_sym_import, + anon_sym_from, 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_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - ACTIONS(323), 4, + 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, - STATE(1268), 14, - 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_await, - [53615] = 21, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(1870), 1, - sym_identifier, - ACTIONS(1872), 1, - anon_sym_LPAREN, - ACTIONS(1878), 1, - anon_sym_LBRACK, - ACTIONS(1880), 1, - anon_sym_await, - STATE(1010), 1, - sym_string, - STATE(1603), 1, - sym_list_splat_pattern, - STATE(1612), 1, - sym_primary_expression, - STATE(2403), 1, - sym_pattern, - STATE(2632), 1, - sym_pattern_list, + [54180] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(1944), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1876), 2, + ACTIONS(1946), 32, + anon_sym_import, + anon_sym_from, + 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_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, anon_sym_type, - STATE(1613), 2, - sym_attribute, - sym_subscript, - STATE(1640), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(315), 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, + [54233] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1948), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1874), 3, + sym_ellipsis, + sym_float, + ACTIONS(1950), 32, + anon_sym_import, + anon_sym_from, 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_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - ACTIONS(323), 4, + 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, - STATE(1268), 14, - 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_await, - [53704] = 3, + [54286] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1954), 12, - sym__dedent, + ACTIONS(1980), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71672,7 +71908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1956), 32, + ACTIONS(1982), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71705,13 +71941,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53757] = 3, + [54339] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1958), 12, - sym__dedent, + ACTIONS(1984), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71722,7 +71958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1960), 32, + ACTIONS(1986), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71755,13 +71991,81 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53810] = 3, + [54392] = 21, + ACTIONS(302), 1, + anon_sym_LBRACE, + ACTIONS(319), 1, + sym_string_start, + ACTIONS(1413), 1, + anon_sym_STAR, + ACTIONS(1850), 1, + sym_identifier, + ACTIONS(1852), 1, + anon_sym_LPAREN, + ACTIONS(1860), 1, + anon_sym_LBRACK, + ACTIONS(1862), 1, + anon_sym_await, + STATE(975), 1, + sym_string, + STATE(1593), 1, + sym_list_splat_pattern, + STATE(1601), 1, + sym_primary_expression, + STATE(2476), 1, + sym_pattern, + STATE(2766), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1972), 12, + ACTIONS(313), 2, + sym_ellipsis, + sym_float, + ACTIONS(1856), 2, + anon_sym_match, + anon_sym_type, + STATE(1594), 2, + sym_attribute, + sym_subscript, + STATE(1623), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(307), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1854), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(315), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1276), 14, + 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_await, + [54481] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1952), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71772,7 +72076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1974), 32, + ACTIONS(1954), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71805,11 +72109,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53863] = 3, + [54534] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1824), 12, + ACTIONS(1988), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71822,7 +72126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1822), 32, + ACTIONS(1990), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71855,11 +72159,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53916] = 3, + [54587] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1948), 12, + ACTIONS(1992), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71872,7 +72176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1946), 32, + ACTIONS(1994), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71905,11 +72209,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53969] = 3, + [54640] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1976), 12, + ACTIONS(1996), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71922,7 +72226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1978), 32, + ACTIONS(1998), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71955,11 +72259,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54022] = 3, + [54693] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1980), 12, + ACTIONS(2000), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71972,7 +72276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1982), 32, + ACTIONS(2002), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72005,11 +72309,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54075] = 3, + [54746] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1984), 12, + ACTIONS(2004), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72022,7 +72326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1986), 32, + ACTIONS(2006), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72055,11 +72359,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54128] = 3, + [54799] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1988), 12, + ACTIONS(2008), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72072,7 +72376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1990), 32, + ACTIONS(2010), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72105,13 +72409,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54181] = 3, + [54852] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1832), 12, + ACTIONS(1956), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72122,7 +72426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1830), 32, + ACTIONS(1958), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72155,13 +72459,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54234] = 3, + [54905] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1992), 12, + ACTIONS(1996), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72172,7 +72476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1994), 32, + ACTIONS(1998), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72205,149 +72509,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54287] = 21, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(1796), 1, - sym_identifier, - ACTIONS(1798), 1, - anon_sym_LPAREN, - ACTIONS(1802), 1, - anon_sym_STAR, - ACTIONS(1808), 1, - anon_sym_LBRACK, - ACTIONS(1810), 1, - anon_sym_await, - ACTIONS(1996), 1, - anon_sym_RPAREN, - STATE(1010), 1, - sym_string, - STATE(1590), 1, - sym_list_splat_pattern, - STATE(1615), 1, - sym_primary_expression, - STATE(2528), 1, - sym_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(1806), 2, - anon_sym_match, - anon_sym_type, - STATE(1598), 2, - sym_attribute, - sym_subscript, - STATE(2573), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1804), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(323), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1268), 14, - 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_await, - [54376] = 21, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(1870), 1, - sym_identifier, - ACTIONS(1872), 1, - anon_sym_LPAREN, - ACTIONS(1878), 1, - anon_sym_LBRACK, - ACTIONS(1880), 1, - anon_sym_await, - STATE(1010), 1, - sym_string, - STATE(1603), 1, - sym_list_splat_pattern, - STATE(1612), 1, - sym_primary_expression, - STATE(2270), 1, - sym_pattern, - STATE(2729), 1, - sym_pattern_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(1876), 2, - anon_sym_match, - anon_sym_type, - STATE(1613), 2, - sym_attribute, - sym_subscript, - STATE(1640), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1874), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(323), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1268), 14, - 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_await, - [54465] = 3, + [54958] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1852), 12, + ACTIONS(1960), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72358,7 +72526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1850), 32, + ACTIONS(1962), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72391,13 +72559,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54518] = 3, + [55011] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1860), 12, + ACTIONS(1964), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72408,7 +72576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1858), 32, + ACTIONS(1966), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72441,13 +72609,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54571] = 3, + [55064] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1868), 12, + ACTIONS(1968), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72458,7 +72626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1866), 32, + ACTIONS(1970), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72491,11 +72659,79 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54624] = 3, + [55117] = 21, + ACTIONS(302), 1, + anon_sym_LBRACE, + ACTIONS(319), 1, + sym_string_start, + ACTIONS(1413), 1, + anon_sym_STAR, + ACTIONS(1850), 1, + sym_identifier, + ACTIONS(1852), 1, + anon_sym_LPAREN, + ACTIONS(1860), 1, + anon_sym_LBRACK, + ACTIONS(1862), 1, + anon_sym_await, + STATE(975), 1, + sym_string, + STATE(1593), 1, + sym_list_splat_pattern, + STATE(1601), 1, + sym_primary_expression, + STATE(2407), 1, + sym_pattern, + STATE(2620), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1517), 12, + ACTIONS(313), 2, + sym_ellipsis, + sym_float, + ACTIONS(1856), 2, + anon_sym_match, + anon_sym_type, + STATE(1594), 2, + sym_attribute, + sym_subscript, + STATE(1623), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(307), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1854), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(315), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1276), 14, + 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_await, + [55206] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2012), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72508,7 +72744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1519), 32, + ACTIONS(2014), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72541,63 +72777,81 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54677] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1998), 12, + [55259] = 21, + ACTIONS(302), 1, + anon_sym_LBRACE, + ACTIONS(319), 1, sym_string_start, - ts_builtin_sym_end, + ACTIONS(1784), 1, + sym_identifier, + ACTIONS(1786), 1, anon_sym_LPAREN, + ACTIONS(1790), 1, anon_sym_STAR, + ACTIONS(1796), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1798), 1, + anon_sym_await, + ACTIONS(2016), 1, + anon_sym_RPAREN, + STATE(975), 1, + sym_string, + STATE(1579), 1, + sym_list_splat_pattern, + STATE(1603), 1, + sym_primary_expression, + STATE(2493), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(313), 2, + sym_ellipsis, + sym_float, + ACTIONS(1794), 2, + anon_sym_match, + anon_sym_type, + STATE(1580), 2, + sym_attribute, + sym_subscript, + STATE(2559), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(307), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(2000), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(1792), 3, 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_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - 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(315), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [54730] = 3, + STATE(1276), 14, + 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_await, + [55348] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1962), 12, - sym__dedent, + ACTIONS(2018), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72608,7 +72862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1964), 32, + ACTIONS(2020), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72641,13 +72895,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54783] = 3, + [55401] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1966), 12, - sym__dedent, + ACTIONS(2022), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72658,7 +72912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1968), 32, + ACTIONS(2024), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72691,11 +72945,79 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54836] = 3, + [55454] = 21, + ACTIONS(302), 1, + anon_sym_LBRACE, + ACTIONS(319), 1, + sym_string_start, + ACTIONS(1413), 1, + anon_sym_STAR, + ACTIONS(1850), 1, + sym_identifier, + ACTIONS(1852), 1, + anon_sym_LPAREN, + ACTIONS(1860), 1, + anon_sym_LBRACK, + ACTIONS(1862), 1, + anon_sym_await, + STATE(975), 1, + sym_string, + STATE(1593), 1, + sym_list_splat_pattern, + STATE(1601), 1, + sym_primary_expression, + STATE(2313), 1, + sym_pattern, + STATE(2607), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1912), 12, + ACTIONS(313), 2, + sym_ellipsis, + sym_float, + ACTIONS(1856), 2, + anon_sym_match, + anon_sym_type, + STATE(1594), 2, + sym_attribute, + sym_subscript, + STATE(1623), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(307), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1854), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(315), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1276), 14, + 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_await, + [55543] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2026), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72708,7 +73030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1910), 32, + ACTIONS(2028), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72741,11 +73063,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54889] = 3, + [55596] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1950), 12, + ACTIONS(1972), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -72758,7 +73080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1952), 32, + ACTIONS(1974), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72791,13 +73113,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54942] = 3, + [55649] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2002), 12, + ACTIONS(2032), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72808,7 +73130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2004), 32, + ACTIONS(2030), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72841,11 +73163,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54995] = 3, + [55702] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1920), 12, + ACTIONS(1465), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72858,7 +73180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1918), 32, + ACTIONS(1467), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72891,11 +73213,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55048] = 3, + [55755] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2006), 12, + ACTIONS(2034), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72908,7 +73230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2008), 32, + ACTIONS(2036), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72941,81 +73263,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55101] = 21, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(1870), 1, - sym_identifier, - ACTIONS(1872), 1, - anon_sym_LPAREN, - ACTIONS(1878), 1, - anon_sym_LBRACK, - ACTIONS(1880), 1, - anon_sym_await, - STATE(1010), 1, - sym_string, - STATE(1603), 1, - sym_list_splat_pattern, - STATE(1612), 1, - sym_primary_expression, - STATE(2495), 1, - sym_pattern, - STATE(2790), 1, - sym_pattern_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(1876), 2, - anon_sym_match, - anon_sym_type, - STATE(1613), 2, - sym_attribute, - sym_subscript, - STATE(1640), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1874), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(323), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1268), 14, - 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_await, - [55190] = 3, + [55808] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2012), 12, - sym__dedent, + ACTIONS(1898), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -73026,7 +73280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2010), 32, + ACTIONS(1896), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73059,79 +73313,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55243] = 21, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(1996), 1, - anon_sym_RBRACK, - ACTIONS(2014), 1, - sym_identifier, - ACTIONS(2016), 1, - anon_sym_LPAREN, - ACTIONS(2018), 1, - anon_sym_STAR, - ACTIONS(2024), 1, - anon_sym_LBRACK, - ACTIONS(2026), 1, - anon_sym_await, - STATE(1010), 1, - sym_string, - STATE(1596), 1, - sym_list_splat_pattern, - STATE(1619), 1, - sym_primary_expression, - STATE(2514), 1, - sym_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(2022), 2, - anon_sym_match, - anon_sym_type, - STATE(1597), 2, - sym_attribute, - sym_subscript, - STATE(2570), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2020), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(323), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1268), 14, - 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_await, - [55332] = 3, + [55861] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2028), 12, + ACTIONS(1902), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -73144,7 +73330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2030), 32, + ACTIONS(1900), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73177,147 +73363,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55385] = 21, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(1870), 1, - sym_identifier, - ACTIONS(1872), 1, - anon_sym_LPAREN, - ACTIONS(1878), 1, - anon_sym_LBRACK, - ACTIONS(1880), 1, - anon_sym_await, - ACTIONS(2032), 1, - anon_sym_in, - STATE(1010), 1, - sym_string, - STATE(1603), 1, - sym_list_splat_pattern, - STATE(1612), 1, - sym_primary_expression, - STATE(1639), 1, - sym_pattern, + [55914] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(1876), 2, - anon_sym_match, - anon_sym_type, - STATE(1613), 2, - sym_attribute, - sym_subscript, - STATE(1640), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1874), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(323), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1268), 14, - 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_await, - [55474] = 21, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(1970), 1, - anon_sym_RBRACK, - ACTIONS(2014), 1, - sym_identifier, - ACTIONS(2016), 1, - anon_sym_LPAREN, - ACTIONS(2018), 1, - anon_sym_STAR, - ACTIONS(2024), 1, - anon_sym_LBRACK, - ACTIONS(2026), 1, - anon_sym_await, - STATE(1010), 1, - sym_string, - STATE(1596), 1, - sym_list_splat_pattern, - STATE(1619), 1, - sym_primary_expression, - STATE(2514), 1, - sym_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(2022), 2, - anon_sym_match, - anon_sym_type, - STATE(1597), 2, - sym_attribute, - sym_subscript, - STATE(2570), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2020), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(323), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1268), 14, - 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_await, - [55563] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1980), 12, + ACTIONS(1976), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -73330,7 +73380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1982), 32, + ACTIONS(1978), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73363,13 +73413,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55616] = 3, + [55967] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1976), 12, - sym__dedent, + ACTIONS(1870), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -73380,7 +73430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1978), 32, + ACTIONS(1868), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73413,13 +73463,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55669] = 3, + [56020] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1984), 12, - sym__dedent, + ACTIONS(2032), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -73430,7 +73480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1986), 32, + ACTIONS(2030), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73463,11 +73513,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55722] = 3, + [56073] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1517), 12, + ACTIONS(1980), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -73480,7 +73530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1519), 32, + ACTIONS(1982), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73513,11 +73563,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55775] = 3, + [56126] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2034), 12, + ACTIONS(1808), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -73530,7 +73580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2036), 32, + ACTIONS(1806), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73563,13 +73613,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55828] = 3, + [56179] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2038), 12, + ACTIONS(1984), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -73580,7 +73630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2040), 32, + ACTIONS(1986), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73613,11 +73663,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55881] = 3, + [56232] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2002), 12, + ACTIONS(1772), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -73630,7 +73680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2004), 32, + ACTIONS(1774), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73663,11 +73713,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55934] = 3, + [56285] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2006), 12, + ACTIONS(1988), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -73680,7 +73730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2008), 32, + ACTIONS(1990), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73713,11 +73763,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55987] = 3, + [56338] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1998), 12, + ACTIONS(1992), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -73730,7 +73780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2000), 32, + ACTIONS(1994), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73763,11 +73813,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56040] = 3, + [56391] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2042), 12, + ACTIONS(1816), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -73780,7 +73830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2044), 32, + ACTIONS(1814), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73813,11 +73863,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56093] = 3, + [56444] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2046), 12, + ACTIONS(1820), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -73830,7 +73880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2048), 32, + ACTIONS(1818), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73863,11 +73913,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56146] = 3, + [56497] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2034), 12, + ACTIONS(2000), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -73880,7 +73930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2036), 32, + ACTIONS(2002), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73913,11 +73963,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56199] = 3, + [56550] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1972), 12, + ACTIONS(2004), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -73930,7 +73980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1974), 32, + ACTIONS(2006), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73963,13 +74013,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56252] = 3, + [56603] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2052), 12, - sym__dedent, + ACTIONS(1824), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -73980,7 +74030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2050), 32, + ACTIONS(1822), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74013,13 +74063,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56305] = 3, + [56656] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1826), 12, - sym__dedent, + ACTIONS(1828), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74030,7 +74080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1828), 32, + ACTIONS(1826), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74063,13 +74113,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56358] = 3, + [56709] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1930), 12, - sym__dedent, + ACTIONS(1832), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74080,7 +74130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1932), 32, + ACTIONS(1830), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74113,13 +74163,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56411] = 3, + [56762] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2038), 12, - sym__dedent, + ACTIONS(1836), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74130,7 +74180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2040), 32, + ACTIONS(1834), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74163,11 +74213,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56464] = 3, + [56815] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2012), 12, + ACTIONS(1840), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -74180,7 +74230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2010), 32, + ACTIONS(1838), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74213,13 +74263,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56517] = 3, + [56868] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1768), 12, - sym__dedent, + ACTIONS(1844), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74230,7 +74280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1770), 32, + ACTIONS(1842), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74263,11 +74313,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56570] = 3, + [56921] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1481), 12, + ACTIONS(2008), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74280,7 +74330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1483), 32, + ACTIONS(2010), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74313,13 +74363,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56623] = 3, + [56974] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1922), 12, - sym__dedent, + ACTIONS(1848), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74330,7 +74380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1924), 32, + ACTIONS(1846), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74363,11 +74413,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56676] = 3, + [57027] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1992), 12, + ACTIONS(2012), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74380,7 +74430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1994), 32, + ACTIONS(2014), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74413,13 +74463,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56729] = 3, + [57080] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2042), 12, - sym__dedent, + ACTIONS(1930), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74430,7 +74480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2044), 32, + ACTIONS(1928), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74463,11 +74513,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56782] = 3, + [57133] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2046), 12, + ACTIONS(2018), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74480,7 +74530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2048), 32, + ACTIONS(2020), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74513,11 +74563,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56835] = 3, + [57186] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2028), 12, + ACTIONS(2022), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74530,7 +74580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2030), 32, + ACTIONS(2024), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74563,11 +74613,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56888] = 3, + [57239] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1834), 12, + ACTIONS(2026), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74580,7 +74630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1836), 32, + ACTIONS(2028), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74613,11 +74663,283 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56941] = 3, + [57292] = 21, + ACTIONS(302), 1, + anon_sym_LBRACE, + ACTIONS(319), 1, + sym_string_start, + ACTIONS(1413), 1, + anon_sym_STAR, + ACTIONS(1850), 1, + sym_identifier, + ACTIONS(1852), 1, + anon_sym_LPAREN, + ACTIONS(1860), 1, + anon_sym_LBRACK, + ACTIONS(1862), 1, + anon_sym_await, + STATE(975), 1, + sym_string, + STATE(1593), 1, + sym_list_splat_pattern, + STATE(1601), 1, + sym_primary_expression, + STATE(2430), 1, + sym_pattern, + STATE(2666), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(313), 2, + sym_ellipsis, + sym_float, + ACTIONS(1856), 2, + anon_sym_match, + anon_sym_type, + STATE(1594), 2, + sym_attribute, + sym_subscript, + STATE(1623), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(307), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1854), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(315), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1276), 14, + 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_await, + [57381] = 21, + ACTIONS(302), 1, + anon_sym_LBRACE, + ACTIONS(319), 1, + sym_string_start, + ACTIONS(1872), 1, + sym_identifier, + ACTIONS(1874), 1, + anon_sym_LPAREN, + ACTIONS(1876), 1, + anon_sym_STAR, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1886), 1, + anon_sym_await, + ACTIONS(2016), 1, + anon_sym_RBRACK, + STATE(975), 1, + sym_string, + STATE(1586), 1, + sym_list_splat_pattern, + STATE(1609), 1, + sym_primary_expression, + STATE(2500), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1838), 12, + ACTIONS(313), 2, + sym_ellipsis, + sym_float, + ACTIONS(1880), 2, + anon_sym_match, + anon_sym_type, + STATE(1587), 2, + sym_attribute, + sym_subscript, + STATE(2576), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(307), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1878), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(315), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1276), 14, + 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_await, + [57470] = 21, + ACTIONS(302), 1, + anon_sym_LBRACE, + ACTIONS(319), 1, + sym_string_start, + ACTIONS(1413), 1, + anon_sym_STAR, + ACTIONS(1850), 1, + sym_identifier, + ACTIONS(1852), 1, + anon_sym_LPAREN, + ACTIONS(1860), 1, + anon_sym_LBRACK, + ACTIONS(1862), 1, + anon_sym_await, + STATE(975), 1, + sym_string, + STATE(1593), 1, + sym_list_splat_pattern, + STATE(1601), 1, + sym_primary_expression, + STATE(2431), 1, + sym_pattern, + STATE(2675), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(313), 2, + sym_ellipsis, + sym_float, + ACTIONS(1856), 2, + anon_sym_match, + anon_sym_type, + STATE(1594), 2, + sym_attribute, + sym_subscript, + STATE(1623), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(307), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1854), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(315), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1276), 14, + 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_await, + [57559] = 21, + ACTIONS(302), 1, + anon_sym_LBRACE, + ACTIONS(319), 1, + sym_string_start, + ACTIONS(1413), 1, + anon_sym_STAR, + ACTIONS(1850), 1, + sym_identifier, + ACTIONS(1852), 1, + anon_sym_LPAREN, + ACTIONS(1860), 1, + anon_sym_LBRACK, + ACTIONS(1862), 1, + anon_sym_await, + ACTIONS(2038), 1, + anon_sym_in, + STATE(975), 1, + sym_string, + STATE(1593), 1, + sym_list_splat_pattern, + STATE(1601), 1, + sym_primary_expression, + STATE(1611), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(313), 2, + sym_ellipsis, + sym_float, + ACTIONS(1856), 2, + anon_sym_match, + anon_sym_type, + STATE(1594), 2, + sym_attribute, + sym_subscript, + STATE(1623), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(307), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1854), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(315), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1276), 14, + 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_await, + [57648] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2034), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74630,7 +74952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1840), 32, + ACTIONS(2036), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74663,13 +74985,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56994] = 3, + [57701] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1842), 12, - sym__dedent, + ACTIONS(1866), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74680,7 +75002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1844), 32, + ACTIONS(1864), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74713,1164 +75035,60 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57047] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1846), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1848), 32, - anon_sym_import, - anon_sym_from, - 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_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - 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, - [57100] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1854), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1856), 32, - anon_sym_import, - anon_sym_from, - 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_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - 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, - [57153] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1862), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1864), 32, - anon_sym_import, - anon_sym_from, - 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_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - 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, - [57206] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1882), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1884), 32, - anon_sym_import, - anon_sym_from, - 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_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - 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, - [57259] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1886), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1888), 32, - anon_sym_import, - anon_sym_from, - 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_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - 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, - [57312] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1890), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1892), 32, - anon_sym_import, - anon_sym_from, - 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_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - 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, - [57365] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1772), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1774), 32, - anon_sym_import, - anon_sym_from, - 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_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - 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, - [57418] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1894), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1896), 32, - anon_sym_import, - anon_sym_from, - 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_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - 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, - [57471] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1898), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1900), 32, - anon_sym_import, - anon_sym_from, - 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_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - 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, - [57524] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1902), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1904), 32, - anon_sym_import, - anon_sym_from, - 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_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - 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, - [57577] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1906), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1908), 32, - anon_sym_import, - anon_sym_from, - 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_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - 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, - [57630] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1914), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1916), 32, - anon_sym_import, - anon_sym_from, - 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_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - 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, - [57683] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2052), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(2050), 32, - anon_sym_import, - anon_sym_from, - 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_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - 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, - [57736] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1926), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1928), 32, - anon_sym_import, - anon_sym_from, - 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_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - 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, - [57789] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1988), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1990), 32, - anon_sym_import, - anon_sym_from, - 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_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - 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, - [57842] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1934), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1936), 32, - anon_sym_import, - anon_sym_from, - 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_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - 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, - [57895] = 21, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(1870), 1, - sym_identifier, - ACTIONS(1872), 1, - anon_sym_LPAREN, - ACTIONS(1878), 1, - anon_sym_LBRACK, - ACTIONS(1880), 1, - anon_sym_await, - STATE(1010), 1, - sym_string, - STATE(1603), 1, - sym_list_splat_pattern, - STATE(1612), 1, - sym_primary_expression, - STATE(2430), 1, - sym_pattern, - STATE(2686), 1, - sym_pattern_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(1876), 2, - anon_sym_match, - anon_sym_type, - STATE(1613), 2, - sym_attribute, - sym_subscript, - STATE(1640), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1874), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(323), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1268), 14, - 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_await, - [57984] = 21, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(1870), 1, - sym_identifier, - ACTIONS(1872), 1, - anon_sym_LPAREN, - ACTIONS(1878), 1, - anon_sym_LBRACK, - ACTIONS(1880), 1, - anon_sym_await, - STATE(1010), 1, - sym_string, - STATE(1603), 1, - sym_list_splat_pattern, - STATE(1612), 1, - sym_primary_expression, - STATE(2433), 1, - sym_pattern, - STATE(2695), 1, - sym_pattern_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(1876), 2, - anon_sym_match, - anon_sym_type, - STATE(1613), 2, - sym_attribute, - sym_subscript, - STATE(1640), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1874), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(323), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1268), 14, - 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_await, - [58073] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1938), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1940), 32, - anon_sym_import, - anon_sym_from, - 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_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - 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, - [58126] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1942), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1944), 32, - anon_sym_import, - anon_sym_from, - 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_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - 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, - [58179] = 21, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(1870), 1, - sym_identifier, - ACTIONS(1872), 1, - anon_sym_LPAREN, - ACTIONS(1878), 1, - anon_sym_LBRACK, - ACTIONS(1880), 1, - anon_sym_await, - STATE(1010), 1, - sym_string, - STATE(1603), 1, - sym_list_splat_pattern, - STATE(1612), 1, - sym_primary_expression, - STATE(2450), 1, - sym_pattern, - STATE(2720), 1, - sym_pattern_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(1876), 2, - anon_sym_match, - anon_sym_type, - STATE(1613), 2, - sym_attribute, - sym_subscript, - STATE(1640), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1874), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(323), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1268), 14, - 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_await, - [58268] = 21, - ACTIONS(310), 1, + [57754] = 21, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(1433), 1, + ACTIONS(1413), 1, anon_sym_STAR, - ACTIONS(1870), 1, + ACTIONS(1850), 1, sym_identifier, - ACTIONS(1872), 1, + ACTIONS(1852), 1, anon_sym_LPAREN, - ACTIONS(1878), 1, + ACTIONS(1860), 1, anon_sym_LBRACK, - ACTIONS(1880), 1, + ACTIONS(1862), 1, anon_sym_await, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1603), 1, + STATE(1593), 1, sym_list_splat_pattern, - STATE(1612), 1, + STATE(1601), 1, sym_primary_expression, - STATE(2451), 1, + STATE(2448), 1, sym_pattern, - STATE(2722), 1, + STATE(2700), 1, sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(1876), 2, + ACTIONS(1856), 2, anon_sym_match, anon_sym_type, - STATE(1613), 2, + STATE(1594), 2, sym_attribute, sym_subscript, - STATE(1640), 2, + STATE(1623), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1874), 3, + ACTIONS(1854), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1276), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -75885,60 +75103,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58357] = 21, - ACTIONS(310), 1, + [57843] = 21, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(1433), 1, + ACTIONS(1413), 1, anon_sym_STAR, - ACTIONS(1870), 1, + ACTIONS(1850), 1, sym_identifier, - ACTIONS(1872), 1, + ACTIONS(1852), 1, anon_sym_LPAREN, - ACTIONS(1878), 1, + ACTIONS(1860), 1, anon_sym_LBRACK, - ACTIONS(1880), 1, + ACTIONS(1862), 1, anon_sym_await, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1603), 1, + STATE(1593), 1, sym_list_splat_pattern, - STATE(1612), 1, + STATE(1601), 1, sym_primary_expression, - STATE(2494), 1, + STATE(2449), 1, sym_pattern, - STATE(2786), 1, + STATE(2702), 1, sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(1876), 2, + ACTIONS(1856), 2, anon_sym_match, anon_sym_type, - STATE(1613), 2, + STATE(1594), 2, sym_attribute, sym_subscript, - STATE(1640), 2, + STATE(1623), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1874), 3, + ACTIONS(1854), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1276), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -75953,126 +75171,108 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58446] = 21, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(1870), 1, - sym_identifier, - ACTIONS(1872), 1, - anon_sym_LPAREN, - ACTIONS(1878), 1, - anon_sym_LBRACK, - ACTIONS(1880), 1, - anon_sym_await, - ACTIONS(2054), 1, - anon_sym_in, - STATE(1010), 1, - sym_string, - STATE(1603), 1, - sym_list_splat_pattern, - STATE(1612), 1, - sym_primary_expression, - STATE(1639), 1, - sym_pattern, + [57932] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(1876), 2, - anon_sym_match, - anon_sym_type, - STATE(1613), 2, - sym_attribute, - sym_subscript, - STATE(1640), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(315), 3, + ACTIONS(1772), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1874), 3, + sym_ellipsis, + sym_float, + ACTIONS(1774), 32, + anon_sym_import, + anon_sym_from, 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_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - ACTIONS(323), 4, + 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, - STATE(1268), 14, - 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_await, - [58535] = 20, - ACTIONS(310), 1, + [57985] = 20, + ACTIONS(17), 1, + anon_sym_STAR, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(1107), 1, + ACTIONS(941), 1, sym_identifier, - ACTIONS(1109), 1, + ACTIONS(945), 1, anon_sym_LPAREN, - ACTIONS(1117), 1, + ACTIONS(953), 1, anon_sym_LBRACK, - ACTIONS(1119), 1, + ACTIONS(955), 1, anon_sym_await, - ACTIONS(2056), 1, - anon_sym_STAR, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1481), 1, + STATE(1315), 1, sym_list_splat_pattern, - STATE(1616), 1, - sym_primary_expression, - STATE(1639), 1, + STATE(1578), 1, sym_pattern, + STATE(1600), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(1115), 2, + ACTIONS(951), 2, anon_sym_match, anon_sym_type, - STATE(1482), 2, + STATE(1316), 2, sym_attribute, sym_subscript, - STATE(1640), 2, + STATE(1610), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1113), 3, + ACTIONS(949), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1276), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -76087,58 +75287,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58621] = 20, - ACTIONS(310), 1, + [58071] = 20, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(1706), 1, + ACTIONS(1872), 1, sym_identifier, - ACTIONS(1708), 1, + ACTIONS(1874), 1, anon_sym_LPAREN, - ACTIONS(1710), 1, + ACTIONS(1876), 1, anon_sym_STAR, - ACTIONS(1716), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1718), 1, + ACTIONS(1886), 1, anon_sym_await, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1578), 1, + STATE(1586), 1, sym_list_splat_pattern, - STATE(1620), 1, + STATE(1609), 1, sym_primary_expression, - STATE(2046), 1, + STATE(2500), 1, sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(1714), 2, + ACTIONS(1880), 2, anon_sym_match, anon_sym_type, - STATE(1576), 2, + STATE(1587), 2, sym_attribute, sym_subscript, - STATE(2052), 2, + STATE(2576), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1712), 3, + ACTIONS(1878), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1276), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -76153,58 +75353,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58707] = 20, - ACTIONS(310), 1, + [58157] = 20, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(1433), 1, + ACTIONS(1413), 1, anon_sym_STAR, - ACTIONS(1870), 1, + ACTIONS(1850), 1, sym_identifier, - ACTIONS(1872), 1, + ACTIONS(1852), 1, anon_sym_LPAREN, - ACTIONS(1878), 1, + ACTIONS(1860), 1, anon_sym_LBRACK, - ACTIONS(1880), 1, + ACTIONS(1862), 1, anon_sym_await, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1603), 1, + STATE(1593), 1, sym_list_splat_pattern, - STATE(1612), 1, + STATE(1601), 1, sym_primary_expression, - STATE(1639), 1, + STATE(1611), 1, sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(1876), 2, + ACTIONS(1856), 2, anon_sym_match, anon_sym_type, - STATE(1613), 2, + STATE(1594), 2, sym_attribute, sym_subscript, - STATE(1640), 2, + STATE(1623), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1874), 3, + ACTIONS(1854), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1276), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -76219,58 +75419,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58793] = 20, - ACTIONS(310), 1, + [58243] = 20, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(1796), 1, + ACTIONS(1694), 1, sym_identifier, - ACTIONS(1798), 1, + ACTIONS(1696), 1, anon_sym_LPAREN, - ACTIONS(1802), 1, + ACTIONS(1698), 1, anon_sym_STAR, - ACTIONS(1808), 1, + ACTIONS(1704), 1, anon_sym_LBRACK, - ACTIONS(1810), 1, + ACTIONS(1706), 1, anon_sym_await, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1590), 1, + STATE(1555), 1, sym_list_splat_pattern, - STATE(1615), 1, + STATE(1604), 1, sym_primary_expression, - STATE(2528), 1, + STATE(2063), 1, sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(1806), 2, + ACTIONS(1702), 2, anon_sym_match, anon_sym_type, - STATE(1598), 2, + STATE(1562), 2, sym_attribute, sym_subscript, - STATE(2573), 2, + STATE(2093), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1804), 3, + ACTIONS(1700), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1276), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -76285,58 +75485,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58879] = 20, - ACTIONS(310), 1, + [58329] = 20, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(2014), 1, + ACTIONS(1784), 1, sym_identifier, - ACTIONS(2016), 1, + ACTIONS(1786), 1, anon_sym_LPAREN, - ACTIONS(2018), 1, + ACTIONS(1790), 1, anon_sym_STAR, - ACTIONS(2024), 1, + ACTIONS(1796), 1, anon_sym_LBRACK, - ACTIONS(2026), 1, + ACTIONS(1798), 1, anon_sym_await, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1596), 1, + STATE(1579), 1, sym_list_splat_pattern, - STATE(1619), 1, + STATE(1603), 1, sym_primary_expression, - STATE(2514), 1, + STATE(2493), 1, sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(2022), 2, + ACTIONS(1794), 2, anon_sym_match, anon_sym_type, - STATE(1597), 2, + STATE(1580), 2, sym_attribute, sym_subscript, - STATE(2570), 2, + STATE(2559), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2020), 3, + ACTIONS(1792), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1276), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -76351,58 +75551,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58965] = 20, - ACTIONS(17), 1, - anon_sym_STAR, - ACTIONS(310), 1, + [58415] = 20, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(957), 1, + ACTIONS(1013), 1, sym_identifier, - ACTIONS(961), 1, + ACTIONS(1015), 1, anon_sym_LPAREN, - ACTIONS(969), 1, + ACTIONS(1023), 1, anon_sym_LBRACK, - ACTIONS(971), 1, + ACTIONS(1025), 1, anon_sym_await, - STATE(1010), 1, + ACTIONS(2040), 1, + anon_sym_STAR, + STATE(975), 1, sym_string, - STATE(1352), 1, + STATE(1453), 1, sym_list_splat_pattern, - STATE(1591), 1, + STATE(1605), 1, sym_primary_expression, - STATE(1610), 1, + STATE(1611), 1, sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(967), 2, + ACTIONS(1021), 2, anon_sym_match, anon_sym_type, - STATE(1353), 2, + STATE(1450), 2, sym_attribute, sym_subscript, - STATE(1592), 2, + STATE(1623), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(965), 3, + ACTIONS(1019), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1276), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -76417,56 +75617,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59051] = 19, - ACTIONS(310), 1, + [58501] = 19, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(668), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(1433), 1, + ACTIONS(1413), 1, anon_sym_STAR, - ACTIONS(2058), 1, + ACTIONS(2042), 1, sym_identifier, - ACTIONS(2066), 1, + ACTIONS(2050), 1, anon_sym_await, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1342), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1612), 1, + STATE(1601), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(2060), 2, + ACTIONS(2044), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(2064), 2, + ACTIONS(2048), 2, anon_sym_match, anon_sym_type, - STATE(1607), 2, + STATE(1585), 2, sym_attribute, sym_subscript, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2062), 3, + ACTIONS(2046), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1276), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -76481,56 +75681,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59134] = 19, - ACTIONS(310), 1, + [58584] = 19, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(668), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(1433), 1, + ACTIONS(1413), 1, anon_sym_STAR, - ACTIONS(2068), 1, + ACTIONS(2052), 1, sym_identifier, - ACTIONS(2074), 1, + ACTIONS(2058), 1, anon_sym_await, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1342), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1615), 1, + STATE(1603), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(2060), 2, + ACTIONS(2044), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2072), 2, + ACTIONS(2056), 2, anon_sym_match, anon_sym_type, - STATE(1583), 2, + STATE(1568), 2, sym_attribute, sym_subscript, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2070), 3, + ACTIONS(2054), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1276), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -76545,173 +75745,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59217] = 17, - ACTIONS(711), 1, + [58667] = 17, + ACTIONS(717), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(725), 1, anon_sym_LBRACK, - ACTIONS(723), 1, - anon_sym_LBRACE, - ACTIONS(727), 1, - anon_sym_await, ACTIONS(729), 1, - sym_string_start, - ACTIONS(1315), 1, - anon_sym_STAR, - ACTIONS(2076), 1, - anon_sym_not, - STATE(1028), 1, - sym_string, - STATE(1100), 1, - sym_primary_expression, - STATE(1388), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(717), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(725), 2, - sym_ellipsis, - sym_float, - ACTIONS(715), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(721), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(709), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - STATE(1270), 16, - 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_await, - [59295] = 17, - ACTIONS(755), 1, - anon_sym_LPAREN, - ACTIONS(765), 1, - anon_sym_LBRACK, - ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(773), 1, + ACTIONS(733), 1, anon_sym_await, - ACTIONS(775), 1, + ACTIONS(735), 1, sym_string_start, ACTIONS(1251), 1, anon_sym_STAR, - ACTIONS(2076), 1, - anon_sym_not, - STATE(1015), 1, - sym_string, - STATE(1129), 1, - sym_primary_expression, - STATE(1258), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(761), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(771), 2, - sym_ellipsis, - sym_float, - ACTIONS(759), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(767), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(753), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - STATE(1367), 16, - 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_await, - [59373] = 17, - ACTIONS(779), 1, - anon_sym_LPAREN, - ACTIONS(787), 1, - anon_sym_LBRACK, - ACTIONS(791), 1, - anon_sym_LBRACE, - ACTIONS(795), 1, - anon_sym_await, - ACTIONS(797), 1, - sym_string_start, - ACTIONS(1267), 1, - anon_sym_STAR, - ACTIONS(2076), 1, + ACTIONS(2060), 1, anon_sym_not, - STATE(996), 1, + STATE(957), 1, sym_string, - STATE(1082), 1, + STATE(972), 1, sym_primary_expression, - STATE(1360), 1, + STATE(1164), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(785), 2, + ACTIONS(723), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 2, + ACTIONS(731), 2, sym_ellipsis, sym_float, - ACTIONS(783), 3, + ACTIONS(721), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(789), 3, + ACTIONS(727), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(777), 5, + ACTIONS(715), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1365), 16, + STATE(1149), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -76728,51 +75806,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59451] = 17, - ACTIONS(686), 1, + [58745] = 17, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(681), 1, anon_sym_LBRACK, - ACTIONS(698), 1, + ACTIONS(685), 1, anon_sym_LBRACE, - ACTIONS(702), 1, + ACTIONS(689), 1, anon_sym_await, - ACTIONS(704), 1, + ACTIONS(691), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(981), 1, anon_sym_STAR, - ACTIONS(2076), 1, + ACTIONS(2060), 1, anon_sym_not, - STATE(975), 1, + STATE(963), 1, sym_string, - STATE(1031), 1, + STATE(997), 1, sym_primary_expression, - STATE(1214), 1, + STATE(1223), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(692), 2, + ACTIONS(679), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 2, + ACTIONS(687), 2, sym_ellipsis, sym_float, - ACTIONS(690), 3, + ACTIONS(677), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(696), 3, + ACTIONS(683), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(684), 5, + ACTIONS(671), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1172), 16, + STATE(1198), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -76789,51 +75867,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59529] = 17, - ACTIONS(310), 1, + [58823] = 17, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(668), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(682), 1, + ACTIONS(666), 1, anon_sym_await, - ACTIONS(1433), 1, + ACTIONS(1413), 1, anon_sym_STAR, - ACTIONS(2076), 1, + ACTIONS(2060), 1, anon_sym_not, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1058), 1, + STATE(1111), 1, sym_primary_expression, - STATE(1342), 1, + STATE(1333), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(676), 2, + ACTIONS(660), 2, anon_sym_match, anon_sym_type, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(674), 3, + ACTIONS(658), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 5, + ACTIONS(315), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1268), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -76850,116 +75928,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59607] = 21, - ACTIONS(2080), 1, - anon_sym_DOT, - ACTIONS(2082), 1, - anon_sym_LPAREN, - ACTIONS(2090), 1, - anon_sym_STAR_STAR, - ACTIONS(2092), 1, - anon_sym_EQ, - ACTIONS(2094), 1, - anon_sym_LBRACK, - ACTIONS(2100), 1, - anon_sym_PIPE, - ACTIONS(2102), 1, - anon_sym_not, - ACTIONS(2104), 1, - anon_sym_AMP, - ACTIONS(2106), 1, - anon_sym_CARET, - ACTIONS(2108), 1, - anon_sym_is, - STATE(1555), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2084), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2086), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2098), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2110), 2, - anon_sym_LT, - anon_sym_GT, - STATE(901), 2, - sym__not_in, - sym__is_not, - STATE(1043), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2096), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2088), 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(2078), 9, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_and, - anon_sym_or, - [59693] = 17, - ACTIONS(733), 1, + [58901] = 17, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(633), 1, anon_sym_LPAREN, - ACTIONS(741), 1, + ACTIONS(641), 1, anon_sym_LBRACK, - ACTIONS(745), 1, - anon_sym_LBRACE, - ACTIONS(749), 1, + ACTIONS(645), 1, anon_sym_await, - ACTIONS(751), 1, - sym_string_start, - ACTIONS(1287), 1, + ACTIONS(1293), 1, anon_sym_STAR, - ACTIONS(2076), 1, + ACTIONS(2060), 1, anon_sym_not, - STATE(971), 1, + STATE(954), 1, sym_string, - STATE(998), 1, + STATE(965), 1, sym_primary_expression, - STATE(1203), 1, + STATE(1046), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(739), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(747), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(737), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(743), 3, + ACTIONS(639), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(731), 5, + ACTIONS(637), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1138), 16, + STATE(1063), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -76976,51 +75989,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59771] = 17, - ACTIONS(801), 1, + [58979] = 17, + ACTIONS(739), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(749), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(753), 1, anon_sym_LBRACE, - ACTIONS(817), 1, + ACTIONS(757), 1, anon_sym_await, - ACTIONS(819), 1, + ACTIONS(759), 1, sym_string_start, - ACTIONS(1333), 1, + ACTIONS(1235), 1, anon_sym_STAR, - ACTIONS(2076), 1, + ACTIONS(2060), 1, anon_sym_not, - STATE(1107), 1, + STATE(1018), 1, sym_string, - STATE(1225), 1, + STATE(1103), 1, sym_primary_expression, - STATE(1437), 1, + STATE(1281), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(807), 2, + ACTIONS(745), 2, anon_sym_match, anon_sym_type, - ACTIONS(815), 2, + ACTIONS(755), 2, sym_ellipsis, sym_float, - ACTIONS(805), 3, + ACTIONS(743), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(811), 3, + ACTIONS(751), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(799), 5, + ACTIONS(737), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1442), 16, + STATE(1347), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77037,51 +76050,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59849] = 17, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(649), 1, + [59057] = 17, + ACTIONS(785), 1, anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(793), 1, anon_sym_LBRACK, - ACTIONS(661), 1, + ACTIONS(797), 1, + anon_sym_LBRACE, + ACTIONS(801), 1, anon_sym_await, - ACTIONS(1303), 1, + ACTIONS(803), 1, + sym_string_start, + ACTIONS(1279), 1, anon_sym_STAR, - ACTIONS(2076), 1, + ACTIONS(2060), 1, anon_sym_not, - STATE(969), 1, + STATE(980), 1, sym_string, - STATE(977), 1, + STATE(1066), 1, sym_primary_expression, - STATE(1119), 1, + STATE(1345), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(655), 2, + ACTIONS(791), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(653), 3, + ACTIONS(799), 2, + sym_ellipsis, + sym_float, + ACTIONS(789), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(795), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(783), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1035), 16, + STATE(1290), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77098,49 +76111,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59927] = 16, - ACTIONS(779), 1, + [59135] = 17, + ACTIONS(695), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(703), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(795), 1, + ACTIONS(711), 1, anon_sym_await, - ACTIONS(797), 1, + ACTIONS(713), 1, sym_string_start, - ACTIONS(1267), 1, + ACTIONS(1325), 1, anon_sym_STAR, - STATE(996), 1, + ACTIONS(2060), 1, + anon_sym_not, + STATE(992), 1, sym_string, - STATE(1082), 1, + STATE(1032), 1, sym_primary_expression, - STATE(1360), 1, + STATE(1322), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(785), 2, + ACTIONS(701), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(783), 3, + ACTIONS(699), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(789), 3, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(777), 5, + ACTIONS(693), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1365), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77157,49 +76172,116 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60002] = 16, - ACTIONS(801), 1, + [59213] = 21, + ACTIONS(2064), 1, + anon_sym_DOT, + ACTIONS(2066), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(2074), 1, + anon_sym_STAR_STAR, + ACTIONS(2076), 1, + anon_sym_EQ, + ACTIONS(2078), 1, + anon_sym_LBRACK, + ACTIONS(2084), 1, + anon_sym_PIPE, + ACTIONS(2086), 1, + anon_sym_not, + ACTIONS(2088), 1, + anon_sym_AMP, + ACTIONS(2090), 1, + anon_sym_CARET, + ACTIONS(2092), 1, + anon_sym_is, + STATE(1539), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2068), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2070), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2082), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2094), 2, + anon_sym_LT, + anon_sym_GT, + STATE(934), 2, + sym__not_in, + sym__is_not, + STATE(1089), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2080), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2072), 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(2062), 9, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + [59299] = 17, + ACTIONS(763), 1, + anon_sym_LPAREN, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(817), 1, + ACTIONS(779), 1, anon_sym_await, - ACTIONS(819), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(1333), 1, + ACTIONS(1285), 1, anon_sym_STAR, - STATE(1107), 1, + ACTIONS(2060), 1, + anon_sym_not, + STATE(1038), 1, sym_string, - STATE(1229), 1, + STATE(1127), 1, sym_primary_expression, STATE(1437), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(807), 2, + ACTIONS(769), 2, anon_sym_match, anon_sym_type, - ACTIONS(815), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(805), 3, + ACTIONS(767), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(811), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(799), 5, + ACTIONS(761), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1442), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77216,49 +76298,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60077] = 16, - ACTIONS(801), 1, + [59377] = 16, + ACTIONS(695), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(703), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(817), 1, + ACTIONS(711), 1, anon_sym_await, - ACTIONS(819), 1, + ACTIONS(713), 1, sym_string_start, - ACTIONS(1333), 1, + ACTIONS(1325), 1, anon_sym_STAR, - STATE(1107), 1, + STATE(992), 1, sym_string, - STATE(1230), 1, + STATE(1036), 1, sym_primary_expression, - STATE(1437), 1, + STATE(1322), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(807), 2, + ACTIONS(701), 2, anon_sym_match, anon_sym_type, - ACTIONS(815), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(805), 3, + ACTIONS(699), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(811), 3, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(799), 5, + ACTIONS(693), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1442), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77275,49 +76357,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60152] = 16, - ACTIONS(733), 1, + [59452] = 16, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(633), 1, anon_sym_LPAREN, - ACTIONS(741), 1, + ACTIONS(641), 1, anon_sym_LBRACK, - ACTIONS(745), 1, - anon_sym_LBRACE, - ACTIONS(749), 1, + ACTIONS(645), 1, anon_sym_await, - ACTIONS(751), 1, - sym_string_start, - ACTIONS(1287), 1, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(971), 1, + STATE(954), 1, sym_string, - STATE(1014), 1, + STATE(967), 1, sym_primary_expression, - STATE(1203), 1, + STATE(1046), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(739), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(747), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(737), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(743), 3, + ACTIONS(639), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(731), 5, + ACTIONS(637), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1138), 16, + STATE(1063), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77334,53 +76416,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60227] = 16, - ACTIONS(733), 1, - anon_sym_LPAREN, - ACTIONS(741), 1, - anon_sym_LBRACK, - ACTIONS(745), 1, + [59527] = 18, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(749), 1, - anon_sym_await, - ACTIONS(751), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(1287), 1, + ACTIONS(652), 1, + anon_sym_LPAREN, + ACTIONS(662), 1, + anon_sym_LBRACK, + ACTIONS(1413), 1, anon_sym_STAR, - STATE(971), 1, + ACTIONS(2096), 1, + sym_identifier, + ACTIONS(2102), 1, + anon_sym_await, + STATE(975), 1, sym_string, - STATE(998), 1, - sym_primary_expression, - STATE(1203), 1, + STATE(1333), 1, sym_list_splat_pattern, + STATE(1600), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(739), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(747), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(737), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(743), 3, + ACTIONS(2100), 2, + anon_sym_match, + anon_sym_type, + STATE(650), 2, + sym_attribute, + sym_subscript, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(731), 5, + ACTIONS(2098), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(315), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1138), 16, + STATE(1276), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -77393,49 +76477,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60302] = 16, - ACTIONS(733), 1, + [59606] = 16, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(741), 1, + ACTIONS(681), 1, anon_sym_LBRACK, - ACTIONS(745), 1, + ACTIONS(685), 1, anon_sym_LBRACE, - ACTIONS(749), 1, + ACTIONS(689), 1, anon_sym_await, - ACTIONS(751), 1, + ACTIONS(691), 1, sym_string_start, - ACTIONS(1287), 1, + ACTIONS(981), 1, anon_sym_STAR, - STATE(971), 1, + STATE(963), 1, sym_string, - STATE(1013), 1, + STATE(1004), 1, sym_primary_expression, - STATE(1203), 1, + STATE(1223), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(739), 2, + ACTIONS(679), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 2, + ACTIONS(687), 2, sym_ellipsis, sym_float, - ACTIONS(737), 3, + ACTIONS(677), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 3, + ACTIONS(683), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(731), 5, + ACTIONS(671), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1138), 16, + STATE(1198), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77452,55 +76536,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60377] = 18, - ACTIONS(310), 1, + [59681] = 16, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(668), 1, + ACTIONS(633), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(641), 1, anon_sym_LBRACK, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(2112), 1, - sym_identifier, - ACTIONS(2118), 1, + ACTIONS(645), 1, anon_sym_await, - STATE(1010), 1, + ACTIONS(1293), 1, + anon_sym_STAR, + STATE(954), 1, sym_string, - STATE(1342), 1, - sym_list_splat_pattern, - STATE(1591), 1, + STATE(962), 1, sym_primary_expression, + STATE(1046), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(2116), 2, + ACTIONS(639), 2, anon_sym_match, anon_sym_type, - STATE(638), 2, - sym_attribute, - sym_subscript, - ACTIONS(315), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2114), 3, + ACTIONS(637), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(77), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1063), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -77513,49 +76595,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60456] = 16, - ACTIONS(711), 1, + [59756] = 16, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(633), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(641), 1, anon_sym_LBRACK, - ACTIONS(723), 1, - anon_sym_LBRACE, - ACTIONS(727), 1, + ACTIONS(645), 1, anon_sym_await, - ACTIONS(729), 1, - sym_string_start, - ACTIONS(1315), 1, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(1028), 1, + STATE(954), 1, sym_string, - STATE(1102), 1, + STATE(964), 1, sym_primary_expression, - STATE(1388), 1, + STATE(1046), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(717), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(725), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(715), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(721), 3, + ACTIONS(639), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(709), 5, + ACTIONS(637), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1270), 16, + STATE(1063), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77572,55 +76654,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60531] = 18, - ACTIONS(310), 1, + [59831] = 16, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(668), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(2120), 1, - sym_identifier, - ACTIONS(2126), 1, + ACTIONS(666), 1, anon_sym_await, - STATE(1010), 1, + ACTIONS(1413), 1, + anon_sym_STAR, + STATE(975), 1, sym_string, - STATE(1342), 1, - sym_list_splat_pattern, - STATE(1617), 1, + STATE(1109), 1, sym_primary_expression, + STATE(1333), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(2124), 2, + ACTIONS(660), 2, anon_sym_match, anon_sym_type, - STATE(1350), 2, - sym_attribute, - sym_subscript, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2122), 3, + ACTIONS(658), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(315), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -77633,49 +76713,108 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60610] = 16, - ACTIONS(733), 1, + [59906] = 16, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(633), 1, anon_sym_LPAREN, - ACTIONS(741), 1, + ACTIONS(641), 1, anon_sym_LBRACK, - ACTIONS(745), 1, - anon_sym_LBRACE, - ACTIONS(749), 1, + ACTIONS(645), 1, anon_sym_await, - ACTIONS(751), 1, - sym_string_start, - ACTIONS(1287), 1, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(971), 1, + STATE(954), 1, sym_string, - STATE(990), 1, + STATE(966), 1, sym_primary_expression, - STATE(1203), 1, + STATE(1046), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(739), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(747), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(737), 3, + ACTIONS(639), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(637), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 3, + ACTIONS(77), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1063), 16, + 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_await, + [59981] = 16, + ACTIONS(302), 1, + anon_sym_LBRACE, + ACTIONS(319), 1, + sym_string_start, + ACTIONS(652), 1, + anon_sym_LPAREN, + ACTIONS(662), 1, + anon_sym_LBRACK, + ACTIONS(666), 1, + anon_sym_await, + ACTIONS(1413), 1, + anon_sym_STAR, + STATE(975), 1, + sym_string, + STATE(1110), 1, + sym_primary_expression, + STATE(1333), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(313), 2, + sym_ellipsis, + sym_float, + ACTIONS(660), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(731), 5, + ACTIONS(658), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(315), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1138), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77692,49 +76831,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60685] = 16, - ACTIONS(733), 1, + [60056] = 16, + ACTIONS(785), 1, anon_sym_LPAREN, - ACTIONS(741), 1, + ACTIONS(793), 1, anon_sym_LBRACK, - ACTIONS(745), 1, + ACTIONS(797), 1, anon_sym_LBRACE, - ACTIONS(749), 1, + ACTIONS(801), 1, anon_sym_await, - ACTIONS(751), 1, + ACTIONS(803), 1, sym_string_start, - ACTIONS(1287), 1, + ACTIONS(1279), 1, anon_sym_STAR, - STATE(971), 1, + STATE(980), 1, sym_string, - STATE(989), 1, + STATE(1064), 1, sym_primary_expression, - STATE(1203), 1, + STATE(1345), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(739), 2, + ACTIONS(791), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 2, + ACTIONS(799), 2, sym_ellipsis, sym_float, - ACTIONS(737), 3, + ACTIONS(789), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 3, + ACTIONS(795), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(731), 5, + ACTIONS(783), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1138), 16, + STATE(1290), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77751,49 +76890,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60760] = 16, - ACTIONS(733), 1, + [60131] = 16, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(633), 1, anon_sym_LPAREN, - ACTIONS(741), 1, + ACTIONS(641), 1, anon_sym_LBRACK, - ACTIONS(745), 1, - anon_sym_LBRACE, - ACTIONS(749), 1, + ACTIONS(645), 1, anon_sym_await, - ACTIONS(751), 1, - sym_string_start, - ACTIONS(1287), 1, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(971), 1, + STATE(954), 1, sym_string, - STATE(1000), 1, + STATE(955), 1, sym_primary_expression, - STATE(1203), 1, + STATE(1046), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(739), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(747), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(737), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(743), 3, + ACTIONS(639), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(731), 5, + ACTIONS(637), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1138), 16, + STATE(1063), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77810,49 +76949,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60835] = 16, - ACTIONS(733), 1, + [60206] = 16, + ACTIONS(785), 1, anon_sym_LPAREN, - ACTIONS(741), 1, + ACTIONS(793), 1, anon_sym_LBRACK, - ACTIONS(745), 1, + ACTIONS(797), 1, anon_sym_LBRACE, - ACTIONS(749), 1, + ACTIONS(801), 1, anon_sym_await, - ACTIONS(751), 1, + ACTIONS(803), 1, sym_string_start, - ACTIONS(1287), 1, + ACTIONS(1279), 1, anon_sym_STAR, - STATE(971), 1, + STATE(980), 1, sym_string, - STATE(1002), 1, + STATE(1065), 1, sym_primary_expression, - STATE(1203), 1, + STATE(1345), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(739), 2, + ACTIONS(791), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 2, + ACTIONS(799), 2, sym_ellipsis, sym_float, - ACTIONS(737), 3, + ACTIONS(789), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 3, + ACTIONS(795), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(731), 5, + ACTIONS(783), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1138), 16, + STATE(1290), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77869,49 +77008,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60910] = 16, - ACTIONS(733), 1, + [60281] = 16, + ACTIONS(785), 1, anon_sym_LPAREN, - ACTIONS(741), 1, + ACTIONS(793), 1, anon_sym_LBRACK, - ACTIONS(745), 1, + ACTIONS(797), 1, anon_sym_LBRACE, - ACTIONS(749), 1, + ACTIONS(801), 1, anon_sym_await, - ACTIONS(751), 1, + ACTIONS(803), 1, sym_string_start, - ACTIONS(1287), 1, + ACTIONS(1279), 1, anon_sym_STAR, - STATE(971), 1, + STATE(980), 1, sym_string, - STATE(1003), 1, + STATE(1066), 1, sym_primary_expression, - STATE(1203), 1, + STATE(1345), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(739), 2, + ACTIONS(791), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 2, + ACTIONS(799), 2, sym_ellipsis, sym_float, - ACTIONS(737), 3, + ACTIONS(789), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 3, + ACTIONS(795), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(731), 5, + ACTIONS(783), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1138), 16, + STATE(1290), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77928,55 +77067,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60985] = 18, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(668), 1, + [60356] = 16, + ACTIONS(785), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(793), 1, anon_sym_LBRACK, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(2118), 1, + ACTIONS(797), 1, + anon_sym_LBRACE, + ACTIONS(801), 1, anon_sym_await, - ACTIONS(2128), 1, - sym_identifier, - STATE(1010), 1, + ACTIONS(803), 1, + sym_string_start, + ACTIONS(1279), 1, + anon_sym_STAR, + STATE(980), 1, sym_string, - STATE(1342), 1, - sym_list_splat_pattern, - STATE(1591), 1, + STATE(1067), 1, sym_primary_expression, + STATE(1345), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(2116), 2, + ACTIONS(791), 2, anon_sym_match, anon_sym_type, - STATE(638), 2, - sym_attribute, - sym_subscript, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2114), 3, + ACTIONS(799), 2, + sym_ellipsis, + sym_float, + ACTIONS(789), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(795), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(783), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1290), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -77989,49 +77126,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61064] = 16, - ACTIONS(779), 1, + [60431] = 16, + ACTIONS(785), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(793), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(797), 1, anon_sym_LBRACE, - ACTIONS(795), 1, + ACTIONS(801), 1, anon_sym_await, - ACTIONS(797), 1, + ACTIONS(803), 1, sym_string_start, - ACTIONS(1267), 1, + ACTIONS(1279), 1, anon_sym_STAR, - STATE(996), 1, + STATE(980), 1, sym_string, - STATE(1087), 1, + STATE(1068), 1, sym_primary_expression, - STATE(1360), 1, + STATE(1345), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(785), 2, + ACTIONS(791), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 2, + ACTIONS(799), 2, sym_ellipsis, sym_float, - ACTIONS(783), 3, + ACTIONS(789), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(789), 3, + ACTIONS(795), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(777), 5, + ACTIONS(783), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1365), 16, + STATE(1290), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78048,49 +77185,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61139] = 16, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(649), 1, + [60506] = 16, + ACTIONS(785), 1, anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(793), 1, anon_sym_LBRACK, - ACTIONS(661), 1, + ACTIONS(797), 1, + anon_sym_LBRACE, + ACTIONS(801), 1, anon_sym_await, - ACTIONS(1303), 1, + ACTIONS(803), 1, + sym_string_start, + ACTIONS(1279), 1, anon_sym_STAR, - STATE(969), 1, + STATE(980), 1, sym_string, - STATE(982), 1, + STATE(1069), 1, sym_primary_expression, - STATE(1119), 1, + STATE(1345), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(655), 2, + ACTIONS(791), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(653), 3, + ACTIONS(799), 2, + sym_ellipsis, + sym_float, + ACTIONS(789), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(795), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(783), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1035), 16, + STATE(1290), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78107,55 +77244,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61214] = 18, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(668), 1, + [60581] = 16, + ACTIONS(785), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(793), 1, anon_sym_LBRACK, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(2130), 1, - sym_identifier, - ACTIONS(2136), 1, + ACTIONS(797), 1, + anon_sym_LBRACE, + ACTIONS(801), 1, anon_sym_await, - STATE(1010), 1, + ACTIONS(803), 1, + sym_string_start, + ACTIONS(1279), 1, + anon_sym_STAR, + STATE(980), 1, sym_string, - STATE(1342), 1, - sym_list_splat_pattern, - STATE(1615), 1, + STATE(1070), 1, sym_primary_expression, + STATE(1345), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(2134), 2, + ACTIONS(791), 2, anon_sym_match, anon_sym_type, - STATE(1585), 2, - sym_attribute, - sym_subscript, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2132), 3, + ACTIONS(799), 2, + sym_ellipsis, + sym_float, + ACTIONS(789), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(795), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(783), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1290), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -78168,49 +77303,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61293] = 16, - ACTIONS(755), 1, + [60656] = 16, + ACTIONS(785), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(793), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(797), 1, anon_sym_LBRACE, - ACTIONS(773), 1, + ACTIONS(801), 1, anon_sym_await, - ACTIONS(775), 1, + ACTIONS(803), 1, sym_string_start, - ACTIONS(1251), 1, + ACTIONS(1279), 1, anon_sym_STAR, - STATE(1015), 1, + STATE(980), 1, sym_string, - STATE(1127), 1, + STATE(1118), 1, sym_primary_expression, - STATE(1258), 1, + STATE(1345), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(761), 2, + ACTIONS(791), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 2, + ACTIONS(799), 2, sym_ellipsis, sym_float, - ACTIONS(759), 3, + ACTIONS(789), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(767), 3, + ACTIONS(795), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(753), 5, + ACTIONS(783), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1367), 16, + STATE(1290), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78227,49 +77362,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61368] = 16, - ACTIONS(755), 1, + [60731] = 16, + ACTIONS(302), 1, + anon_sym_LBRACE, + ACTIONS(319), 1, + sym_string_start, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(769), 1, - anon_sym_LBRACE, - ACTIONS(773), 1, + ACTIONS(666), 1, anon_sym_await, - ACTIONS(775), 1, - sym_string_start, - ACTIONS(1251), 1, + ACTIONS(1413), 1, anon_sym_STAR, - STATE(1015), 1, + STATE(975), 1, sym_string, - STATE(1128), 1, + STATE(1111), 1, sym_primary_expression, - STATE(1258), 1, + STATE(1333), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(761), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(771), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(759), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(767), 3, + ACTIONS(660), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(753), 5, + ACTIONS(658), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(315), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1367), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78286,53 +77421,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61443] = 16, - ACTIONS(755), 1, - anon_sym_LPAREN, - ACTIONS(765), 1, - anon_sym_LBRACK, - ACTIONS(769), 1, + [60806] = 18, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(773), 1, - anon_sym_await, - ACTIONS(775), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(1251), 1, + ACTIONS(652), 1, + anon_sym_LPAREN, + ACTIONS(662), 1, + anon_sym_LBRACK, + ACTIONS(1413), 1, anon_sym_STAR, - STATE(1015), 1, + ACTIONS(2104), 1, + sym_identifier, + ACTIONS(2110), 1, + anon_sym_await, + STATE(975), 1, sym_string, - STATE(1129), 1, - sym_primary_expression, - STATE(1258), 1, + STATE(1333), 1, sym_list_splat_pattern, + STATE(1606), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(761), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(771), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(759), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(767), 3, + ACTIONS(2108), 2, + anon_sym_match, + anon_sym_type, + STATE(1217), 2, + sym_attribute, + sym_subscript, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(753), 5, + ACTIONS(2106), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(315), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1367), 16, + STATE(1276), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -78345,49 +77482,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61518] = 16, - ACTIONS(755), 1, + [60885] = 16, + ACTIONS(302), 1, + anon_sym_LBRACE, + ACTIONS(319), 1, + sym_string_start, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(769), 1, - anon_sym_LBRACE, - ACTIONS(773), 1, + ACTIONS(666), 1, anon_sym_await, - ACTIONS(775), 1, - sym_string_start, - ACTIONS(1251), 1, + ACTIONS(1413), 1, anon_sym_STAR, - STATE(1015), 1, + STATE(975), 1, sym_string, - STATE(1130), 1, + STATE(1112), 1, sym_primary_expression, - STATE(1258), 1, + STATE(1333), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(761), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(771), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(759), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(767), 3, + ACTIONS(660), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(753), 5, + ACTIONS(658), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(315), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1367), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78404,49 +77541,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61593] = 16, - ACTIONS(755), 1, + [60960] = 16, + ACTIONS(785), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(793), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(797), 1, anon_sym_LBRACE, - ACTIONS(773), 1, + ACTIONS(801), 1, anon_sym_await, - ACTIONS(775), 1, + ACTIONS(803), 1, sym_string_start, - ACTIONS(1251), 1, + ACTIONS(1279), 1, anon_sym_STAR, - STATE(1015), 1, + STATE(980), 1, sym_string, - STATE(1131), 1, + STATE(1055), 1, sym_primary_expression, - STATE(1258), 1, + STATE(1345), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(761), 2, + ACTIONS(791), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 2, + ACTIONS(799), 2, sym_ellipsis, sym_float, - ACTIONS(759), 3, + ACTIONS(789), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(767), 3, + ACTIONS(795), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(753), 5, + ACTIONS(783), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1367), 16, + STATE(1290), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78463,49 +77600,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61668] = 16, - ACTIONS(755), 1, + [61035] = 16, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(681), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(685), 1, anon_sym_LBRACE, - ACTIONS(773), 1, + ACTIONS(689), 1, anon_sym_await, - ACTIONS(775), 1, + ACTIONS(691), 1, sym_string_start, - ACTIONS(1251), 1, + ACTIONS(981), 1, anon_sym_STAR, - STATE(1015), 1, + STATE(963), 1, sym_string, - STATE(1132), 1, + STATE(983), 1, sym_primary_expression, - STATE(1258), 1, + STATE(1223), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(761), 2, + ACTIONS(679), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 2, + ACTIONS(687), 2, sym_ellipsis, sym_float, - ACTIONS(759), 3, + ACTIONS(677), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(767), 3, + ACTIONS(683), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(753), 5, + ACTIONS(671), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1367), 16, + STATE(1198), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78522,55 +77659,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61743] = 18, - ACTIONS(310), 1, + [61110] = 16, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(668), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(2126), 1, + ACTIONS(666), 1, anon_sym_await, - ACTIONS(2138), 1, - sym_identifier, - STATE(1010), 1, + ACTIONS(1413), 1, + anon_sym_STAR, + STATE(975), 1, sym_string, - STATE(1342), 1, - sym_list_splat_pattern, - STATE(1615), 1, + STATE(1113), 1, sym_primary_expression, + STATE(1333), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(2142), 2, + ACTIONS(660), 2, anon_sym_match, anon_sym_type, - STATE(1357), 2, - sym_attribute, - sym_subscript, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2140), 3, + ACTIONS(658), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(315), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -78583,53 +77718,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61822] = 16, - ACTIONS(755), 1, - anon_sym_LPAREN, - ACTIONS(765), 1, - anon_sym_LBRACK, - ACTIONS(769), 1, + [61185] = 18, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(773), 1, - anon_sym_await, - ACTIONS(775), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(1251), 1, + ACTIONS(652), 1, + anon_sym_LPAREN, + ACTIONS(662), 1, + anon_sym_LBRACK, + ACTIONS(1413), 1, anon_sym_STAR, - STATE(1015), 1, + ACTIONS(2112), 1, + sym_identifier, + ACTIONS(2118), 1, + anon_sym_await, + STATE(975), 1, sym_string, - STATE(1133), 1, - sym_primary_expression, - STATE(1258), 1, + STATE(1333), 1, sym_list_splat_pattern, + STATE(1607), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(761), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(771), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(759), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(767), 3, + ACTIONS(2116), 2, + anon_sym_match, + anon_sym_type, + STATE(1308), 2, + sym_attribute, + sym_subscript, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(753), 5, + ACTIONS(2114), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(315), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1367), 16, + STATE(1276), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -78642,49 +77779,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61897] = 16, - ACTIONS(686), 1, + [61264] = 16, + ACTIONS(695), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(703), 1, anon_sym_LBRACK, - ACTIONS(698), 1, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(702), 1, + ACTIONS(711), 1, anon_sym_await, - ACTIONS(704), 1, + ACTIONS(713), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(1325), 1, anon_sym_STAR, - STATE(975), 1, + STATE(992), 1, sym_string, - STATE(1017), 1, + STATE(1030), 1, sym_primary_expression, - STATE(1214), 1, + STATE(1322), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(692), 2, + ACTIONS(701), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(690), 3, + ACTIONS(699), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(696), 3, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(684), 5, + ACTIONS(693), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1172), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78701,49 +77838,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61972] = 16, - ACTIONS(755), 1, + [61339] = 16, + ACTIONS(302), 1, + anon_sym_LBRACE, + ACTIONS(319), 1, + sym_string_start, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(769), 1, - anon_sym_LBRACE, - ACTIONS(773), 1, + ACTIONS(666), 1, anon_sym_await, - ACTIONS(775), 1, - sym_string_start, - ACTIONS(1251), 1, + ACTIONS(1413), 1, anon_sym_STAR, - STATE(1015), 1, + STATE(975), 1, sym_string, - STATE(1036), 1, + STATE(1114), 1, sym_primary_expression, - STATE(1258), 1, + STATE(1333), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(761), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(771), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(759), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(767), 3, + ACTIONS(660), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(753), 5, + ACTIONS(658), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(315), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1367), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78760,49 +77897,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62047] = 16, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(649), 1, + [61414] = 16, + ACTIONS(695), 1, anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(703), 1, anon_sym_LBRACK, - ACTIONS(661), 1, + ACTIONS(707), 1, + anon_sym_LBRACE, + ACTIONS(711), 1, anon_sym_await, - ACTIONS(1303), 1, + ACTIONS(713), 1, + sym_string_start, + ACTIONS(1325), 1, anon_sym_STAR, - STATE(969), 1, + STATE(992), 1, sym_string, - STATE(973), 1, + STATE(1031), 1, sym_primary_expression, - STATE(1119), 1, + STATE(1322), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(655), 2, + ACTIONS(701), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(653), 3, + ACTIONS(709), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(705), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(693), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1035), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78819,49 +77956,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62122] = 16, - ACTIONS(711), 1, + [61489] = 16, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(727), 1, + ACTIONS(779), 1, anon_sym_await, - ACTIONS(729), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(1315), 1, + ACTIONS(1285), 1, anon_sym_STAR, - STATE(1028), 1, + STATE(1038), 1, sym_string, - STATE(1100), 1, + STATE(1125), 1, sym_primary_expression, - STATE(1388), 1, + STATE(1437), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(717), 2, + ACTIONS(769), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(715), 3, + ACTIONS(767), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(721), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(709), 5, + ACTIONS(761), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1270), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78878,49 +78015,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62197] = 16, - ACTIONS(67), 1, + [61564] = 16, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(649), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(661), 1, + ACTIONS(666), 1, anon_sym_await, - ACTIONS(1303), 1, + ACTIONS(1413), 1, anon_sym_STAR, - STATE(969), 1, + STATE(975), 1, sym_string, - STATE(974), 1, + STATE(1115), 1, sym_primary_expression, - STATE(1119), 1, + STATE(1333), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(655), 2, + ACTIONS(660), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(653), 3, + ACTIONS(658), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(315), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1035), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78937,49 +78074,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62272] = 16, - ACTIONS(779), 1, + [61639] = 16, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(795), 1, + ACTIONS(779), 1, anon_sym_await, - ACTIONS(797), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(1267), 1, + ACTIONS(1285), 1, anon_sym_STAR, - STATE(996), 1, + STATE(1038), 1, sym_string, - STATE(1080), 1, + STATE(1126), 1, sym_primary_expression, - STATE(1360), 1, + STATE(1437), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(785), 2, + ACTIONS(769), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(783), 3, + ACTIONS(767), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(789), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(777), 5, + ACTIONS(761), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1365), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78996,49 +78133,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62347] = 16, - ACTIONS(67), 1, + [61714] = 16, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(649), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(661), 1, + ACTIONS(666), 1, anon_sym_await, - ACTIONS(1303), 1, + ACTIONS(1413), 1, anon_sym_STAR, - STATE(969), 1, + STATE(975), 1, sym_string, - STATE(977), 1, + STATE(1116), 1, sym_primary_expression, - STATE(1119), 1, + STATE(1333), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(655), 2, + ACTIONS(660), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(653), 3, + ACTIONS(658), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(315), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1035), 16, + STATE(1276), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79055,49 +78192,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62422] = 16, - ACTIONS(711), 1, + [61789] = 16, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(727), 1, + ACTIONS(779), 1, anon_sym_await, - ACTIONS(729), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(1315), 1, + ACTIONS(1285), 1, anon_sym_STAR, - STATE(1028), 1, + STATE(1038), 1, sym_string, - STATE(1103), 1, + STATE(1127), 1, sym_primary_expression, - STATE(1388), 1, + STATE(1437), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(717), 2, + ACTIONS(769), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(715), 3, + ACTIONS(767), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(721), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(709), 5, + ACTIONS(761), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1270), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79114,53 +78251,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62497] = 18, - ACTIONS(310), 1, + [61864] = 18, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(668), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(1433), 1, + ACTIONS(1413), 1, anon_sym_STAR, - ACTIONS(2144), 1, + ACTIONS(2120), 1, sym_identifier, - ACTIONS(2150), 1, + ACTIONS(2126), 1, anon_sym_await, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1342), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1618), 1, + STATE(1601), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(2148), 2, + ACTIONS(2124), 2, anon_sym_match, anon_sym_type, - STATE(1445), 2, + STATE(1592), 2, sym_attribute, sym_subscript, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2146), 3, + ACTIONS(2122), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1276), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -79175,49 +78312,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62576] = 16, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(649), 1, + [61943] = 16, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(661), 1, + ACTIONS(775), 1, + anon_sym_LBRACE, + ACTIONS(779), 1, anon_sym_await, - ACTIONS(1303), 1, + ACTIONS(781), 1, + sym_string_start, + ACTIONS(1285), 1, anon_sym_STAR, - STATE(969), 1, + STATE(1038), 1, sym_string, - STATE(980), 1, + STATE(1128), 1, sym_primary_expression, - STATE(1119), 1, + STATE(1437), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(655), 2, + ACTIONS(769), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(653), 3, + ACTIONS(777), 2, + sym_ellipsis, + sym_float, + ACTIONS(767), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(773), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(761), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1035), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79234,53 +78371,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62651] = 16, - ACTIONS(711), 1, - anon_sym_LPAREN, - ACTIONS(719), 1, - anon_sym_LBRACK, - ACTIONS(723), 1, + [62018] = 18, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(727), 1, - anon_sym_await, - ACTIONS(729), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(1315), 1, + ACTIONS(652), 1, + anon_sym_LPAREN, + ACTIONS(662), 1, + anon_sym_LBRACK, + ACTIONS(1413), 1, anon_sym_STAR, - STATE(1028), 1, + ACTIONS(2118), 1, + anon_sym_await, + ACTIONS(2128), 1, + sym_identifier, + STATE(975), 1, sym_string, - STATE(1095), 1, - sym_primary_expression, - STATE(1388), 1, + STATE(1333), 1, sym_list_splat_pattern, + STATE(1607), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(717), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(725), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(715), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(721), 3, + ACTIONS(2116), 2, + anon_sym_match, + anon_sym_type, + STATE(1308), 2, + sym_attribute, + sym_subscript, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(709), 5, + ACTIONS(2114), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(315), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1270), 16, + STATE(1276), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -79293,49 +78432,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62726] = 16, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(649), 1, + [62097] = 16, + ACTIONS(717), 1, anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(725), 1, anon_sym_LBRACK, - ACTIONS(661), 1, + ACTIONS(729), 1, + anon_sym_LBRACE, + ACTIONS(733), 1, anon_sym_await, - ACTIONS(1303), 1, + ACTIONS(735), 1, + sym_string_start, + ACTIONS(1251), 1, anon_sym_STAR, - STATE(969), 1, + STATE(957), 1, sym_string, - STATE(987), 1, + STATE(995), 1, sym_primary_expression, - STATE(1119), 1, + STATE(1164), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(655), 2, + ACTIONS(723), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(653), 3, + ACTIONS(731), 2, + sym_ellipsis, + sym_float, + ACTIONS(721), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(727), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(715), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1035), 16, + STATE(1149), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79352,49 +78491,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62801] = 16, - ACTIONS(711), 1, + [62172] = 16, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(727), 1, + ACTIONS(779), 1, anon_sym_await, - ACTIONS(729), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(1315), 1, + ACTIONS(1285), 1, anon_sym_STAR, - STATE(1028), 1, + STATE(1038), 1, sym_string, - STATE(1101), 1, + STATE(1129), 1, sym_primary_expression, - STATE(1388), 1, + STATE(1437), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(717), 2, + ACTIONS(769), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(715), 3, + ACTIONS(767), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(721), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(709), 5, + ACTIONS(761), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1270), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79411,55 +78550,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62876] = 18, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(668), 1, + [62247] = 16, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(2152), 1, - sym_identifier, - ACTIONS(2158), 1, + ACTIONS(775), 1, + anon_sym_LBRACE, + ACTIONS(779), 1, anon_sym_await, - STATE(1010), 1, + ACTIONS(781), 1, + sym_string_start, + ACTIONS(1285), 1, + anon_sym_STAR, + STATE(1038), 1, sym_string, - STATE(1342), 1, - sym_list_splat_pattern, - STATE(1614), 1, + STATE(1130), 1, sym_primary_expression, + STATE(1437), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(2156), 2, + ACTIONS(769), 2, anon_sym_match, anon_sym_type, - STATE(1071), 2, - sym_attribute, - sym_subscript, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2154), 3, + ACTIONS(777), 2, + sym_ellipsis, + sym_float, + ACTIONS(767), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(773), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(761), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -79472,113 +78609,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62955] = 21, - ACTIONS(2092), 1, - anon_sym_EQ, - ACTIONS(2102), 1, - anon_sym_not, - ACTIONS(2160), 1, - anon_sym_DOT, - ACTIONS(2162), 1, + [62322] = 16, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(2170), 1, - anon_sym_STAR_STAR, - ACTIONS(2172), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(2178), 1, - anon_sym_PIPE, - ACTIONS(2180), 1, - anon_sym_AMP, - ACTIONS(2182), 1, - anon_sym_CARET, - ACTIONS(2184), 1, - anon_sym_is, - STATE(1567), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2164), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2166), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2176), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2186), 2, - anon_sym_LT, - anon_sym_GT, - STATE(940), 2, - sym__not_in, - sym__is_not, - STATE(1181), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2174), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2168), 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(2078), 8, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - sym_type_conversion, - [63040] = 16, - ACTIONS(310), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(682), 1, + ACTIONS(779), 1, anon_sym_await, - ACTIONS(1433), 1, + ACTIONS(781), 1, + sym_string_start, + ACTIONS(1285), 1, anon_sym_STAR, - STATE(1010), 1, + STATE(1038), 1, sym_string, - STATE(1050), 1, + STATE(1131), 1, sym_primary_expression, - STATE(1342), 1, + STATE(1437), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(676), 2, + ACTIONS(769), 2, anon_sym_match, anon_sym_type, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(674), 3, + ACTIONS(777), 2, + sym_ellipsis, + sym_float, + ACTIONS(767), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 5, + ACTIONS(773), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(761), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1268), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79595,49 +78668,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63115] = 16, - ACTIONS(779), 1, + [62397] = 16, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(795), 1, + ACTIONS(779), 1, anon_sym_await, - ACTIONS(797), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(1267), 1, + ACTIONS(1285), 1, anon_sym_STAR, - STATE(996), 1, + STATE(1038), 1, sym_string, - STATE(1081), 1, + STATE(1132), 1, sym_primary_expression, - STATE(1360), 1, + STATE(1437), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(785), 2, + ACTIONS(769), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(783), 3, + ACTIONS(767), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(789), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(777), 5, + ACTIONS(761), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1365), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79654,119 +78727,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63190] = 21, - ACTIONS(2092), 1, - anon_sym_as, - ACTIONS(2102), 1, - anon_sym_not, - ACTIONS(2188), 1, - anon_sym_DOT, - ACTIONS(2190), 1, + [62472] = 16, + ACTIONS(695), 1, anon_sym_LPAREN, - ACTIONS(2198), 1, - anon_sym_STAR_STAR, - ACTIONS(2200), 1, + ACTIONS(703), 1, anon_sym_LBRACK, - ACTIONS(2206), 1, - anon_sym_PIPE, - ACTIONS(2208), 1, - anon_sym_AMP, - ACTIONS(2210), 1, - anon_sym_CARET, - ACTIONS(2212), 1, - anon_sym_is, - STATE(1565), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2192), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2194), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2204), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2214), 2, - anon_sym_LT, - anon_sym_GT, - STATE(873), 2, - sym__not_in, - sym__is_not, - STATE(1152), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2202), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2196), 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(2078), 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, - [63275] = 18, - ACTIONS(310), 1, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(711), 1, + anon_sym_await, + ACTIONS(713), 1, sym_string_start, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1433), 1, + ACTIONS(1325), 1, anon_sym_STAR, - ACTIONS(2216), 1, - sym_identifier, - ACTIONS(2222), 1, - anon_sym_await, - STATE(1010), 1, + STATE(992), 1, sym_string, - STATE(1342), 1, - sym_list_splat_pattern, - STATE(1612), 1, + STATE(1032), 1, sym_primary_expression, + STATE(1322), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(2220), 2, + ACTIONS(701), 2, anon_sym_match, anon_sym_type, - STATE(1611), 2, - sym_attribute, - sym_subscript, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2218), 3, + ACTIONS(709), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(705), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(693), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -79779,49 +78786,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63354] = 16, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(668), 1, + [62547] = 16, + ACTIONS(739), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(749), 1, anon_sym_LBRACK, - ACTIONS(682), 1, + ACTIONS(753), 1, + anon_sym_LBRACE, + ACTIONS(757), 1, anon_sym_await, - ACTIONS(1433), 1, + ACTIONS(759), 1, + sym_string_start, + ACTIONS(1235), 1, anon_sym_STAR, - STATE(1010), 1, + STATE(1018), 1, sym_string, - STATE(1063), 1, + STATE(1100), 1, sym_primary_expression, - STATE(1342), 1, + STATE(1281), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(676), 2, + ACTIONS(745), 2, anon_sym_match, anon_sym_type, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(674), 3, + ACTIONS(755), 2, + sym_ellipsis, + sym_float, + ACTIONS(743), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 5, + ACTIONS(751), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(737), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1268), 16, + STATE(1347), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79838,55 +78845,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63429] = 18, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(668), 1, + [62622] = 16, + ACTIONS(739), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(749), 1, anon_sym_LBRACK, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(2150), 1, + ACTIONS(753), 1, + anon_sym_LBRACE, + ACTIONS(757), 1, anon_sym_await, - ACTIONS(2224), 1, - sym_identifier, - STATE(1010), 1, + ACTIONS(759), 1, + sym_string_start, + ACTIONS(1235), 1, + anon_sym_STAR, + STATE(1018), 1, sym_string, - STATE(1342), 1, - sym_list_splat_pattern, - STATE(1619), 1, + STATE(1101), 1, sym_primary_expression, + STATE(1281), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(2228), 2, + ACTIONS(745), 2, anon_sym_match, anon_sym_type, - STATE(1359), 2, - sym_attribute, - sym_subscript, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2226), 3, + ACTIONS(755), 2, + sym_ellipsis, + sym_float, + ACTIONS(743), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(751), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(737), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1347), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -79899,53 +78904,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63508] = 18, - ACTIONS(310), 1, + [62697] = 18, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(668), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(1433), 1, + ACTIONS(1413), 1, anon_sym_STAR, - ACTIONS(2150), 1, + ACTIONS(2118), 1, anon_sym_await, - ACTIONS(2230), 1, + ACTIONS(2130), 1, sym_identifier, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1342), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1618), 1, + STATE(1603), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(2148), 2, + ACTIONS(2134), 2, anon_sym_match, anon_sym_type, - STATE(1445), 2, + STATE(1320), 2, sym_attribute, sym_subscript, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2146), 3, + ACTIONS(2132), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1276), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -79960,49 +78965,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63587] = 16, - ACTIONS(801), 1, + [62776] = 16, + ACTIONS(695), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(703), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(817), 1, + ACTIONS(711), 1, anon_sym_await, - ACTIONS(819), 1, + ACTIONS(713), 1, sym_string_start, - ACTIONS(1333), 1, + ACTIONS(1325), 1, anon_sym_STAR, - STATE(1107), 1, + STATE(992), 1, sym_string, - STATE(1217), 1, + STATE(1019), 1, sym_primary_expression, - STATE(1437), 1, + STATE(1322), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(807), 2, + ACTIONS(701), 2, anon_sym_match, anon_sym_type, - ACTIONS(815), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(805), 3, + ACTIONS(699), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(811), 3, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(799), 5, + ACTIONS(693), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1442), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80019,49 +79024,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63662] = 16, - ACTIONS(711), 1, + [62851] = 16, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(681), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(685), 1, anon_sym_LBRACE, - ACTIONS(727), 1, + ACTIONS(689), 1, anon_sym_await, - ACTIONS(729), 1, + ACTIONS(691), 1, sym_string_start, - ACTIONS(1315), 1, + ACTIONS(981), 1, anon_sym_STAR, - STATE(1028), 1, + STATE(963), 1, sym_string, - STATE(1104), 1, + STATE(998), 1, sym_primary_expression, - STATE(1388), 1, + STATE(1223), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(717), 2, + ACTIONS(679), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 2, + ACTIONS(687), 2, sym_ellipsis, sym_float, - ACTIONS(715), 3, + ACTIONS(677), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(721), 3, + ACTIONS(683), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(709), 5, + ACTIONS(671), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1270), 16, + STATE(1198), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80078,49 +79083,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63737] = 16, - ACTIONS(711), 1, + [62926] = 16, + ACTIONS(695), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(703), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(727), 1, + ACTIONS(711), 1, anon_sym_await, - ACTIONS(729), 1, + ACTIONS(713), 1, sym_string_start, - ACTIONS(1315), 1, + ACTIONS(1325), 1, anon_sym_STAR, - STATE(1028), 1, + STATE(992), 1, sym_string, - STATE(1098), 1, + STATE(1034), 1, sym_primary_expression, - STATE(1388), 1, + STATE(1322), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(717), 2, + ACTIONS(701), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(715), 3, + ACTIONS(699), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(721), 3, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(709), 5, + ACTIONS(693), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1270), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80137,55 +79142,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63812] = 18, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(668), 1, + [63001] = 16, + ACTIONS(695), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(703), 1, anon_sym_LBRACK, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(2232), 1, - sym_identifier, - ACTIONS(2238), 1, + ACTIONS(707), 1, + anon_sym_LBRACE, + ACTIONS(711), 1, anon_sym_await, - STATE(1010), 1, + ACTIONS(713), 1, + sym_string_start, + ACTIONS(1325), 1, + anon_sym_STAR, + STATE(992), 1, sym_string, - STATE(1342), 1, - sym_list_splat_pattern, - STATE(1612), 1, + STATE(1035), 1, sym_primary_expression, + STATE(1322), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(2236), 2, + ACTIONS(701), 2, anon_sym_match, anon_sym_type, - STATE(1271), 2, - sym_attribute, - sym_subscript, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2234), 3, + ACTIONS(709), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(705), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(693), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -80198,49 +79201,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63891] = 16, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(668), 1, + [63076] = 16, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(681), 1, anon_sym_LBRACK, - ACTIONS(682), 1, + ACTIONS(685), 1, + anon_sym_LBRACE, + ACTIONS(689), 1, anon_sym_await, - ACTIONS(1433), 1, + ACTIONS(691), 1, + sym_string_start, + ACTIONS(981), 1, anon_sym_STAR, - STATE(1010), 1, + STATE(963), 1, sym_string, - STATE(1056), 1, + STATE(1015), 1, sym_primary_expression, - STATE(1342), 1, + STATE(1223), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(676), 2, + ACTIONS(679), 2, anon_sym_match, anon_sym_type, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(674), 3, + ACTIONS(687), 2, + sym_ellipsis, + sym_float, + ACTIONS(677), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 5, + ACTIONS(683), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(671), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1268), 16, + STATE(1198), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80257,49 +79260,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63966] = 16, - ACTIONS(711), 1, + [63151] = 16, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(681), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(685), 1, anon_sym_LBRACE, - ACTIONS(727), 1, + ACTIONS(689), 1, anon_sym_await, - ACTIONS(729), 1, + ACTIONS(691), 1, sym_string_start, - ACTIONS(1315), 1, + ACTIONS(981), 1, anon_sym_STAR, - STATE(1028), 1, + STATE(963), 1, sym_string, - STATE(1105), 1, + STATE(990), 1, sym_primary_expression, - STATE(1388), 1, + STATE(1223), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(717), 2, + ACTIONS(679), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 2, + ACTIONS(687), 2, sym_ellipsis, sym_float, - ACTIONS(715), 3, + ACTIONS(677), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(721), 3, + ACTIONS(683), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(709), 5, + ACTIONS(671), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1270), 16, + STATE(1198), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80316,49 +79319,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64041] = 16, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(668), 1, + [63226] = 16, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(681), 1, anon_sym_LBRACK, - ACTIONS(682), 1, + ACTIONS(685), 1, + anon_sym_LBRACE, + ACTIONS(689), 1, anon_sym_await, - ACTIONS(1433), 1, + ACTIONS(691), 1, + sym_string_start, + ACTIONS(981), 1, anon_sym_STAR, - STATE(1010), 1, + STATE(963), 1, sym_string, - STATE(1057), 1, + STATE(1014), 1, sym_primary_expression, - STATE(1342), 1, + STATE(1223), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(676), 2, + ACTIONS(679), 2, anon_sym_match, anon_sym_type, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(674), 3, + ACTIONS(687), 2, + sym_ellipsis, + sym_float, + ACTIONS(677), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 5, + ACTIONS(683), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(671), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1268), 16, + STATE(1198), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80375,49 +79378,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64116] = 16, - ACTIONS(779), 1, + [63301] = 16, + ACTIONS(739), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(749), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(753), 1, anon_sym_LBRACE, - ACTIONS(795), 1, + ACTIONS(757), 1, anon_sym_await, - ACTIONS(797), 1, + ACTIONS(759), 1, sym_string_start, - ACTIONS(1267), 1, + ACTIONS(1235), 1, anon_sym_STAR, - STATE(996), 1, + STATE(1018), 1, sym_string, - STATE(1083), 1, + STATE(1103), 1, sym_primary_expression, - STATE(1360), 1, + STATE(1281), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(785), 2, + ACTIONS(745), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 2, + ACTIONS(755), 2, sym_ellipsis, sym_float, - ACTIONS(783), 3, + ACTIONS(743), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(789), 3, + ACTIONS(751), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(777), 5, + ACTIONS(737), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1365), 16, + STATE(1347), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80434,49 +79437,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64191] = 16, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(649), 1, + [63376] = 16, + ACTIONS(695), 1, anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(703), 1, anon_sym_LBRACK, - ACTIONS(661), 1, + ACTIONS(707), 1, + anon_sym_LBRACE, + ACTIONS(711), 1, anon_sym_await, - ACTIONS(1303), 1, + ACTIONS(713), 1, + sym_string_start, + ACTIONS(1325), 1, anon_sym_STAR, - STATE(969), 1, + STATE(992), 1, sym_string, - STATE(986), 1, + STATE(1037), 1, sym_primary_expression, - STATE(1119), 1, + STATE(1322), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(655), 2, + ACTIONS(701), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(653), 3, + ACTIONS(709), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(705), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(693), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1035), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80493,53 +79496,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64266] = 18, - ACTIONS(310), 1, + [63451] = 18, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(668), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(1433), 1, + ACTIONS(1413), 1, anon_sym_STAR, - ACTIONS(2240), 1, + ACTIONS(2136), 1, sym_identifier, - ACTIONS(2246), 1, + ACTIONS(2142), 1, anon_sym_await, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1342), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1620), 1, + STATE(1601), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(2244), 2, + ACTIONS(2140), 2, anon_sym_match, anon_sym_type, - STATE(1233), 2, + STATE(1240), 2, sym_attribute, sym_subscript, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2242), 3, + ACTIONS(2138), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1276), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -80554,49 +79557,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64345] = 16, - ACTIONS(779), 1, + [63530] = 16, + ACTIONS(739), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(749), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(753), 1, anon_sym_LBRACE, - ACTIONS(795), 1, + ACTIONS(757), 1, anon_sym_await, - ACTIONS(797), 1, + ACTIONS(759), 1, sym_string_start, - ACTIONS(1267), 1, + ACTIONS(1235), 1, anon_sym_STAR, - STATE(996), 1, + STATE(1018), 1, sym_string, - STATE(1084), 1, + STATE(1105), 1, sym_primary_expression, - STATE(1360), 1, + STATE(1281), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(785), 2, + ACTIONS(745), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 2, + ACTIONS(755), 2, sym_ellipsis, sym_float, - ACTIONS(783), 3, + ACTIONS(743), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(789), 3, + ACTIONS(751), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(777), 5, + ACTIONS(737), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1365), 16, + STATE(1347), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80613,49 +79616,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64420] = 16, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(668), 1, + [63605] = 16, + ACTIONS(739), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(749), 1, anon_sym_LBRACK, - ACTIONS(682), 1, + ACTIONS(753), 1, + anon_sym_LBRACE, + ACTIONS(757), 1, anon_sym_await, - ACTIONS(1433), 1, + ACTIONS(759), 1, + sym_string_start, + ACTIONS(1235), 1, anon_sym_STAR, - STATE(1010), 1, + STATE(1018), 1, sym_string, - STATE(1058), 1, + STATE(1062), 1, sym_primary_expression, - STATE(1342), 1, + STATE(1281), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(676), 2, + ACTIONS(745), 2, anon_sym_match, anon_sym_type, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(674), 3, + ACTIONS(755), 2, + sym_ellipsis, + sym_float, + ACTIONS(743), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 5, + ACTIONS(751), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(737), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1268), 16, + STATE(1347), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80672,55 +79675,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64495] = 18, - ACTIONS(310), 1, + [63680] = 16, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(668), 1, + ACTIONS(633), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(641), 1, anon_sym_LBRACK, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(2248), 1, - sym_identifier, - ACTIONS(2254), 1, + ACTIONS(645), 1, anon_sym_await, - STATE(1010), 1, + ACTIONS(1293), 1, + anon_sym_STAR, + STATE(954), 1, sym_string, - STATE(1342), 1, - sym_list_splat_pattern, - STATE(1616), 1, + STATE(968), 1, sym_primary_expression, + STATE(1046), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(2252), 2, + ACTIONS(639), 2, anon_sym_match, anon_sym_type, - STATE(1476), 2, - sym_attribute, - sym_subscript, - ACTIONS(315), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2250), 3, + ACTIONS(637), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(77), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1063), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -80733,53 +79734,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64574] = 16, - ACTIONS(310), 1, + [63755] = 18, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(668), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(682), 1, - anon_sym_await, - ACTIONS(1433), 1, + ACTIONS(1413), 1, anon_sym_STAR, - STATE(1010), 1, + ACTIONS(2144), 1, + sym_identifier, + ACTIONS(2150), 1, + anon_sym_await, + STATE(975), 1, sym_string, - STATE(1059), 1, - sym_primary_expression, - STATE(1342), 1, + STATE(1333), 1, sym_list_splat_pattern, + STATE(1608), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(676), 2, + ACTIONS(2148), 2, anon_sym_match, anon_sym_type, - ACTIONS(315), 3, + STATE(1420), 2, + sym_attribute, + sym_subscript, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(674), 3, + ACTIONS(2146), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 5, + ACTIONS(315), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1268), 16, + STATE(1276), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -80792,49 +79795,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64649] = 16, - ACTIONS(801), 1, + [63834] = 16, + ACTIONS(695), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(703), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(707), 1, anon_sym_LBRACE, - ACTIONS(817), 1, + ACTIONS(711), 1, anon_sym_await, - ACTIONS(819), 1, + ACTIONS(713), 1, sym_string_start, - ACTIONS(1333), 1, + ACTIONS(1325), 1, anon_sym_STAR, - STATE(1107), 1, + STATE(992), 1, sym_string, - STATE(1223), 1, + STATE(1021), 1, sym_primary_expression, - STATE(1437), 1, + STATE(1322), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(807), 2, + ACTIONS(701), 2, anon_sym_match, anon_sym_type, - ACTIONS(815), 2, + ACTIONS(709), 2, sym_ellipsis, sym_float, - ACTIONS(805), 3, + ACTIONS(699), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(811), 3, + ACTIONS(705), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(799), 5, + ACTIONS(693), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1442), 16, + STATE(1384), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80851,49 +79854,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64724] = 16, - ACTIONS(801), 1, + [63909] = 16, + ACTIONS(739), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(749), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(753), 1, anon_sym_LBRACE, - ACTIONS(817), 1, + ACTIONS(757), 1, anon_sym_await, - ACTIONS(819), 1, + ACTIONS(759), 1, sym_string_start, - ACTIONS(1333), 1, + ACTIONS(1235), 1, anon_sym_STAR, - STATE(1107), 1, + STATE(1018), 1, sym_string, - STATE(1224), 1, + STATE(1106), 1, sym_primary_expression, - STATE(1437), 1, + STATE(1281), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(807), 2, + ACTIONS(745), 2, anon_sym_match, anon_sym_type, - ACTIONS(815), 2, + ACTIONS(755), 2, sym_ellipsis, sym_float, - ACTIONS(805), 3, + ACTIONS(743), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(811), 3, + ACTIONS(751), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(799), 5, + ACTIONS(737), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1442), 16, + STATE(1347), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80910,53 +79913,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64799] = 16, - ACTIONS(779), 1, - anon_sym_LPAREN, - ACTIONS(787), 1, - anon_sym_LBRACK, - ACTIONS(791), 1, + [63984] = 18, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(795), 1, - anon_sym_await, - ACTIONS(797), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(1267), 1, + ACTIONS(652), 1, + anon_sym_LPAREN, + ACTIONS(662), 1, + anon_sym_LBRACK, + ACTIONS(1413), 1, anon_sym_STAR, - STATE(996), 1, + ACTIONS(2150), 1, + anon_sym_await, + ACTIONS(2152), 1, + sym_identifier, + STATE(975), 1, sym_string, - STATE(1085), 1, - sym_primary_expression, - STATE(1360), 1, + STATE(1333), 1, sym_list_splat_pattern, + STATE(1609), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(785), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(793), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(783), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(789), 3, + ACTIONS(2156), 2, + anon_sym_match, + anon_sym_type, + STATE(1325), 2, + sym_attribute, + sym_subscript, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(777), 5, + ACTIONS(2154), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(315), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1365), 16, + STATE(1276), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -80969,49 +79974,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64874] = 16, - ACTIONS(755), 1, + [64063] = 16, + ACTIONS(763), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(771), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(775), 1, anon_sym_LBRACE, - ACTIONS(773), 1, + ACTIONS(779), 1, anon_sym_await, - ACTIONS(775), 1, + ACTIONS(781), 1, sym_string_start, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_STAR, - STATE(1015), 1, + STATE(1038), 1, sym_string, - STATE(1121), 1, + STATE(1225), 1, sym_primary_expression, - STATE(1258), 1, + STATE(1437), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(761), 2, + ACTIONS(769), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 2, + ACTIONS(777), 2, sym_ellipsis, sym_float, - ACTIONS(759), 3, + ACTIONS(767), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(767), 3, + ACTIONS(773), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(753), 5, + ACTIONS(761), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1367), 16, + STATE(1435), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81028,53 +80033,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64949] = 16, - ACTIONS(310), 1, + [64138] = 18, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(668), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(682), 1, - anon_sym_await, - ACTIONS(1433), 1, + ACTIONS(1413), 1, anon_sym_STAR, - STATE(1010), 1, + ACTIONS(2158), 1, + sym_identifier, + ACTIONS(2164), 1, + anon_sym_await, + STATE(975), 1, sym_string, - STATE(1060), 1, - sym_primary_expression, - STATE(1342), 1, + STATE(1333), 1, sym_list_splat_pattern, + STATE(1602), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(676), 2, + ACTIONS(2162), 2, anon_sym_match, anon_sym_type, - ACTIONS(315), 3, + STATE(1048), 2, + sym_attribute, + sym_subscript, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(674), 3, + ACTIONS(2160), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 5, + ACTIONS(315), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1268), 16, + STATE(1276), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -81087,53 +80094,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65024] = 16, - ACTIONS(67), 1, + [64217] = 18, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(649), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(661), 1, - anon_sym_await, - ACTIONS(1303), 1, + ACTIONS(1413), 1, anon_sym_STAR, - STATE(969), 1, + ACTIONS(2102), 1, + anon_sym_await, + ACTIONS(2166), 1, + sym_identifier, + STATE(975), 1, sym_string, - STATE(983), 1, - sym_primary_expression, - STATE(1119), 1, + STATE(1333), 1, sym_list_splat_pattern, + STATE(1600), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(655), 2, + ACTIONS(2100), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + STATE(650), 2, + sym_attribute, + sym_subscript, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(653), 3, + ACTIONS(2098), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(315), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1035), 16, + STATE(1276), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -81146,49 +80155,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65099] = 16, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(668), 1, + [64296] = 16, + ACTIONS(717), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(725), 1, anon_sym_LBRACK, - ACTIONS(682), 1, + ACTIONS(729), 1, + anon_sym_LBRACE, + ACTIONS(733), 1, anon_sym_await, - ACTIONS(1433), 1, + ACTIONS(735), 1, + sym_string_start, + ACTIONS(1251), 1, anon_sym_STAR, - STATE(1010), 1, + STATE(957), 1, sym_string, - STATE(1061), 1, + STATE(981), 1, sym_primary_expression, - STATE(1342), 1, + STATE(1164), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(676), 2, + ACTIONS(723), 2, anon_sym_match, anon_sym_type, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(674), 3, + ACTIONS(731), 2, + sym_ellipsis, + sym_float, + ACTIONS(721), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 5, + ACTIONS(727), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(715), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1268), 16, + STATE(1149), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81205,49 +80214,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65174] = 16, - ACTIONS(686), 1, + [64371] = 16, + ACTIONS(717), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(725), 1, anon_sym_LBRACK, - ACTIONS(698), 1, + ACTIONS(729), 1, anon_sym_LBRACE, - ACTIONS(702), 1, + ACTIONS(733), 1, anon_sym_await, - ACTIONS(704), 1, + ACTIONS(735), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(1251), 1, anon_sym_STAR, - STATE(975), 1, + STATE(957), 1, sym_string, - STATE(1021), 1, + STATE(982), 1, sym_primary_expression, - STATE(1214), 1, + STATE(1164), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(692), 2, + ACTIONS(723), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 2, + ACTIONS(731), 2, sym_ellipsis, sym_float, - ACTIONS(690), 3, + ACTIONS(721), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(696), 3, + ACTIONS(727), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(684), 5, + ACTIONS(715), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1172), 16, + STATE(1149), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81264,49 +80273,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65249] = 16, - ACTIONS(686), 1, + [64446] = 16, + ACTIONS(717), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(725), 1, anon_sym_LBRACK, - ACTIONS(698), 1, + ACTIONS(729), 1, anon_sym_LBRACE, - ACTIONS(702), 1, + ACTIONS(733), 1, anon_sym_await, - ACTIONS(704), 1, + ACTIONS(735), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(1251), 1, anon_sym_STAR, - STATE(975), 1, + STATE(957), 1, sym_string, - STATE(1025), 1, + STATE(972), 1, sym_primary_expression, - STATE(1214), 1, + STATE(1164), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(692), 2, + ACTIONS(723), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 2, + ACTIONS(731), 2, sym_ellipsis, sym_float, - ACTIONS(690), 3, + ACTIONS(721), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(696), 3, + ACTIONS(727), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(684), 5, + ACTIONS(715), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1172), 16, + STATE(1149), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81323,49 +80332,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65324] = 16, - ACTIONS(686), 1, + [64521] = 16, + ACTIONS(717), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(725), 1, anon_sym_LBRACK, - ACTIONS(698), 1, + ACTIONS(729), 1, anon_sym_LBRACE, - ACTIONS(702), 1, + ACTIONS(733), 1, anon_sym_await, - ACTIONS(704), 1, + ACTIONS(735), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(1251), 1, anon_sym_STAR, - STATE(975), 1, + STATE(957), 1, sym_string, - STATE(1031), 1, + STATE(984), 1, sym_primary_expression, - STATE(1214), 1, + STATE(1164), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(692), 2, + ACTIONS(723), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 2, + ACTIONS(731), 2, sym_ellipsis, sym_float, - ACTIONS(690), 3, + ACTIONS(721), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(696), 3, + ACTIONS(727), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(684), 5, + ACTIONS(715), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1172), 16, + STATE(1149), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81382,49 +80391,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65399] = 16, - ACTIONS(801), 1, + [64596] = 16, + ACTIONS(717), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(725), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(729), 1, anon_sym_LBRACE, - ACTIONS(817), 1, + ACTIONS(733), 1, anon_sym_await, - ACTIONS(819), 1, + ACTIONS(735), 1, sym_string_start, - ACTIONS(1333), 1, + ACTIONS(1251), 1, anon_sym_STAR, - STATE(1107), 1, + STATE(957), 1, sym_string, - STATE(1225), 1, + STATE(985), 1, sym_primary_expression, - STATE(1437), 1, + STATE(1164), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(807), 2, + ACTIONS(723), 2, anon_sym_match, anon_sym_type, - ACTIONS(815), 2, + ACTIONS(731), 2, sym_ellipsis, sym_float, - ACTIONS(805), 3, + ACTIONS(721), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(811), 3, + ACTIONS(727), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(799), 5, + ACTIONS(715), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1442), 16, + STATE(1149), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81441,53 +80450,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65474] = 16, - ACTIONS(686), 1, - anon_sym_LPAREN, - ACTIONS(694), 1, - anon_sym_LBRACK, - ACTIONS(698), 1, + [64671] = 18, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(702), 1, - anon_sym_await, - ACTIONS(704), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(652), 1, + anon_sym_LPAREN, + ACTIONS(662), 1, + anon_sym_LBRACK, + ACTIONS(1413), 1, anon_sym_STAR, + ACTIONS(2110), 1, + anon_sym_await, + ACTIONS(2168), 1, + sym_identifier, STATE(975), 1, sym_string, - STATE(1007), 1, - sym_primary_expression, - STATE(1214), 1, + STATE(1333), 1, sym_list_splat_pattern, + STATE(1604), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(692), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(700), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(690), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(696), 3, + ACTIONS(2172), 2, + anon_sym_match, + anon_sym_type, + STATE(1139), 2, + sym_attribute, + sym_subscript, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(684), 5, + ACTIONS(2170), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(315), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1172), 16, + STATE(1276), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -81500,53 +80511,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65549] = 18, - ACTIONS(310), 1, + [64750] = 18, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(668), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(1433), 1, + ACTIONS(1413), 1, anon_sym_STAR, - ACTIONS(2238), 1, - anon_sym_await, - ACTIONS(2256), 1, + ACTIONS(2174), 1, sym_identifier, - STATE(1010), 1, + ACTIONS(2180), 1, + anon_sym_await, + STATE(975), 1, sym_string, - STATE(1342), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1612), 1, + STATE(1605), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(2236), 2, + ACTIONS(2178), 2, anon_sym_match, anon_sym_type, - STATE(1271), 2, + STATE(1456), 2, sym_attribute, sym_subscript, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2234), 3, + ACTIONS(2176), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1276), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -81561,49 +80572,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65628] = 16, - ACTIONS(686), 1, + [64829] = 16, + ACTIONS(717), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(725), 1, anon_sym_LBRACK, - ACTIONS(698), 1, + ACTIONS(729), 1, anon_sym_LBRACE, - ACTIONS(702), 1, + ACTIONS(733), 1, anon_sym_await, - ACTIONS(704), 1, + ACTIONS(735), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(1251), 1, anon_sym_STAR, - STATE(975), 1, + STATE(957), 1, sym_string, - STATE(994), 1, + STATE(986), 1, sym_primary_expression, - STATE(1214), 1, + STATE(1164), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(692), 2, + ACTIONS(723), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 2, + ACTIONS(731), 2, sym_ellipsis, sym_float, - ACTIONS(690), 3, + ACTIONS(721), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(696), 3, + ACTIONS(727), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(684), 5, + ACTIONS(715), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1172), 16, + STATE(1149), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81620,55 +80631,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65703] = 18, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(668), 1, + [64904] = 16, + ACTIONS(717), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(725), 1, anon_sym_LBRACK, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(2246), 1, + ACTIONS(729), 1, + anon_sym_LBRACE, + ACTIONS(733), 1, anon_sym_await, - ACTIONS(2258), 1, - sym_identifier, - STATE(1010), 1, + ACTIONS(735), 1, + sym_string_start, + ACTIONS(1251), 1, + anon_sym_STAR, + STATE(957), 1, sym_string, - STATE(1342), 1, - sym_list_splat_pattern, - STATE(1589), 1, + STATE(987), 1, sym_primary_expression, + STATE(1164), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(2262), 2, + ACTIONS(723), 2, anon_sym_match, anon_sym_type, - STATE(1213), 2, - sym_attribute, - sym_subscript, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2260), 3, + ACTIONS(731), 2, + sym_ellipsis, + sym_float, + ACTIONS(721), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(727), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(715), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1149), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -81681,49 +80690,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65782] = 16, - ACTIONS(686), 1, + [64979] = 16, + ACTIONS(717), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(725), 1, anon_sym_LBRACK, - ACTIONS(698), 1, + ACTIONS(729), 1, anon_sym_LBRACE, - ACTIONS(702), 1, + ACTIONS(733), 1, anon_sym_await, - ACTIONS(704), 1, + ACTIONS(735), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(1251), 1, anon_sym_STAR, - STATE(975), 1, + STATE(957), 1, sym_string, - STATE(1024), 1, + STATE(988), 1, sym_primary_expression, - STATE(1214), 1, + STATE(1164), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(692), 2, + ACTIONS(723), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 2, + ACTIONS(731), 2, sym_ellipsis, sym_float, - ACTIONS(690), 3, + ACTIONS(721), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(696), 3, + ACTIONS(727), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(684), 5, + ACTIONS(715), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1172), 16, + STATE(1149), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81740,53 +80749,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65857] = 16, - ACTIONS(686), 1, - anon_sym_LPAREN, - ACTIONS(694), 1, - anon_sym_LBRACK, - ACTIONS(698), 1, + [65054] = 18, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(702), 1, - anon_sym_await, - ACTIONS(704), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(652), 1, + anon_sym_LPAREN, + ACTIONS(662), 1, + anon_sym_LBRACK, + ACTIONS(1413), 1, anon_sym_STAR, + ACTIONS(2182), 1, + sym_identifier, + ACTIONS(2188), 1, + anon_sym_await, STATE(975), 1, sym_string, - STATE(1011), 1, - sym_primary_expression, - STATE(1214), 1, + STATE(1333), 1, sym_list_splat_pattern, + STATE(1603), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(692), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(700), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(690), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(696), 3, + ACTIONS(2186), 2, + anon_sym_match, + anon_sym_type, + STATE(1565), 2, + sym_attribute, + sym_subscript, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(684), 5, + ACTIONS(2184), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(315), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1172), 16, + STATE(1276), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -81799,49 +80810,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65932] = 16, - ACTIONS(779), 1, + [65133] = 16, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(633), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(641), 1, anon_sym_LBRACK, - ACTIONS(791), 1, - anon_sym_LBRACE, - ACTIONS(795), 1, + ACTIONS(645), 1, anon_sym_await, - ACTIONS(797), 1, - sym_string_start, - ACTIONS(1267), 1, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(996), 1, + STATE(954), 1, sym_string, - STATE(1075), 1, + STATE(969), 1, sym_primary_expression, - STATE(1360), 1, + STATE(1046), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(785), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(793), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(783), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(789), 3, + ACTIONS(639), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(777), 5, + ACTIONS(637), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1365), 16, + STATE(1063), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81858,24 +80869,24 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66007] = 16, + [65208] = 16, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(81), 1, sym_string_start, - ACTIONS(649), 1, + ACTIONS(633), 1, anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(641), 1, anon_sym_LBRACK, - ACTIONS(661), 1, + ACTIONS(645), 1, anon_sym_await, - ACTIONS(1303), 1, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(969), 1, + STATE(954), 1, sym_string, - STATE(985), 1, + STATE(971), 1, sym_primary_expression, - STATE(1119), 1, + STATE(1046), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -81883,14 +80894,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(655), 2, + ACTIONS(639), 2, anon_sym_match, anon_sym_type, ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(653), 3, + ACTIONS(637), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -81900,7 +80911,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1035), 16, + STATE(1063), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81917,49 +80928,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66082] = 16, - ACTIONS(686), 1, + [65283] = 16, + ACTIONS(739), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(749), 1, anon_sym_LBRACK, - ACTIONS(698), 1, + ACTIONS(753), 1, anon_sym_LBRACE, - ACTIONS(702), 1, + ACTIONS(757), 1, anon_sym_await, - ACTIONS(704), 1, + ACTIONS(759), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(1235), 1, anon_sym_STAR, - STATE(975), 1, + STATE(1018), 1, sym_string, - STATE(1012), 1, + STATE(1107), 1, sym_primary_expression, - STATE(1214), 1, + STATE(1281), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(692), 2, + ACTIONS(745), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 2, + ACTIONS(755), 2, sym_ellipsis, sym_float, - ACTIONS(690), 3, + ACTIONS(743), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(696), 3, + ACTIONS(751), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(684), 5, + ACTIONS(737), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1172), 16, + STATE(1347), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81976,49 +80987,113 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66157] = 16, - ACTIONS(801), 1, + [65358] = 21, + ACTIONS(2076), 1, + anon_sym_EQ, + ACTIONS(2086), 1, + anon_sym_not, + ACTIONS(2190), 1, + anon_sym_DOT, + ACTIONS(2192), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(2200), 1, + anon_sym_STAR_STAR, + ACTIONS(2202), 1, + anon_sym_LBRACK, + ACTIONS(2208), 1, + anon_sym_PIPE, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_CARET, + ACTIONS(2214), 1, + anon_sym_is, + STATE(1549), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2194), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2196), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2206), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2216), 2, + anon_sym_LT, + anon_sym_GT, + STATE(945), 2, + sym__not_in, + sym__is_not, + STATE(1216), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2204), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2198), 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(2062), 8, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + sym_type_conversion, + [65443] = 16, + ACTIONS(739), 1, + anon_sym_LPAREN, + ACTIONS(749), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(753), 1, anon_sym_LBRACE, - ACTIONS(817), 1, + ACTIONS(757), 1, anon_sym_await, - ACTIONS(819), 1, + ACTIONS(759), 1, sym_string_start, - ACTIONS(1333), 1, + ACTIONS(1235), 1, anon_sym_STAR, - STATE(1107), 1, + STATE(1018), 1, sym_string, - STATE(1226), 1, + STATE(1117), 1, sym_primary_expression, - STATE(1437), 1, + STATE(1281), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(807), 2, + ACTIONS(745), 2, anon_sym_match, anon_sym_type, - ACTIONS(815), 2, + ACTIONS(755), 2, sym_ellipsis, sym_float, - ACTIONS(805), 3, + ACTIONS(743), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(811), 3, + ACTIONS(751), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(799), 5, + ACTIONS(737), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1442), 16, + STATE(1347), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82035,49 +81110,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66232] = 16, - ACTIONS(801), 1, + [65518] = 16, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(633), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(641), 1, anon_sym_LBRACK, - ACTIONS(813), 1, - anon_sym_LBRACE, - ACTIONS(817), 1, + ACTIONS(645), 1, anon_sym_await, - ACTIONS(819), 1, - sym_string_start, - ACTIONS(1333), 1, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(1107), 1, + STATE(954), 1, sym_string, - STATE(1227), 1, + STATE(965), 1, sym_primary_expression, - STATE(1437), 1, + STATE(1046), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(807), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(815), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(805), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(811), 3, + ACTIONS(639), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(799), 5, + ACTIONS(637), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1442), 16, + STATE(1063), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82094,53 +81169,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66307] = 16, - ACTIONS(779), 1, - anon_sym_LPAREN, - ACTIONS(787), 1, - anon_sym_LBRACK, - ACTIONS(791), 1, + [65593] = 18, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(795), 1, - anon_sym_await, - ACTIONS(797), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(1267), 1, + ACTIONS(652), 1, + anon_sym_LPAREN, + ACTIONS(662), 1, + anon_sym_LBRACK, + ACTIONS(1413), 1, anon_sym_STAR, - STATE(996), 1, + ACTIONS(2142), 1, + anon_sym_await, + ACTIONS(2218), 1, + sym_identifier, + STATE(975), 1, sym_string, - STATE(1086), 1, - sym_primary_expression, - STATE(1360), 1, + STATE(1333), 1, sym_list_splat_pattern, + STATE(1601), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(785), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(793), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(783), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(789), 3, + ACTIONS(2140), 2, + anon_sym_match, + anon_sym_type, + STATE(1240), 2, + sym_attribute, + sym_subscript, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(777), 5, + ACTIONS(2138), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(315), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1365), 16, + STATE(1276), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -82153,53 +81230,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66382] = 18, - ACTIONS(310), 1, + [65672] = 18, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(668), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(1433), 1, + ACTIONS(1413), 1, anon_sym_STAR, - ACTIONS(2126), 1, + ACTIONS(2164), 1, anon_sym_await, - ACTIONS(2264), 1, + ACTIONS(2220), 1, sym_identifier, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1342), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1617), 1, + STATE(1602), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(2124), 2, + ACTIONS(2162), 2, anon_sym_match, anon_sym_type, - STATE(1350), 2, + STATE(1048), 2, sym_attribute, sym_subscript, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2122), 3, + ACTIONS(2160), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1276), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -82214,49 +81291,108 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66461] = 16, - ACTIONS(801), 1, + [65751] = 16, + ACTIONS(302), 1, + anon_sym_LBRACE, + ACTIONS(319), 1, + sym_string_start, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(662), 1, + anon_sym_LBRACK, + ACTIONS(666), 1, + anon_sym_await, + ACTIONS(1413), 1, + anon_sym_STAR, + STATE(975), 1, + sym_string, + STATE(1088), 1, + sym_primary_expression, + STATE(1333), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(313), 2, + sym_ellipsis, + sym_float, + ACTIONS(660), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(307), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(658), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(315), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1276), 16, + 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_await, + [65826] = 16, + ACTIONS(739), 1, + anon_sym_LPAREN, + ACTIONS(749), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(753), 1, anon_sym_LBRACE, - ACTIONS(817), 1, + ACTIONS(757), 1, anon_sym_await, - ACTIONS(819), 1, + ACTIONS(759), 1, sym_string_start, - ACTIONS(1333), 1, + ACTIONS(1235), 1, anon_sym_STAR, - STATE(1107), 1, + STATE(1018), 1, sym_string, - STATE(1228), 1, + STATE(1071), 1, sym_primary_expression, - STATE(1437), 1, + STATE(1281), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(807), 2, + ACTIONS(745), 2, anon_sym_match, anon_sym_type, - ACTIONS(815), 2, + ACTIONS(755), 2, sym_ellipsis, sym_float, - ACTIONS(805), 3, + ACTIONS(743), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(811), 3, + ACTIONS(751), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(799), 5, + ACTIONS(737), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1442), 16, + STATE(1347), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82273,49 +81409,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66536] = 16, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(668), 1, + [65901] = 16, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(681), 1, anon_sym_LBRACK, - ACTIONS(682), 1, + ACTIONS(685), 1, + anon_sym_LBRACE, + ACTIONS(689), 1, anon_sym_await, - ACTIONS(1433), 1, + ACTIONS(691), 1, + sym_string_start, + ACTIONS(981), 1, anon_sym_STAR, - STATE(1010), 1, + STATE(963), 1, sym_string, - STATE(1062), 1, + STATE(989), 1, sym_primary_expression, - STATE(1342), 1, + STATE(1223), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(676), 2, + ACTIONS(679), 2, anon_sym_match, anon_sym_type, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(674), 3, + ACTIONS(687), 2, + sym_ellipsis, + sym_float, + ACTIONS(677), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 5, + ACTIONS(683), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(671), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1268), 16, + STATE(1198), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82332,49 +81468,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66611] = 16, - ACTIONS(711), 1, + [65976] = 16, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(681), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(685), 1, anon_sym_LBRACE, - ACTIONS(727), 1, + ACTIONS(689), 1, anon_sym_await, - ACTIONS(729), 1, + ACTIONS(691), 1, sym_string_start, - ACTIONS(1315), 1, + ACTIONS(981), 1, anon_sym_STAR, - STATE(1028), 1, + STATE(963), 1, sym_string, - STATE(1099), 1, + STATE(1009), 1, sym_primary_expression, - STATE(1388), 1, + STATE(1223), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(717), 2, + ACTIONS(679), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 2, + ACTIONS(687), 2, sym_ellipsis, sym_float, - ACTIONS(715), 3, + ACTIONS(677), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(721), 3, + ACTIONS(683), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(709), 5, + ACTIONS(671), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1270), 16, + STATE(1198), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82391,53 +81527,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66686] = 18, - ACTIONS(310), 1, + [66051] = 18, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(668), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(1433), 1, + ACTIONS(1413), 1, anon_sym_STAR, - ACTIONS(2246), 1, - anon_sym_await, - ACTIONS(2258), 1, + ACTIONS(2104), 1, sym_identifier, - STATE(1010), 1, + ACTIONS(2110), 1, + anon_sym_await, + STATE(975), 1, sym_string, - STATE(1342), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1620), 1, + STATE(1604), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(2262), 2, + ACTIONS(2108), 2, anon_sym_match, anon_sym_type, - STATE(1213), 2, + STATE(1217), 2, sym_attribute, sym_subscript, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2260), 3, + ACTIONS(2106), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1276), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -82452,53 +81588,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66765] = 18, - ACTIONS(310), 1, + [66130] = 18, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(668), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(1433), 1, + ACTIONS(1413), 1, anon_sym_STAR, - ACTIONS(2120), 1, - sym_identifier, - ACTIONS(2126), 1, + ACTIONS(2118), 1, anon_sym_await, - STATE(1010), 1, + ACTIONS(2128), 1, + sym_identifier, + STATE(975), 1, sym_string, - STATE(1342), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1615), 1, + STATE(1603), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(2124), 2, + ACTIONS(2116), 2, anon_sym_match, anon_sym_type, - STATE(1350), 2, + STATE(1308), 2, sym_attribute, sym_subscript, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2122), 3, + ACTIONS(2114), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1276), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -82513,40 +81649,40 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66844] = 18, - ACTIONS(310), 1, + [66209] = 18, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(668), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(1433), 1, + ACTIONS(1413), 1, anon_sym_STAR, ACTIONS(2144), 1, sym_identifier, ACTIONS(2150), 1, anon_sym_await, - STATE(1010), 1, + STATE(975), 1, sym_string, - STATE(1342), 1, + STATE(1333), 1, sym_list_splat_pattern, - STATE(1619), 1, + STATE(1609), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, ACTIONS(2148), 2, anon_sym_match, anon_sym_type, - STATE(1445), 2, + STATE(1420), 2, sym_attribute, sym_subscript, - ACTIONS(315), 3, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -82554,12 +81690,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(315), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1276), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -82574,53 +81710,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66923] = 16, - ACTIONS(733), 1, - anon_sym_LPAREN, - ACTIONS(741), 1, - anon_sym_LBRACK, - ACTIONS(745), 1, + [66288] = 18, + ACTIONS(302), 1, anon_sym_LBRACE, - ACTIONS(749), 1, - anon_sym_await, - ACTIONS(751), 1, + ACTIONS(319), 1, sym_string_start, - ACTIONS(1287), 1, + ACTIONS(652), 1, + anon_sym_LPAREN, + ACTIONS(662), 1, + anon_sym_LBRACK, + ACTIONS(1413), 1, anon_sym_STAR, - STATE(971), 1, + ACTIONS(2150), 1, + anon_sym_await, + ACTIONS(2222), 1, + sym_identifier, + STATE(975), 1, sym_string, - STATE(999), 1, - sym_primary_expression, - STATE(1203), 1, + STATE(1333), 1, sym_list_splat_pattern, + STATE(1608), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(739), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(747), 2, + ACTIONS(313), 2, sym_ellipsis, sym_float, - ACTIONS(737), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(743), 3, + ACTIONS(2148), 2, + anon_sym_match, + anon_sym_type, + STATE(1420), 2, + sym_attribute, + sym_subscript, + ACTIONS(307), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(731), 5, + ACTIONS(2146), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(315), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1138), 16, + STATE(1276), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -82633,55 +81771,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66998] = 18, - ACTIONS(310), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(668), 1, + [66367] = 16, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(681), 1, anon_sym_LBRACK, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(2158), 1, + ACTIONS(685), 1, + anon_sym_LBRACE, + ACTIONS(689), 1, anon_sym_await, - ACTIONS(2266), 1, - sym_identifier, - STATE(1010), 1, + ACTIONS(691), 1, + sym_string_start, + ACTIONS(981), 1, + anon_sym_STAR, + STATE(963), 1, sym_string, - STATE(1342), 1, - sym_list_splat_pattern, - STATE(1614), 1, + STATE(997), 1, sym_primary_expression, + STATE(1223), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(321), 2, - sym_ellipsis, - sym_float, - ACTIONS(2156), 2, + ACTIONS(679), 2, anon_sym_match, anon_sym_type, - STATE(1071), 2, - sym_attribute, - sym_subscript, - ACTIONS(315), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2154), 3, + ACTIONS(687), 2, + sym_ellipsis, + sym_float, + ACTIONS(677), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(323), 4, + ACTIONS(683), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(671), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1268), 14, + STATE(1198), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -82694,62 +81830,126 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [67077] = 21, - ACTIONS(2092), 1, + [66442] = 21, + ACTIONS(2076), 1, anon_sym_as, - ACTIONS(2102), 1, + ACTIONS(2086), 1, anon_sym_not, - ACTIONS(2268), 1, + ACTIONS(2224), 1, anon_sym_DOT, - ACTIONS(2270), 1, + ACTIONS(2226), 1, anon_sym_LPAREN, - ACTIONS(2278), 1, + ACTIONS(2234), 1, anon_sym_STAR_STAR, - ACTIONS(2280), 1, + ACTIONS(2236), 1, anon_sym_LBRACK, - ACTIONS(2286), 1, + ACTIONS(2242), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2244), 1, + anon_sym_AMP, + ACTIONS(2246), 1, + anon_sym_CARET, + ACTIONS(2248), 1, + anon_sym_is, + STATE(1547), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2228), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2230), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2240), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2250), 2, + anon_sym_LT, + anon_sym_GT, + STATE(920), 2, + sym__not_in, + sym__is_not, + STATE(1167), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2238), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2232), 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(2062), 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, + [66527] = 21, + ACTIONS(2076), 1, + anon_sym_as, + ACTIONS(2086), 1, + anon_sym_not, + ACTIONS(2252), 1, + anon_sym_DOT, + ACTIONS(2254), 1, + anon_sym_LPAREN, + ACTIONS(2262), 1, + anon_sym_STAR_STAR, + ACTIONS(2264), 1, + anon_sym_LBRACK, + ACTIONS(2270), 1, + anon_sym_PIPE, + ACTIONS(2272), 1, anon_sym_AMP, - ACTIONS(2290), 1, + ACTIONS(2274), 1, anon_sym_CARET, - ACTIONS(2292), 1, + ACTIONS(2276), 1, anon_sym_is, - STATE(1571), 1, + STATE(1556), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2272), 2, + ACTIONS(2256), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2274), 2, + ACTIONS(2258), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2284), 2, + ACTIONS(2268), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2294), 2, + ACTIONS(2278), 2, anon_sym_LT, anon_sym_GT, - STATE(889), 2, + STATE(905), 2, sym__not_in, sym__is_not, - STATE(1389), 2, + STATE(1356), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2282), 3, + ACTIONS(2266), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2276), 6, + ACTIONS(2260), 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(2078), 7, + ACTIONS(2062), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -82757,22 +81957,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_and, anon_sym_or, - [67161] = 5, + [66611] = 5, ACTIONS(81), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(968), 2, + STATE(949), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2282), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2280), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + 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_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [66663] = 5, + ACTIONS(2288), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(949), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2298), 5, + ACTIONS(2286), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2296), 31, + ACTIONS(2284), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -82804,187 +82051,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67213] = 21, - ACTIONS(2092), 1, - anon_sym_as, - ACTIONS(2102), 1, - anon_sym_not, - ACTIONS(2300), 1, - anon_sym_DOT, - ACTIONS(2302), 1, + [66715] = 20, + ACTIONS(2066), 1, anon_sym_LPAREN, - ACTIONS(2310), 1, + ACTIONS(2074), 1, anon_sym_STAR_STAR, - ACTIONS(2312), 1, - anon_sym_LBRACK, - ACTIONS(2318), 1, + ACTIONS(2084), 1, anon_sym_PIPE, - ACTIONS(2320), 1, + ACTIONS(2086), 1, + anon_sym_not, + ACTIONS(2088), 1, anon_sym_AMP, - ACTIONS(2322), 1, + ACTIONS(2090), 1, anon_sym_CARET, - ACTIONS(2324), 1, + ACTIONS(2092), 1, anon_sym_is, - STATE(1572), 1, + ACTIONS(2291), 1, + anon_sym_DOT, + ACTIONS(2293), 1, + anon_sym_LBRACK, + STATE(1539), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2304), 2, + ACTIONS(2068), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2306), 2, + ACTIONS(2070), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2316), 2, + ACTIONS(2082), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2326), 2, + ACTIONS(2094), 2, anon_sym_LT, anon_sym_GT, - STATE(869), 2, + STATE(934), 2, sym__not_in, sym__is_not, - STATE(1315), 2, + STATE(1089), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2314), 3, + ACTIONS(2080), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2308), 6, + ACTIONS(2072), 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(2078), 7, + ACTIONS(2062), 8, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, + anon_sym_COLON, anon_sym_and, anon_sym_or, - [67297] = 20, - ACTIONS(2082), 1, + [66797] = 21, + ACTIONS(2076), 1, + anon_sym_as, + ACTIONS(2086), 1, + anon_sym_not, + ACTIONS(2295), 1, + anon_sym_DOT, + ACTIONS(2297), 1, anon_sym_LPAREN, - ACTIONS(2090), 1, + ACTIONS(2305), 1, anon_sym_STAR_STAR, - ACTIONS(2100), 1, + ACTIONS(2307), 1, + anon_sym_LBRACK, + ACTIONS(2313), 1, anon_sym_PIPE, - ACTIONS(2102), 1, - anon_sym_not, - ACTIONS(2104), 1, + ACTIONS(2315), 1, anon_sym_AMP, - ACTIONS(2106), 1, + ACTIONS(2317), 1, anon_sym_CARET, - ACTIONS(2108), 1, + ACTIONS(2319), 1, anon_sym_is, - ACTIONS(2328), 1, - anon_sym_DOT, - ACTIONS(2330), 1, - anon_sym_LBRACK, - STATE(1555), 1, + STATE(1558), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2084), 2, + ACTIONS(2299), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2086), 2, + ACTIONS(2301), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2098), 2, + ACTIONS(2311), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2110), 2, + ACTIONS(2321), 2, anon_sym_LT, anon_sym_GT, - STATE(901), 2, + STATE(865), 2, sym__not_in, sym__is_not, - STATE(1043), 2, + STATE(1388), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2096), 3, + ACTIONS(2309), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2088), 6, + ACTIONS(2303), 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(2078), 8, - sym__newline, - anon_sym_SEMI, + ACTIONS(2062), 7, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, anon_sym_and, anon_sym_or, - [67379] = 21, - ACTIONS(2092), 1, + [66881] = 21, + ACTIONS(2076), 1, anon_sym_EQ, - ACTIONS(2102), 1, + ACTIONS(2086), 1, anon_sym_not, - ACTIONS(2332), 1, + ACTIONS(2323), 1, anon_sym_DOT, - ACTIONS(2334), 1, + ACTIONS(2325), 1, anon_sym_LPAREN, - ACTIONS(2342), 1, + ACTIONS(2333), 1, anon_sym_STAR_STAR, - ACTIONS(2344), 1, + ACTIONS(2335), 1, anon_sym_LBRACK, - ACTIONS(2350), 1, + ACTIONS(2341), 1, anon_sym_PIPE, - ACTIONS(2352), 1, + ACTIONS(2343), 1, anon_sym_AMP, - ACTIONS(2354), 1, + ACTIONS(2345), 1, anon_sym_CARET, - ACTIONS(2356), 1, + ACTIONS(2347), 1, anon_sym_is, - STATE(1559), 1, + STATE(1545), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2336), 2, + ACTIONS(2327), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2338), 2, + ACTIONS(2329), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2348), 2, + ACTIONS(2339), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2358), 2, + ACTIONS(2349), 2, anon_sym_LT, anon_sym_GT, - STATE(898), 2, + STATE(894), 2, sym__not_in, sym__is_not, - STATE(1282), 2, + STATE(1348), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2346), 3, + ACTIONS(2337), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2340), 6, + ACTIONS(2331), 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(2078), 7, + ACTIONS(2062), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -82992,69 +82239,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_and, anon_sym_or, - [67463] = 5, - ACTIONS(2364), 1, - sym_string_start, + [66965] = 21, + ACTIONS(2076), 1, + anon_sym_EQ, + ACTIONS(2086), 1, + anon_sym_not, + ACTIONS(2351), 1, + anon_sym_DOT, + ACTIONS(2353), 1, + anon_sym_LPAREN, + ACTIONS(2361), 1, + anon_sym_STAR_STAR, + ACTIONS(2363), 1, + anon_sym_LBRACK, + ACTIONS(2369), 1, + anon_sym_PIPE, + ACTIONS(2371), 1, + anon_sym_AMP, + ACTIONS(2373), 1, + anon_sym_CARET, + ACTIONS(2375), 1, + anon_sym_is, + STATE(1546), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(968), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2362), 5, + ACTIONS(2355), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2360), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(2357), 2, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(2367), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, + ACTIONS(2377), 2, + anon_sym_LT, + anon_sym_GT, + STATE(871), 2, + sym__not_in, + sym__is_not, + STATE(1352), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2365), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, + ACTIONS(2359), 6, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67515] = 5, + ACTIONS(2062), 7, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_and, + anon_sym_or, + [67049] = 5, ACTIONS(81), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(964), 2, + STATE(948), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1552), 5, + ACTIONS(1536), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 31, + ACTIONS(1531), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -83086,131 +82349,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67567] = 21, - ACTIONS(2092), 1, - anon_sym_EQ, - ACTIONS(2102), 1, - anon_sym_not, - ACTIONS(2367), 1, + [67101] = 12, + ACTIONS(2064), 1, anon_sym_DOT, - ACTIONS(2369), 1, + ACTIONS(2066), 1, anon_sym_LPAREN, - ACTIONS(2377), 1, + ACTIONS(2074), 1, anon_sym_STAR_STAR, - ACTIONS(2379), 1, + ACTIONS(2078), 1, anon_sym_LBRACK, - ACTIONS(2385), 1, - anon_sym_PIPE, - ACTIONS(2387), 1, - anon_sym_AMP, - ACTIONS(2389), 1, - anon_sym_CARET, - ACTIONS(2391), 1, - anon_sym_is, - STATE(1561), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2371), 2, + ACTIONS(2068), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2373), 2, + ACTIONS(2070), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2383), 2, + ACTIONS(2082), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2393), 2, - anon_sym_LT, - anon_sym_GT, - STATE(928), 2, - sym__not_in, - sym__is_not, - STATE(1403), 2, + STATE(1089), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2381), 3, + ACTIONS(2080), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2375), 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(2078), 7, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_and, - anon_sym_or, - [67651] = 5, - ACTIONS(751), 1, - sym_string_start, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(978), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1552), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(2381), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2379), 20, + sym__newline, + anon_sym_SEMI, + anon_sym_from, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67702] = 5, - ACTIONS(2395), 1, + [67166] = 5, + ACTIONS(691), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(972), 2, + STATE(958), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2362), 5, + ACTIONS(2282), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2360), 30, + ACTIONS(2280), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -83241,40 +82448,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [67753] = 8, - ACTIONS(2080), 1, - anon_sym_DOT, - ACTIONS(2082), 1, - anon_sym_LPAREN, - ACTIONS(2090), 1, - anon_sym_STAR_STAR, - ACTIONS(2094), 1, - anon_sym_LBRACK, + [67217] = 5, + ACTIONS(735), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1043), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2400), 5, + STATE(959), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1536), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 27, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(1531), 30, + anon_sym_DOT, + anon_sym_LPAREN, 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_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -83290,49 +82494,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67810] = 11, - ACTIONS(2080), 1, - anon_sym_DOT, - ACTIONS(2082), 1, - anon_sym_LPAREN, - ACTIONS(2090), 1, - anon_sym_STAR_STAR, - ACTIONS(2094), 1, - anon_sym_LBRACK, + [67268] = 5, + ACTIONS(2383), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2084), 2, + STATE(958), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2286), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2098), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1043), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2096), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 22, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(2284), 30, + 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_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, 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, @@ -83342,29 +82539,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67873] = 5, - ACTIONS(704), 1, + sym_type_conversion, + [67319] = 5, + ACTIONS(735), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(984), 2, + STATE(961), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1552), 5, + ACTIONS(2282), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 30, + ACTIONS(2280), 30, anon_sym_DOT, anon_sym_LPAREN, 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_STAR_STAR, anon_sym_LBRACK, @@ -83387,61 +82586,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [67924] = 20, - ACTIONS(2102), 1, + [67370] = 20, + ACTIONS(2086), 1, anon_sym_not, - ACTIONS(2402), 1, + ACTIONS(2386), 1, anon_sym_DOT, - ACTIONS(2404), 1, + ACTIONS(2388), 1, anon_sym_LPAREN, - ACTIONS(2412), 1, + ACTIONS(2396), 1, anon_sym_STAR_STAR, - ACTIONS(2414), 1, + ACTIONS(2398), 1, anon_sym_LBRACK, - ACTIONS(2420), 1, + ACTIONS(2404), 1, anon_sym_PIPE, - ACTIONS(2422), 1, + ACTIONS(2406), 1, anon_sym_AMP, - ACTIONS(2424), 1, + ACTIONS(2408), 1, anon_sym_CARET, - ACTIONS(2426), 1, + ACTIONS(2410), 1, anon_sym_is, - STATE(1566), 1, + STATE(1550), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2406), 2, + ACTIONS(2390), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2408), 2, + ACTIONS(2392), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2418), 2, + ACTIONS(2402), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2428), 2, + ACTIONS(2412), 2, anon_sym_LT, anon_sym_GT, - STATE(941), 2, + STATE(885), 2, sym__not_in, sym__is_not, - STATE(1447), 2, + STATE(1403), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2416), 3, + ACTIONS(2400), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2410), 6, + ACTIONS(2394), 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(2078), 7, + ACTIONS(2062), 7, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -83449,124 +82647,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_and, anon_sym_or, - [68005] = 15, - ACTIONS(2080), 1, - anon_sym_DOT, - ACTIONS(2082), 1, - anon_sym_LPAREN, - ACTIONS(2090), 1, - anon_sym_STAR_STAR, - ACTIONS(2094), 1, - anon_sym_LBRACK, - ACTIONS(2100), 1, - anon_sym_PIPE, - ACTIONS(2104), 1, - anon_sym_AMP, - ACTIONS(2106), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2084), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2086), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2098), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1043), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2096), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2432), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2430), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - 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_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [68076] = 5, - ACTIONS(751), 1, - sym_string_start, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(979), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2298), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2296), 30, - 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_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, - 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_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [68127] = 5, - ACTIONS(2434), 1, + [67451] = 5, + ACTIONS(2414), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(979), 2, + STATE(961), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2362), 5, + ACTIONS(2286), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2360), 30, + ACTIONS(2284), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -83597,28 +82693,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68178] = 8, - ACTIONS(2080), 1, + [67502] = 10, + ACTIONS(2064), 1, anon_sym_DOT, - ACTIONS(2082), 1, + ACTIONS(2066), 1, anon_sym_LPAREN, - ACTIONS(2090), 1, + ACTIONS(2074), 1, anon_sym_STAR_STAR, - ACTIONS(2094), 1, + ACTIONS(2078), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1043), 2, + ACTIONS(2068), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(1089), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2400), 5, - anon_sym_STAR, + ACTIONS(2080), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2381), 3, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 27, + ACTIONS(2379), 24, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -83628,15 +82729,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, 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, @@ -83646,40 +82744,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68235] = 8, - ACTIONS(2080), 1, - anon_sym_DOT, - ACTIONS(2082), 1, - anon_sym_LPAREN, - ACTIONS(2090), 1, - anon_sym_STAR_STAR, - ACTIONS(2094), 1, - anon_sym_LBRACK, + [67563] = 5, + ACTIONS(691), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1043), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2439), 5, + STATE(956), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1536), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2437), 27, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(1531), 30, + 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_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -83695,43 +82789,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68292] = 14, - ACTIONS(2080), 1, + sym_type_conversion, + [67614] = 14, + ACTIONS(2064), 1, anon_sym_DOT, - ACTIONS(2082), 1, + ACTIONS(2066), 1, anon_sym_LPAREN, - ACTIONS(2090), 1, + ACTIONS(2074), 1, anon_sym_STAR_STAR, - ACTIONS(2094), 1, + ACTIONS(2078), 1, anon_sym_LBRACK, - ACTIONS(2104), 1, + ACTIONS(2088), 1, anon_sym_AMP, - ACTIONS(2106), 1, + ACTIONS(2090), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2084), 2, + ACTIONS(2068), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2086), 2, + ACTIONS(2070), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2098), 2, + ACTIONS(2082), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1043), 2, + STATE(1089), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2096), 3, + ACTIONS(2080), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, + ACTIONS(2381), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 18, + ACTIONS(2379), 18, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -83750,292 +82845,248 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68361] = 8, - ACTIONS(2080), 1, + [67683] = 15, + ACTIONS(2064), 1, anon_sym_DOT, - ACTIONS(2082), 1, + ACTIONS(2066), 1, anon_sym_LPAREN, - ACTIONS(2090), 1, + ACTIONS(2074), 1, anon_sym_STAR_STAR, - ACTIONS(2094), 1, + ACTIONS(2078), 1, anon_sym_LBRACK, + ACTIONS(2084), 1, + anon_sym_PIPE, + ACTIONS(2088), 1, + anon_sym_AMP, + ACTIONS(2090), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1043), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2443), 5, + ACTIONS(2068), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2441), 27, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(2070), 2, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(2082), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, + STATE(1089), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2080), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [68418] = 5, - ACTIONS(704), 1, - sym_string_start, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(972), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2298), 5, - anon_sym_STAR, + ACTIONS(2419), 3, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2296), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2417), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_from, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [68469] = 10, - ACTIONS(2080), 1, + [67754] = 13, + ACTIONS(2064), 1, anon_sym_DOT, - ACTIONS(2082), 1, + ACTIONS(2066), 1, anon_sym_LPAREN, - ACTIONS(2090), 1, + ACTIONS(2074), 1, anon_sym_STAR_STAR, - ACTIONS(2094), 1, + ACTIONS(2078), 1, anon_sym_LBRACK, + ACTIONS(2090), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2084), 2, + ACTIONS(2068), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1043), 2, + ACTIONS(2070), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2082), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1089), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2096), 3, + ACTIONS(2080), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, + ACTIONS(2381), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 24, + ACTIONS(2379), 19, sym__newline, anon_sym_SEMI, anon_sym_from, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68530] = 12, - ACTIONS(2080), 1, + [67821] = 8, + ACTIONS(2064), 1, anon_sym_DOT, - ACTIONS(2082), 1, + ACTIONS(2066), 1, anon_sym_LPAREN, - ACTIONS(2090), 1, + ACTIONS(2074), 1, anon_sym_STAR_STAR, - ACTIONS(2094), 1, + ACTIONS(2078), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2084), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2086), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2098), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1043), 2, + STATE(1089), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2096), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, + ACTIONS(2381), 5, + anon_sym_STAR, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 20, + ACTIONS(2379), 27, sym__newline, anon_sym_SEMI, anon_sym_from, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68595] = 13, - ACTIONS(2080), 1, + [67878] = 8, + ACTIONS(2064), 1, anon_sym_DOT, - ACTIONS(2082), 1, + ACTIONS(2066), 1, anon_sym_LPAREN, - ACTIONS(2090), 1, + ACTIONS(2074), 1, anon_sym_STAR_STAR, - ACTIONS(2094), 1, + ACTIONS(2078), 1, anon_sym_LBRACK, - ACTIONS(2106), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2084), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2086), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2098), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1043), 2, + STATE(1089), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2096), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, + ACTIONS(2423), 5, + anon_sym_STAR, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 19, + ACTIONS(2421), 27, sym__newline, anon_sym_SEMI, anon_sym_from, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68662] = 8, - ACTIONS(2188), 1, + [67935] = 8, + ACTIONS(2064), 1, anon_sym_DOT, - ACTIONS(2190), 1, + ACTIONS(2066), 1, anon_sym_LPAREN, - ACTIONS(2198), 1, + ACTIONS(2074), 1, anon_sym_STAR_STAR, - ACTIONS(2200), 1, + ACTIONS(2078), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1152), 2, + STATE(1089), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2439), 5, - anon_sym_as, + ACTIONS(2381), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2437), 26, + ACTIONS(2379), 27, + sym__newline, + anon_sym_SEMI, + anon_sym_from, 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_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -84051,39 +83102,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68718] = 8, - ACTIONS(2188), 1, + [67992] = 8, + ACTIONS(2064), 1, anon_sym_DOT, - ACTIONS(2190), 1, + ACTIONS(2066), 1, anon_sym_LPAREN, - ACTIONS(2198), 1, + ACTIONS(2074), 1, anon_sym_STAR_STAR, - ACTIONS(2200), 1, + ACTIONS(2078), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1152), 2, + STATE(1089), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2443), 5, - anon_sym_as, + ACTIONS(2427), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2441), 26, + ACTIONS(2425), 27, + sym__newline, + anon_sym_SEMI, + anon_sym_from, 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_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -84099,44 +83151,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68774] = 10, - ACTIONS(2188), 1, + [68049] = 11, + ACTIONS(2064), 1, anon_sym_DOT, - ACTIONS(2190), 1, + ACTIONS(2066), 1, anon_sym_LPAREN, - ACTIONS(2198), 1, + ACTIONS(2074), 1, anon_sym_STAR_STAR, - ACTIONS(2200), 1, + ACTIONS(2078), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2192), 2, + ACTIONS(2068), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1152), 2, + ACTIONS(2082), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1089), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2202), 3, + ACTIONS(2080), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, - anon_sym_as, + ACTIONS(2381), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 23, + ACTIONS(2379), 22, + sym__newline, + anon_sym_SEMI, + anon_sym_from, 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_DASH, anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, @@ -84149,125 +83203,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68834] = 20, - ACTIONS(2102), 1, - anon_sym_not, - ACTIONS(2162), 1, + [68112] = 15, + ACTIONS(2224), 1, + anon_sym_DOT, + ACTIONS(2226), 1, anon_sym_LPAREN, - ACTIONS(2170), 1, + ACTIONS(2234), 1, anon_sym_STAR_STAR, - ACTIONS(2178), 1, + ACTIONS(2236), 1, + anon_sym_LBRACK, + ACTIONS(2242), 1, anon_sym_PIPE, - ACTIONS(2180), 1, + ACTIONS(2244), 1, anon_sym_AMP, - ACTIONS(2182), 1, + ACTIONS(2246), 1, anon_sym_CARET, - ACTIONS(2184), 1, - anon_sym_is, - ACTIONS(2188), 1, - anon_sym_DOT, - ACTIONS(2200), 1, - anon_sym_LBRACK, - STATE(1567), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2164), 2, + ACTIONS(2228), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2166), 2, + ACTIONS(2230), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2176), 2, + ACTIONS(2240), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2186), 2, - anon_sym_LT, - anon_sym_GT, - STATE(940), 2, - sym__not_in, - sym__is_not, - STATE(1181), 2, + STATE(1167), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2174), 3, + ACTIONS(2238), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2078), 6, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - ACTIONS(2168), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [68914] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1664), 6, + ACTIONS(2419), 3, anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 31, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2417), 16, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_RBRACE, - anon_sym_PLUS, 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [68960] = 5, - ACTIONS(327), 1, + [68182] = 5, + ACTIONS(2429), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1006), 2, + STATE(973), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2298), 5, + ACTIONS(2286), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2296), 29, + ACTIONS(2284), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -84297,46 +83303,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69010] = 10, - ACTIONS(2160), 1, - anon_sym_DOT, - ACTIONS(2162), 1, - anon_sym_LPAREN, - ACTIONS(2170), 1, - anon_sym_STAR_STAR, - ACTIONS(2172), 1, - anon_sym_LBRACK, + [68232] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2164), 2, + ACTIONS(2434), 5, anon_sym_STAR, - anon_sym_SLASH, - STATE(1181), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2174), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 23, + ACTIONS(2432), 32, + sym__newline, + sym_string_start, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, 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, @@ -84346,31 +83346,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [69070] = 5, - ACTIONS(729), 1, + [68278] = 5, + ACTIONS(319), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1029), 2, + STATE(1010), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2298), 5, + ACTIONS(1536), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2296), 29, + ACTIONS(1531), 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_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -84392,33 +83391,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69120] = 5, - ACTIONS(797), 1, - sym_string_start, + [68328] = 4, + ACTIONS(284), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1001), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1552), 5, - anon_sym_as, + ACTIONS(271), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 29, + ACTIONS(269), 30, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -84437,34 +83435,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69170] = 3, + [68376] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2447), 5, + ACTIONS(1659), 6, + anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2445), 32, - sym__newline, - sym_string_start, - anon_sym_SEMI, + ACTIONS(1657), 31, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, 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_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -84480,179 +83477,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69216] = 15, - ACTIONS(2188), 1, - anon_sym_DOT, - ACTIONS(2190), 1, + sym_type_conversion, + [68422] = 20, + ACTIONS(2086), 1, + anon_sym_not, + ACTIONS(2192), 1, anon_sym_LPAREN, - ACTIONS(2198), 1, - anon_sym_STAR_STAR, ACTIONS(2200), 1, - anon_sym_LBRACK, - ACTIONS(2206), 1, - anon_sym_PIPE, + anon_sym_STAR_STAR, ACTIONS(2208), 1, - anon_sym_AMP, + anon_sym_PIPE, ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, anon_sym_CARET, + ACTIONS(2214), 1, + anon_sym_is, + ACTIONS(2224), 1, + anon_sym_DOT, + ACTIONS(2236), 1, + anon_sym_LBRACK, + STATE(1549), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2192), 2, + ACTIONS(2194), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2194), 2, + ACTIONS(2196), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2204), 2, + ACTIONS(2206), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1152), 2, + ACTIONS(2216), 2, + anon_sym_LT, + anon_sym_GT, + STATE(945), 2, + sym__not_in, + sym__is_not, + STATE(1216), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2202), 3, + ACTIONS(2204), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2432), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2430), 16, + ACTIONS(2062), 6, anon_sym_COMMA, + anon_sym_as, 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_is, + ACTIONS(2198), 6, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69286] = 8, - ACTIONS(2188), 1, + [68502] = 20, + ACTIONS(2086), 1, + anon_sym_not, + ACTIONS(2295), 1, anon_sym_DOT, - ACTIONS(2190), 1, + ACTIONS(2307), 1, + anon_sym_LBRACK, + ACTIONS(2388), 1, anon_sym_LPAREN, - ACTIONS(2198), 1, + ACTIONS(2396), 1, anon_sym_STAR_STAR, - ACTIONS(2200), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1152), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2400), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2398), 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_AT, - anon_sym_DASH, + ACTIONS(2404), 1, anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(2406), 1, anon_sym_AMP, + ACTIONS(2408), 1, anon_sym_CARET, - anon_sym_LT_LT, + ACTIONS(2410), 1, anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [69342] = 14, - ACTIONS(2188), 1, - anon_sym_DOT, - ACTIONS(2190), 1, - anon_sym_LPAREN, - ACTIONS(2198), 1, - anon_sym_STAR_STAR, - ACTIONS(2200), 1, - anon_sym_LBRACK, - ACTIONS(2208), 1, - anon_sym_AMP, - ACTIONS(2210), 1, - anon_sym_CARET, + STATE(1550), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2192), 2, + ACTIONS(2390), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2194), 2, + ACTIONS(2392), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2204), 2, + ACTIONS(2402), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1152), 2, + ACTIONS(2412), 2, + anon_sym_LT, + anon_sym_GT, + STATE(885), 2, + sym__not_in, + sym__is_not, + STATE(1403), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2202), 3, + ACTIONS(2400), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2398), 17, + ACTIONS(2062), 6, anon_sym_COMMA, + anon_sym_as, 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_RBRACK, anon_sym_and, anon_sym_or, - anon_sym_is, + ACTIONS(2394), 6, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69410] = 5, - ACTIONS(797), 1, + [68582] = 5, + ACTIONS(803), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1004), 2, + STATE(1013), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2298), 5, + ACTIONS(1536), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2296), 29, + ACTIONS(1531), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -84682,93 +83643,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69460] = 13, - ACTIONS(2188), 1, + [68632] = 8, + ACTIONS(2224), 1, anon_sym_DOT, - ACTIONS(2190), 1, + ACTIONS(2226), 1, anon_sym_LPAREN, - ACTIONS(2198), 1, + ACTIONS(2234), 1, anon_sym_STAR_STAR, - ACTIONS(2200), 1, + ACTIONS(2236), 1, anon_sym_LBRACK, - ACTIONS(2210), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2192), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2194), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2204), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1152), 2, + STATE(1167), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2202), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, + ACTIONS(2381), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 18, + ACTIONS(2379), 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_AT, + anon_sym_DASH, anon_sym_PIPE, anon_sym_RBRACE, + anon_sym_PLUS, 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69526] = 12, - ACTIONS(2188), 1, + [68688] = 11, + ACTIONS(2224), 1, anon_sym_DOT, - ACTIONS(2190), 1, + ACTIONS(2226), 1, anon_sym_LPAREN, - ACTIONS(2198), 1, + ACTIONS(2234), 1, anon_sym_STAR_STAR, - ACTIONS(2200), 1, + ACTIONS(2236), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2192), 2, + ACTIONS(2228), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2194), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2204), 2, + ACTIONS(2240), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1152), 2, + STATE(1167), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2202), 3, + ACTIONS(2238), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, + ACTIONS(2381), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 19, + ACTIONS(2379), 21, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_async, @@ -84781,71 +83735,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69590] = 5, - ACTIONS(2449), 1, - sym_string_start, + [68750] = 13, + ACTIONS(2190), 1, + anon_sym_DOT, + ACTIONS(2192), 1, + anon_sym_LPAREN, + ACTIONS(2200), 1, + anon_sym_STAR_STAR, + ACTIONS(2202), 1, + anon_sym_LBRACK, + ACTIONS(2212), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1004), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2362), 5, - anon_sym_as, + ACTIONS(2194), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2196), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2206), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1216), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2204), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2381), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2360), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2379), 18, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, + 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69640] = 3, + sym_type_conversion, + [68816] = 8, + ACTIONS(2224), 1, + anon_sym_DOT, + ACTIONS(2226), 1, + anon_sym_LPAREN, + ACTIONS(2234), 1, + anon_sym_STAR_STAR, + ACTIONS(2236), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 6, + STATE(1167), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2381), 5, anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 31, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2379), 26, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -84853,8 +83824,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -84874,43 +83843,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [69686] = 5, - ACTIONS(2452), 1, - sym_string_start, + [68872] = 10, + ACTIONS(2224), 1, + anon_sym_DOT, + ACTIONS(2226), 1, + anon_sym_LPAREN, + ACTIONS(2234), 1, + anon_sym_STAR_STAR, + ACTIONS(2236), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1006), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2362), 5, + ACTIONS(2228), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + STATE(1167), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2238), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2381), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2360), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2379), 23, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, 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, @@ -84920,249 +83893,206 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69736] = 8, - ACTIONS(2160), 1, + [68932] = 14, + ACTIONS(2224), 1, anon_sym_DOT, - ACTIONS(2162), 1, + ACTIONS(2226), 1, anon_sym_LPAREN, - ACTIONS(2170), 1, + ACTIONS(2234), 1, anon_sym_STAR_STAR, - ACTIONS(2172), 1, + ACTIONS(2236), 1, anon_sym_LBRACK, + ACTIONS(2244), 1, + anon_sym_AMP, + ACTIONS(2246), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1181), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2400), 5, + ACTIONS(2228), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2230), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2240), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1167), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2238), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2381), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 26, + ACTIONS(2379), 17, 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_AT, - anon_sym_DASH, anon_sym_PIPE, anon_sym_RBRACE, - anon_sym_PLUS, 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [69792] = 20, - ACTIONS(2102), 1, - anon_sym_not, - ACTIONS(2300), 1, + [69000] = 13, + ACTIONS(2224), 1, anon_sym_DOT, - ACTIONS(2312), 1, - anon_sym_LBRACK, - ACTIONS(2404), 1, + ACTIONS(2226), 1, anon_sym_LPAREN, - ACTIONS(2412), 1, + ACTIONS(2234), 1, anon_sym_STAR_STAR, - ACTIONS(2420), 1, - anon_sym_PIPE, - ACTIONS(2422), 1, - anon_sym_AMP, - ACTIONS(2424), 1, + ACTIONS(2236), 1, + anon_sym_LBRACK, + ACTIONS(2246), 1, anon_sym_CARET, - ACTIONS(2426), 1, - anon_sym_is, - STATE(1566), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2406), 2, + ACTIONS(2228), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2408), 2, + ACTIONS(2230), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2418), 2, + ACTIONS(2240), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2428), 2, - anon_sym_LT, - anon_sym_GT, - STATE(941), 2, - sym__not_in, - sym__is_not, - STATE(1447), 2, + STATE(1167), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2416), 3, + ACTIONS(2238), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2078), 6, - anon_sym_COMMA, + ACTIONS(2381), 3, anon_sym_as, - anon_sym_if, - anon_sym_RBRACK, - anon_sym_and, - anon_sym_or, - ACTIONS(2410), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [69872] = 4, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1552), 6, - anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 30, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2379), 18, 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_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, + 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69920] = 5, - ACTIONS(327), 1, - sym_string_start, + [69066] = 12, + ACTIONS(2224), 1, + anon_sym_DOT, + ACTIONS(2226), 1, + anon_sym_LPAREN, + ACTIONS(2234), 1, + anon_sym_STAR_STAR, + ACTIONS(2236), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(993), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1552), 5, + ACTIONS(2228), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2230), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2240), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1167), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2238), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2381), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2379), 19, anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, + 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69970] = 13, - ACTIONS(2160), 1, + [69130] = 8, + ACTIONS(2190), 1, anon_sym_DOT, - ACTIONS(2162), 1, + ACTIONS(2192), 1, anon_sym_LPAREN, - ACTIONS(2170), 1, + ACTIONS(2200), 1, anon_sym_STAR_STAR, - ACTIONS(2172), 1, + ACTIONS(2202), 1, anon_sym_LBRACK, - ACTIONS(2182), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2164), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2166), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2176), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1181), 2, + STATE(1216), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2174), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, + ACTIONS(2381), 5, + anon_sym_STAR, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 18, + ACTIONS(2379), 26, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, anon_sym_RBRACE, + anon_sym_PLUS, 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -85170,39 +84100,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [70036] = 12, - ACTIONS(2160), 1, + [69186] = 12, + ACTIONS(2190), 1, anon_sym_DOT, - ACTIONS(2162), 1, + ACTIONS(2192), 1, anon_sym_LPAREN, - ACTIONS(2170), 1, + ACTIONS(2200), 1, anon_sym_STAR_STAR, - ACTIONS(2172), 1, + ACTIONS(2202), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2164), 2, + ACTIONS(2194), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2166), 2, + ACTIONS(2196), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2176), 2, + ACTIONS(2206), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1181), 2, + STATE(1216), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2174), 3, + ACTIONS(2204), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, + ACTIONS(2381), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 19, + ACTIONS(2379), 19, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -85222,28 +84152,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [70100] = 8, - ACTIONS(2188), 1, - anon_sym_DOT, - ACTIONS(2190), 1, - anon_sym_LPAREN, - ACTIONS(2198), 1, - anon_sym_STAR_STAR, - ACTIONS(2200), 1, - anon_sym_LBRACK, + [69250] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1152), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2400), 5, + ACTIONS(1606), 6, anon_sym_as, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 26, + ACTIONS(1604), 31, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -85251,6 +84173,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -85270,48 +84194,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70156] = 11, - ACTIONS(2188), 1, - anon_sym_DOT, - ACTIONS(2190), 1, - anon_sym_LPAREN, - ACTIONS(2198), 1, - anon_sym_STAR_STAR, - ACTIONS(2200), 1, - anon_sym_LBRACK, + sym_type_conversion, + [69296] = 5, + ACTIONS(713), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2192), 2, + STATE(1006), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1536), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2204), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1152), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2202), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 21, + ACTIONS(1531), 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_async, - anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, + anon_sym_PLUS, 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, @@ -85321,28 +84240,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70218] = 5, - ACTIONS(775), 1, - sym_string_start, + [69346] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1020), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1552), 5, + ACTIONS(1659), 6, anon_sym_as, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 29, + ACTIONS(1657), 31, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -85351,6 +84266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -85366,18 +84282,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70268] = 3, + sym_type_conversion, + [69392] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1676), 6, + ACTIONS(1617), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 31, + ACTIONS(1615), 31, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -85409,33 +84326,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [70314] = 8, - ACTIONS(2160), 1, + [69438] = 8, + ACTIONS(2224), 1, anon_sym_DOT, - ACTIONS(2162), 1, + ACTIONS(2226), 1, anon_sym_LPAREN, - ACTIONS(2170), 1, + ACTIONS(2234), 1, anon_sym_STAR_STAR, - ACTIONS(2172), 1, + ACTIONS(2236), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1181), 2, + STATE(1167), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2443), 5, + ACTIONS(2423), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2441), 26, + ACTIONS(2421), 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_AT, anon_sym_DASH, @@ -85456,34 +84374,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [70370] = 3, + [69494] = 5, + ACTIONS(2436), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 6, - anon_sym_as, + STATE(996), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2286), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 31, + ACTIONS(2284), 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_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -85499,30 +84419,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [70416] = 3, + [69544] = 15, + ACTIONS(2190), 1, + anon_sym_DOT, + ACTIONS(2192), 1, + anon_sym_LPAREN, + ACTIONS(2200), 1, + anon_sym_STAR_STAR, + ACTIONS(2202), 1, + anon_sym_LBRACK, + ACTIONS(2208), 1, + anon_sym_PIPE, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 6, - anon_sym_as, + ACTIONS(2194), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2196), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2206), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1216), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2204), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2419), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1605), 31, + ACTIONS(2417), 16, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [69614] = 8, + ACTIONS(2190), 1, anon_sym_DOT, + ACTIONS(2192), 1, anon_sym_LPAREN, + ACTIONS(2200), 1, + anon_sym_STAR_STAR, + ACTIONS(2202), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1216), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2423), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2421), 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_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -85543,36 +84522,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [70462] = 5, - ACTIONS(775), 1, - sym_string_start, + [69670] = 8, + ACTIONS(2224), 1, + anon_sym_DOT, + ACTIONS(2226), 1, + anon_sym_LPAREN, + ACTIONS(2234), 1, + anon_sym_STAR_STAR, + ACTIONS(2236), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1022), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2298), 5, + STATE(1167), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2427), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2296), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2425), 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_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -85588,28 +84570,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70512] = 8, - ACTIONS(2160), 1, + [69726] = 8, + ACTIONS(2190), 1, anon_sym_DOT, - ACTIONS(2162), 1, + ACTIONS(2192), 1, anon_sym_LPAREN, - ACTIONS(2170), 1, + ACTIONS(2200), 1, anon_sym_STAR_STAR, - ACTIONS(2172), 1, + ACTIONS(2202), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1181), 2, + STATE(1216), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2400), 5, + ACTIONS(2427), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 26, + ACTIONS(2425), 26, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -85636,28 +84618,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [70568] = 5, - ACTIONS(2455), 1, - sym_string_start, + [69782] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1022), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2362), 5, + ACTIONS(1606), 6, anon_sym_as, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2360), 29, + ACTIONS(1604), 31, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -85666,6 +84644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -85681,20 +84660,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70618] = 4, - ACTIONS(292), 1, + sym_type_conversion, + [69828] = 4, + ACTIONS(1538), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(1536), 6, anon_sym_STAR, anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 30, + ACTIONS(1531), 30, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -85725,53 +84705,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70666] = 14, - ACTIONS(2160), 1, - anon_sym_DOT, - ACTIONS(2162), 1, - anon_sym_LPAREN, - ACTIONS(2170), 1, - anon_sym_STAR_STAR, - ACTIONS(2172), 1, - anon_sym_LBRACK, - ACTIONS(2180), 1, - anon_sym_AMP, - ACTIONS(2182), 1, - anon_sym_CARET, + [69876] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2164), 2, + ACTIONS(1680), 6, + anon_sym_as, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2166), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2176), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1181), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2174), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 17, + ACTIONS(1678), 31, + anon_sym_DOT, + anon_sym_LPAREN, 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_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, anon_sym_RBRACE, + anon_sym_PLUS, 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -85779,39 +84748,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [70734] = 11, - ACTIONS(2160), 1, + [69922] = 14, + ACTIONS(2190), 1, anon_sym_DOT, - ACTIONS(2162), 1, + ACTIONS(2192), 1, anon_sym_LPAREN, - ACTIONS(2170), 1, + ACTIONS(2200), 1, anon_sym_STAR_STAR, - ACTIONS(2172), 1, + ACTIONS(2202), 1, anon_sym_LBRACK, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2164), 2, + ACTIONS(2194), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2176), 2, + ACTIONS(2196), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2206), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1181), 2, + STATE(1216), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2174), 3, + ACTIONS(2204), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, + ACTIONS(2381), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 21, + ACTIONS(2379), 17, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, @@ -85820,9 +84795,6 @@ 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -85830,71 +84802,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [70796] = 8, - ACTIONS(2160), 1, + [69990] = 20, + ACTIONS(2086), 1, + anon_sym_not, + ACTIONS(2252), 1, anon_sym_DOT, - ACTIONS(2162), 1, + ACTIONS(2264), 1, + anon_sym_LBRACK, + ACTIONS(2325), 1, anon_sym_LPAREN, - ACTIONS(2170), 1, + ACTIONS(2333), 1, anon_sym_STAR_STAR, - ACTIONS(2172), 1, - anon_sym_LBRACK, + ACTIONS(2341), 1, + anon_sym_PIPE, + ACTIONS(2343), 1, + anon_sym_AMP, + ACTIONS(2345), 1, + anon_sym_CARET, + ACTIONS(2347), 1, + anon_sym_is, + STATE(1545), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1181), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2439), 5, + ACTIONS(2327), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2329), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2339), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2349), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2437), 26, + STATE(894), 2, + sym__not_in, + sym__is_not, + STATE(1348), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2337), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2062), 6, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, - 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_is, + ACTIONS(2331), 6, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [70852] = 3, + [70070] = 5, + ACTIONS(713), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2460), 5, + STATE(996), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2282), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2458), 32, - sym__newline, - sym_string_start, - anon_sym_SEMI, + ACTIONS(2280), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -85921,30 +84907,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70898] = 5, - ACTIONS(729), 1, + [70120] = 5, + ACTIONS(759), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(995), 2, + STATE(1012), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1552), 5, + ACTIONS(2282), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 29, + ACTIONS(2280), 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_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -85966,36 +84952,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70948] = 5, - ACTIONS(2462), 1, - sym_string_start, + [70170] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1029), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2362), 5, + ACTIONS(1655), 6, + anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2360), 29, + ACTIONS(1653), 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_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -86011,148 +84994,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70998] = 20, - ACTIONS(2102), 1, - anon_sym_not, - ACTIONS(2268), 1, + sym_type_conversion, + [70216] = 11, + ACTIONS(2190), 1, anon_sym_DOT, - ACTIONS(2280), 1, - anon_sym_LBRACK, - ACTIONS(2334), 1, + ACTIONS(2192), 1, anon_sym_LPAREN, - ACTIONS(2342), 1, + ACTIONS(2200), 1, anon_sym_STAR_STAR, - ACTIONS(2350), 1, - anon_sym_PIPE, - ACTIONS(2352), 1, - anon_sym_AMP, - ACTIONS(2354), 1, - anon_sym_CARET, - ACTIONS(2356), 1, - anon_sym_is, - STATE(1559), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(2202), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2336), 2, + ACTIONS(2194), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2338), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2348), 2, + ACTIONS(2206), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2358), 2, - anon_sym_LT, - anon_sym_GT, - STATE(898), 2, - sym__not_in, - sym__is_not, - STATE(1282), 2, + STATE(1216), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2346), 3, + ACTIONS(2204), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2078), 6, - anon_sym_RPAREN, + ACTIONS(2381), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2379), 21, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_not, anon_sym_and, anon_sym_or, - ACTIONS(2340), 6, - anon_sym_in, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71078] = 15, - ACTIONS(2160), 1, - anon_sym_DOT, - ACTIONS(2162), 1, - anon_sym_LPAREN, - ACTIONS(2170), 1, - anon_sym_STAR_STAR, - ACTIONS(2172), 1, - anon_sym_LBRACK, - ACTIONS(2178), 1, - anon_sym_PIPE, - ACTIONS(2180), 1, - anon_sym_AMP, - ACTIONS(2182), 1, - anon_sym_CARET, + sym_type_conversion, + [70278] = 5, + ACTIONS(319), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2164), 2, + STATE(973), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2282), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2166), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2176), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1181), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2174), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2432), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2430), 16, + ACTIONS(2280), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [71148] = 3, + [70328] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1676), 6, - anon_sym_as, + ACTIONS(2441), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 31, + ACTIONS(2439), 32, + sym__newline, + sym_string_start, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, 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_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -86168,25 +85134,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [71194] = 3, + [70374] = 5, + ACTIONS(2443), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 6, + STATE(1012), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2286), 5, anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 31, + ACTIONS(2284), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -86195,7 +85164,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -86211,33 +85179,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [71240] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [70424] = 5, + ACTIONS(803), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + STATE(1016), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2282), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(2280), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -86256,39 +85224,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71288] = 3, + [70474] = 10, + ACTIONS(2190), 1, + anon_sym_DOT, + ACTIONS(2192), 1, + anon_sym_LPAREN, + ACTIONS(2200), 1, + anon_sym_STAR_STAR, + ACTIONS(2202), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 5, + ACTIONS(2194), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + STATE(1216), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2204), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2381), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2379), 23, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, 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, @@ -86298,68 +85273,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71333] = 12, - ACTIONS(2268), 1, + sym_type_conversion, + [70534] = 8, + ACTIONS(2190), 1, anon_sym_DOT, - ACTIONS(2270), 1, + ACTIONS(2192), 1, anon_sym_LPAREN, - ACTIONS(2278), 1, + ACTIONS(2200), 1, anon_sym_STAR_STAR, - ACTIONS(2280), 1, + ACTIONS(2202), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2272), 2, + STATE(1216), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2381), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2274), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2379), 26, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2284), 2, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, - STATE(1389), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2282), 3, - anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [70590] = 5, + ACTIONS(2446), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1016), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2286), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 18, - anon_sym_RPAREN, + ACTIONS(2284), 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_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71396] = 3, + [70640] = 4, + ACTIONS(284), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2467), 5, + ACTIONS(271), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2465), 31, + ACTIONS(269), 30, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -86369,7 +85390,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -86391,27 +85411,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71441] = 3, + [70688] = 5, + ACTIONS(759), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2471), 5, + STATE(1007), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1536), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2469), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(1531), 29, 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_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -86433,30 +85456,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71486] = 3, + [70738] = 8, + ACTIONS(2323), 1, + anon_sym_DOT, + ACTIONS(2325), 1, + anon_sym_LPAREN, + ACTIONS(2333), 1, + anon_sym_STAR_STAR, + ACTIONS(2335), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 5, + STATE(1348), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2381), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2473), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2379), 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_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -86475,21 +85503,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71531] = 3, + [70793] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2479), 5, + ACTIONS(2441), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2477), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(2439), 31, + sym_string_start, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -86502,6 +85528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -86517,30 +85544,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71576] = 3, + sym_type_conversion, + [70838] = 8, + ACTIONS(2323), 1, + anon_sym_DOT, + ACTIONS(2325), 1, + anon_sym_LPAREN, + ACTIONS(2333), 1, + anon_sym_STAR_STAR, + ACTIONS(2335), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2483), 5, + STATE(1348), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2423), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2481), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2421), 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_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -86559,30 +85592,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71621] = 3, + [70893] = 8, + ACTIONS(2323), 1, + anon_sym_DOT, + ACTIONS(2325), 1, + anon_sym_LPAREN, + ACTIONS(2333), 1, + anon_sym_STAR_STAR, + ACTIONS(2335), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2487), 5, + STATE(1348), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2427), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2485), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2425), 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_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -86601,17 +85639,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71666] = 3, + [70948] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 5, + ACTIONS(1617), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2489), 31, + ACTIONS(1615), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -86643,34 +85681,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71711] = 5, - ACTIONS(284), 1, - anon_sym_COMMA, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [70993] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(1655), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, + ACTIONS(1653), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -86686,123 +85723,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [71760] = 5, + [71038] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(665), 2, + ACTIONS(1659), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(670), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 14, + ACTIONS(1657), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + 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(663), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71809] = 5, + [71083] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(665), 2, + ACTIONS(1659), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(670), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 14, + ACTIONS(1657), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + 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(663), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71858] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [71128] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, - anon_sym_as, + ACTIONS(1606), 5, anon_sym_STAR, - anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(1604), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, 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_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -86818,34 +85849,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71905] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [71173] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, - anon_sym_as, + ACTIONS(1606), 5, anon_sym_STAR, - anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(1604), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, 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_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -86861,27 +85891,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71952] = 4, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, + [71218] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 6, - anon_sym_as, + ACTIONS(2434), 5, anon_sym_STAR, - anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 29, + ACTIONS(2432), 31, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, 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_STAR_STAR, anon_sym_LBRACK, @@ -86904,34 +85932,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71999] = 8, - ACTIONS(2367), 1, + sym_type_conversion, + [71263] = 8, + ACTIONS(2323), 1, anon_sym_DOT, - ACTIONS(2369), 1, + ACTIONS(2325), 1, anon_sym_LPAREN, - ACTIONS(2377), 1, + ACTIONS(2333), 1, anon_sym_STAR_STAR, - ACTIONS(2379), 1, + ACTIONS(2335), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1403), 2, + STATE(1348), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2443), 5, + ACTIONS(2381), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2441), 25, + ACTIONS(2379), 25, + 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_AT, anon_sym_DASH, @@ -86951,44 +85980,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72054] = 8, - ACTIONS(2367), 1, + [71318] = 11, + ACTIONS(2323), 1, anon_sym_DOT, - ACTIONS(2369), 1, + ACTIONS(2325), 1, anon_sym_LPAREN, - ACTIONS(2377), 1, + ACTIONS(2333), 1, anon_sym_STAR_STAR, - ACTIONS(2379), 1, + ACTIONS(2335), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1403), 2, + ACTIONS(2327), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2339), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1348), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2439), 5, - anon_sym_STAR, + ACTIONS(2337), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2381), 3, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2437), 25, + ACTIONS(2379), 20, + 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_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, 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, @@ -86998,126 +86030,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72109] = 6, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(670), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(663), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(665), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(706), 27, + [71379] = 15, + ACTIONS(2323), 1, anon_sym_DOT, + ACTIONS(2325), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, + ACTIONS(2333), 1, anon_sym_STAR_STAR, + ACTIONS(2335), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2341), 1, anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(2343), 1, anon_sym_AMP, + ACTIONS(2345), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [72160] = 6, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(670), 1, - anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(663), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(665), 5, - anon_sym_as, + ACTIONS(2327), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2329), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2339), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1348), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2337), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2419), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 27, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2417), 15, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_as, anon_sym_if, + anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72211] = 6, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, - ACTIONS(1658), 1, - anon_sym_COLON, + [71448] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1648), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1655), 5, - anon_sym_as, + ACTIONS(2451), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1652), 27, + ACTIONS(2449), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -87133,39 +86126,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72262] = 3, + [71493] = 10, + ACTIONS(2323), 1, + anon_sym_DOT, + ACTIONS(2325), 1, + anon_sym_LPAREN, + ACTIONS(2333), 1, + anon_sym_STAR_STAR, + ACTIONS(2335), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 5, + ACTIONS(2327), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + STATE(1348), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2337), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2381), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1605), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2379), 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_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, 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, @@ -87175,186 +86175,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72307] = 8, - ACTIONS(2367), 1, + [71552] = 14, + ACTIONS(2323), 1, anon_sym_DOT, - ACTIONS(2369), 1, + ACTIONS(2325), 1, anon_sym_LPAREN, - ACTIONS(2377), 1, + ACTIONS(2333), 1, anon_sym_STAR_STAR, - ACTIONS(2379), 1, + ACTIONS(2335), 1, anon_sym_LBRACK, + ACTIONS(2343), 1, + anon_sym_AMP, + ACTIONS(2345), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1403), 2, + ACTIONS(2327), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2329), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2339), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1348), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2400), 5, - anon_sym_STAR, + ACTIONS(2337), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2381), 3, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 25, + ACTIONS(2379), 16, + 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_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72362] = 11, - ACTIONS(2367), 1, + [71619] = 13, + ACTIONS(2323), 1, anon_sym_DOT, - ACTIONS(2369), 1, + ACTIONS(2325), 1, anon_sym_LPAREN, - ACTIONS(2377), 1, + ACTIONS(2333), 1, anon_sym_STAR_STAR, - ACTIONS(2379), 1, + ACTIONS(2335), 1, anon_sym_LBRACK, + ACTIONS(2345), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2371), 2, + ACTIONS(2327), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2383), 2, + ACTIONS(2329), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2339), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1403), 2, + STATE(1348), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2381), 3, + ACTIONS(2337), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, + ACTIONS(2381), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 20, + ACTIONS(2379), 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_not, anon_sym_and, anon_sym_or, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72423] = 15, - ACTIONS(2367), 1, + [71684] = 12, + ACTIONS(2323), 1, anon_sym_DOT, - ACTIONS(2369), 1, + ACTIONS(2325), 1, anon_sym_LPAREN, - ACTIONS(2377), 1, + ACTIONS(2333), 1, anon_sym_STAR_STAR, - ACTIONS(2379), 1, + ACTIONS(2335), 1, anon_sym_LBRACK, - ACTIONS(2385), 1, - anon_sym_PIPE, - ACTIONS(2387), 1, - anon_sym_AMP, - ACTIONS(2389), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2371), 2, + ACTIONS(2327), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2373), 2, + ACTIONS(2329), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2383), 2, + ACTIONS(2339), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1403), 2, + STATE(1348), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2381), 3, + ACTIONS(2337), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2432), 3, + ACTIONS(2381), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2430), 15, + ACTIONS(2379), 18, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, + anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72492] = 8, - ACTIONS(2367), 1, - anon_sym_DOT, - ACTIONS(2369), 1, - anon_sym_LPAREN, - ACTIONS(2377), 1, - anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_LBRACK, + [71747] = 5, + ACTIONS(781), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1403), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2400), 5, + STATE(1047), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1536), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 25, + ACTIONS(1531), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -87373,46 +86375,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72547] = 10, - ACTIONS(2367), 1, - anon_sym_DOT, - ACTIONS(2369), 1, - anon_sym_LPAREN, - ACTIONS(2377), 1, - anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_LBRACK, + [71796] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2371), 2, + ACTIONS(271), 5, anon_sym_STAR, - anon_sym_SLASH, - STATE(1403), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2381), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 22, + ACTIONS(269), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, 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, @@ -87422,173 +86417,274 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72606] = 14, - ACTIONS(2367), 1, - anon_sym_DOT, - ACTIONS(2369), 1, - anon_sym_LPAREN, - ACTIONS(2377), 1, - anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_LBRACK, - ACTIONS(2387), 1, - anon_sym_AMP, - ACTIONS(2389), 1, - anon_sym_CARET, + [71841] = 4, + ACTIONS(284), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2371), 2, + ACTIONS(271), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2373), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(269), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2383), 2, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, - STATE(1403), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2381), 3, - anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [71888] = 4, + ACTIONS(284), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(271), 6, + anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 16, + ACTIONS(269), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72673] = 13, - ACTIONS(2367), 1, - anon_sym_DOT, - ACTIONS(2369), 1, - anon_sym_LPAREN, - ACTIONS(2377), 1, - anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_LBRACK, - ACTIONS(2389), 1, - anon_sym_CARET, + sym_type_conversion, + [71935] = 4, + ACTIONS(1538), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2371), 2, + ACTIONS(1536), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2373), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1531), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2383), 2, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, - STATE(1403), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2381), 3, - anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [71982] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(271), 5, + anon_sym_STAR, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 17, + ACTIONS(269), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72738] = 12, - ACTIONS(2367), 1, - anon_sym_DOT, - ACTIONS(2369), 1, - anon_sym_LPAREN, - ACTIONS(2377), 1, - anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_LBRACK, + [72027] = 5, + ACTIONS(1533), 1, + anon_sym_COMMA, + ACTIONS(1538), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2371), 2, + ACTIONS(1536), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2373), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1531), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2383), 2, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, - STATE(1403), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2381), 3, - anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [72076] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2455), 5, + anon_sym_STAR, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 18, + ACTIONS(2453), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72801] = 3, + [72121] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + ACTIONS(1613), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 31, + ACTIONS(1608), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -87620,21 +86716,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72846] = 3, + [72166] = 5, + ACTIONS(781), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 5, + STATE(1049), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2282), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(2280), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -87644,6 +86741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -87662,63 +86760,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72891] = 3, + [72215] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1676), 5, + ACTIONS(1671), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(1674), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(1668), 14, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - 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(1664), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72936] = 3, + [72264] = 5, + ACTIONS(2457), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1676), 5, + STATE(1049), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2286), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(2284), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -87728,6 +86829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -87746,17 +86848,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72981] = 3, + [72313] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 5, + ACTIONS(2462), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 31, + ACTIONS(2460), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -87788,17 +86890,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73026] = 3, + [72358] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 5, + ACTIONS(2466), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 31, + ACTIONS(2464), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -87830,34 +86932,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73071] = 5, - ACTIONS(1549), 1, - anon_sym_COMMA, - ACTIONS(1554), 1, + [72403] = 6, + ACTIONS(1538), 1, anon_sym_COLON_EQ, + ACTIONS(2468), 1, + anon_sym_LBRACK, + STATE(1896), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 6, + ACTIONS(1536), 6, anon_sym_STAR, anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 28, + ACTIONS(1531), 27, 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, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -87873,62 +86977,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [73120] = 5, + [72454] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1655), 2, + ACTIONS(2472), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1658), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1652), 14, + ACTIONS(2470), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + 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(1648), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73169] = 3, + [72499] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 5, + ACTIONS(2476), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 31, + ACTIONS(2474), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -87960,33 +87061,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73214] = 6, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, - ACTIONS(2497), 1, + [72544] = 8, + ACTIONS(2295), 1, + anon_sym_DOT, + ACTIONS(2297), 1, + anon_sym_LPAREN, + ACTIONS(2305), 1, + anon_sym_STAR_STAR, + ACTIONS(2307), 1, anon_sym_LBRACK, - STATE(1925), 1, - sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 6, + STATE(1388), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2423), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 27, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2421), 25, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -88005,30 +87108,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73265] = 3, + [72599] = 6, + ACTIONS(1538), 1, + anon_sym_COLON_EQ, + ACTIONS(2478), 1, + anon_sym_LBRACK, + STATE(1918), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2501), 5, + ACTIONS(1536), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2499), 31, + ACTIONS(1531), 27, sym__newline, anon_sym_SEMI, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -88047,28 +87153,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73310] = 8, - ACTIONS(2300), 1, + [72650] = 8, + ACTIONS(2295), 1, anon_sym_DOT, - ACTIONS(2302), 1, + ACTIONS(2297), 1, anon_sym_LPAREN, - ACTIONS(2310), 1, + ACTIONS(2305), 1, anon_sym_STAR_STAR, - ACTIONS(2312), 1, + ACTIONS(2307), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1315), 2, + STATE(1388), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2443), 5, + ACTIONS(2427), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2441), 25, + ACTIONS(2425), 25, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -88094,35 +87200,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73365] = 8, - ACTIONS(2300), 1, + [72705] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2482), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2480), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(2302), 1, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(2310), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(2312), 1, anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + 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_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [72750] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1315), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2439), 5, - anon_sym_as, + ACTIONS(2486), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2437), 25, + ACTIONS(2484), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, 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_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -88141,17 +87284,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73420] = 3, + [72795] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2505), 5, + ACTIONS(2490), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2503), 31, + ACTIONS(2488), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -88183,17 +87326,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73465] = 3, + [72840] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 5, + ACTIONS(2494), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2507), 31, + ACTIONS(2492), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -88225,17 +87368,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73510] = 3, + [72885] = 8, + ACTIONS(2252), 1, + anon_sym_DOT, + ACTIONS(2254), 1, + anon_sym_LPAREN, + ACTIONS(2262), 1, + anon_sym_STAR_STAR, + ACTIONS(2264), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2513), 5, + STATE(1356), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2423), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2421), 25, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + 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_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [72940] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1536), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2511), 31, + ACTIONS(1531), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -88267,28 +87457,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73555] = 8, - ACTIONS(2300), 1, + [72985] = 8, + ACTIONS(2295), 1, anon_sym_DOT, - ACTIONS(2302), 1, + ACTIONS(2297), 1, anon_sym_LPAREN, - ACTIONS(2310), 1, + ACTIONS(2305), 1, anon_sym_STAR_STAR, - ACTIONS(2312), 1, + ACTIONS(2307), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1315), 2, + STATE(1388), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2400), 5, + ACTIONS(2381), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 25, + ACTIONS(2379), 25, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -88314,36 +87504,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73610] = 11, - ACTIONS(2300), 1, + [73040] = 11, + ACTIONS(2295), 1, anon_sym_DOT, - ACTIONS(2302), 1, + ACTIONS(2297), 1, anon_sym_LPAREN, - ACTIONS(2310), 1, + ACTIONS(2305), 1, anon_sym_STAR_STAR, - ACTIONS(2312), 1, + ACTIONS(2307), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2304), 2, + ACTIONS(2299), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2316), 2, + ACTIONS(2311), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1315), 2, + STATE(1388), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2314), 3, + ACTIONS(2309), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, + ACTIONS(2381), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 20, + ACTIONS(2379), 20, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -88364,45 +87554,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73671] = 15, - ACTIONS(2300), 1, + [73101] = 15, + ACTIONS(2295), 1, anon_sym_DOT, - ACTIONS(2302), 1, + ACTIONS(2297), 1, anon_sym_LPAREN, - ACTIONS(2310), 1, + ACTIONS(2305), 1, anon_sym_STAR_STAR, - ACTIONS(2312), 1, + ACTIONS(2307), 1, anon_sym_LBRACK, - ACTIONS(2318), 1, + ACTIONS(2313), 1, anon_sym_PIPE, - ACTIONS(2320), 1, + ACTIONS(2315), 1, anon_sym_AMP, - ACTIONS(2322), 1, + ACTIONS(2317), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2304), 2, + ACTIONS(2299), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2306), 2, + ACTIONS(2301), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2316), 2, + ACTIONS(2311), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1315), 2, + STATE(1388), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2314), 3, + ACTIONS(2309), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2432), 3, + ACTIONS(2419), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2430), 15, + ACTIONS(2417), 15, anon_sym_COMMA, anon_sym_if, anon_sym_async, @@ -88418,28 +87608,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73740] = 8, - ACTIONS(2300), 1, + [73170] = 8, + ACTIONS(2295), 1, anon_sym_DOT, - ACTIONS(2302), 1, + ACTIONS(2297), 1, anon_sym_LPAREN, - ACTIONS(2310), 1, + ACTIONS(2305), 1, anon_sym_STAR_STAR, - ACTIONS(2312), 1, + ACTIONS(2307), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1315), 2, + STATE(1388), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2400), 5, + ACTIONS(2381), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 25, + ACTIONS(2379), 25, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -88465,33 +87655,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73795] = 10, - ACTIONS(2300), 1, + [73225] = 10, + ACTIONS(2295), 1, anon_sym_DOT, - ACTIONS(2302), 1, + ACTIONS(2297), 1, anon_sym_LPAREN, - ACTIONS(2310), 1, + ACTIONS(2305), 1, anon_sym_STAR_STAR, - ACTIONS(2312), 1, + ACTIONS(2307), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2304), 2, + ACTIONS(2299), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1315), 2, + STATE(1388), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2314), 3, + ACTIONS(2309), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, + ACTIONS(2381), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 22, + ACTIONS(2379), 22, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -88514,43 +87704,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73854] = 14, - ACTIONS(2300), 1, + [73284] = 14, + ACTIONS(2295), 1, anon_sym_DOT, - ACTIONS(2302), 1, + ACTIONS(2297), 1, anon_sym_LPAREN, - ACTIONS(2310), 1, + ACTIONS(2305), 1, anon_sym_STAR_STAR, - ACTIONS(2312), 1, + ACTIONS(2307), 1, anon_sym_LBRACK, - ACTIONS(2320), 1, + ACTIONS(2315), 1, anon_sym_AMP, - ACTIONS(2322), 1, + ACTIONS(2317), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2304), 2, + ACTIONS(2299), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2306), 2, + ACTIONS(2301), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2316), 2, + ACTIONS(2311), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1315), 2, + STATE(1388), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2314), 3, + ACTIONS(2309), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, + ACTIONS(2381), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 16, + ACTIONS(2379), 16, anon_sym_COMMA, anon_sym_if, anon_sym_async, @@ -88567,41 +87757,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73921] = 13, - ACTIONS(2300), 1, + [73351] = 13, + ACTIONS(2295), 1, anon_sym_DOT, - ACTIONS(2302), 1, + ACTIONS(2297), 1, anon_sym_LPAREN, - ACTIONS(2310), 1, + ACTIONS(2305), 1, anon_sym_STAR_STAR, - ACTIONS(2312), 1, + ACTIONS(2307), 1, anon_sym_LBRACK, - ACTIONS(2322), 1, + ACTIONS(2317), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2304), 2, + ACTIONS(2299), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2306), 2, + ACTIONS(2301), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2316), 2, + ACTIONS(2311), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1315), 2, + STATE(1388), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2314), 3, + ACTIONS(2309), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, + ACTIONS(2381), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 17, + ACTIONS(2379), 17, anon_sym_COMMA, anon_sym_if, anon_sym_async, @@ -88619,45 +87809,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73986] = 12, - ACTIONS(2300), 1, + [73416] = 12, + ACTIONS(2252), 1, anon_sym_DOT, - ACTIONS(2302), 1, + ACTIONS(2254), 1, anon_sym_LPAREN, - ACTIONS(2310), 1, + ACTIONS(2262), 1, anon_sym_STAR_STAR, - ACTIONS(2312), 1, + ACTIONS(2264), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2304), 2, + ACTIONS(2256), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2306), 2, + ACTIONS(2258), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2316), 2, + ACTIONS(2268), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1315), 2, + STATE(1356), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2314), 3, + ACTIONS(2266), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, + ACTIONS(2381), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 18, + ACTIONS(2379), 18, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_RBRACK, anon_sym_PIPE, anon_sym_not, anon_sym_and, @@ -88670,33 +87860,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74049] = 3, + [73479] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2447), 5, - anon_sym_as, + ACTIONS(1594), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2445), 31, - sym_string_start, + ACTIONS(1589), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, 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_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -88712,17 +87902,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74094] = 3, + [73524] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2517), 5, + ACTIONS(1636), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2515), 31, + ACTIONS(1631), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -88754,24 +87944,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74139] = 3, + [73569] = 5, + ACTIONS(284), 1, + anon_sym_COLON_EQ, + ACTIONS(747), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2460), 5, + ACTIONS(271), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2458), 31, - sym_string_start, + ACTIONS(269), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -88780,7 +87973,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -88796,17 +87988,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74184] = 3, + [73618] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2498), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2496), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + 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_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [73663] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2521), 5, + ACTIONS(2502), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2519), 31, + ACTIONS(2500), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -88838,17 +88072,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74229] = 3, + [73708] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2525), 5, + ACTIONS(2506), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2523), 31, + ACTIONS(2504), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -88880,17 +88114,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74274] = 3, + [73753] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2529), 5, + ACTIONS(2510), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2527), 31, + ACTIONS(2508), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -88922,32 +88156,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74319] = 3, + [73798] = 5, + ACTIONS(284), 1, + anon_sym_COLON_EQ, + ACTIONS(747), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2447), 5, + ACTIONS(271), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2445), 31, - sym_string_start, + ACTIONS(269), 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_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -88963,36 +88200,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [74364] = 8, - ACTIONS(2332), 1, - anon_sym_DOT, - ACTIONS(2334), 1, - anon_sym_LPAREN, - ACTIONS(2342), 1, - anon_sym_STAR_STAR, - ACTIONS(2344), 1, - anon_sym_LBRACK, + [73847] = 5, + ACTIONS(1538), 1, + anon_sym_COLON_EQ, + ACTIONS(2512), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1282), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2443), 5, + ACTIONS(1536), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2441), 25, + ACTIONS(1531), 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_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -89011,38 +88244,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74419] = 8, - ACTIONS(2332), 1, - anon_sym_DOT, - ACTIONS(2334), 1, - anon_sym_LPAREN, - ACTIONS(2342), 1, - anon_sym_STAR_STAR, - ACTIONS(2344), 1, - anon_sym_LBRACK, + [73896] = 5, + ACTIONS(276), 1, + anon_sym_COMMA, + ACTIONS(284), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1282), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2439), 5, + ACTIONS(271), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2437), 25, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(269), 28, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -89058,25 +88287,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74474] = 3, + sym_type_conversion, + [73945] = 5, + ACTIONS(276), 1, + anon_sym_COMMA, + ACTIONS(284), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2460), 5, + ACTIONS(271), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2458), 31, - sym_string_start, + ACTIONS(269), 28, 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_STAR_STAR, anon_sym_LBRACK, @@ -89100,189 +88332,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [74519] = 8, - ACTIONS(2332), 1, - anon_sym_DOT, - ACTIONS(2334), 1, - anon_sym_LPAREN, - ACTIONS(2342), 1, - anon_sym_STAR_STAR, - ACTIONS(2344), 1, - anon_sym_LBRACK, + [73994] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1282), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2400), 5, + ACTIONS(649), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(654), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 25, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(668), 14, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - 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(647), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74574] = 11, - ACTIONS(2332), 1, - anon_sym_DOT, - ACTIONS(2334), 1, - anon_sym_LPAREN, - ACTIONS(2342), 1, - anon_sym_STAR_STAR, - ACTIONS(2344), 1, - anon_sym_LBRACK, + [74043] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2336), 2, + ACTIONS(649), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2348), 2, + ACTIONS(654), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(668), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - STATE(1282), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2346), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2398), 20, - anon_sym_RPAREN, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(647), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_from, 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74635] = 15, - ACTIONS(2332), 1, - anon_sym_DOT, - ACTIONS(2334), 1, - anon_sym_LPAREN, - ACTIONS(2342), 1, - anon_sym_STAR_STAR, - ACTIONS(2344), 1, - anon_sym_LBRACK, - ACTIONS(2350), 1, - anon_sym_PIPE, - ACTIONS(2352), 1, - anon_sym_AMP, - ACTIONS(2354), 1, - anon_sym_CARET, + [74092] = 4, + ACTIONS(284), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2336), 2, + ACTIONS(271), 6, + anon_sym_as, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, - ACTIONS(2338), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2348), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1282), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2346), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2432), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2430), 15, - anon_sym_RPAREN, + ACTIONS(269), 29, + anon_sym_DOT, + anon_sym_LPAREN, 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_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74704] = 8, - ACTIONS(2332), 1, - anon_sym_DOT, - ACTIONS(2334), 1, - anon_sym_LPAREN, - ACTIONS(2342), 1, - anon_sym_STAR_STAR, - ACTIONS(2344), 1, - anon_sym_LBRACK, + [74139] = 4, + ACTIONS(284), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1282), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2400), 5, + ACTIONS(271), 6, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 25, - anon_sym_RPAREN, + ACTIONS(269), 29, + anon_sym_DOT, + anon_sym_LPAREN, 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_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -89298,46 +88506,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74759] = 10, - ACTIONS(2332), 1, - anon_sym_DOT, - ACTIONS(2334), 1, - anon_sym_LPAREN, - ACTIONS(2342), 1, - anon_sym_STAR_STAR, - ACTIONS(2344), 1, - anon_sym_LBRACK, + [74186] = 4, + ACTIONS(1538), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2336), 2, + ACTIONS(1536), 6, + anon_sym_as, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, - STATE(1282), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2346), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 22, - anon_sym_RPAREN, + ACTIONS(1531), 29, + anon_sym_DOT, + anon_sym_LPAREN, 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_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, 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, @@ -89347,173 +88549,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74818] = 14, - ACTIONS(2332), 1, + [74233] = 8, + ACTIONS(2351), 1, anon_sym_DOT, - ACTIONS(2334), 1, + ACTIONS(2353), 1, anon_sym_LPAREN, - ACTIONS(2342), 1, + ACTIONS(2361), 1, anon_sym_STAR_STAR, - ACTIONS(2344), 1, + ACTIONS(2363), 1, anon_sym_LBRACK, - ACTIONS(2352), 1, - anon_sym_AMP, - ACTIONS(2354), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2336), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2338), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2348), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1282), 2, + STATE(1352), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2346), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, + ACTIONS(2423), 5, + anon_sym_STAR, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 16, - anon_sym_RPAREN, + ACTIONS(2421), 25, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74885] = 13, - ACTIONS(2332), 1, - anon_sym_DOT, - ACTIONS(2334), 1, - anon_sym_LPAREN, - ACTIONS(2342), 1, - anon_sym_STAR_STAR, - ACTIONS(2344), 1, - anon_sym_LBRACK, - ACTIONS(2354), 1, - anon_sym_CARET, + [74288] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2336), 2, + ACTIONS(2516), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2338), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2348), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1282), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2346), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 17, - anon_sym_RPAREN, + ACTIONS(2514), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74950] = 12, - ACTIONS(2332), 1, + [74333] = 8, + ACTIONS(2351), 1, anon_sym_DOT, - ACTIONS(2334), 1, + ACTIONS(2353), 1, anon_sym_LPAREN, - ACTIONS(2342), 1, + ACTIONS(2361), 1, anon_sym_STAR_STAR, - ACTIONS(2344), 1, + ACTIONS(2363), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2336), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2338), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2348), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1282), 2, + STATE(1352), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2346), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, + ACTIONS(2427), 5, + anon_sym_STAR, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 18, - anon_sym_RPAREN, + ACTIONS(2425), 25, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75013] = 3, + [74388] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2533), 5, + ACTIONS(2520), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2531), 31, + ACTIONS(2518), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -89545,22 +88727,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75058] = 5, - ACTIONS(819), 1, - sym_string_start, + [74433] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1111), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1552), 4, + ACTIONS(2524), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 29, + ACTIONS(2522), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -89570,7 +88751,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -89589,33 +88769,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75107] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [74478] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(2528), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(2526), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -89631,34 +88811,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [75154] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [74523] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(2532), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(2530), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -89674,34 +88853,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [75201] = 4, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, + [74568] = 8, + ACTIONS(2252), 1, + anon_sym_DOT, + ACTIONS(2254), 1, + anon_sym_LPAREN, + ACTIONS(2262), 1, + anon_sym_STAR_STAR, + ACTIONS(2264), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 6, + STATE(1356), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2427), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2425), 25, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -89717,36 +88900,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [75248] = 5, - ACTIONS(819), 1, - sym_string_start, + [74623] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1112), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2298), 4, + ACTIONS(2441), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2296), 29, + ACTIONS(2439), 31, + sym_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_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -89762,35 +88942,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75297] = 5, - ACTIONS(2535), 1, - sym_string_start, + [74668] = 6, + ACTIONS(284), 1, + anon_sym_COLON_EQ, + ACTIONS(654), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1112), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2362), 4, + ACTIONS(647), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(649), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2360), 29, + ACTIONS(668), 27, 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_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -89806,33 +88987,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75346] = 3, + [74719] = 6, + ACTIONS(284), 1, + anon_sym_COLON_EQ, + ACTIONS(654), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2540), 5, + ACTIONS(647), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(649), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(668), 27, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -89848,35 +89032,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75391] = 5, - ACTIONS(292), 1, + [74770] = 6, + ACTIONS(1538), 1, anon_sym_COLON_EQ, - ACTIONS(763), 1, - anon_sym_EQ, + ACTIONS(1674), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(1664), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1671), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(1668), 27, 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_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -89892,23 +89077,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75440] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(763), 1, - anon_sym_EQ, + [74821] = 8, + ACTIONS(2252), 1, + anon_sym_DOT, + ACTIONS(2254), 1, + anon_sym_LPAREN, + ACTIONS(2262), 1, + anon_sym_STAR_STAR, + ACTIONS(2264), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + STATE(1356), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2381), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2379), 25, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -89916,8 +89106,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -89936,23 +89124,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75489] = 5, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, - ACTIONS(2542), 1, - anon_sym_EQ, + [74876] = 11, + ACTIONS(2252), 1, + anon_sym_DOT, + ACTIONS(2254), 1, + anon_sym_LPAREN, + ACTIONS(2262), 1, + anon_sym_STAR_STAR, + ACTIONS(2264), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 5, - anon_sym_as, + ACTIONS(2256), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2268), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1356), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2266), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2381), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2379), 20, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -89960,17 +89161,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, 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, @@ -89980,17 +89174,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75538] = 3, + [74937] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(2536), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 31, + ACTIONS(2534), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -90022,75 +89216,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75583] = 3, + [74982] = 15, + ACTIONS(2252), 1, + anon_sym_DOT, + ACTIONS(2254), 1, + anon_sym_LPAREN, + ACTIONS(2262), 1, + anon_sym_STAR_STAR, + ACTIONS(2264), 1, + anon_sym_LBRACK, + ACTIONS(2270), 1, + anon_sym_PIPE, + ACTIONS(2272), 1, + anon_sym_AMP, + ACTIONS(2274), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(2256), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2258), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2268), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1356), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2266), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2419), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2417), 15, + 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_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75628] = 3, + [75051] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1614), 5, + ACTIONS(2434), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(2432), 31, + sym_string_start, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, 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_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -90106,33 +89312,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75673] = 6, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, - ACTIONS(2544), 1, + [75096] = 8, + ACTIONS(2252), 1, + anon_sym_DOT, + ACTIONS(2254), 1, + anon_sym_LPAREN, + ACTIONS(2262), 1, + anon_sym_STAR_STAR, + ACTIONS(2264), 1, anon_sym_LBRACK, - STATE(1890), 1, - sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 6, + STATE(1356), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2381), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 27, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, + ACTIONS(2379), 25, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -90151,28 +89359,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75724] = 8, - ACTIONS(2268), 1, + [75151] = 10, + ACTIONS(2252), 1, anon_sym_DOT, - ACTIONS(2270), 1, + ACTIONS(2254), 1, anon_sym_LPAREN, - ACTIONS(2278), 1, + ACTIONS(2262), 1, anon_sym_STAR_STAR, - ACTIONS(2280), 1, + ACTIONS(2264), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1389), 2, + ACTIONS(2256), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(1356), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2443), 5, + ACTIONS(2266), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2381), 3, anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2441), 25, + ACTIONS(2379), 22, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -90180,15 +89393,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, 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, @@ -90198,64 +89408,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75779] = 8, - ACTIONS(2268), 1, + [75210] = 14, + ACTIONS(2252), 1, anon_sym_DOT, - ACTIONS(2270), 1, + ACTIONS(2254), 1, anon_sym_LPAREN, - ACTIONS(2278), 1, + ACTIONS(2262), 1, anon_sym_STAR_STAR, - ACTIONS(2280), 1, + ACTIONS(2264), 1, anon_sym_LBRACK, + ACTIONS(2272), 1, + anon_sym_AMP, + ACTIONS(2274), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1389), 2, + ACTIONS(2256), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2258), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2268), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1356), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2439), 5, + ACTIONS(2266), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2381), 3, anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2437), 25, + ACTIONS(2379), 16, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75834] = 3, + [75277] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, + ACTIONS(1680), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 31, + ACTIONS(1678), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -90287,30 +89503,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75879] = 3, + [75322] = 8, + ACTIONS(2351), 1, + anon_sym_DOT, + ACTIONS(2353), 1, + anon_sym_LPAREN, + ACTIONS(2361), 1, + anon_sym_STAR_STAR, + ACTIONS(2363), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + STATE(1352), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2381), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2379), 25, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -90329,39 +89550,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75924] = 3, + [75377] = 11, + ACTIONS(2351), 1, + anon_sym_DOT, + ACTIONS(2353), 1, + anon_sym_LPAREN, + ACTIONS(2361), 1, + anon_sym_STAR_STAR, + ACTIONS(2363), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1628), 5, + ACTIONS(2355), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2367), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1352), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2365), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2381), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2379), 20, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, 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, @@ -90371,76 +89600,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75969] = 3, + [75438] = 15, + ACTIONS(2351), 1, + anon_sym_DOT, + ACTIONS(2353), 1, + anon_sym_LPAREN, + ACTIONS(2361), 1, + anon_sym_STAR_STAR, + ACTIONS(2363), 1, + anon_sym_LBRACK, + ACTIONS(2369), 1, + anon_sym_PIPE, + ACTIONS(2371), 1, + anon_sym_AMP, + ACTIONS(2373), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1642), 5, + ACTIONS(2355), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2357), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2367), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1352), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2365), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2419), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1637), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2417), 15, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76014] = 8, - ACTIONS(2268), 1, + [75507] = 8, + ACTIONS(2351), 1, anon_sym_DOT, - ACTIONS(2270), 1, + ACTIONS(2353), 1, anon_sym_LPAREN, - ACTIONS(2278), 1, + ACTIONS(2361), 1, anon_sym_STAR_STAR, - ACTIONS(2280), 1, + ACTIONS(2363), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1389), 2, + STATE(1352), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2400), 5, - anon_sym_as, + ACTIONS(2381), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 25, - anon_sym_RPAREN, + ACTIONS(2379), 25, 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_AT, anon_sym_DASH, @@ -90460,44 +89701,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76069] = 11, - ACTIONS(2268), 1, + [75562] = 10, + ACTIONS(2351), 1, anon_sym_DOT, - ACTIONS(2270), 1, + ACTIONS(2353), 1, anon_sym_LPAREN, - ACTIONS(2278), 1, + ACTIONS(2361), 1, anon_sym_STAR_STAR, - ACTIONS(2280), 1, + ACTIONS(2363), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2272), 2, + ACTIONS(2355), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2284), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1389), 2, + STATE(1352), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2282), 3, + ACTIONS(2365), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, - anon_sym_as, + ACTIONS(2381), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 20, - anon_sym_RPAREN, + ACTIONS(2379), 22, 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_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, @@ -90510,51 +89750,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76130] = 15, - ACTIONS(2268), 1, + [75621] = 14, + ACTIONS(2351), 1, anon_sym_DOT, - ACTIONS(2270), 1, + ACTIONS(2353), 1, anon_sym_LPAREN, - ACTIONS(2278), 1, + ACTIONS(2361), 1, anon_sym_STAR_STAR, - ACTIONS(2280), 1, + ACTIONS(2363), 1, anon_sym_LBRACK, - ACTIONS(2286), 1, - anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2371), 1, anon_sym_AMP, - ACTIONS(2290), 1, + ACTIONS(2373), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2272), 2, + ACTIONS(2355), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2274), 2, + ACTIONS(2357), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2284), 2, + ACTIONS(2367), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1389), 2, + STATE(1352), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2282), 3, + ACTIONS(2365), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2432), 3, - anon_sym_as, + ACTIONS(2381), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2430), 15, - anon_sym_RPAREN, + ACTIONS(2379), 16, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, + anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, @@ -90564,139 +89803,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76199] = 8, - ACTIONS(2268), 1, + [75688] = 13, + ACTIONS(2351), 1, anon_sym_DOT, - ACTIONS(2270), 1, + ACTIONS(2353), 1, anon_sym_LPAREN, - ACTIONS(2278), 1, + ACTIONS(2361), 1, anon_sym_STAR_STAR, - ACTIONS(2280), 1, + ACTIONS(2363), 1, anon_sym_LBRACK, + ACTIONS(2373), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1389), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2400), 5, - anon_sym_as, + ACTIONS(2355), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2357), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2367), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1352), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2365), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2381), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 25, - anon_sym_RPAREN, + ACTIONS(2379), 17, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76254] = 10, - ACTIONS(2268), 1, + [75753] = 12, + ACTIONS(2351), 1, anon_sym_DOT, - ACTIONS(2270), 1, + ACTIONS(2353), 1, anon_sym_LPAREN, - ACTIONS(2278), 1, + ACTIONS(2361), 1, anon_sym_STAR_STAR, - ACTIONS(2280), 1, + ACTIONS(2363), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2272), 2, + ACTIONS(2355), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1389), 2, + ACTIONS(2357), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2367), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1352), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2282), 3, + ACTIONS(2365), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, - anon_sym_as, + ACTIONS(2381), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 22, - anon_sym_RPAREN, + ACTIONS(2379), 18, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76313] = 14, - ACTIONS(2268), 1, + [75816] = 13, + ACTIONS(2252), 1, anon_sym_DOT, - ACTIONS(2270), 1, + ACTIONS(2254), 1, anon_sym_LPAREN, - ACTIONS(2278), 1, + ACTIONS(2262), 1, anon_sym_STAR_STAR, - ACTIONS(2280), 1, + ACTIONS(2264), 1, anon_sym_LBRACK, - ACTIONS(2288), 1, - anon_sym_AMP, - ACTIONS(2290), 1, + ACTIONS(2274), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2272), 2, + ACTIONS(2256), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2274), 2, + ACTIONS(2258), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2284), 2, + ACTIONS(2268), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1389), 2, + STATE(1356), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2282), 3, + ACTIONS(2266), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, + ACTIONS(2381), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 16, + ACTIONS(2379), 17, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -90707,85 +89951,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76380] = 13, - ACTIONS(2268), 1, + [75881] = 12, + ACTIONS(2295), 1, anon_sym_DOT, - ACTIONS(2270), 1, + ACTIONS(2297), 1, anon_sym_LPAREN, - ACTIONS(2278), 1, + ACTIONS(2305), 1, anon_sym_STAR_STAR, - ACTIONS(2280), 1, + ACTIONS(2307), 1, anon_sym_LBRACK, - ACTIONS(2290), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2272), 2, + ACTIONS(2299), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2274), 2, + ACTIONS(2301), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2284), 2, + ACTIONS(2311), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1389), 2, + STATE(1388), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2282), 3, + ACTIONS(2309), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2400), 3, + ACTIONS(2381), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 17, - anon_sym_RPAREN, + ACTIONS(2379), 18, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_RBRACK, anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_AMP, + anon_sym_CARET, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76445] = 5, - ACTIONS(284), 1, + [75944] = 4, + ACTIONS(1610), 1, anon_sym_COMMA, - ACTIONS(292), 1, - anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(1613), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, + ACTIONS(1608), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -90809,31 +90051,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [76494] = 3, + [75990] = 4, + ACTIONS(284), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 5, + ACTIONS(271), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2507), 30, + ACTIONS(269), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -90849,33 +90093,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [76538] = 3, + [76036] = 4, + ACTIONS(284), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1642), 5, - anon_sym_as, + ACTIONS(271), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1637), 30, + ACTIONS(269), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -90891,28 +90135,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76582] = 5, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, + [76082] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1549), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1552), 5, - anon_sym_as, + ACTIONS(2434), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 27, + ACTIONS(2432), 30, + 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_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -90934,25 +90176,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76630] = 3, + [76126] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 5, - anon_sym_as, + ACTIONS(1594), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 30, + ACTIONS(1589), 30, anon_sym_DOT, anon_sym_LPAREN, 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_STAR_STAR, anon_sym_LBRACK, @@ -90975,21 +90216,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76674] = 4, - ACTIONS(1611), 1, - anon_sym_COMMA, + sym_type_conversion, + [76170] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1614), 5, + ACTIONS(1636), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 29, + ACTIONS(1631), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, @@ -91017,32 +90258,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [76720] = 4, - ACTIONS(1549), 1, - anon_sym_COMMA, + [76214] = 8, + ACTIONS(2386), 1, + anon_sym_DOT, + ACTIONS(2388), 1, + anon_sym_LPAREN, + ACTIONS(2396), 1, + anon_sym_STAR_STAR, + ACTIONS(2398), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 5, + STATE(1403), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2381), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2379), 25, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91058,29 +90304,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [76766] = 3, + [76268] = 11, + ACTIONS(2386), 1, + anon_sym_DOT, + ACTIONS(2388), 1, + anon_sym_LPAREN, + ACTIONS(2396), 1, + anon_sym_STAR_STAR, + ACTIONS(2398), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2447), 5, + ACTIONS(2381), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2390), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2402), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1403), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2400), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2379), 20, + anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [76328] = 15, + ACTIONS(2386), 1, + anon_sym_DOT, + ACTIONS(2388), 1, + anon_sym_LPAREN, + ACTIONS(2396), 1, + anon_sym_STAR_STAR, + ACTIONS(2398), 1, + anon_sym_LBRACK, + ACTIONS(2404), 1, + anon_sym_PIPE, + ACTIONS(2406), 1, + anon_sym_AMP, + ACTIONS(2408), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2390), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2392), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2402), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2419), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2445), 30, - sym_string_start, + STATE(1403), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2400), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2417), 15, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [76396] = 8, + ACTIONS(2386), 1, anon_sym_DOT, + ACTIONS(2388), 1, anon_sym_LPAREN, + ACTIONS(2396), 1, + anon_sym_STAR_STAR, + ACTIONS(2398), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1403), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2381), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2379), 25, 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_STAR_STAR, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, @@ -91100,32 +90452,234 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76810] = 4, - ACTIONS(1625), 1, + [76450] = 10, + ACTIONS(2386), 1, + anon_sym_DOT, + ACTIONS(2388), 1, + anon_sym_LPAREN, + ACTIONS(2396), 1, + anon_sym_STAR_STAR, + ACTIONS(2398), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2381), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2390), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(1403), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2400), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2379), 22, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [76508] = 14, + ACTIONS(2386), 1, + anon_sym_DOT, + ACTIONS(2388), 1, + anon_sym_LPAREN, + ACTIONS(2396), 1, + anon_sym_STAR_STAR, + ACTIONS(2398), 1, + anon_sym_LBRACK, + ACTIONS(2406), 1, + anon_sym_AMP, + ACTIONS(2408), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2381), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2390), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2392), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2402), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1403), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2400), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2379), 16, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [76574] = 13, + ACTIONS(2386), 1, + anon_sym_DOT, + ACTIONS(2388), 1, + anon_sym_LPAREN, + ACTIONS(2396), 1, + anon_sym_STAR_STAR, + ACTIONS(2398), 1, + anon_sym_LBRACK, + ACTIONS(2408), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2381), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2390), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2392), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2402), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1403), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2400), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2379), 17, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [76638] = 12, + ACTIONS(2386), 1, + anon_sym_DOT, + ACTIONS(2388), 1, + anon_sym_LPAREN, + ACTIONS(2396), 1, + anon_sym_STAR_STAR, + ACTIONS(2398), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2381), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2390), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2392), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2402), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1403), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2400), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2379), 18, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [76700] = 4, + ACTIONS(1538), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1628), 5, + ACTIONS(1536), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 29, + ACTIONS(1531), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91141,19 +90695,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [76856] = 5, + [76746] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(665), 2, + ACTIONS(649), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(670), 3, - anon_sym_EQ, + ACTIONS(654), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 14, + ACTIONS(668), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -91168,11 +90721,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(663), 16, + ACTIONS(647), 16, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_RBRACE, anon_sym_not, @@ -91184,19 +90738,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [76904] = 5, + [76794] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(665), 2, + ACTIONS(649), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(670), 3, - anon_sym_EQ, + ACTIONS(654), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 14, + ACTIONS(668), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -91211,11 +90764,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(663), 16, + ACTIONS(647), 16, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_RBRACE, anon_sym_not, @@ -91227,28 +90781,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [76952] = 4, - ACTIONS(292), 1, + [76842] = 4, + ACTIONS(284), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(271), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, + ACTIONS(269), 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_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -91270,27 +90823,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76998] = 4, - ACTIONS(292), 1, + [76888] = 4, + ACTIONS(284), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(271), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, + ACTIONS(269), 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_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -91312,27 +90865,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77044] = 4, - ACTIONS(1554), 1, + [76934] = 4, + ACTIONS(1538), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 6, + ACTIONS(1536), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 28, + ACTIONS(1531), 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_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -91354,115 +90907,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77090] = 4, - ACTIONS(1639), 1, - anon_sym_COMMA, + [76980] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1642), 5, + ACTIONS(1671), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(1674), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1637), 29, + ACTIONS(1668), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, - 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_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - sym_type_conversion, - [77136] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(279), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(277), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(1664), 16, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_RBRACE, - anon_sym_PLUS, 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77180] = 3, + [77028] = 6, + ACTIONS(1538), 1, + anon_sym_COLON_EQ, + ACTIONS(1545), 1, + anon_sym_LBRACK, + STATE(2043), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, - anon_sym_as, + ACTIONS(1536), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 30, + ACTIONS(1531), 26, anon_sym_DOT, anon_sym_LPAREN, 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_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91478,23 +90994,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77224] = 3, + [77078] = 5, + ACTIONS(284), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, + ACTIONS(276), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(271), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 30, + ACTIONS(269), 27, 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, @@ -91503,7 +91022,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91519,19 +91037,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77268] = 3, + [77126] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 5, + ACTIONS(1617), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2489), 30, + ACTIONS(1615), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -91544,7 +91063,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91560,20 +91078,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77312] = 3, + [77170] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2460), 5, + ACTIONS(2434), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2458), 30, + ACTIONS(2432), 30, sym_string_start, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -91582,7 +91101,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -91601,32 +91119,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77356] = 3, + [77214] = 5, + ACTIONS(284), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 5, + ACTIONS(647), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(649), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 30, + ACTIONS(668), 27, 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_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91642,32 +91162,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77400] = 3, + [77262] = 5, + ACTIONS(284), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2513), 5, + ACTIONS(647), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(649), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2511), 30, + ACTIONS(668), 27, 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_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91683,32 +91205,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77444] = 3, + [77310] = 5, + ACTIONS(1538), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2525), 5, + ACTIONS(1664), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1671), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2523), 30, + ACTIONS(1668), 27, 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_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91724,25 +91248,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77488] = 3, + [77358] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2529), 5, - anon_sym_as, + ACTIONS(1680), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2527), 30, + ACTIONS(1678), 30, anon_sym_DOT, anon_sym_LPAREN, 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_STAR_STAR, anon_sym_LBRACK, @@ -91765,19 +91288,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77532] = 3, + sym_type_conversion, + [77402] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2533), 5, + ACTIONS(1606), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2531), 30, + ACTIONS(1604), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -91790,7 +91315,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91806,17 +91330,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77576] = 3, + [77446] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2540), 5, + ACTIONS(1536), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 30, + ACTIONS(1531), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -91847,23 +91371,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77620] = 3, + [77490] = 5, + ACTIONS(1538), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(1533), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1536), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 30, + ACTIONS(1531), 27, 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, @@ -91872,7 +91399,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91888,25 +91414,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77664] = 3, + [77538] = 4, + ACTIONS(1533), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2467), 5, - anon_sym_as, + ACTIONS(1536), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2465), 30, + ACTIONS(1531), 29, anon_sym_DOT, anon_sym_LPAREN, - 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_STAR_STAR, anon_sym_LBRACK, @@ -91929,32 +91455,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77708] = 3, + sym_type_conversion, + [77584] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2471), 5, + ACTIONS(2441), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2469), 30, + ACTIONS(2439), 30, + sym_string_start, 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_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91970,25 +91497,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77752] = 3, + [77628] = 4, + ACTIONS(1591), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 5, - anon_sym_as, + ACTIONS(1594), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2473), 30, + ACTIONS(1589), 29, anon_sym_DOT, anon_sym_LPAREN, - 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_STAR_STAR, anon_sym_LBRACK, @@ -92011,155 +91538,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77796] = 3, + sym_type_conversion, + [77674] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2479), 5, - anon_sym_as, + ACTIONS(649), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(654), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2477), 30, + ACTIONS(668), 14, 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_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, - 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_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [77840] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2483), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2481), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(647), 16, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_RBRACE, - anon_sym_PLUS, 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77884] = 3, + sym_type_conversion, + [77722] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2487), 5, - anon_sym_as, + ACTIONS(649), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(654), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2485), 30, + ACTIONS(668), 14, 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_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, - 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(647), 16, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77928] = 3, + sym_type_conversion, + [77770] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2501), 5, - anon_sym_as, + ACTIONS(2441), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2499), 30, + ACTIONS(2439), 30, + sym_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_async, - anon_sym_for, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -92175,32 +91666,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77972] = 3, + [77814] = 4, + ACTIONS(284), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2505), 5, - anon_sym_as, + ACTIONS(271), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2503), 30, + ACTIONS(269), 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_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -92216,32 +91708,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78016] = 3, + [77860] = 4, + ACTIONS(284), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 5, - anon_sym_as, + ACTIONS(271), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2507), 30, + ACTIONS(269), 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_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -92257,32 +91750,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78060] = 3, + [77906] = 4, + ACTIONS(1538), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2517), 5, - anon_sym_as, + ACTIONS(1536), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2515), 30, + ACTIONS(1531), 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_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -92298,25 +91792,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78104] = 3, + [77952] = 4, + ACTIONS(1633), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2521), 5, - anon_sym_as, + ACTIONS(1636), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2519), 30, + ACTIONS(1631), 29, anon_sym_DOT, anon_sym_LPAREN, - 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_STAR_STAR, anon_sym_LBRACK, @@ -92339,24 +91833,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78148] = 3, + sym_type_conversion, + [77998] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 5, + ACTIONS(271), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 30, + ACTIONS(269), 30, anon_sym_DOT, anon_sym_LPAREN, 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_STAR_STAR, anon_sym_LBRACK, @@ -92379,27 +91875,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [78192] = 4, + [78042] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1648), 3, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - ACTIONS(1655), 5, + ACTIONS(271), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1652), 27, + ACTIONS(269), 30, 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_STAR_STAR, anon_sym_LBRACK, @@ -92422,33 +91916,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78238] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [78086] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(2490), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(2488), 30, 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_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -92464,33 +91957,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78284] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [78130] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(1613), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(1608), 30, 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_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -92506,33 +91998,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78330] = 4, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, + [78174] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 5, - anon_sym_as, + ACTIONS(1617), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 29, + ACTIONS(1615), 30, anon_sym_DOT, anon_sym_LPAREN, 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_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -92548,31 +92038,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78376] = 3, + sym_type_conversion, + [78218] = 6, + ACTIONS(1538), 1, + anon_sym_COLON_EQ, + ACTIONS(2538), 1, + anon_sym_LBRACK, + STATE(1997), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(1536), 5, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 30, + ACTIONS(1531), 27, 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_STAR_STAR, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -92588,25 +92083,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [78420] = 3, + [78268] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(2516), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 30, + ACTIONS(2514), 30, anon_sym_DOT, anon_sym_LPAREN, 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_STAR_STAR, anon_sym_LBRACK, @@ -92629,32 +92124,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [78464] = 3, + [78312] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, + ACTIONS(2434), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 30, + ACTIONS(2432), 30, + sym_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_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -92670,33 +92165,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [78508] = 3, + [78356] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2447), 5, + ACTIONS(2528), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2445), 30, - sym_string_start, + ACTIONS(2526), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -92712,24 +92206,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78552] = 3, + [78400] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 5, + ACTIONS(2532), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2489), 30, + ACTIONS(2530), 30, anon_sym_DOT, anon_sym_LPAREN, 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_STAR_STAR, anon_sym_LBRACK, @@ -92752,25 +92247,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [78596] = 3, + [78444] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 5, + ACTIONS(2451), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 30, + ACTIONS(2449), 30, anon_sym_DOT, anon_sym_LPAREN, 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_STAR_STAR, anon_sym_LBRACK, @@ -92793,25 +92288,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [78640] = 3, + [78488] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2513), 5, + ACTIONS(2510), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2511), 30, + ACTIONS(2508), 30, anon_sym_DOT, anon_sym_LPAREN, 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_STAR_STAR, anon_sym_LBRACK, @@ -92834,25 +92329,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [78684] = 3, + [78532] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2525), 5, + ACTIONS(2455), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2523), 30, + ACTIONS(2453), 30, anon_sym_DOT, anon_sym_LPAREN, 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_STAR_STAR, anon_sym_LBRACK, @@ -92875,18 +92370,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [78728] = 3, + [78576] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2529), 5, + ACTIONS(1655), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2527), 30, + ACTIONS(1653), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -92917,31 +92411,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [78772] = 3, + [78620] = 5, + ACTIONS(284), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2533), 5, + ACTIONS(647), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(649), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2531), 30, + ACTIONS(668), 27, 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_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -92957,35 +92454,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [78816] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [78668] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(284), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(279), 5, - anon_sym_as, + ACTIONS(1659), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 27, + ACTIONS(1657), 30, anon_sym_DOT, anon_sym_LPAREN, + 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_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93001,24 +92494,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78864] = 3, + sym_type_conversion, + [78712] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2540), 5, + ACTIONS(2494), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 30, + ACTIONS(2492), 30, anon_sym_DOT, anon_sym_LPAREN, 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_STAR_STAR, anon_sym_LBRACK, @@ -93041,32 +92536,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [78908] = 3, + [78756] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(1655), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 30, + ACTIONS(1653), 30, 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_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93082,32 +92577,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [78952] = 3, + [78800] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2467), 5, + ACTIONS(1659), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2465), 30, + ACTIONS(1657), 30, 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_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93123,32 +92618,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [78996] = 3, + [78844] = 5, + ACTIONS(284), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2471), 5, + ACTIONS(647), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(649), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2469), 30, + ACTIONS(668), 27, 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_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93164,32 +92661,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [79040] = 3, + [78892] = 5, + ACTIONS(1538), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 5, + ACTIONS(1664), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1671), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2473), 30, + ACTIONS(1668), 27, 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_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93205,32 +92704,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [79084] = 3, + [78940] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2479), 5, + ACTIONS(1659), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2477), 30, + ACTIONS(1657), 30, 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_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93246,32 +92745,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [79128] = 3, + [78984] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2483), 5, + ACTIONS(1606), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2481), 30, + ACTIONS(1604), 30, 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_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93287,25 +92786,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [79172] = 3, + [79028] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2487), 5, + ACTIONS(2536), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2485), 30, + ACTIONS(2534), 30, anon_sym_DOT, anon_sym_LPAREN, 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_STAR_STAR, anon_sym_LBRACK, @@ -93328,32 +92827,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [79216] = 3, + [79072] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2501), 5, + ACTIONS(2441), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2499), 30, + ACTIONS(2439), 30, + 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_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93369,25 +92868,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [79260] = 3, + [79116] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2505), 5, + ACTIONS(2462), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2503), 30, + ACTIONS(2460), 30, anon_sym_DOT, anon_sym_LPAREN, 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_STAR_STAR, anon_sym_LBRACK, @@ -93410,21 +92909,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [79304] = 3, + [79160] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + ACTIONS(2466), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 30, + ACTIONS(2464), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -93437,6 +92934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93452,25 +92950,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79348] = 3, + [79204] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1628), 5, - anon_sym_as, + ACTIONS(1659), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 30, + ACTIONS(1657), 30, anon_sym_DOT, anon_sym_LPAREN, 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_STAR_STAR, anon_sym_LBRACK, @@ -93493,20 +92990,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79392] = 3, + sym_type_conversion, + [79248] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1676), 5, + ACTIONS(2472), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 30, + ACTIONS(2470), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -93519,6 +93016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93534,24 +93032,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79436] = 3, + [79292] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2517), 5, + ACTIONS(2476), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2515), 30, + ACTIONS(2474), 30, anon_sym_DOT, anon_sym_LPAREN, 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_STAR_STAR, anon_sym_LBRACK, @@ -93574,25 +93073,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [79480] = 3, + [79336] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2521), 5, + ACTIONS(2482), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2519), 30, + ACTIONS(2480), 30, anon_sym_DOT, anon_sym_LPAREN, 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_STAR_STAR, anon_sym_LBRACK, @@ -93615,18 +93114,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [79524] = 3, + [79380] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1614), 5, + ACTIONS(2486), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 30, + ACTIONS(2484), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93657,24 +93155,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79568] = 3, + [79424] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 5, + ACTIONS(2498), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1605), 30, + ACTIONS(2496), 30, anon_sym_DOT, anon_sym_LPAREN, 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_STAR_STAR, anon_sym_LBRACK, @@ -93697,35 +93196,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [79612] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [79468] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(663), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(665), 5, + ACTIONS(2502), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 27, + ACTIONS(2500), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93741,24 +93237,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79660] = 3, + [79512] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + ACTIONS(2506), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 30, + ACTIONS(2504), 30, anon_sym_DOT, anon_sym_LPAREN, 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_STAR_STAR, anon_sym_LBRACK, @@ -93781,25 +93278,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [79704] = 3, + [79556] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 5, + ACTIONS(2520), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 30, + ACTIONS(2518), 30, anon_sym_DOT, anon_sym_LPAREN, 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_STAR_STAR, anon_sym_LBRACK, @@ -93822,25 +93319,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [79748] = 3, + [79600] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1676), 5, + ACTIONS(2524), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 30, + ACTIONS(2522), 30, anon_sym_DOT, anon_sym_LPAREN, 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_STAR_STAR, anon_sym_LBRACK, @@ -93863,18 +93360,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [79792] = 3, + [79644] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1676), 5, + ACTIONS(1536), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 30, + ACTIONS(1531), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93905,31 +93401,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [79836] = 3, + [79688] = 5, + ACTIONS(284), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 5, + ACTIONS(276), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(271), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 30, + ACTIONS(269), 27, anon_sym_DOT, anon_sym_LPAREN, - 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_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93945,18 +93444,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [79880] = 3, + [79736] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 5, + ACTIONS(1606), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 30, + ACTIONS(1604), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93987,32 +93485,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [79924] = 3, + [79780] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2447), 5, + ACTIONS(1664), 3, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + ACTIONS(1671), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2445), 30, - sym_string_start, + ACTIONS(1668), 27, 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_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94028,74 +93527,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79968] = 5, + [79826] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1655), 2, + ACTIONS(1680), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1658), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1652), 14, + ACTIONS(1678), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + 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(1648), 16, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [80016] = 3, + [79870] = 4, + ACTIONS(284), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1614), 5, + ACTIONS(271), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 30, + ACTIONS(269), 29, anon_sym_DOT, anon_sym_LPAREN, 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_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94111,30 +93610,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [80060] = 3, + [79916] = 4, + ACTIONS(284), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 5, + ACTIONS(271), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 30, + ACTIONS(269), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -94153,31 +93652,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80104] = 6, - ACTIONS(1554), 1, + [79962] = 4, + ACTIONS(1538), 1, anon_sym_COLON_EQ, - ACTIONS(2554), 1, - anon_sym_LBRACK, - STATE(2033), 1, - sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 5, + ACTIONS(1536), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 27, + ACTIONS(1531), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, @@ -94197,37 +93694,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80154] = 8, - ACTIONS(2402), 1, - anon_sym_DOT, - ACTIONS(2404), 1, - anon_sym_LPAREN, - ACTIONS(2412), 1, - anon_sym_STAR_STAR, - ACTIONS(2414), 1, - anon_sym_LBRACK, + [80008] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1447), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2443), 4, + ACTIONS(271), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2441), 25, + ACTIONS(269), 30, + 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_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94243,37 +93734,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80208] = 8, - ACTIONS(2402), 1, - anon_sym_DOT, - ACTIONS(2404), 1, - anon_sym_LPAREN, - ACTIONS(2412), 1, - anon_sym_STAR_STAR, - ACTIONS(2414), 1, - anon_sym_LBRACK, + sym_type_conversion, + [80052] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1447), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2439), 4, + ACTIONS(271), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2437), 25, + ACTIONS(269), 30, + 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_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94289,35 +93775,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80262] = 6, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, - ACTIONS(1561), 1, - anon_sym_LBRACK, - STATE(2018), 1, - sym_type_parameter, + sym_type_conversion, + [80096] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 6, + ACTIONS(2490), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 26, + ACTIONS(2488), 30, 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_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94333,26 +93816,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80312] = 3, + sym_type_conversion, + [80140] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2460), 5, + ACTIONS(2434), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2458), 30, + ACTIONS(2432), 30, 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_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -94374,17 +93858,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80356] = 3, + [80184] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1628), 5, + ACTIONS(1606), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 30, + ACTIONS(1604), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -94415,31 +93899,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [80400] = 3, + [80228] = 5, + ACTIONS(284), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1642), 5, + ACTIONS(276), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(271), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1637), 30, + ACTIONS(269), 27, anon_sym_DOT, anon_sym_LPAREN, - 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_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94455,38 +93942,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [80444] = 8, - ACTIONS(2402), 1, - anon_sym_DOT, - ACTIONS(2404), 1, - anon_sym_LPAREN, - ACTIONS(2412), 1, - anon_sym_STAR_STAR, - ACTIONS(2414), 1, - anon_sym_LBRACK, + [80276] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1447), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2400), 4, + ACTIONS(1594), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 25, + ACTIONS(1589), 30, + anon_sym_DOT, + anon_sym_LPAREN, 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_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94502,46 +93983,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80498] = 11, - ACTIONS(2402), 1, - anon_sym_DOT, - ACTIONS(2404), 1, - anon_sym_LPAREN, - ACTIONS(2412), 1, - anon_sym_STAR_STAR, - ACTIONS(2414), 1, - anon_sym_LBRACK, + [80320] = 5, + ACTIONS(284), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2400), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2406), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2418), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1447), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2416), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2398), 20, + ACTIONS(276), 2, + anon_sym_RPAREN, anon_sym_COMMA, + ACTIONS(271), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(269), 27, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, 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, @@ -94551,87 +94026,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80558] = 15, - ACTIONS(2402), 1, - anon_sym_DOT, - ACTIONS(2404), 1, - anon_sym_LPAREN, - ACTIONS(2412), 1, - anon_sym_STAR_STAR, - ACTIONS(2414), 1, - anon_sym_LBRACK, - ACTIONS(2420), 1, - anon_sym_PIPE, - ACTIONS(2422), 1, - anon_sym_AMP, - ACTIONS(2424), 1, - anon_sym_CARET, + [80368] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2406), 2, + ACTIONS(1636), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2408), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2418), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2432), 2, anon_sym_LT, anon_sym_GT, - STATE(1447), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2416), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2430), 15, + ACTIONS(1631), 30, + anon_sym_DOT, + anon_sym_LPAREN, 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_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80626] = 8, - ACTIONS(2402), 1, - anon_sym_DOT, - ACTIONS(2404), 1, - anon_sym_LPAREN, - ACTIONS(2412), 1, - anon_sym_STAR_STAR, - ACTIONS(2414), 1, - anon_sym_LBRACK, + [80412] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1447), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2400), 4, + ACTIONS(2441), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 25, + ACTIONS(2439), 30, + 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_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -94650,45 +94108,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80680] = 10, - ACTIONS(2402), 1, - anon_sym_DOT, - ACTIONS(2404), 1, - anon_sym_LPAREN, - ACTIONS(2412), 1, - anon_sym_STAR_STAR, - ACTIONS(2414), 1, - anon_sym_LBRACK, + [80456] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2400), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2406), 2, + ACTIONS(2516), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - STATE(1447), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2416), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2398), 22, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2514), 30, + 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_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, 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, @@ -94698,49 +94148,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80738] = 14, - ACTIONS(2402), 1, - anon_sym_DOT, - ACTIONS(2404), 1, - anon_sym_LPAREN, - ACTIONS(2412), 1, - anon_sym_STAR_STAR, - ACTIONS(2414), 1, - anon_sym_LBRACK, - ACTIONS(2422), 1, - anon_sym_AMP, - ACTIONS(2424), 1, - anon_sym_CARET, + sym_type_conversion, + [80500] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2400), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2406), 2, + ACTIONS(1671), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2408), 2, + ACTIONS(1674), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1668), 14, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2418), 2, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - STATE(1447), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2416), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2398), 16, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1664), 16, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_RBRACK, - anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, @@ -94750,264 +94191,278 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80804] = 13, - ACTIONS(2402), 1, - anon_sym_DOT, - ACTIONS(2404), 1, - anon_sym_LPAREN, - ACTIONS(2412), 1, - anon_sym_STAR_STAR, - ACTIONS(2414), 1, - anon_sym_LBRACK, - ACTIONS(2424), 1, - anon_sym_CARET, + sym_type_conversion, + [80548] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2400), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2406), 2, + ACTIONS(2528), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2408), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2418), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1447), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2416), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2398), 17, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2526), 30, + 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_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80868] = 12, - ACTIONS(2402), 1, - anon_sym_DOT, - ACTIONS(2404), 1, - anon_sym_LPAREN, - ACTIONS(2412), 1, - anon_sym_STAR_STAR, - ACTIONS(2414), 1, - anon_sym_LBRACK, + sym_type_conversion, + [80592] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2400), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2406), 2, + ACTIONS(2532), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2408), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2418), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1447), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2416), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2398), 18, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2530), 30, + 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_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80930] = 5, + sym_type_conversion, + [80636] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(665), 2, + ACTIONS(2451), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(670), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 14, + ACTIONS(2449), 30, 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_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, + 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(663), 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80978] = 5, + sym_type_conversion, + [80680] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(665), 2, + ACTIONS(2510), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(670), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 14, + ACTIONS(2508), 30, 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_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, + 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(663), 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81026] = 5, + sym_type_conversion, + [80724] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1655), 2, + ACTIONS(2455), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(1658), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1652), 14, + ACTIONS(2453), 30, 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_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, + 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(1648), 16, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [80768] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1613), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1608), 30, + anon_sym_DOT, + anon_sym_LPAREN, 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_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, anon_sym_RBRACE, + anon_sym_PLUS, 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81074] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [80812] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(663), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(665), 5, - anon_sym_as, + ACTIONS(2494), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 27, + ACTIONS(2492), 30, 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_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95023,31 +94478,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81122] = 5, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [80856] = 8, + ACTIONS(2386), 1, + anon_sym_DOT, + ACTIONS(2388), 1, + anon_sym_LPAREN, + ACTIONS(2396), 1, + anon_sym_STAR_STAR, + ACTIONS(2398), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1648), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1655), 5, - anon_sym_as, + STATE(1403), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2423), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1652), 27, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2421), 25, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -95066,32 +94525,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81170] = 3, + [80910] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 5, - anon_sym_as, + ACTIONS(2536), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 30, + ACTIONS(2534), 30, 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_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95107,34 +94565,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81214] = 5, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [80954] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1549), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1552), 5, - anon_sym_as, + ACTIONS(2462), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 27, + ACTIONS(2460), 30, anon_sym_DOT, anon_sym_LPAREN, + 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_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95150,32 +94606,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81262] = 3, + sym_type_conversion, + [80998] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2447), 5, - anon_sym_as, + ACTIONS(2466), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2445), 30, - sym_string_start, + ACTIONS(2464), 30, 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_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95191,77 +94647,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81306] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [81042] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(284), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(279), 5, - anon_sym_as, + ACTIONS(2472), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 27, + ACTIONS(2470), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - 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_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [81354] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(284), 2, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(279), 5, anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(277), 27, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95277,33 +94688,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81402] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [81086] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(2476), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, + ACTIONS(2474), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_else, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95319,30 +94729,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81448] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [81130] = 8, + ACTIONS(2386), 1, + anon_sym_DOT, + ACTIONS(2388), 1, + anon_sym_LPAREN, + ACTIONS(2396), 1, + anon_sym_STAR_STAR, + ACTIONS(2398), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + STATE(1403), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2427), 4, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2425), 25, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_else, + anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -95361,33 +94776,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81494] = 4, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, + [81184] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 6, + ACTIONS(2482), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 28, + ACTIONS(2480), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_else, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95403,33 +94816,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81540] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [81228] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, - anon_sym_as, + ACTIONS(2486), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(2484), 30, 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_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95445,32 +94857,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81586] = 3, + sym_type_conversion, + [81272] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2460), 5, - anon_sym_as, + ACTIONS(2498), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2458), 30, - sym_string_start, + ACTIONS(2496), 30, 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_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95486,34 +94898,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81630] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [81316] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(663), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(665), 5, - anon_sym_as, + ACTIONS(2502), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 27, + ACTIONS(2500), 30, 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_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95529,34 +94939,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81678] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [81360] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(663), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(665), 5, - anon_sym_as, + ACTIONS(2506), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 27, + ACTIONS(2504), 30, 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_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95572,34 +94980,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81726] = 5, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [81404] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1648), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1655), 5, - anon_sym_as, + ACTIONS(2520), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1652), 27, + ACTIONS(2518), 30, 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_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95615,33 +95021,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81774] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [81448] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, - anon_sym_as, + ACTIONS(2524), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(2522), 30, 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_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95657,23 +95062,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81820] = 4, - ACTIONS(1554), 1, + sym_type_conversion, + [81492] = 5, + ACTIONS(1538), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 5, + ACTIONS(1533), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1536), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 29, + ACTIONS(1531), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -95699,100 +95106,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81866] = 3, + [81540] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 5, - anon_sym_as, + ACTIONS(1671), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1674), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1605), 30, + ACTIONS(1668), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - 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_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [81910] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1676), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1674), 30, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(1664), 15, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81954] = 3, + [81587] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2460), 5, + ACTIONS(2466), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2458), 30, - sym_string_start, + ACTIONS(2464), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -95822,67 +95188,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81998] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [81630] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(284), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(279), 5, + ACTIONS(2528), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 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_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - 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_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [82046] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1664), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1662), 30, + ACTIONS(2526), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -95906,28 +95228,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82090] = 3, + [81673] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, - anon_sym_as, + ACTIONS(1680), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 29, + ACTIONS(1678), 29, anon_sym_DOT, anon_sym_LPAREN, 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_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -95946,29 +95268,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82133] = 4, + [81716] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1648), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1655), 5, - anon_sym_as, + ACTIONS(2451), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1652), 27, + ACTIONS(2449), 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_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -95987,20 +95308,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82178] = 3, + [81759] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1614), 5, + ACTIONS(2494), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 29, + ACTIONS(2492), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -96009,6 +95329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -96027,65 +95348,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82221] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1642), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1637), 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_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - 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_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [82264] = 3, + [81802] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1628), 5, + ACTIONS(2510), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 29, + ACTIONS(2508), 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_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -96107,72 +95388,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82307] = 7, - ACTIONS(1660), 1, - anon_sym_EQ, + [81845] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1655), 2, + ACTIONS(2455), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(1658), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1650), 5, + ACTIONS(2453), 29, anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(1648), 12, anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(1652), 12, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [82358] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2525), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2523), 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_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -96191,28 +95428,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82401] = 3, + [81888] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2529), 5, + ACTIONS(1664), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1671), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2527), 29, + ACTIONS(1668), 27, 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_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -96231,28 +95469,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82444] = 3, + [81933] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2533), 5, - anon_sym_as, + ACTIONS(2494), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2531), 29, + ACTIONS(2492), 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_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -96271,28 +95509,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82487] = 3, + [81976] = 4, + ACTIONS(284), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1642), 5, + ACTIONS(271), 5, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1637), 29, + ACTIONS(269), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -96311,28 +95550,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82530] = 3, + [82021] = 4, + ACTIONS(284), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 5, + ACTIONS(271), 5, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1605), 29, + ACTIONS(269), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -96351,19 +95591,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82573] = 3, + [82066] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2540), 5, + ACTIONS(2532), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 29, + ACTIONS(2530), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -96372,7 +95613,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -96391,28 +95631,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82616] = 3, + [82109] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 5, + ACTIONS(2536), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 29, + ACTIONS(2534), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -96431,25 +95671,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82659] = 3, + [82152] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 5, + ACTIONS(2524), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 29, + ACTIONS(2522), 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_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -96471,28 +95711,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82702] = 3, + [82195] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 5, + ACTIONS(2462), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 29, + ACTIONS(2460), 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_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -96511,151 +95751,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82745] = 5, + [82238] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1655), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1658), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1652), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1648), 15, - anon_sym_COMMA, + ACTIONS(2466), 5, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [82792] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(665), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(670), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 14, + ACTIONS(2464), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(663), 15, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [82839] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(665), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(670), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(706), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + 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(663), 15, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82886] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [82281] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(2472), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, + ACTIONS(2470), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -96678,25 +95831,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82931] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [82324] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(2476), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, + ACTIONS(2474), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -96719,29 +95871,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82976] = 4, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, + [82367] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 5, + ACTIONS(2490), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 28, + ACTIONS(2488), 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_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -96760,17 +95911,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83021] = 3, + [82410] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(271), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(269), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96800,28 +95951,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83064] = 3, + [82453] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(2482), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(2480), 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_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -96840,20 +95991,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83107] = 3, + [82496] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1628), 5, + ACTIONS(2486), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 29, + ACTIONS(2484), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -96862,6 +96012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -96880,25 +96031,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83150] = 3, + [82539] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, + ACTIONS(1617), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 29, + ACTIONS(1615), 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_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -96920,68 +96071,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83193] = 3, + [82582] = 7, + ACTIONS(1676), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(1671), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(1674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 29, + ACTIONS(1666), 5, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(1664), 12, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1668), 12, + anon_sym_LPAREN, + anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, - 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_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [83236] = 3, + [82633] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 5, + ACTIONS(2498), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2489), 29, + ACTIONS(2496), 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_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -97000,25 +96155,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83279] = 3, + [82676] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2467), 5, + ACTIONS(271), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2465), 29, + ACTIONS(269), 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_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -97040,28 +96195,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83322] = 3, + [82719] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 5, + ACTIONS(2502), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 29, + ACTIONS(2500), 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_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -97080,28 +96235,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83365] = 3, + [82762] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2513), 5, + ACTIONS(2506), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2511), 29, + ACTIONS(2504), 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_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -97120,25 +96275,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83408] = 3, + [82805] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2525), 5, + ACTIONS(1655), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2523), 29, + ACTIONS(1653), 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_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -97160,25 +96315,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83451] = 3, + [82848] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2529), 5, + ACTIONS(1659), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2527), 29, + ACTIONS(1657), 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_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -97200,25 +96355,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83494] = 3, + [82891] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2533), 5, + ACTIONS(1659), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2531), 29, + ACTIONS(1657), 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_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -97240,20 +96395,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83537] = 3, + [82934] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1642), 5, + ACTIONS(2520), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1637), 29, + ACTIONS(2518), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -97262,6 +96416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -97280,28 +96435,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83580] = 3, + [82977] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2540), 5, + ACTIONS(2524), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 29, + ACTIONS(2522), 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_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -97320,17 +96475,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83623] = 3, + [83020] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2471), 5, + ACTIONS(1606), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2469), 29, + ACTIONS(1604), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -97360,17 +96515,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83666] = 3, + [83063] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 5, + ACTIONS(1606), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2473), 29, + ACTIONS(1604), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -97400,17 +96555,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83709] = 3, + [83106] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2479), 5, + ACTIONS(1536), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2477), 29, + ACTIONS(1531), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -97440,25 +96595,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83752] = 3, + [83149] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2483), 5, + ACTIONS(2536), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2481), 29, + ACTIONS(2534), 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_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -97480,25 +96635,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83795] = 3, + [83192] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2487), 5, + ACTIONS(2462), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2485), 29, + ACTIONS(2460), 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_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -97520,17 +96675,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83838] = 3, + [83235] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2517), 5, + ACTIONS(2451), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2515), 29, + ACTIONS(2449), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97560,28 +96715,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83881] = 3, + [83278] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2501), 5, + ACTIONS(1664), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1671), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2499), 29, + ACTIONS(1668), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -97600,25 +96756,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83924] = 3, + [83323] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2505), 5, + ACTIONS(1613), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2503), 29, + ACTIONS(1608), 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_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -97640,17 +96796,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83967] = 3, + [83366] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(1617), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 29, + ACTIONS(1615), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97680,17 +96836,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84010] = 3, + [83409] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2467), 5, + ACTIONS(2466), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2465), 29, + ACTIONS(2464), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97720,17 +96876,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84053] = 3, + [83452] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2471), 5, + ACTIONS(2472), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2469), 29, + ACTIONS(2470), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97760,17 +96916,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84096] = 3, + [83495] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 5, + ACTIONS(1655), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2473), 29, + ACTIONS(1653), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97800,17 +96956,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84139] = 3, + [83538] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2479), 5, + ACTIONS(1659), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2477), 29, + ACTIONS(1657), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97840,17 +96996,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84182] = 3, + [83581] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2483), 5, + ACTIONS(2476), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2481), 29, + ACTIONS(2474), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97880,97 +97036,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84225] = 3, + [83624] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2487), 5, + ACTIONS(649), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(654), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2485), 29, + ACTIONS(668), 14, 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_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - 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_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [84268] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2525), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2523), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(647), 15, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84311] = 3, + [83671] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2501), 5, + ACTIONS(1659), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2499), 29, + ACTIONS(1657), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98000,28 +97118,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84354] = 3, + [83714] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2505), 5, + ACTIONS(1536), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2503), 29, + ACTIONS(1531), 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_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -98040,17 +97158,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84397] = 3, + [83757] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 5, + ACTIONS(2482), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2507), 29, + ACTIONS(2480), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98080,25 +97198,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84440] = 3, + [83800] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2529), 5, + ACTIONS(2486), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2527), 29, + ACTIONS(2484), 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_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -98120,19 +97238,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84483] = 3, + [83843] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 5, + ACTIONS(2510), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1605), 29, + ACTIONS(2508), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -98141,7 +97260,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -98160,25 +97278,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84526] = 3, + [83886] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2533), 5, + ACTIONS(1606), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2531), 29, + ACTIONS(1604), 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_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -98200,25 +97318,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84569] = 3, + [83929] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2517), 5, + ACTIONS(271), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2515), 29, + ACTIONS(269), 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_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -98240,25 +97358,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84612] = 3, + [83972] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2521), 5, + ACTIONS(271), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2519), 29, + ACTIONS(269), 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_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -98280,19 +97398,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84655] = 3, + [84015] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 5, + ACTIONS(2455), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2489), 29, + ACTIONS(2453), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -98301,7 +97420,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -98320,25 +97438,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84698] = 3, + [84058] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2540), 5, + ACTIONS(2498), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 29, + ACTIONS(2496), 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_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -98360,25 +97478,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84741] = 3, + [84101] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 5, + ACTIONS(1606), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2507), 29, + ACTIONS(1604), 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_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -98400,28 +97518,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84784] = 3, + [84144] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, - anon_sym_as, + ACTIONS(2502), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 29, + ACTIONS(2500), 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_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -98440,28 +97558,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84827] = 3, + [84187] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2467), 5, - anon_sym_as, + ACTIONS(2490), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2465), 29, + ACTIONS(2488), 29, anon_sym_DOT, anon_sym_LPAREN, 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_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -98480,24 +97598,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84870] = 3, + [84230] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2471), 5, - anon_sym_as, + ACTIONS(2441), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2469), 29, + ACTIONS(2439), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, 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_STAR_STAR, anon_sym_LBRACK, @@ -98520,179 +97638,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84913] = 3, + [84273] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2521), 5, - anon_sym_as, + ACTIONS(649), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(654), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2519), 29, + ACTIONS(668), 14, 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_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - 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_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [84956] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2475), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2473), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(647), 15, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84999] = 3, + [84320] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2479), 5, - anon_sym_as, + ACTIONS(649), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(654), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2477), 29, + ACTIONS(668), 14, 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_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - 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_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [85042] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1672), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1670), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(647), 15, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85085] = 3, + [84367] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2483), 5, + ACTIONS(1594), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2481), 29, + ACTIONS(1589), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -98701,7 +97744,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -98720,19 +97762,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85128] = 3, + [84410] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2487), 5, + ACTIONS(1636), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2485), 29, + ACTIONS(1631), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -98741,47 +97784,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - 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_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [85171] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2517), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2515), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -98800,25 +97802,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85214] = 3, + [84453] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + ACTIONS(2506), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 29, + ACTIONS(2504), 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_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -98840,100 +97842,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85257] = 3, + [84496] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 5, - anon_sym_as, + ACTIONS(1671), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1674), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 29, + ACTIONS(1668), 14, 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_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - 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(1664), 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85300] = 3, + [84543] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1676), 5, - anon_sym_as, + ACTIONS(649), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(654), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 29, + ACTIONS(668), 14, 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_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - 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(647), 15, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85343] = 3, + [84590] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 5, + ACTIONS(2434), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1605), 29, + ACTIONS(2432), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -98942,6 +97947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -98960,17 +97966,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85386] = 3, + [84633] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1676), 5, + ACTIONS(1680), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 29, + ACTIONS(1678), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -99000,19 +98006,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85429] = 3, + [84676] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2501), 5, + ACTIONS(2498), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2499), 29, + ACTIONS(2496), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -99021,7 +98028,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -99040,19 +98046,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85472] = 3, + [84719] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2505), 5, + ACTIONS(2502), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2503), 29, + ACTIONS(2500), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -99061,7 +98068,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -99080,19 +98086,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85515] = 3, + [84762] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 5, + ACTIONS(2506), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 29, + ACTIONS(2504), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -99101,7 +98108,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -99120,60 +98126,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85558] = 3, + [84805] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 5, - anon_sym_as, + ACTIONS(1608), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1613), 13, anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1666), 29, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1547), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + 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, + [84850] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1531), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(1536), 13, + anon_sym_STAR, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1547), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + 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, + [84895] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1589), 3, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1594), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - 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_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [85601] = 3, + ACTIONS(1596), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + 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, + [84940] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 5, + ACTIONS(1533), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1536), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2507), 29, + ACTIONS(1531), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -99181,7 +98272,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -99200,25 +98290,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85644] = 3, + [84985] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2505), 5, - anon_sym_as, + ACTIONS(2498), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2503), 29, + ACTIONS(2496), 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_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99240,18 +98330,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85687] = 5, + [85028] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(665), 2, + ACTIONS(1671), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(670), 3, - anon_sym_EQ, + ACTIONS(1674), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 14, + ACTIONS(1668), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -99266,12 +98356,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(663), 15, + ACTIONS(1664), 15, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_not, anon_sym_and, @@ -99282,25 +98372,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85734] = 3, + [85075] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2521), 5, + ACTIONS(1631), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1636), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1640), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + 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, + [85120] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1613), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2519), 29, + ACTIONS(1608), 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_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99322,25 +98453,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85777] = 3, + [85163] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + ACTIONS(1591), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1594), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 29, + ACTIONS(1589), 27, 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_STAR_STAR, anon_sym_LBRACK, @@ -99362,28 +98494,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85820] = 3, + [85208] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1614), 5, + ACTIONS(1617), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 29, + ACTIONS(1615), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -99402,17 +98534,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85863] = 3, + [85251] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1671), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1674), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1668), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1664), 15, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [85298] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1676), 5, + ACTIONS(1680), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 29, + ACTIONS(1678), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99442,25 +98616,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85906] = 3, + [85341] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1676), 5, + ACTIONS(2520), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 29, + ACTIONS(2518), 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_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99482,28 +98656,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85949] = 3, + [85384] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 5, + ACTIONS(1655), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 29, + ACTIONS(1653), 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_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -99522,17 +98696,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85992] = 3, + [85427] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 5, + ACTIONS(2520), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 29, + ACTIONS(2518), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99562,24 +98736,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86035] = 3, + [85470] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2447), 4, + ACTIONS(1659), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2445), 30, - sym_string_start, + ACTIONS(1657), 29, anon_sym_DOT, anon_sym_LPAREN, 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_STAR_STAR, anon_sym_LBRACK, @@ -99602,143 +98776,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86078] = 5, + [85513] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(665), 2, + ACTIONS(1594), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(670), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 14, + ACTIONS(1589), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + 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(663), 15, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86125] = 5, + [85556] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(665), 2, + ACTIONS(1659), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(670), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 14, + ACTIONS(1657), 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_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + 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(663), 15, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86172] = 5, + [85599] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1655), 2, + ACTIONS(1613), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1658), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1652), 14, + ACTIONS(1608), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + 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(1648), 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86219] = 3, + [85642] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2460), 4, + ACTIONS(1636), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2458), 30, - sym_string_start, + ACTIONS(1631), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -99746,10 +98914,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -99768,182 +98936,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86262] = 4, + [85685] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1609), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1614), 13, + ACTIONS(1610), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1613), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1563), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - 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, - [86307] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1547), 3, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1608), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1552), 13, - anon_sym_STAR, anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - 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(1563), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - 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, - [86352] = 4, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [85730] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1623), 3, + ACTIONS(1606), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1604), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1628), 13, - anon_sym_STAR, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - 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(1630), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - 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, - [86397] = 5, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [85773] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(665), 2, + ACTIONS(1606), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(670), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 14, + ACTIONS(1604), 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_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + 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(663), 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86444] = 3, + [85816] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 5, + ACTIONS(2524), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 29, + ACTIONS(2522), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -99973,101 +99097,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86487] = 5, + [85859] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1655), 2, + ACTIONS(2524), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(1658), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1652), 14, + ACTIONS(2522), 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_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + 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(1648), 15, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86534] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1637), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1642), 13, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1646), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - 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, - [86579] = 5, + [85902] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1655), 2, + ACTIONS(649), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1658), 3, + ACTIONS(654), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1652), 14, + ACTIONS(668), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -100082,13 +99163,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1648), 15, + ACTIONS(647), 15, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -100098,20 +99179,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86626] = 3, + [85949] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1614), 5, + ACTIONS(1633), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1636), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 29, + ACTIONS(1631), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -100119,7 +99202,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -100138,177 +99220,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86669] = 3, + [85994] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(649), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(654), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(668), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - 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_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [86712] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(279), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(277), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(647), 15, + 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_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86755] = 3, + [86041] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1676), 5, + ACTIONS(649), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(654), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 29, + ACTIONS(668), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - 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_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [86798] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1676), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1674), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(647), 15, + 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_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86841] = 3, + [86088] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 5, + ACTIONS(271), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 29, + ACTIONS(269), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -100338,17 +99344,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86884] = 3, + [86131] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2517), 5, + ACTIONS(1613), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2515), 29, + ACTIONS(1608), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -100378,20 +99384,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86927] = 3, + [86174] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 5, + ACTIONS(271), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 29, + ACTIONS(269), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -100400,6 +99405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -100418,67 +99424,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86970] = 4, + [86217] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 3, + ACTIONS(1536), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1531), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(279), 13, - anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - 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(319), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - 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, - [87015] = 4, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [86260] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1611), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1614), 5, - anon_sym_as, + ACTIONS(2516), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 27, + ACTIONS(2514), 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_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100500,22 +99504,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87060] = 4, + [86303] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1549), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1552), 5, + ACTIONS(2494), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 27, + ACTIONS(2492), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -100541,15 +99544,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87105] = 4, + [86346] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 3, + ACTIONS(269), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(279), 13, + ACTIONS(271), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -100563,7 +99566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(319), 18, + ACTIONS(311), 18, sym__newline, anon_sym_SEMI, anon_sym_COMMA, @@ -100582,69 +99585,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [87150] = 4, + [86391] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1625), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1628), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1623), 27, + ACTIONS(269), 3, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(271), 13, + anon_sym_STAR, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - 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_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [87195] = 3, + ACTIONS(311), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + 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, + [86436] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2521), 5, - anon_sym_as, + ACTIONS(2516), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2519), 29, + ACTIONS(2514), 29, anon_sym_DOT, anon_sym_LPAREN, 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_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -100663,28 +99666,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87238] = 3, + [86479] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 5, + ACTIONS(2490), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 29, + ACTIONS(2488), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -100703,110 +99706,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87281] = 5, + [86522] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(665), 2, + ACTIONS(1591), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1594), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(670), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 14, + ACTIONS(1589), 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_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + 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(663), 15, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87328] = 5, + [86567] = 5, + ACTIONS(284), 1, + anon_sym_COLON_EQ, + ACTIONS(747), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(665), 2, + ACTIONS(271), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(670), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 14, + ACTIONS(269), 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_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + 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(663), 15, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87375] = 4, + [86614] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1648), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1655), 5, + ACTIONS(2516), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1652), 27, + ACTIONS(2514), 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_STAR_STAR, anon_sym_LBRACK, @@ -100828,22 +99829,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87420] = 4, + [86657] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1611), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1614), 5, + ACTIONS(2462), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 27, + ACTIONS(2460), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -100869,25 +99869,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87465] = 3, + [86700] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 5, + ACTIONS(2466), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 29, + ACTIONS(2464), 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_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100909,66 +99909,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87508] = 3, + [86743] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2513), 5, + ACTIONS(649), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(654), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2511), 29, + ACTIONS(668), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - 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(647), 15, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87551] = 4, + [86790] = 5, + ACTIONS(284), 1, + anon_sym_COLON_EQ, + ACTIONS(747), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1549), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1552), 5, - anon_sym_as, + ACTIONS(271), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 27, + ACTIONS(269), 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_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100990,26 +99993,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87596] = 4, + [86837] = 5, + ACTIONS(1538), 1, + anon_sym_COLON_EQ, + ACTIONS(2512), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1639), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1642), 5, - anon_sym_as, + ACTIONS(1536), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1637), 27, + ACTIONS(1531), 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_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101031,25 +100035,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87641] = 3, + [86884] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, - anon_sym_as, + ACTIONS(2528), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(2526), 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_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101071,25 +100075,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87684] = 3, + [86927] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, - anon_sym_as, + ACTIONS(2532), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(2530), 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_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101111,22 +100115,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87727] = 4, + [86970] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1625), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1628), 5, + ACTIONS(2472), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 27, + ACTIONS(2470), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -101152,17 +100155,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87772] = 3, + [87013] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, + ACTIONS(2476), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 29, + ACTIONS(2474), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101192,25 +100195,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87815] = 3, + [87056] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, + ACTIONS(2528), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 29, + ACTIONS(2526), 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_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101232,25 +100235,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87858] = 3, + [87099] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1614), 5, + ACTIONS(2472), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 29, + ACTIONS(2470), 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_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101272,21 +100275,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87901] = 3, + [87142] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 5, + ACTIONS(1633), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1636), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2489), 29, + ACTIONS(1631), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -101312,25 +100316,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87944] = 3, + [87187] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 5, - anon_sym_as, + ACTIONS(2451), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2507), 29, + ACTIONS(2449), 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_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101352,17 +100356,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87987] = 3, + [87230] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 5, + ACTIONS(2482), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 29, + ACTIONS(2480), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101392,25 +100396,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88030] = 3, + [87273] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2513), 5, - anon_sym_as, + ACTIONS(2510), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2511), 29, + ACTIONS(2508), 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_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101432,64 +100436,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88073] = 7, - ACTIONS(1660), 1, - anon_sym_EQ, + [87316] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1655), 2, + ACTIONS(2532), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(1658), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1650), 5, - sym__newline, - anon_sym_SEMI, + ACTIONS(2530), 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_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(1648), 12, + anon_sym_PLUS, + 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_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [87359] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2486), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2484), 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_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(1652), 12, + [87402] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2502), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2500), 29, + anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, + 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, - [88124] = 3, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [87445] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2525), 5, + ACTIONS(1594), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2523), 29, + ACTIONS(1589), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -101498,6 +100577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -101516,20 +100596,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88167] = 3, + [87488] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2529), 5, + ACTIONS(1636), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2527), 29, + ACTIONS(1631), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -101538,6 +100617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -101556,17 +100636,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88210] = 3, + [87531] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2533), 5, + ACTIONS(271), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2531), 29, + ACTIONS(269), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101596,19 +100676,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88253] = 3, + [87574] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1628), 5, + ACTIONS(271), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 29, + ACTIONS(269), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -101617,7 +100698,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -101636,17 +100716,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88296] = 3, + [87617] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2540), 5, + ACTIONS(2536), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 29, + ACTIONS(2534), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101676,27 +100756,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88339] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(763), 1, - anon_sym_EQ, + [87660] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 4, + ACTIONS(2455), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, + ACTIONS(2453), 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_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101718,20 +100796,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88386] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(763), 1, - anon_sym_EQ, + [87703] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 4, + ACTIONS(2490), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, + ACTIONS(2488), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101739,6 +100814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101760,27 +100836,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88433] = 5, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, - ACTIONS(2542), 1, - anon_sym_EQ, + [87746] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 4, + ACTIONS(1610), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1613), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 28, + ACTIONS(1608), 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_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + 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_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [87791] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2482), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2480), 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_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101802,28 +100917,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88480] = 3, + [87834] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1642), 5, - anon_sym_as, + ACTIONS(1536), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1637), 29, + ACTIONS(1531), 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_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -101842,17 +100957,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88523] = 3, + [87877] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 5, + ACTIONS(2494), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2489), 29, + ACTIONS(2492), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -101882,26 +100997,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88566] = 4, + [87920] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1639), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1642), 5, - anon_sym_as, + ACTIONS(2486), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1637), 27, + ACTIONS(2484), 29, anon_sym_DOT, anon_sym_LPAREN, + 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_STAR_STAR, anon_sym_LBRACK, @@ -101923,28 +101037,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88611] = 3, + [87963] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, - anon_sym_as, + ACTIONS(2476), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(2474), 29, anon_sym_DOT, anon_sym_LPAREN, 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_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -101963,17 +101077,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88654] = 3, + [88006] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(2516), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(2514), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -102003,17 +101117,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88697] = 3, + [88049] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 5, + ACTIONS(2528), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 29, + ACTIONS(2526), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -102043,17 +101157,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88740] = 3, + [88092] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2513), 5, + ACTIONS(2532), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2511), 29, + ACTIONS(2530), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -102083,25 +101197,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88783] = 3, + [88135] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2501), 5, - anon_sym_as, + ACTIONS(1594), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2499), 29, + ACTIONS(1589), 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_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -102123,25 +101237,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88826] = 3, + [88178] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, - anon_sym_as, + ACTIONS(1636), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 29, + ACTIONS(1631), 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_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -102163,21 +101277,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88869] = 3, + [88221] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2467), 5, + ACTIONS(2506), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2504), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + 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_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [88264] = 7, + ACTIONS(1676), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1671), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2465), 29, + ACTIONS(1666), 5, anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(1664), 12, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1668), 12, anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [88315] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1533), 2, anon_sym_RPAREN, anon_sym_COMMA, + ACTIONS(1536), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1531), 27, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -102203,20 +101402,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88912] = 3, + [88360] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2471), 5, + ACTIONS(2451), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2469), 29, + ACTIONS(2449), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -102225,6 +101423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -102243,25 +101442,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88955] = 3, + [88403] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 5, - anon_sym_as, + ACTIONS(2536), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2473), 29, + ACTIONS(2534), 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_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -102283,17 +101482,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88998] = 3, + [88446] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2479), 5, + ACTIONS(2520), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2477), 29, + ACTIONS(2518), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102323,20 +101522,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89041] = 3, + [88489] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2483), 5, + ACTIONS(2510), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2481), 29, + ACTIONS(2508), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -102345,6 +101543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -102363,20 +101562,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89084] = 3, + [88532] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2487), 5, + ACTIONS(2455), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2485), 29, + ACTIONS(2453), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -102385,6 +101583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -102403,25 +101602,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89127] = 3, + [88575] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1628), 5, + ACTIONS(2462), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 29, + ACTIONS(2460), 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_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -102443,28 +101642,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89170] = 3, + [88618] = 4, + ACTIONS(1538), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 5, + ACTIONS(1536), 5, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 29, + ACTIONS(1531), 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_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -102483,28 +101683,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89213] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [88663] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(665), 4, + ACTIONS(2516), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 28, + ACTIONS(2514), 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_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -102523,98 +101722,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89257] = 7, - ACTIONS(1660), 1, - anon_sym_EQ, + [88705] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1655), 2, + ACTIONS(649), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1658), 2, + ACTIONS(654), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1650), 4, + ACTIONS(668), 14, anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(1648), 12, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(1652), 12, anon_sym_LPAREN, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [89307] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2529), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2527), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(647), 15, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89349] = 3, + [88751] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2533), 4, + ACTIONS(2532), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2531), 29, + ACTIONS(2530), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -102644,58 +101802,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89391] = 6, + [88793] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1655), 2, + ACTIONS(2482), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1658), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1650), 5, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - ACTIONS(1648), 12, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(1652), 12, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [89439] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2540), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2538), 29, + ACTIONS(2480), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -102725,16 +101841,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89481] = 3, + [88835] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 4, + ACTIONS(2462), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1605), 29, + ACTIONS(2460), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -102764,23 +101880,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89523] = 3, + [88877] = 4, + ACTIONS(284), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 4, + ACTIONS(649), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 29, + ACTIONS(668), 28, 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_STAR_STAR, anon_sym_LBRACK, @@ -102803,30 +101920,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89565] = 3, + [88921] = 4, + ACTIONS(284), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 4, + ACTIONS(649), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 29, + ACTIONS(668), 28, 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_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -102842,30 +101960,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89607] = 3, + [88965] = 4, + ACTIONS(284), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1676), 4, + ACTIONS(649), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 29, + ACTIONS(668), 28, 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_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -102881,30 +102000,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89649] = 3, + [89009] = 4, + ACTIONS(1538), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1676), 4, + ACTIONS(1671), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 29, + ACTIONS(1668), 28, 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_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -102920,28 +102040,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89691] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [89053] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(665), 4, + ACTIONS(2494), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 28, + ACTIONS(2492), 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_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -102960,23 +102079,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89735] = 3, + [89095] = 4, + ACTIONS(284), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 4, + ACTIONS(649), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 29, + ACTIONS(668), 28, 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_STAR_STAR, anon_sym_LBRACK, @@ -102999,23 +102119,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89777] = 3, + [89139] = 4, + ACTIONS(1538), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 4, + ACTIONS(1671), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 29, + ACTIONS(1668), 28, 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_STAR_STAR, anon_sym_LBRACK, @@ -103038,31 +102159,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89819] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [89183] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(665), 4, + ACTIONS(2486), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 28, + ACTIONS(2484), 29, 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_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -103078,31 +102198,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89863] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [89225] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(665), 4, + ACTIONS(2520), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 28, + ACTIONS(2518), 29, 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_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -103118,31 +102237,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89907] = 4, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, + [89267] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1655), 4, + ACTIONS(2451), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1652), 28, + ACTIONS(2449), 29, 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_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -103158,24 +102276,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89951] = 4, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, + [89309] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1655), 4, + ACTIONS(2510), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1652), 28, + ACTIONS(2508), 29, 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_STAR_STAR, anon_sym_LBRACK, @@ -103198,16 +102315,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89995] = 3, + [89351] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1614), 4, + ACTIONS(2466), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 29, + ACTIONS(2464), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103237,56 +102354,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90037] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [89393] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(665), 4, + ACTIONS(1671), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 28, + ACTIONS(1668), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - 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(1664), 15, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90081] = 3, + [89439] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2525), 4, + ACTIONS(2455), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2523), 29, + ACTIONS(2453), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103316,16 +102434,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90123] = 3, + [89481] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 4, + ACTIONS(1636), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(1631), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103355,94 +102473,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90165] = 3, + [89523] = 7, + ACTIONS(1676), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 4, + ACTIONS(1671), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(1666), 4, anon_sym_DOT, - anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(1664), 12, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90207] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1552), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1547), 29, - anon_sym_DOT, + ACTIONS(1668), 12, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, - 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_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [90249] = 3, + [89573] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 4, + ACTIONS(2524), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 29, + ACTIONS(2522), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103472,16 +102555,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90291] = 3, + [89615] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1628), 4, + ACTIONS(2498), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 29, + ACTIONS(2496), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103511,57 +102594,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90333] = 5, + [89657] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1655), 2, + ACTIONS(2502), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1658), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1652), 14, + ACTIONS(2500), 29, 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_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + 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(1648), 15, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90379] = 3, + [89699] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1642), 4, + ACTIONS(271), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1637), 29, + ACTIONS(269), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103591,16 +102672,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90421] = 3, + [89741] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 4, + ACTIONS(271), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2489), 29, + ACTIONS(269), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103630,16 +102711,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90463] = 3, + [89783] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 4, + ACTIONS(2472), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 29, + ACTIONS(2470), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103669,16 +102750,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90505] = 3, + [89825] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2467), 4, + ACTIONS(1680), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2465), 29, + ACTIONS(1678), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103708,16 +102789,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90547] = 3, + [89867] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2471), 4, + ACTIONS(2490), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2469), 29, + ACTIONS(2488), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103747,27 +102828,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90589] = 3, + [89909] = 4, + ACTIONS(284), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 4, + ACTIONS(649), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2473), 29, + ACTIONS(668), 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_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -103786,27 +102868,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90631] = 3, + [89953] = 4, + ACTIONS(284), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2479), 4, + ACTIONS(649), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2477), 29, + ACTIONS(668), 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_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -103825,27 +102908,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90673] = 3, + [89997] = 4, + ACTIONS(1538), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2483), 4, + ACTIONS(1671), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2481), 29, + ACTIONS(1668), 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_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -103864,16 +102948,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90715] = 3, + [90041] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2487), 4, + ACTIONS(1536), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2485), 29, + ACTIONS(1531), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103903,57 +102987,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90757] = 5, + [90083] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(665), 2, + ACTIONS(1617), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(670), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 14, + ACTIONS(1615), 29, 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_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + 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(663), 15, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90803] = 3, + [90125] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2501), 4, + ACTIONS(1613), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2499), 29, + ACTIONS(1608), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103983,16 +103065,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90845] = 3, + [90167] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2505), 4, + ACTIONS(1655), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2503), 29, + ACTIONS(1653), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104022,16 +103104,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90887] = 3, + [90209] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 4, + ACTIONS(2476), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2507), 29, + ACTIONS(2474), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104061,57 +103143,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90929] = 5, + [90251] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(665), 2, + ACTIONS(1659), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(670), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 14, + ACTIONS(1657), 29, 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_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + 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(663), 15, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [90293] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2506), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2504), 29, + 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_STAR_STAR, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90975] = 3, + [90335] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 4, + ACTIONS(2536), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 29, + ACTIONS(2534), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104141,16 +103260,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91017] = 3, + [90377] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2513), 4, + ACTIONS(2528), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2511), 29, + ACTIONS(2526), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104180,16 +103299,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91059] = 3, + [90419] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2517), 4, + ACTIONS(1659), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2515), 29, + ACTIONS(1657), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104219,16 +103338,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91101] = 3, + [90461] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2521), 4, + ACTIONS(1606), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2519), 29, + ACTIONS(1604), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104258,24 +103377,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91143] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [90503] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(665), 4, + ACTIONS(1606), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 28, + ACTIONS(1604), 29, 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_STAR_STAR, anon_sym_LBRACK, @@ -104298,28 +103416,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91187] = 4, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, + [90545] = 6, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1655), 4, + ACTIONS(1671), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1652), 28, + ACTIONS(1666), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + ACTIONS(1664), 12, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1668), 12, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [90593] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(649), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(654), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(668), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(647), 15, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [90639] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1594), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1589), 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_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -104338,15 +103538,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91231] = 4, + [90681] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1637), 3, + ACTIONS(1531), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(1642), 13, + ACTIONS(1536), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104360,7 +103560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1646), 16, + ACTIONS(1547), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, @@ -104377,11 +103577,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91274] = 3, + [90724] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 13, + ACTIONS(1631), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1636), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104395,13 +103599,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1605), 19, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(1640), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104415,11 +103616,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91315] = 3, + [90767] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 13, + ACTIONS(1589), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1594), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104433,13 +103638,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1670), 19, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(1596), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104453,11 +103655,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91356] = 3, + [90810] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 13, + ACTIONS(1608), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1613), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104471,13 +103677,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1662), 19, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(1547), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104491,11 +103694,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91397] = 3, + [90853] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1676), 13, + ACTIONS(269), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(271), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104509,13 +103716,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1674), 19, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(311), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104529,11 +103733,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91438] = 3, + [90896] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1676), 13, + ACTIONS(269), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(271), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104547,13 +103755,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1674), 19, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(311), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104567,11 +103772,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91479] = 3, + [90939] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 13, + ACTIONS(1668), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1671), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104585,13 +103794,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1666), 19, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(1664), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104605,11 +103811,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91520] = 3, + [90982] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1671), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1668), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + 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_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [91023] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1671), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1668), 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_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + 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_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [91064] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1671), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1668), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + 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_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [91105] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 13, + ACTIONS(1680), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104623,7 +103943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1666), 19, + ACTIONS(1678), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104643,15 +103963,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91561] = 4, + [91146] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(665), 13, + ACTIONS(1617), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104665,10 +103981,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(663), 16, + ACTIONS(1615), 19, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, + anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104682,15 +104001,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91604] = 4, + [91187] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(665), 13, + ACTIONS(1655), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104704,10 +104019,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(663), 16, + ACTIONS(1653), 19, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, + anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104721,15 +104039,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91647] = 4, + [91228] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1652), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1655), 13, + ACTIONS(1659), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104743,10 +104057,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1648), 16, + ACTIONS(1657), 19, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, + anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104760,146 +104077,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91690] = 3, + [91269] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1655), 4, + ACTIONS(1659), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1652), 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_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - 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_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [91731] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1655), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1652), 28, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - 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_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [91772] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1655), 4, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1652), 28, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, - 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_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [91813] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1623), 3, + ACTIONS(1657), 19, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1628), 13, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1630), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, + anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104913,15 +104115,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91856] = 4, + [91310] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1609), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1614), 13, + ACTIONS(1606), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104935,10 +104133,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1563), 16, + ACTIONS(1604), 19, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, + anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104952,15 +104153,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91899] = 4, + [91351] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1547), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1552), 13, + ACTIONS(1606), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104974,10 +104171,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1563), 16, + ACTIONS(1604), 19, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, + anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104991,15 +104191,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91942] = 4, + [91392] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 3, + ACTIONS(668), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(279), 13, + ACTIONS(649), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105013,7 +104213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(319), 16, + ACTIONS(647), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, @@ -105030,15 +104230,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91985] = 4, + [91435] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 3, + ACTIONS(668), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(279), 13, + ACTIONS(649), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105052,7 +104252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(319), 16, + ACTIONS(647), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, @@ -105069,51 +104269,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [92028] = 20, - ACTIONS(327), 1, + [91478] = 20, + ACTIONS(319), 1, sym_string_start, - ACTIONS(2556), 1, + ACTIONS(2540), 1, sym_identifier, - ACTIONS(2558), 1, + ACTIONS(2542), 1, anon_sym_LPAREN, - ACTIONS(2560), 1, + ACTIONS(2544), 1, anon_sym_STAR, - ACTIONS(2562), 1, + ACTIONS(2546), 1, anon_sym_if, - ACTIONS(2564), 1, + ACTIONS(2548), 1, anon_sym_COLON, - ACTIONS(2566), 1, + ACTIONS(2550), 1, anon_sym_STAR_STAR, - ACTIONS(2568), 1, + ACTIONS(2552), 1, anon_sym_LBRACK, - ACTIONS(2570), 1, + ACTIONS(2554), 1, anon_sym_DASH, - ACTIONS(2574), 1, + ACTIONS(2558), 1, anon_sym_LBRACE, - ACTIONS(2576), 1, + ACTIONS(2560), 1, sym_integer, - ACTIONS(2578), 1, + ACTIONS(2562), 1, sym_float, - STATE(1818), 1, + STATE(1761), 1, sym_string, - STATE(1908), 1, + STATE(1903), 1, sym_dotted_name, - STATE(2238), 1, + STATE(2099), 1, sym_case_pattern, - STATE(2745), 1, + STATE(2598), 1, sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2202), 2, + STATE(2160), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2572), 4, + ACTIONS(2556), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1913), 9, + STATE(1920), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105123,51 +104323,51 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92102] = 20, - ACTIONS(327), 1, + [91552] = 20, + ACTIONS(319), 1, sym_string_start, - ACTIONS(2556), 1, + ACTIONS(2540), 1, sym_identifier, - ACTIONS(2558), 1, + ACTIONS(2542), 1, anon_sym_LPAREN, - ACTIONS(2560), 1, + ACTIONS(2544), 1, anon_sym_STAR, - ACTIONS(2562), 1, + ACTIONS(2546), 1, anon_sym_if, - ACTIONS(2566), 1, + ACTIONS(2550), 1, anon_sym_STAR_STAR, - ACTIONS(2568), 1, + ACTIONS(2552), 1, anon_sym_LBRACK, - ACTIONS(2570), 1, + ACTIONS(2554), 1, anon_sym_DASH, - ACTIONS(2574), 1, + ACTIONS(2558), 1, anon_sym_LBRACE, - ACTIONS(2576), 1, + ACTIONS(2560), 1, sym_integer, - ACTIONS(2578), 1, + ACTIONS(2562), 1, sym_float, - ACTIONS(2580), 1, + ACTIONS(2564), 1, anon_sym_COLON, - STATE(1818), 1, + STATE(1761), 1, sym_string, - STATE(1908), 1, + STATE(1903), 1, sym_dotted_name, - STATE(2238), 1, + STATE(2099), 1, sym_case_pattern, - STATE(2699), 1, + STATE(2583), 1, sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2202), 2, + STATE(2160), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2572), 4, + ACTIONS(2556), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1913), 9, + STATE(1920), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105177,47 +104377,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92176] = 18, - ACTIONS(819), 1, + [91626] = 18, + ACTIONS(713), 1, sym_string_start, - ACTIONS(2582), 1, + ACTIONS(2566), 1, sym_identifier, - ACTIONS(2584), 1, + ACTIONS(2568), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2570), 1, + anon_sym_RPAREN, + ACTIONS(2572), 1, anon_sym_STAR, - ACTIONS(2588), 1, + ACTIONS(2574), 1, anon_sym_STAR_STAR, - ACTIONS(2590), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_RBRACK, - ACTIONS(2594), 1, + ACTIONS(2578), 1, anon_sym_DASH, - ACTIONS(2598), 1, + ACTIONS(2582), 1, anon_sym_LBRACE, - ACTIONS(2600), 1, + ACTIONS(2584), 1, sym_integer, - ACTIONS(2602), 1, + ACTIONS(2586), 1, sym_float, STATE(1858), 1, sym_string, - STATE(2080), 1, + STATE(2039), 1, sym_dotted_name, - STATE(2444), 1, + STATE(2177), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2349), 2, + STATE(2317), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2596), 4, + ACTIONS(2580), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2081), 9, + STATE(2040), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105227,47 +104427,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92244] = 18, - ACTIONS(819), 1, + [91694] = 18, + ACTIONS(713), 1, sym_string_start, - ACTIONS(2582), 1, + ACTIONS(2566), 1, sym_identifier, - ACTIONS(2584), 1, + ACTIONS(2568), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2572), 1, anon_sym_STAR, - ACTIONS(2588), 1, + ACTIONS(2574), 1, anon_sym_STAR_STAR, - ACTIONS(2590), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2594), 1, + ACTIONS(2578), 1, anon_sym_DASH, - ACTIONS(2598), 1, + ACTIONS(2582), 1, anon_sym_LBRACE, - ACTIONS(2600), 1, + ACTIONS(2584), 1, sym_integer, - ACTIONS(2602), 1, + ACTIONS(2586), 1, sym_float, - ACTIONS(2604), 1, - anon_sym_RBRACK, + ACTIONS(2588), 1, + anon_sym_RPAREN, STATE(1858), 1, sym_string, - STATE(2080), 1, + STATE(2039), 1, sym_dotted_name, - STATE(2195), 1, + STATE(2442), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2349), 2, + STATE(2317), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2596), 4, + ACTIONS(2580), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2081), 9, + STATE(2040), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105277,47 +104477,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92312] = 18, - ACTIONS(729), 1, + [91762] = 18, + ACTIONS(781), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2590), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2592), 1, anon_sym_LPAREN, - ACTIONS(2610), 1, - anon_sym_RPAREN, - ACTIONS(2612), 1, + ACTIONS(2594), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2596), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2598), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2600), 1, + anon_sym_RBRACK, + ACTIONS(2602), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2606), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2608), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2610), 1, sym_float, - STATE(1842), 1, + STATE(1823), 1, sym_string, - STATE(2097), 1, + STATE(2016), 1, sym_dotted_name, - STATE(2261), 1, + STATE(2264), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2432), 2, + STATE(2230), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2604), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1993), 9, + STATE(2017), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105327,47 +104527,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92380] = 18, - ACTIONS(729), 1, + [91830] = 18, + ACTIONS(713), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2566), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2568), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2572), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2574), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2578), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2582), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2584), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2586), 1, sym_float, - ACTIONS(2628), 1, + ACTIONS(2612), 1, anon_sym_RPAREN, - STATE(1842), 1, + STATE(1858), 1, sym_string, - STATE(2097), 1, + STATE(2039), 1, sym_dotted_name, - STATE(2237), 1, + STATE(2442), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2432), 2, + STATE(2317), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2580), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1993), 9, + STATE(2040), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105377,47 +104577,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92448] = 18, - ACTIONS(729), 1, + [91898] = 18, + ACTIONS(713), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2566), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2568), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2572), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2574), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2578), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2582), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2584), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2586), 1, sym_float, - ACTIONS(2630), 1, + ACTIONS(2614), 1, anon_sym_RPAREN, - STATE(1842), 1, + STATE(1858), 1, sym_string, - STATE(2097), 1, + STATE(2039), 1, sym_dotted_name, - STATE(2261), 1, + STATE(2442), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2432), 2, + STATE(2317), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2580), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1993), 9, + STATE(2040), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105427,47 +104627,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92516] = 18, - ACTIONS(819), 1, + [91966] = 18, + ACTIONS(781), 1, sym_string_start, - ACTIONS(2582), 1, + ACTIONS(2590), 1, sym_identifier, - ACTIONS(2584), 1, + ACTIONS(2592), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2594), 1, anon_sym_STAR, - ACTIONS(2588), 1, + ACTIONS(2596), 1, anon_sym_STAR_STAR, - ACTIONS(2590), 1, + ACTIONS(2598), 1, anon_sym_LBRACK, - ACTIONS(2594), 1, + ACTIONS(2602), 1, anon_sym_DASH, - ACTIONS(2598), 1, + ACTIONS(2606), 1, anon_sym_LBRACE, - ACTIONS(2600), 1, + ACTIONS(2608), 1, sym_integer, - ACTIONS(2602), 1, + ACTIONS(2610), 1, sym_float, - ACTIONS(2632), 1, + ACTIONS(2616), 1, anon_sym_RBRACK, - STATE(1858), 1, + STATE(1823), 1, sym_string, - STATE(2080), 1, + STATE(2016), 1, sym_dotted_name, - STATE(2444), 1, + STATE(2264), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2349), 2, + STATE(2230), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2596), 4, + ACTIONS(2604), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2081), 9, + STATE(2017), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105477,47 +104677,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92584] = 18, - ACTIONS(729), 1, + [92034] = 18, + ACTIONS(713), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2566), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2568), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2572), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2574), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2578), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2582), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2584), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2586), 1, sym_float, - ACTIONS(2634), 1, + ACTIONS(2618), 1, anon_sym_RPAREN, - STATE(1842), 1, + STATE(1858), 1, sym_string, - STATE(2097), 1, + STATE(2039), 1, sym_dotted_name, - STATE(2261), 1, + STATE(2442), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2432), 2, + STATE(2317), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2580), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1993), 9, + STATE(2040), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105527,47 +104727,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92652] = 18, - ACTIONS(729), 1, + [92102] = 18, + ACTIONS(713), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2566), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2568), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2572), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2574), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2578), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2582), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2584), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2586), 1, sym_float, - ACTIONS(2636), 1, + ACTIONS(2620), 1, anon_sym_RPAREN, - STATE(1842), 1, + STATE(1858), 1, sym_string, - STATE(2097), 1, + STATE(2039), 1, sym_dotted_name, - STATE(2261), 1, + STATE(2442), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2432), 2, + STATE(2317), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2580), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1993), 9, + STATE(2040), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105577,47 +104777,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92720] = 18, - ACTIONS(819), 1, + [92170] = 18, + ACTIONS(781), 1, sym_string_start, - ACTIONS(2582), 1, + ACTIONS(2590), 1, sym_identifier, - ACTIONS(2584), 1, + ACTIONS(2592), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2594), 1, anon_sym_STAR, - ACTIONS(2588), 1, + ACTIONS(2596), 1, anon_sym_STAR_STAR, - ACTIONS(2590), 1, + ACTIONS(2598), 1, anon_sym_LBRACK, - ACTIONS(2594), 1, + ACTIONS(2602), 1, anon_sym_DASH, - ACTIONS(2598), 1, + ACTIONS(2606), 1, anon_sym_LBRACE, - ACTIONS(2600), 1, + ACTIONS(2608), 1, sym_integer, - ACTIONS(2602), 1, + ACTIONS(2610), 1, sym_float, - ACTIONS(2638), 1, + ACTIONS(2622), 1, anon_sym_RBRACK, - STATE(1858), 1, + STATE(1823), 1, sym_string, - STATE(2080), 1, + STATE(2016), 1, sym_dotted_name, - STATE(2444), 1, + STATE(2264), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2349), 2, + STATE(2230), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2596), 4, + ACTIONS(2604), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2081), 9, + STATE(2017), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105627,47 +104827,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92788] = 18, - ACTIONS(729), 1, + [92238] = 18, + ACTIONS(713), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2566), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2568), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2572), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2574), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2578), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2582), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2584), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2586), 1, sym_float, - ACTIONS(2640), 1, + ACTIONS(2624), 1, anon_sym_RPAREN, - STATE(1842), 1, + STATE(1858), 1, sym_string, - STATE(2097), 1, + STATE(2039), 1, sym_dotted_name, - STATE(2261), 1, + STATE(2442), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2432), 2, + STATE(2317), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2580), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1993), 9, + STATE(2040), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105677,47 +104877,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92856] = 18, - ACTIONS(729), 1, + [92306] = 18, + ACTIONS(713), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2566), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2568), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2572), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2574), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2578), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2582), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2584), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2586), 1, sym_float, - ACTIONS(2642), 1, + ACTIONS(2626), 1, anon_sym_RPAREN, - STATE(1842), 1, + STATE(1858), 1, sym_string, - STATE(2097), 1, + STATE(2039), 1, sym_dotted_name, - STATE(2261), 1, + STATE(2442), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2432), 2, + STATE(2317), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2580), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1993), 9, + STATE(2040), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105727,47 +104927,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92924] = 18, - ACTIONS(819), 1, + [92374] = 18, + ACTIONS(713), 1, sym_string_start, - ACTIONS(2582), 1, + ACTIONS(2566), 1, sym_identifier, - ACTIONS(2584), 1, + ACTIONS(2568), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2572), 1, anon_sym_STAR, - ACTIONS(2588), 1, + ACTIONS(2574), 1, anon_sym_STAR_STAR, - ACTIONS(2590), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2594), 1, + ACTIONS(2578), 1, anon_sym_DASH, - ACTIONS(2598), 1, + ACTIONS(2582), 1, anon_sym_LBRACE, - ACTIONS(2600), 1, + ACTIONS(2584), 1, sym_integer, - ACTIONS(2602), 1, + ACTIONS(2586), 1, sym_float, - ACTIONS(2644), 1, - anon_sym_RBRACK, + ACTIONS(2628), 1, + anon_sym_RPAREN, STATE(1858), 1, sym_string, - STATE(2080), 1, + STATE(2039), 1, sym_dotted_name, - STATE(2444), 1, + STATE(2442), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2349), 2, + STATE(2317), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2596), 4, + ACTIONS(2580), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2081), 9, + STATE(2040), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105777,47 +104977,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92992] = 18, - ACTIONS(729), 1, + [92442] = 18, + ACTIONS(713), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2566), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2568), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2572), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2574), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2578), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2582), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2584), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2586), 1, sym_float, - ACTIONS(2646), 1, + ACTIONS(2630), 1, anon_sym_RPAREN, - STATE(1842), 1, + STATE(1858), 1, sym_string, - STATE(2097), 1, + STATE(2039), 1, sym_dotted_name, - STATE(2183), 1, + STATE(2105), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2432), 2, + STATE(2317), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2580), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1993), 9, + STATE(2040), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105827,47 +105027,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93060] = 18, - ACTIONS(819), 1, + [92510] = 18, + ACTIONS(781), 1, sym_string_start, - ACTIONS(2582), 1, + ACTIONS(2590), 1, sym_identifier, - ACTIONS(2584), 1, + ACTIONS(2592), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2594), 1, anon_sym_STAR, - ACTIONS(2588), 1, + ACTIONS(2596), 1, anon_sym_STAR_STAR, - ACTIONS(2590), 1, + ACTIONS(2598), 1, anon_sym_LBRACK, - ACTIONS(2594), 1, + ACTIONS(2602), 1, anon_sym_DASH, - ACTIONS(2598), 1, + ACTIONS(2606), 1, anon_sym_LBRACE, - ACTIONS(2600), 1, + ACTIONS(2608), 1, sym_integer, - ACTIONS(2602), 1, + ACTIONS(2610), 1, sym_float, - ACTIONS(2648), 1, + ACTIONS(2632), 1, anon_sym_RBRACK, - STATE(1858), 1, + STATE(1823), 1, sym_string, - STATE(2080), 1, + STATE(2016), 1, sym_dotted_name, - STATE(2184), 1, + STATE(2106), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2349), 2, + STATE(2230), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2596), 4, + ACTIONS(2604), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2081), 9, + STATE(2017), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105877,47 +105077,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93128] = 18, - ACTIONS(729), 1, + [92578] = 18, + ACTIONS(781), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2590), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2592), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2594), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2596), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2598), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2602), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2606), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2608), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2610), 1, sym_float, - ACTIONS(2650), 1, - anon_sym_RPAREN, - STATE(1842), 1, + ACTIONS(2634), 1, + anon_sym_RBRACK, + STATE(1823), 1, sym_string, - STATE(2097), 1, + STATE(2016), 1, sym_dotted_name, - STATE(2192), 1, + STATE(2264), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2432), 2, + STATE(2230), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2604), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1993), 9, + STATE(2017), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105927,47 +105127,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93196] = 18, - ACTIONS(729), 1, + [92646] = 18, + ACTIONS(713), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2566), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2568), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2572), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2574), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2578), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2582), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2584), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2586), 1, sym_float, - ACTIONS(2652), 1, + ACTIONS(2636), 1, anon_sym_RPAREN, - STATE(1842), 1, + STATE(1858), 1, sym_string, - STATE(2097), 1, + STATE(2039), 1, sym_dotted_name, - STATE(2261), 1, + STATE(2109), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2432), 2, + STATE(2317), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2580), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1993), 9, + STATE(2040), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105977,47 +105177,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93264] = 18, - ACTIONS(729), 1, + [92714] = 18, + ACTIONS(713), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2566), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2568), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2572), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2574), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2578), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2582), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2584), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2586), 1, sym_float, - ACTIONS(2654), 1, + ACTIONS(2638), 1, anon_sym_RPAREN, - STATE(1842), 1, + STATE(1858), 1, sym_string, - STATE(2097), 1, + STATE(2039), 1, sym_dotted_name, - STATE(2191), 1, + STATE(2173), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2432), 2, + STATE(2317), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2580), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1993), 9, + STATE(2040), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106027,47 +105227,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93332] = 18, - ACTIONS(729), 1, + [92782] = 18, + ACTIONS(781), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2590), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2592), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2594), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2596), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2598), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2602), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2606), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2608), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2610), 1, sym_float, - ACTIONS(2656), 1, - anon_sym_RPAREN, - STATE(1842), 1, + ACTIONS(2640), 1, + anon_sym_RBRACK, + STATE(1823), 1, sym_string, - STATE(2097), 1, + STATE(2016), 1, sym_dotted_name, - STATE(2261), 1, + STATE(2264), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2432), 2, + STATE(2230), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2604), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1993), 9, + STATE(2017), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106077,47 +105277,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93400] = 18, - ACTIONS(819), 1, + [92850] = 18, + ACTIONS(713), 1, sym_string_start, - ACTIONS(2582), 1, + ACTIONS(2566), 1, sym_identifier, - ACTIONS(2584), 1, + ACTIONS(2568), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2572), 1, anon_sym_STAR, - ACTIONS(2588), 1, + ACTIONS(2574), 1, anon_sym_STAR_STAR, - ACTIONS(2590), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2594), 1, + ACTIONS(2578), 1, anon_sym_DASH, - ACTIONS(2598), 1, + ACTIONS(2582), 1, anon_sym_LBRACE, - ACTIONS(2600), 1, + ACTIONS(2584), 1, sym_integer, - ACTIONS(2602), 1, + ACTIONS(2586), 1, sym_float, - ACTIONS(2658), 1, - anon_sym_RBRACK, + ACTIONS(2642), 1, + anon_sym_RPAREN, STATE(1858), 1, sym_string, - STATE(2080), 1, + STATE(2039), 1, sym_dotted_name, - STATE(2444), 1, + STATE(2442), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2349), 2, + STATE(2317), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2596), 4, + ACTIONS(2580), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2081), 9, + STATE(2040), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106127,47 +105327,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93468] = 18, - ACTIONS(729), 1, + [92918] = 18, + ACTIONS(781), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2590), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2592), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2594), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2596), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2598), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2602), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2606), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2608), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2610), 1, sym_float, - ACTIONS(2660), 1, - anon_sym_RPAREN, - STATE(1842), 1, + ACTIONS(2644), 1, + anon_sym_RBRACK, + STATE(1823), 1, sym_string, - STATE(2097), 1, + STATE(2016), 1, sym_dotted_name, - STATE(2261), 1, + STATE(2264), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2432), 2, + STATE(2230), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2604), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1993), 9, + STATE(2017), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106177,47 +105377,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93536] = 18, - ACTIONS(729), 1, + [92986] = 18, + ACTIONS(713), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2566), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2568), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2572), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2574), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2578), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2582), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2584), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2586), 1, sym_float, - ACTIONS(2662), 1, + ACTIONS(2646), 1, anon_sym_RPAREN, - STATE(1842), 1, + STATE(1858), 1, sym_string, - STATE(2097), 1, + STATE(2039), 1, sym_dotted_name, - STATE(2261), 1, + STATE(2442), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2432), 2, + STATE(2317), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2580), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1993), 9, + STATE(2040), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106227,47 +105427,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93604] = 18, - ACTIONS(729), 1, + [93054] = 18, + ACTIONS(713), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2566), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2568), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2572), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2574), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2578), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2582), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2584), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2586), 1, sym_float, - ACTIONS(2664), 1, + ACTIONS(2648), 1, anon_sym_RPAREN, - STATE(1842), 1, + STATE(1858), 1, sym_string, - STATE(2097), 1, + STATE(2039), 1, sym_dotted_name, - STATE(2146), 1, + STATE(2442), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2432), 2, + STATE(2317), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2580), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1993), 9, + STATE(2040), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106277,47 +105477,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93672] = 18, - ACTIONS(729), 1, + [93122] = 18, + ACTIONS(713), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2566), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2568), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2572), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2574), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2578), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2582), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2584), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2586), 1, sym_float, - ACTIONS(2666), 1, + ACTIONS(2650), 1, anon_sym_RPAREN, - STATE(1842), 1, + STATE(1858), 1, sym_string, - STATE(2097), 1, + STATE(2039), 1, sym_dotted_name, - STATE(2118), 1, + STATE(2442), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2432), 2, + STATE(2317), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2580), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1993), 9, + STATE(2040), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106327,47 +105527,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93740] = 18, - ACTIONS(819), 1, + [93190] = 18, + ACTIONS(781), 1, sym_string_start, - ACTIONS(2582), 1, + ACTIONS(2590), 1, sym_identifier, - ACTIONS(2584), 1, + ACTIONS(2592), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2594), 1, anon_sym_STAR, - ACTIONS(2588), 1, + ACTIONS(2596), 1, anon_sym_STAR_STAR, - ACTIONS(2590), 1, + ACTIONS(2598), 1, anon_sym_LBRACK, - ACTIONS(2594), 1, + ACTIONS(2602), 1, anon_sym_DASH, - ACTIONS(2598), 1, + ACTIONS(2606), 1, anon_sym_LBRACE, - ACTIONS(2600), 1, + ACTIONS(2608), 1, sym_integer, - ACTIONS(2602), 1, + ACTIONS(2610), 1, sym_float, - ACTIONS(2668), 1, + ACTIONS(2652), 1, anon_sym_RBRACK, - STATE(1858), 1, + STATE(1823), 1, sym_string, - STATE(2080), 1, + STATE(2016), 1, sym_dotted_name, - STATE(2119), 1, + STATE(2153), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2349), 2, + STATE(2230), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2596), 4, + ACTIONS(2604), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2081), 9, + STATE(2017), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106377,47 +105577,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93808] = 18, - ACTIONS(729), 1, + [93258] = 18, + ACTIONS(713), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2566), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2568), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2572), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2574), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2578), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2582), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2584), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2586), 1, sym_float, - ACTIONS(2670), 1, + ACTIONS(2654), 1, anon_sym_RPAREN, - STATE(1842), 1, + STATE(1858), 1, sym_string, - STATE(2097), 1, + STATE(2039), 1, sym_dotted_name, - STATE(2123), 1, + STATE(2149), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2432), 2, + STATE(2317), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2580), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1993), 9, + STATE(2040), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106427,47 +105627,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93876] = 18, - ACTIONS(729), 1, + [93326] = 18, + ACTIONS(781), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2590), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2592), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2594), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2596), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2598), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2602), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2606), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2608), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2610), 1, sym_float, - ACTIONS(2672), 1, - anon_sym_RPAREN, - STATE(1842), 1, + ACTIONS(2656), 1, + anon_sym_RBRACK, + STATE(1823), 1, sym_string, - STATE(2097), 1, + STATE(2016), 1, sym_dotted_name, - STATE(2261), 1, + STATE(2150), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2432), 2, + STATE(2230), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2604), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1993), 9, + STATE(2017), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106477,47 +105677,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93944] = 18, - ACTIONS(819), 1, + [93394] = 18, + ACTIONS(713), 1, sym_string_start, - ACTIONS(2582), 1, + ACTIONS(2566), 1, sym_identifier, - ACTIONS(2584), 1, + ACTIONS(2568), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2572), 1, anon_sym_STAR, - ACTIONS(2588), 1, + ACTIONS(2574), 1, anon_sym_STAR_STAR, - ACTIONS(2590), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2594), 1, + ACTIONS(2578), 1, anon_sym_DASH, - ACTIONS(2598), 1, + ACTIONS(2582), 1, anon_sym_LBRACE, - ACTIONS(2600), 1, + ACTIONS(2584), 1, sym_integer, - ACTIONS(2602), 1, + ACTIONS(2586), 1, sym_float, - ACTIONS(2674), 1, - anon_sym_RBRACK, + ACTIONS(2658), 1, + anon_sym_RPAREN, STATE(1858), 1, sym_string, - STATE(2080), 1, + STATE(2039), 1, sym_dotted_name, - STATE(2444), 1, + STATE(2152), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2349), 2, + STATE(2317), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2596), 4, + ACTIONS(2580), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2081), 9, + STATE(2040), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106527,47 +105727,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94012] = 18, - ACTIONS(729), 1, + [93462] = 18, + ACTIONS(713), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2566), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2568), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2572), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2574), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2578), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2582), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2584), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2586), 1, sym_float, - ACTIONS(2676), 1, + ACTIONS(2660), 1, anon_sym_RPAREN, - STATE(1842), 1, + STATE(1858), 1, sym_string, - STATE(2097), 1, + STATE(2039), 1, sym_dotted_name, - STATE(2261), 1, + STATE(2163), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2432), 2, + STATE(2317), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2580), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1993), 9, + STATE(2040), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106577,47 +105777,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94080] = 18, - ACTIONS(729), 1, + [93530] = 18, + ACTIONS(713), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2566), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2568), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2572), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2574), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2578), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2582), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2584), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2586), 1, sym_float, - ACTIONS(2678), 1, + ACTIONS(2662), 1, anon_sym_RPAREN, - STATE(1842), 1, + STATE(1858), 1, sym_string, - STATE(2097), 1, + STATE(2039), 1, sym_dotted_name, - STATE(2261), 1, + STATE(2442), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2432), 2, + STATE(2317), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2580), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1993), 9, + STATE(2040), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106627,47 +105827,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94148] = 18, - ACTIONS(729), 1, + [93598] = 18, + ACTIONS(781), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2590), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2592), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2594), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2596), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2598), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2602), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2606), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2608), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2610), 1, sym_float, - ACTIONS(2680), 1, - anon_sym_RPAREN, - STATE(1842), 1, + ACTIONS(2664), 1, + anon_sym_RBRACK, + STATE(1823), 1, sym_string, - STATE(2097), 1, + STATE(2016), 1, sym_dotted_name, - STATE(2261), 1, + STATE(2264), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2432), 2, + STATE(2230), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2604), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1993), 9, + STATE(2017), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106677,47 +105877,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94216] = 18, - ACTIONS(729), 1, + [93666] = 18, + ACTIONS(713), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2566), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2568), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2572), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2574), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2578), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2582), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2584), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2586), 1, sym_float, - ACTIONS(2682), 1, + ACTIONS(2666), 1, anon_sym_RPAREN, - STATE(1842), 1, + STATE(1858), 1, sym_string, - STATE(2097), 1, + STATE(2039), 1, sym_dotted_name, - STATE(2261), 1, + STATE(2154), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2432), 2, + STATE(2317), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2580), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1993), 9, + STATE(2040), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106727,47 +105927,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94284] = 18, - ACTIONS(729), 1, + [93734] = 18, + ACTIONS(713), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2566), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2568), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2572), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2574), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2578), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2582), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2584), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2586), 1, sym_float, - ACTIONS(2684), 1, + ACTIONS(2668), 1, anon_sym_RPAREN, - STATE(1842), 1, + STATE(1858), 1, sym_string, - STATE(2097), 1, + STATE(2039), 1, sym_dotted_name, - STATE(2261), 1, + STATE(2442), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2432), 2, + STATE(2317), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2580), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1993), 9, + STATE(2040), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106777,47 +105977,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94352] = 18, - ACTIONS(729), 1, + [93802] = 18, + ACTIONS(713), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2566), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2568), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2572), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2574), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2578), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2582), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2584), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2586), 1, sym_float, - ACTIONS(2686), 1, + ACTIONS(2670), 1, anon_sym_RPAREN, - STATE(1842), 1, + STATE(1858), 1, sym_string, - STATE(2097), 1, + STATE(2039), 1, sym_dotted_name, - STATE(2188), 1, + STATE(2442), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2432), 2, + STATE(2317), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2580), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1993), 9, + STATE(2040), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106827,47 +106027,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94420] = 18, - ACTIONS(819), 1, + [93870] = 18, + ACTIONS(781), 1, sym_string_start, - ACTIONS(2582), 1, + ACTIONS(2590), 1, sym_identifier, - ACTIONS(2584), 1, + ACTIONS(2592), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2594), 1, anon_sym_STAR, - ACTIONS(2588), 1, + ACTIONS(2596), 1, anon_sym_STAR_STAR, - ACTIONS(2590), 1, + ACTIONS(2598), 1, anon_sym_LBRACK, - ACTIONS(2594), 1, + ACTIONS(2602), 1, anon_sym_DASH, - ACTIONS(2598), 1, + ACTIONS(2606), 1, anon_sym_LBRACE, - ACTIONS(2600), 1, + ACTIONS(2608), 1, sym_integer, - ACTIONS(2602), 1, + ACTIONS(2610), 1, sym_float, - ACTIONS(2688), 1, + ACTIONS(2672), 1, anon_sym_RBRACK, - STATE(1858), 1, + STATE(1823), 1, sym_string, - STATE(2080), 1, + STATE(2016), 1, sym_dotted_name, - STATE(2198), 1, + STATE(2178), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2349), 2, + STATE(2230), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2596), 4, + ACTIONS(2604), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2081), 9, + STATE(2017), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106877,47 +106077,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94488] = 18, - ACTIONS(819), 1, + [93938] = 18, + ACTIONS(781), 1, sym_string_start, - ACTIONS(2582), 1, + ACTIONS(2590), 1, sym_identifier, - ACTIONS(2584), 1, + ACTIONS(2592), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2594), 1, anon_sym_STAR, - ACTIONS(2588), 1, + ACTIONS(2596), 1, anon_sym_STAR_STAR, - ACTIONS(2590), 1, + ACTIONS(2598), 1, anon_sym_LBRACK, - ACTIONS(2594), 1, + ACTIONS(2602), 1, anon_sym_DASH, - ACTIONS(2598), 1, + ACTIONS(2606), 1, anon_sym_LBRACE, - ACTIONS(2600), 1, + ACTIONS(2608), 1, sym_integer, - ACTIONS(2602), 1, + ACTIONS(2610), 1, sym_float, - ACTIONS(2690), 1, + ACTIONS(2674), 1, anon_sym_RBRACK, - STATE(1858), 1, + STATE(1823), 1, sym_string, - STATE(2080), 1, + STATE(2016), 1, sym_dotted_name, - STATE(2444), 1, + STATE(2264), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2349), 2, + STATE(2230), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2596), 4, + ACTIONS(2604), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2081), 9, + STATE(2017), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106927,47 +106127,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94556] = 18, - ACTIONS(819), 1, + [94006] = 18, + ACTIONS(713), 1, sym_string_start, - ACTIONS(2582), 1, + ACTIONS(2566), 1, sym_identifier, - ACTIONS(2584), 1, + ACTIONS(2568), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2572), 1, anon_sym_STAR, - ACTIONS(2588), 1, + ACTIONS(2574), 1, anon_sym_STAR_STAR, - ACTIONS(2590), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2594), 1, + ACTIONS(2578), 1, anon_sym_DASH, - ACTIONS(2598), 1, + ACTIONS(2582), 1, anon_sym_LBRACE, - ACTIONS(2600), 1, + ACTIONS(2584), 1, sym_integer, - ACTIONS(2602), 1, + ACTIONS(2586), 1, sym_float, - ACTIONS(2692), 1, - anon_sym_RBRACK, + ACTIONS(2676), 1, + anon_sym_RPAREN, STATE(1858), 1, sym_string, - STATE(2080), 1, + STATE(2039), 1, sym_dotted_name, - STATE(2444), 1, + STATE(2442), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2349), 2, + STATE(2317), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2596), 4, + ACTIONS(2580), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2081), 9, + STATE(2040), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106977,45 +106177,45 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94624] = 17, - ACTIONS(729), 1, + [94074] = 17, + ACTIONS(713), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2566), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2568), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2572), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2574), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2578), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2582), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2584), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2586), 1, sym_float, - STATE(1842), 1, + STATE(1858), 1, sym_string, - STATE(2097), 1, + STATE(2039), 1, sym_dotted_name, - STATE(2261), 1, + STATE(2442), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2432), 2, + STATE(2317), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2580), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1993), 9, + STATE(2040), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107025,45 +106225,45 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94689] = 17, - ACTIONS(819), 1, + [94139] = 17, + ACTIONS(691), 1, sym_string_start, - ACTIONS(2582), 1, + ACTIONS(2678), 1, sym_identifier, - ACTIONS(2584), 1, + ACTIONS(2680), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2682), 1, anon_sym_STAR, - ACTIONS(2588), 1, + ACTIONS(2684), 1, anon_sym_STAR_STAR, - ACTIONS(2590), 1, + ACTIONS(2686), 1, anon_sym_LBRACK, - ACTIONS(2594), 1, + ACTIONS(2688), 1, anon_sym_DASH, - ACTIONS(2598), 1, + ACTIONS(2692), 1, anon_sym_LBRACE, - ACTIONS(2600), 1, + ACTIONS(2694), 1, sym_integer, - ACTIONS(2602), 1, + ACTIONS(2696), 1, sym_float, - STATE(1858), 1, + STATE(1867), 1, sym_string, - STATE(2080), 1, + STATE(2086), 1, sym_dotted_name, - STATE(2444), 1, + STATE(2345), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2349), 2, + STATE(2455), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2596), 4, + ACTIONS(2690), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2081), 9, + STATE(2087), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107073,45 +106273,45 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94754] = 17, - ACTIONS(704), 1, + [94204] = 17, + ACTIONS(319), 1, sym_string_start, - ACTIONS(2694), 1, + ACTIONS(2540), 1, sym_identifier, - ACTIONS(2696), 1, + ACTIONS(2542), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2544), 1, anon_sym_STAR, - ACTIONS(2700), 1, + ACTIONS(2550), 1, anon_sym_STAR_STAR, - ACTIONS(2702), 1, + ACTIONS(2552), 1, anon_sym_LBRACK, - ACTIONS(2704), 1, + ACTIONS(2554), 1, anon_sym_DASH, - ACTIONS(2708), 1, + ACTIONS(2558), 1, anon_sym_LBRACE, - ACTIONS(2710), 1, + ACTIONS(2560), 1, sym_integer, - ACTIONS(2712), 1, + ACTIONS(2562), 1, sym_float, - STATE(1847), 1, + STATE(1761), 1, sym_string, - STATE(2067), 1, + STATE(1903), 1, sym_dotted_name, - STATE(2396), 1, + STATE(1912), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2257), 2, + STATE(2160), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2706), 4, + ACTIONS(2556), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2068), 9, + STATE(1920), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107121,45 +106321,45 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94819] = 17, - ACTIONS(327), 1, + [94269] = 17, + ACTIONS(781), 1, sym_string_start, - ACTIONS(2556), 1, + ACTIONS(2590), 1, sym_identifier, - ACTIONS(2558), 1, + ACTIONS(2592), 1, anon_sym_LPAREN, - ACTIONS(2560), 1, + ACTIONS(2594), 1, anon_sym_STAR, - ACTIONS(2566), 1, + ACTIONS(2596), 1, anon_sym_STAR_STAR, - ACTIONS(2568), 1, + ACTIONS(2598), 1, anon_sym_LBRACK, - ACTIONS(2570), 1, + ACTIONS(2602), 1, anon_sym_DASH, - ACTIONS(2574), 1, + ACTIONS(2606), 1, anon_sym_LBRACE, - ACTIONS(2576), 1, + ACTIONS(2608), 1, sym_integer, - ACTIONS(2578), 1, + ACTIONS(2610), 1, sym_float, - STATE(1818), 1, + STATE(1823), 1, sym_string, - STATE(1908), 1, + STATE(2016), 1, sym_dotted_name, - STATE(2238), 1, + STATE(2264), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2202), 2, + STATE(2230), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2572), 4, + ACTIONS(2604), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1913), 9, + STATE(2017), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107169,45 +106369,45 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94884] = 17, - ACTIONS(327), 1, + [94334] = 17, + ACTIONS(319), 1, sym_string_start, - ACTIONS(2556), 1, + ACTIONS(2540), 1, sym_identifier, - ACTIONS(2558), 1, + ACTIONS(2542), 1, anon_sym_LPAREN, - ACTIONS(2560), 1, + ACTIONS(2544), 1, anon_sym_STAR, - ACTIONS(2566), 1, + ACTIONS(2550), 1, anon_sym_STAR_STAR, - ACTIONS(2568), 1, + ACTIONS(2552), 1, anon_sym_LBRACK, - ACTIONS(2570), 1, + ACTIONS(2554), 1, anon_sym_DASH, - ACTIONS(2574), 1, + ACTIONS(2558), 1, anon_sym_LBRACE, - ACTIONS(2576), 1, + ACTIONS(2560), 1, sym_integer, - ACTIONS(2578), 1, + ACTIONS(2562), 1, sym_float, - STATE(1818), 1, + STATE(1761), 1, sym_string, - STATE(1908), 1, + STATE(1903), 1, sym_dotted_name, - STATE(1912), 1, + STATE(2099), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2202), 2, + STATE(2160), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2572), 4, + ACTIONS(2556), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1913), 9, + STATE(1920), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107217,46 +106417,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94949] = 18, - ACTIONS(327), 1, + [94399] = 18, + ACTIONS(319), 1, sym_string_start, - ACTIONS(2558), 1, + ACTIONS(2542), 1, anon_sym_LPAREN, - ACTIONS(2568), 1, + ACTIONS(2552), 1, anon_sym_LBRACK, - ACTIONS(2570), 1, + ACTIONS(2554), 1, anon_sym_DASH, - ACTIONS(2574), 1, + ACTIONS(2558), 1, anon_sym_LBRACE, - ACTIONS(2576), 1, + ACTIONS(2560), 1, sym_integer, - ACTIONS(2578), 1, + ACTIONS(2562), 1, sym_float, - ACTIONS(2698), 1, + ACTIONS(2682), 1, anon_sym_STAR, - ACTIONS(2700), 1, + ACTIONS(2684), 1, anon_sym_STAR_STAR, - ACTIONS(2714), 1, + ACTIONS(2698), 1, sym_identifier, - ACTIONS(2718), 1, + ACTIONS(2702), 1, anon_sym_RBRACE, - STATE(1818), 1, + STATE(1761), 1, sym_string, - STATE(1908), 1, + STATE(1903), 1, sym_dotted_name, - STATE(2113), 1, + STATE(2128), 1, sym_splat_pattern, - STATE(2540), 1, + STATE(2569), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2716), 4, + ACTIONS(2700), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2453), 8, + STATE(2263), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107265,46 +106465,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95015] = 18, - ACTIONS(327), 1, + [94465] = 18, + ACTIONS(319), 1, sym_string_start, - ACTIONS(2558), 1, + ACTIONS(2542), 1, anon_sym_LPAREN, - ACTIONS(2568), 1, + ACTIONS(2552), 1, anon_sym_LBRACK, - ACTIONS(2570), 1, + ACTIONS(2554), 1, anon_sym_DASH, - ACTIONS(2574), 1, + ACTIONS(2558), 1, anon_sym_LBRACE, - ACTIONS(2576), 1, + ACTIONS(2560), 1, sym_integer, - ACTIONS(2578), 1, + ACTIONS(2562), 1, sym_float, - ACTIONS(2698), 1, + ACTIONS(2682), 1, anon_sym_STAR, - ACTIONS(2700), 1, + ACTIONS(2684), 1, anon_sym_STAR_STAR, - ACTIONS(2714), 1, + ACTIONS(2698), 1, sym_identifier, - ACTIONS(2720), 1, + ACTIONS(2704), 1, anon_sym_RBRACE, - STATE(1818), 1, + STATE(1761), 1, sym_string, - STATE(1908), 1, + STATE(1903), 1, sym_dotted_name, - STATE(2113), 1, + STATE(2128), 1, sym_splat_pattern, - STATE(2540), 1, + STATE(2569), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2716), 4, + ACTIONS(2700), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2453), 8, + STATE(2263), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107313,46 +106513,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95081] = 18, - ACTIONS(327), 1, + [94531] = 18, + ACTIONS(319), 1, sym_string_start, - ACTIONS(2558), 1, + ACTIONS(2542), 1, anon_sym_LPAREN, - ACTIONS(2568), 1, + ACTIONS(2552), 1, anon_sym_LBRACK, - ACTIONS(2570), 1, + ACTIONS(2554), 1, anon_sym_DASH, - ACTIONS(2574), 1, + ACTIONS(2558), 1, anon_sym_LBRACE, - ACTIONS(2576), 1, + ACTIONS(2560), 1, sym_integer, - ACTIONS(2578), 1, + ACTIONS(2562), 1, sym_float, - ACTIONS(2698), 1, + ACTIONS(2682), 1, anon_sym_STAR, - ACTIONS(2700), 1, + ACTIONS(2684), 1, anon_sym_STAR_STAR, - ACTIONS(2714), 1, + ACTIONS(2698), 1, sym_identifier, - ACTIONS(2722), 1, + ACTIONS(2706), 1, anon_sym_RBRACE, - STATE(1818), 1, + STATE(1761), 1, sym_string, - STATE(1908), 1, + STATE(1903), 1, sym_dotted_name, - STATE(2113), 1, + STATE(2128), 1, sym_splat_pattern, - STATE(2540), 1, + STATE(2569), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2716), 4, + ACTIONS(2700), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2453), 8, + STATE(2263), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107361,46 +106561,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95147] = 18, - ACTIONS(327), 1, + [94597] = 18, + ACTIONS(319), 1, sym_string_start, - ACTIONS(2558), 1, + ACTIONS(2542), 1, anon_sym_LPAREN, - ACTIONS(2568), 1, + ACTIONS(2552), 1, anon_sym_LBRACK, - ACTIONS(2570), 1, + ACTIONS(2554), 1, anon_sym_DASH, - ACTIONS(2574), 1, + ACTIONS(2558), 1, anon_sym_LBRACE, - ACTIONS(2576), 1, + ACTIONS(2560), 1, sym_integer, - ACTIONS(2578), 1, + ACTIONS(2562), 1, sym_float, - ACTIONS(2698), 1, + ACTIONS(2682), 1, anon_sym_STAR, - ACTIONS(2700), 1, + ACTIONS(2684), 1, anon_sym_STAR_STAR, - ACTIONS(2714), 1, + ACTIONS(2698), 1, sym_identifier, - ACTIONS(2724), 1, + ACTIONS(2708), 1, anon_sym_RBRACE, - STATE(1818), 1, + STATE(1761), 1, sym_string, - STATE(1908), 1, + STATE(1903), 1, sym_dotted_name, - STATE(2035), 1, + STATE(2128), 1, sym_splat_pattern, - STATE(2467), 1, + STATE(2569), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2716), 4, + ACTIONS(2700), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2453), 8, + STATE(2263), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107409,46 +106609,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95213] = 18, - ACTIONS(327), 1, + [94663] = 18, + ACTIONS(319), 1, sym_string_start, - ACTIONS(2558), 1, + ACTIONS(2542), 1, anon_sym_LPAREN, - ACTIONS(2568), 1, + ACTIONS(2552), 1, anon_sym_LBRACK, - ACTIONS(2570), 1, + ACTIONS(2554), 1, anon_sym_DASH, - ACTIONS(2574), 1, + ACTIONS(2558), 1, anon_sym_LBRACE, - ACTIONS(2576), 1, + ACTIONS(2560), 1, sym_integer, - ACTIONS(2578), 1, + ACTIONS(2562), 1, sym_float, - ACTIONS(2698), 1, + ACTIONS(2682), 1, anon_sym_STAR, - ACTIONS(2700), 1, + ACTIONS(2684), 1, anon_sym_STAR_STAR, - ACTIONS(2714), 1, + ACTIONS(2698), 1, sym_identifier, - ACTIONS(2726), 1, + ACTIONS(2710), 1, anon_sym_RBRACE, - STATE(1818), 1, + STATE(1761), 1, sym_string, - STATE(1908), 1, + STATE(1903), 1, sym_dotted_name, - STATE(2113), 1, + STATE(2128), 1, sym_splat_pattern, - STATE(2540), 1, + STATE(2569), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2716), 4, + ACTIONS(2700), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2453), 8, + STATE(2263), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107457,46 +106657,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95279] = 18, - ACTIONS(327), 1, + [94729] = 18, + ACTIONS(319), 1, sym_string_start, - ACTIONS(2558), 1, + ACTIONS(2542), 1, anon_sym_LPAREN, - ACTIONS(2568), 1, + ACTIONS(2552), 1, anon_sym_LBRACK, - ACTIONS(2570), 1, + ACTIONS(2554), 1, anon_sym_DASH, - ACTIONS(2574), 1, + ACTIONS(2558), 1, anon_sym_LBRACE, - ACTIONS(2576), 1, + ACTIONS(2560), 1, sym_integer, - ACTIONS(2578), 1, + ACTIONS(2562), 1, sym_float, - ACTIONS(2698), 1, + ACTIONS(2682), 1, anon_sym_STAR, - ACTIONS(2700), 1, + ACTIONS(2684), 1, anon_sym_STAR_STAR, - ACTIONS(2714), 1, + ACTIONS(2698), 1, sym_identifier, - ACTIONS(2728), 1, + ACTIONS(2712), 1, anon_sym_RBRACE, - STATE(1818), 1, + STATE(1761), 1, sym_string, - STATE(1908), 1, + STATE(1903), 1, sym_dotted_name, - STATE(2113), 1, + STATE(2128), 1, sym_splat_pattern, - STATE(2540), 1, + STATE(2569), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2716), 4, + ACTIONS(2700), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2453), 8, + STATE(2263), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107505,46 +106705,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95345] = 18, - ACTIONS(327), 1, + [94795] = 18, + ACTIONS(319), 1, sym_string_start, - ACTIONS(2558), 1, + ACTIONS(2542), 1, anon_sym_LPAREN, - ACTIONS(2568), 1, + ACTIONS(2552), 1, anon_sym_LBRACK, - ACTIONS(2570), 1, + ACTIONS(2554), 1, anon_sym_DASH, - ACTIONS(2574), 1, + ACTIONS(2558), 1, anon_sym_LBRACE, - ACTIONS(2576), 1, + ACTIONS(2560), 1, sym_integer, - ACTIONS(2578), 1, + ACTIONS(2562), 1, sym_float, - ACTIONS(2698), 1, + ACTIONS(2682), 1, anon_sym_STAR, - ACTIONS(2700), 1, + ACTIONS(2684), 1, anon_sym_STAR_STAR, - ACTIONS(2714), 1, + ACTIONS(2698), 1, sym_identifier, - ACTIONS(2730), 1, + ACTIONS(2714), 1, anon_sym_RBRACE, - STATE(1818), 1, + STATE(1761), 1, sym_string, - STATE(1908), 1, + STATE(1903), 1, sym_dotted_name, - STATE(2113), 1, + STATE(2128), 1, sym_splat_pattern, - STATE(2540), 1, + STATE(2569), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2716), 4, + ACTIONS(2700), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2453), 8, + STATE(2263), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107553,46 +106753,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95411] = 18, - ACTIONS(327), 1, + [94861] = 18, + ACTIONS(319), 1, sym_string_start, - ACTIONS(2558), 1, + ACTIONS(2542), 1, anon_sym_LPAREN, - ACTIONS(2568), 1, + ACTIONS(2552), 1, anon_sym_LBRACK, - ACTIONS(2570), 1, + ACTIONS(2554), 1, anon_sym_DASH, - ACTIONS(2574), 1, + ACTIONS(2558), 1, anon_sym_LBRACE, - ACTIONS(2576), 1, + ACTIONS(2560), 1, sym_integer, - ACTIONS(2578), 1, + ACTIONS(2562), 1, sym_float, - ACTIONS(2698), 1, + ACTIONS(2682), 1, anon_sym_STAR, - ACTIONS(2700), 1, + ACTIONS(2684), 1, anon_sym_STAR_STAR, - ACTIONS(2714), 1, + ACTIONS(2698), 1, sym_identifier, - ACTIONS(2732), 1, + ACTIONS(2716), 1, anon_sym_RBRACE, - STATE(1818), 1, + STATE(1761), 1, sym_string, - STATE(1908), 1, + STATE(1903), 1, sym_dotted_name, - STATE(2066), 1, + STATE(2128), 1, sym_splat_pattern, - STATE(2243), 1, + STATE(2569), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2716), 4, + ACTIONS(2700), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2453), 8, + STATE(2263), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107601,46 +106801,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95477] = 18, - ACTIONS(327), 1, + [94927] = 18, + ACTIONS(319), 1, sym_string_start, - ACTIONS(2558), 1, + ACTIONS(2542), 1, anon_sym_LPAREN, - ACTIONS(2568), 1, + ACTIONS(2552), 1, anon_sym_LBRACK, - ACTIONS(2570), 1, + ACTIONS(2554), 1, anon_sym_DASH, - ACTIONS(2574), 1, + ACTIONS(2558), 1, anon_sym_LBRACE, - ACTIONS(2576), 1, + ACTIONS(2560), 1, sym_integer, - ACTIONS(2578), 1, + ACTIONS(2562), 1, sym_float, - ACTIONS(2698), 1, + ACTIONS(2682), 1, anon_sym_STAR, - ACTIONS(2700), 1, + ACTIONS(2684), 1, anon_sym_STAR_STAR, - ACTIONS(2714), 1, + ACTIONS(2698), 1, sym_identifier, - ACTIONS(2734), 1, + ACTIONS(2718), 1, anon_sym_RBRACE, - STATE(1818), 1, + STATE(1761), 1, sym_string, - STATE(1908), 1, + STATE(1903), 1, sym_dotted_name, - STATE(2113), 1, + STATE(2128), 1, sym_splat_pattern, - STATE(2540), 1, + STATE(2569), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2716), 4, + ACTIONS(2700), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2453), 8, + STATE(2263), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107649,46 +106849,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95543] = 18, - ACTIONS(327), 1, + [94993] = 18, + ACTIONS(319), 1, sym_string_start, - ACTIONS(2558), 1, + ACTIONS(2542), 1, anon_sym_LPAREN, - ACTIONS(2568), 1, + ACTIONS(2552), 1, anon_sym_LBRACK, - ACTIONS(2570), 1, + ACTIONS(2554), 1, anon_sym_DASH, - ACTIONS(2574), 1, + ACTIONS(2558), 1, anon_sym_LBRACE, - ACTIONS(2576), 1, + ACTIONS(2560), 1, sym_integer, - ACTIONS(2578), 1, + ACTIONS(2562), 1, sym_float, - ACTIONS(2698), 1, + ACTIONS(2682), 1, anon_sym_STAR, - ACTIONS(2700), 1, + ACTIONS(2684), 1, anon_sym_STAR_STAR, - ACTIONS(2714), 1, + ACTIONS(2698), 1, sym_identifier, - ACTIONS(2736), 1, + ACTIONS(2720), 1, anon_sym_RBRACE, - STATE(1818), 1, + STATE(1761), 1, sym_string, - STATE(1908), 1, + STATE(1903), 1, sym_dotted_name, - STATE(2109), 1, + STATE(2128), 1, sym_splat_pattern, - STATE(2393), 1, + STATE(2569), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2716), 4, + ACTIONS(2700), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2453), 8, + STATE(2263), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107697,46 +106897,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95609] = 18, - ACTIONS(327), 1, + [95059] = 18, + ACTIONS(319), 1, sym_string_start, - ACTIONS(2558), 1, + ACTIONS(2542), 1, anon_sym_LPAREN, - ACTIONS(2568), 1, + ACTIONS(2552), 1, anon_sym_LBRACK, - ACTIONS(2570), 1, + ACTIONS(2554), 1, anon_sym_DASH, - ACTIONS(2574), 1, + ACTIONS(2558), 1, anon_sym_LBRACE, - ACTIONS(2576), 1, + ACTIONS(2560), 1, sym_integer, - ACTIONS(2578), 1, + ACTIONS(2562), 1, sym_float, - ACTIONS(2698), 1, + ACTIONS(2682), 1, anon_sym_STAR, - ACTIONS(2700), 1, + ACTIONS(2684), 1, anon_sym_STAR_STAR, - ACTIONS(2714), 1, + ACTIONS(2698), 1, sym_identifier, - ACTIONS(2738), 1, + ACTIONS(2722), 1, anon_sym_RBRACE, - STATE(1818), 1, + STATE(1761), 1, sym_string, - STATE(1908), 1, + STATE(1903), 1, sym_dotted_name, - STATE(2113), 1, + STATE(2128), 1, sym_splat_pattern, - STATE(2540), 1, + STATE(2569), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2716), 4, + ACTIONS(2700), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2453), 8, + STATE(2263), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107745,46 +106945,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95675] = 18, - ACTIONS(327), 1, + [95125] = 18, + ACTIONS(319), 1, sym_string_start, - ACTIONS(2558), 1, + ACTIONS(2542), 1, anon_sym_LPAREN, - ACTIONS(2568), 1, + ACTIONS(2552), 1, anon_sym_LBRACK, - ACTIONS(2570), 1, + ACTIONS(2554), 1, anon_sym_DASH, - ACTIONS(2574), 1, + ACTIONS(2558), 1, anon_sym_LBRACE, - ACTIONS(2576), 1, + ACTIONS(2560), 1, sym_integer, - ACTIONS(2578), 1, + ACTIONS(2562), 1, sym_float, - ACTIONS(2698), 1, + ACTIONS(2682), 1, anon_sym_STAR, - ACTIONS(2700), 1, + ACTIONS(2684), 1, anon_sym_STAR_STAR, - ACTIONS(2714), 1, + ACTIONS(2698), 1, sym_identifier, - ACTIONS(2740), 1, + ACTIONS(2724), 1, anon_sym_RBRACE, - STATE(1818), 1, + STATE(1761), 1, sym_string, - STATE(1908), 1, + STATE(1903), 1, sym_dotted_name, - STATE(2113), 1, + STATE(2128), 1, sym_splat_pattern, - STATE(2540), 1, + STATE(2569), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2716), 4, + ACTIONS(2700), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2453), 8, + STATE(2263), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107793,46 +106993,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95741] = 18, - ACTIONS(327), 1, + [95191] = 18, + ACTIONS(319), 1, sym_string_start, - ACTIONS(2558), 1, + ACTIONS(2542), 1, anon_sym_LPAREN, - ACTIONS(2568), 1, + ACTIONS(2552), 1, anon_sym_LBRACK, - ACTIONS(2570), 1, + ACTIONS(2554), 1, anon_sym_DASH, - ACTIONS(2574), 1, + ACTIONS(2558), 1, anon_sym_LBRACE, - ACTIONS(2576), 1, + ACTIONS(2560), 1, sym_integer, - ACTIONS(2578), 1, + ACTIONS(2562), 1, sym_float, - ACTIONS(2698), 1, + ACTIONS(2682), 1, anon_sym_STAR, - ACTIONS(2700), 1, + ACTIONS(2684), 1, anon_sym_STAR_STAR, - ACTIONS(2714), 1, + ACTIONS(2698), 1, sym_identifier, - ACTIONS(2742), 1, + ACTIONS(2726), 1, anon_sym_RBRACE, - STATE(1818), 1, + STATE(1761), 1, sym_string, - STATE(1908), 1, + STATE(1903), 1, sym_dotted_name, - STATE(2113), 1, + STATE(2002), 1, sym_splat_pattern, - STATE(2540), 1, + STATE(2421), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2716), 4, + ACTIONS(2700), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2453), 8, + STATE(2263), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107841,46 +107041,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95807] = 18, - ACTIONS(327), 1, + [95257] = 18, + ACTIONS(319), 1, sym_string_start, - ACTIONS(2558), 1, + ACTIONS(2542), 1, anon_sym_LPAREN, - ACTIONS(2568), 1, + ACTIONS(2552), 1, anon_sym_LBRACK, - ACTIONS(2570), 1, + ACTIONS(2554), 1, anon_sym_DASH, - ACTIONS(2574), 1, + ACTIONS(2558), 1, anon_sym_LBRACE, - ACTIONS(2576), 1, + ACTIONS(2560), 1, sym_integer, - ACTIONS(2578), 1, + ACTIONS(2562), 1, sym_float, - ACTIONS(2698), 1, + ACTIONS(2682), 1, anon_sym_STAR, - ACTIONS(2700), 1, + ACTIONS(2684), 1, anon_sym_STAR_STAR, - ACTIONS(2714), 1, + ACTIONS(2698), 1, sym_identifier, - ACTIONS(2744), 1, + ACTIONS(2728), 1, anon_sym_RBRACE, - STATE(1818), 1, + STATE(1761), 1, sym_string, - STATE(1908), 1, + STATE(1903), 1, sym_dotted_name, - STATE(2113), 1, + STATE(2027), 1, sym_splat_pattern, - STATE(2540), 1, + STATE(2255), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2716), 4, + ACTIONS(2700), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2453), 8, + STATE(2263), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107889,46 +107089,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95873] = 18, - ACTIONS(327), 1, + [95323] = 18, + ACTIONS(319), 1, sym_string_start, - ACTIONS(2558), 1, + ACTIONS(2542), 1, anon_sym_LPAREN, - ACTIONS(2568), 1, + ACTIONS(2552), 1, anon_sym_LBRACK, - ACTIONS(2570), 1, + ACTIONS(2554), 1, anon_sym_DASH, - ACTIONS(2574), 1, + ACTIONS(2558), 1, anon_sym_LBRACE, - ACTIONS(2576), 1, + ACTIONS(2560), 1, sym_integer, - ACTIONS(2578), 1, + ACTIONS(2562), 1, sym_float, - ACTIONS(2698), 1, + ACTIONS(2682), 1, anon_sym_STAR, - ACTIONS(2700), 1, + ACTIONS(2684), 1, anon_sym_STAR_STAR, - ACTIONS(2714), 1, + ACTIONS(2698), 1, sym_identifier, - ACTIONS(2746), 1, + ACTIONS(2730), 1, anon_sym_RBRACE, - STATE(1818), 1, + STATE(1761), 1, sym_string, - STATE(1908), 1, + STATE(1903), 1, sym_dotted_name, - STATE(2113), 1, + STATE(2037), 1, sym_splat_pattern, - STATE(2540), 1, + STATE(2304), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2716), 4, + ACTIONS(2700), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2453), 8, + STATE(2263), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107937,46 +107137,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95939] = 18, - ACTIONS(327), 1, + [95389] = 18, + ACTIONS(319), 1, sym_string_start, - ACTIONS(2558), 1, + ACTIONS(2542), 1, anon_sym_LPAREN, - ACTIONS(2568), 1, + ACTIONS(2552), 1, anon_sym_LBRACK, - ACTIONS(2570), 1, + ACTIONS(2554), 1, anon_sym_DASH, - ACTIONS(2574), 1, + ACTIONS(2558), 1, anon_sym_LBRACE, - ACTIONS(2576), 1, + ACTIONS(2560), 1, sym_integer, - ACTIONS(2578), 1, + ACTIONS(2562), 1, sym_float, - ACTIONS(2698), 1, + ACTIONS(2682), 1, anon_sym_STAR, - ACTIONS(2700), 1, + ACTIONS(2684), 1, anon_sym_STAR_STAR, - ACTIONS(2714), 1, + ACTIONS(2698), 1, sym_identifier, - ACTIONS(2748), 1, + ACTIONS(2732), 1, anon_sym_RBRACE, - STATE(1818), 1, + STATE(1761), 1, sym_string, - STATE(1908), 1, + STATE(1903), 1, sym_dotted_name, - STATE(2113), 1, + STATE(2128), 1, sym_splat_pattern, - STATE(2540), 1, + STATE(2569), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2716), 4, + ACTIONS(2700), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2453), 8, + STATE(2263), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107985,46 +107185,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96005] = 18, - ACTIONS(327), 1, + [95455] = 18, + ACTIONS(319), 1, sym_string_start, - ACTIONS(2558), 1, + ACTIONS(2542), 1, anon_sym_LPAREN, - ACTIONS(2568), 1, + ACTIONS(2552), 1, anon_sym_LBRACK, - ACTIONS(2570), 1, + ACTIONS(2554), 1, anon_sym_DASH, - ACTIONS(2574), 1, + ACTIONS(2558), 1, anon_sym_LBRACE, - ACTIONS(2576), 1, + ACTIONS(2560), 1, sym_integer, - ACTIONS(2578), 1, + ACTIONS(2562), 1, sym_float, - ACTIONS(2698), 1, + ACTIONS(2682), 1, anon_sym_STAR, - ACTIONS(2700), 1, + ACTIONS(2684), 1, anon_sym_STAR_STAR, - ACTIONS(2714), 1, + ACTIONS(2698), 1, sym_identifier, - ACTIONS(2750), 1, + ACTIONS(2734), 1, anon_sym_RBRACE, - STATE(1818), 1, + STATE(1761), 1, sym_string, - STATE(1908), 1, + STATE(1903), 1, sym_dotted_name, - STATE(2113), 1, + STATE(2128), 1, sym_splat_pattern, - STATE(2540), 1, + STATE(2569), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2716), 4, + ACTIONS(2700), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2453), 8, + STATE(2263), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108033,46 +107233,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96071] = 18, - ACTIONS(327), 1, + [95521] = 18, + ACTIONS(319), 1, sym_string_start, - ACTIONS(2558), 1, + ACTIONS(2542), 1, anon_sym_LPAREN, - ACTIONS(2568), 1, + ACTIONS(2552), 1, anon_sym_LBRACK, - ACTIONS(2570), 1, + ACTIONS(2554), 1, anon_sym_DASH, - ACTIONS(2574), 1, + ACTIONS(2558), 1, anon_sym_LBRACE, - ACTIONS(2576), 1, + ACTIONS(2560), 1, sym_integer, - ACTIONS(2578), 1, + ACTIONS(2562), 1, sym_float, - ACTIONS(2698), 1, + ACTIONS(2682), 1, anon_sym_STAR, - ACTIONS(2700), 1, + ACTIONS(2684), 1, anon_sym_STAR_STAR, - ACTIONS(2714), 1, + ACTIONS(2698), 1, sym_identifier, - ACTIONS(2752), 1, + ACTIONS(2736), 1, anon_sym_RBRACE, - STATE(1818), 1, + STATE(1761), 1, sym_string, - STATE(1908), 1, + STATE(1903), 1, sym_dotted_name, - STATE(2113), 1, + STATE(2128), 1, sym_splat_pattern, - STATE(2540), 1, + STATE(2569), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2716), 4, + ACTIONS(2700), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2453), 8, + STATE(2263), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108081,46 +107281,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96137] = 18, - ACTIONS(327), 1, + [95587] = 18, + ACTIONS(319), 1, sym_string_start, - ACTIONS(2558), 1, + ACTIONS(2542), 1, anon_sym_LPAREN, - ACTIONS(2568), 1, + ACTIONS(2552), 1, anon_sym_LBRACK, - ACTIONS(2570), 1, + ACTIONS(2554), 1, anon_sym_DASH, - ACTIONS(2574), 1, + ACTIONS(2558), 1, anon_sym_LBRACE, - ACTIONS(2576), 1, + ACTIONS(2560), 1, sym_integer, - ACTIONS(2578), 1, + ACTIONS(2562), 1, sym_float, - ACTIONS(2698), 1, + ACTIONS(2682), 1, anon_sym_STAR, - ACTIONS(2700), 1, + ACTIONS(2684), 1, anon_sym_STAR_STAR, - ACTIONS(2714), 1, + ACTIONS(2698), 1, sym_identifier, - ACTIONS(2754), 1, + ACTIONS(2738), 1, anon_sym_RBRACE, - STATE(1818), 1, + STATE(1761), 1, sym_string, - STATE(1908), 1, + STATE(1903), 1, sym_dotted_name, - STATE(2062), 1, + STATE(2128), 1, sym_splat_pattern, - STATE(2459), 1, + STATE(2569), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2716), 4, + ACTIONS(2700), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2453), 8, + STATE(2263), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108129,46 +107329,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96203] = 18, - ACTIONS(327), 1, + [95653] = 18, + ACTIONS(319), 1, sym_string_start, - ACTIONS(2558), 1, + ACTIONS(2542), 1, anon_sym_LPAREN, - ACTIONS(2568), 1, + ACTIONS(2552), 1, anon_sym_LBRACK, - ACTIONS(2570), 1, + ACTIONS(2554), 1, anon_sym_DASH, - ACTIONS(2574), 1, + ACTIONS(2558), 1, anon_sym_LBRACE, - ACTIONS(2576), 1, + ACTIONS(2560), 1, sym_integer, - ACTIONS(2578), 1, + ACTIONS(2562), 1, sym_float, - ACTIONS(2698), 1, + ACTIONS(2682), 1, anon_sym_STAR, - ACTIONS(2700), 1, + ACTIONS(2684), 1, anon_sym_STAR_STAR, - ACTIONS(2714), 1, + ACTIONS(2698), 1, sym_identifier, - ACTIONS(2756), 1, + ACTIONS(2740), 1, anon_sym_RBRACE, - STATE(1818), 1, + STATE(1761), 1, sym_string, - STATE(1908), 1, + STATE(1903), 1, sym_dotted_name, - STATE(2113), 1, + STATE(1990), 1, sym_splat_pattern, - STATE(2540), 1, + STATE(2268), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2716), 4, + ACTIONS(2700), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2453), 8, + STATE(2263), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108177,44 +107377,44 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96269] = 17, - ACTIONS(327), 1, + [95719] = 17, + ACTIONS(319), 1, sym_string_start, - ACTIONS(2558), 1, + ACTIONS(2542), 1, anon_sym_LPAREN, - ACTIONS(2568), 1, + ACTIONS(2552), 1, anon_sym_LBRACK, - ACTIONS(2570), 1, + ACTIONS(2554), 1, anon_sym_DASH, - ACTIONS(2574), 1, + ACTIONS(2558), 1, anon_sym_LBRACE, - ACTIONS(2576), 1, + ACTIONS(2560), 1, sym_integer, - ACTIONS(2578), 1, + ACTIONS(2562), 1, sym_float, - ACTIONS(2698), 1, + ACTIONS(2682), 1, anon_sym_STAR, - ACTIONS(2700), 1, + ACTIONS(2684), 1, anon_sym_STAR_STAR, - ACTIONS(2714), 1, + ACTIONS(2698), 1, sym_identifier, - STATE(1818), 1, + STATE(1761), 1, sym_string, - STATE(1908), 1, + STATE(1903), 1, sym_dotted_name, - STATE(2113), 1, + STATE(2128), 1, sym_splat_pattern, - STATE(2540), 1, + STATE(2569), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2716), 4, + ACTIONS(2700), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2453), 8, + STATE(2263), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108223,40 +107423,40 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96332] = 15, - ACTIONS(819), 1, + [95782] = 15, + ACTIONS(713), 1, sym_string_start, - ACTIONS(2584), 1, + ACTIONS(2568), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2572), 1, anon_sym_STAR, - ACTIONS(2588), 1, + ACTIONS(2574), 1, anon_sym_STAR_STAR, - ACTIONS(2590), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2594), 1, + ACTIONS(2578), 1, anon_sym_DASH, - ACTIONS(2598), 1, + ACTIONS(2582), 1, anon_sym_LBRACE, - ACTIONS(2600), 1, + ACTIONS(2584), 1, sym_integer, - ACTIONS(2602), 1, + ACTIONS(2586), 1, sym_float, - ACTIONS(2758), 1, + ACTIONS(2742), 1, sym_identifier, STATE(1858), 1, sym_string, - STATE(2080), 1, + STATE(2039), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2760), 4, + ACTIONS(2744), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2098), 9, + STATE(2084), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108266,40 +107466,40 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96390] = 15, - ACTIONS(819), 1, + [95840] = 15, + ACTIONS(691), 1, sym_string_start, - ACTIONS(2584), 1, + ACTIONS(2680), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2682), 1, anon_sym_STAR, - ACTIONS(2588), 1, + ACTIONS(2684), 1, anon_sym_STAR_STAR, - ACTIONS(2590), 1, + ACTIONS(2686), 1, anon_sym_LBRACK, - ACTIONS(2594), 1, + ACTIONS(2688), 1, anon_sym_DASH, - ACTIONS(2598), 1, + ACTIONS(2692), 1, anon_sym_LBRACE, - ACTIONS(2600), 1, + ACTIONS(2694), 1, sym_integer, - ACTIONS(2602), 1, + ACTIONS(2696), 1, sym_float, - ACTIONS(2758), 1, + ACTIONS(2746), 1, sym_identifier, - STATE(1858), 1, + STATE(1867), 1, sym_string, - STATE(2080), 1, + STATE(2086), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2762), 4, + ACTIONS(2748), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2102), 9, + STATE(2092), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108309,40 +107509,77 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96448] = 15, - ACTIONS(327), 1, + [95898] = 9, + ACTIONS(2755), 1, + anon_sym_EQ, + ACTIONS(2757), 1, + anon_sym_not, + ACTIONS(2760), 1, + anon_sym_is, + STATE(1535), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2763), 2, + anon_sym_LT, + anon_sym_GT, + STATE(934), 2, + sym__not_in, + sym__is_not, + ACTIONS(2752), 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(2750), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [95944] = 15, + ACTIONS(691), 1, sym_string_start, - ACTIONS(2558), 1, + ACTIONS(2680), 1, anon_sym_LPAREN, - ACTIONS(2560), 1, + ACTIONS(2682), 1, anon_sym_STAR, - ACTIONS(2566), 1, + ACTIONS(2684), 1, anon_sym_STAR_STAR, - ACTIONS(2568), 1, + ACTIONS(2686), 1, anon_sym_LBRACK, - ACTIONS(2570), 1, + ACTIONS(2688), 1, anon_sym_DASH, - ACTIONS(2574), 1, + ACTIONS(2692), 1, anon_sym_LBRACE, - ACTIONS(2576), 1, + ACTIONS(2694), 1, sym_integer, - ACTIONS(2578), 1, + ACTIONS(2696), 1, sym_float, - ACTIONS(2714), 1, + ACTIONS(2746), 1, sym_identifier, - STATE(1818), 1, + STATE(1867), 1, sym_string, - STATE(1908), 1, + STATE(2086), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2764), 4, + ACTIONS(2766), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1893), 9, + STATE(2091), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108352,30 +107589,30 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96506] = 15, - ACTIONS(704), 1, + [96002] = 15, + ACTIONS(713), 1, sym_string_start, - ACTIONS(2696), 1, + ACTIONS(2568), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2572), 1, anon_sym_STAR, - ACTIONS(2700), 1, + ACTIONS(2574), 1, anon_sym_STAR_STAR, - ACTIONS(2702), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2704), 1, + ACTIONS(2578), 1, anon_sym_DASH, - ACTIONS(2708), 1, + ACTIONS(2582), 1, anon_sym_LBRACE, - ACTIONS(2710), 1, + ACTIONS(2584), 1, sym_integer, - ACTIONS(2712), 1, + ACTIONS(2586), 1, sym_float, - ACTIONS(2766), 1, + ACTIONS(2742), 1, sym_identifier, - STATE(1847), 1, + STATE(1858), 1, sym_string, - STATE(2067), 1, + STATE(2039), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, @@ -108385,7 +107622,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2073), 9, + STATE(2080), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108395,40 +107632,40 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96564] = 15, - ACTIONS(704), 1, + [96060] = 15, + ACTIONS(781), 1, sym_string_start, - ACTIONS(2696), 1, + ACTIONS(2592), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2594), 1, anon_sym_STAR, - ACTIONS(2700), 1, + ACTIONS(2596), 1, anon_sym_STAR_STAR, - ACTIONS(2702), 1, + ACTIONS(2598), 1, anon_sym_LBRACK, - ACTIONS(2704), 1, + ACTIONS(2602), 1, anon_sym_DASH, - ACTIONS(2708), 1, + ACTIONS(2606), 1, anon_sym_LBRACE, - ACTIONS(2710), 1, + ACTIONS(2608), 1, sym_integer, - ACTIONS(2712), 1, + ACTIONS(2610), 1, sym_float, - ACTIONS(2766), 1, + ACTIONS(2770), 1, sym_identifier, - STATE(1847), 1, + STATE(1823), 1, sym_string, - STATE(2067), 1, + STATE(2016), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2770), 4, + ACTIONS(2772), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2074), 9, + STATE(2030), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108438,69 +107675,32 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96622] = 9, - ACTIONS(2777), 1, - anon_sym_EQ, - ACTIONS(2779), 1, - anon_sym_not, - ACTIONS(2782), 1, - anon_sym_is, - STATE(1554), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2785), 2, - anon_sym_LT, - anon_sym_GT, - STATE(901), 2, - sym__not_in, - sym__is_not, - ACTIONS(2774), 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(2772), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [96668] = 9, - ACTIONS(2102), 1, + [96118] = 9, + ACTIONS(2086), 1, anon_sym_not, - ACTIONS(2108), 1, + ACTIONS(2092), 1, anon_sym_is, - ACTIONS(2790), 1, + ACTIONS(2776), 1, anon_sym_EQ, - STATE(1554), 1, + STATE(1535), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2110), 2, + ACTIONS(2094), 2, anon_sym_LT, anon_sym_GT, - STATE(901), 2, + STATE(934), 2, sym__not_in, sym__is_not, - ACTIONS(2088), 6, + ACTIONS(2072), 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(2788), 11, + ACTIONS(2774), 11, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -108512,40 +107712,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [96714] = 15, - ACTIONS(327), 1, + [96164] = 15, + ACTIONS(319), 1, sym_string_start, - ACTIONS(2558), 1, + ACTIONS(2542), 1, anon_sym_LPAREN, - ACTIONS(2560), 1, + ACTIONS(2544), 1, anon_sym_STAR, - ACTIONS(2566), 1, + ACTIONS(2550), 1, anon_sym_STAR_STAR, - ACTIONS(2568), 1, + ACTIONS(2552), 1, anon_sym_LBRACK, - ACTIONS(2570), 1, + ACTIONS(2554), 1, anon_sym_DASH, - ACTIONS(2574), 1, + ACTIONS(2558), 1, anon_sym_LBRACE, - ACTIONS(2576), 1, + ACTIONS(2560), 1, sym_integer, - ACTIONS(2578), 1, + ACTIONS(2562), 1, sym_float, - ACTIONS(2714), 1, + ACTIONS(2698), 1, sym_identifier, - STATE(1818), 1, + STATE(1761), 1, sym_string, - STATE(1908), 1, + STATE(1903), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2792), 4, + ACTIONS(2778), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1942), 9, + STATE(1892), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108555,40 +107755,40 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96772] = 15, - ACTIONS(729), 1, + [96222] = 15, + ACTIONS(781), 1, sym_string_start, - ACTIONS(2608), 1, + ACTIONS(2592), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2594), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2596), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2598), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2602), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2606), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2608), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2610), 1, sym_float, - ACTIONS(2794), 1, + ACTIONS(2770), 1, sym_identifier, - STATE(1842), 1, + STATE(1823), 1, sym_string, - STATE(2097), 1, + STATE(2016), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2796), 4, + ACTIONS(2780), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2022), 9, + STATE(2031), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108598,40 +107798,40 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96830] = 15, - ACTIONS(729), 1, + [96280] = 15, + ACTIONS(319), 1, sym_string_start, - ACTIONS(2608), 1, + ACTIONS(2542), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2544), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2550), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2552), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2554), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2558), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2560), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2562), 1, sym_float, - ACTIONS(2794), 1, + ACTIONS(2698), 1, sym_identifier, - STATE(1842), 1, + STATE(1761), 1, sym_string, - STATE(2097), 1, + STATE(1903), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2798), 4, + ACTIONS(2782), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2004), 9, + STATE(1936), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108641,32 +107841,67 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96888] = 9, - ACTIONS(2102), 1, + [96338] = 9, + ACTIONS(2755), 1, + anon_sym_EQ, + ACTIONS(2757), 1, anon_sym_not, - ACTIONS(2356), 1, + ACTIONS(2787), 1, anon_sym_is, - ACTIONS(2790), 1, + STATE(1543), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2790), 2, + anon_sym_LT, + anon_sym_GT, + STATE(871), 2, + sym__not_in, + sym__is_not, + ACTIONS(2784), 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(2750), 9, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [96382] = 9, + ACTIONS(2755), 1, anon_sym_EQ, - STATE(1562), 1, + ACTIONS(2757), 1, + anon_sym_not, + ACTIONS(2796), 1, + anon_sym_is, + STATE(1544), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2358), 2, + ACTIONS(2799), 2, anon_sym_LT, anon_sym_GT, - STATE(898), 2, + STATE(894), 2, sym__not_in, sym__is_not, - ACTIONS(2340), 6, + ACTIONS(2793), 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(2788), 9, + ACTIONS(2750), 9, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, @@ -108676,67 +107911,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [96932] = 9, - ACTIONS(2777), 1, - anon_sym_EQ, - ACTIONS(2779), 1, + [96426] = 9, + ACTIONS(2086), 1, anon_sym_not, - ACTIONS(2803), 1, + ACTIONS(2347), 1, anon_sym_is, - STATE(1560), 1, + ACTIONS(2776), 1, + anon_sym_EQ, + STATE(1544), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2806), 2, + ACTIONS(2349), 2, anon_sym_LT, anon_sym_GT, - STATE(928), 2, + STATE(894), 2, sym__not_in, sym__is_not, - ACTIONS(2800), 6, + ACTIONS(2331), 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(2772), 9, + ACTIONS(2774), 9, anon_sym_DOT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_PIPE, anon_sym_and, anon_sym_or, - [96976] = 9, - ACTIONS(2102), 1, + [96470] = 9, + ACTIONS(2086), 1, anon_sym_not, - ACTIONS(2391), 1, + ACTIONS(2375), 1, anon_sym_is, - ACTIONS(2790), 1, + ACTIONS(2776), 1, anon_sym_EQ, - STATE(1560), 1, + STATE(1543), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2393), 2, + ACTIONS(2377), 2, anon_sym_LT, anon_sym_GT, - STATE(928), 2, + STATE(871), 2, sym__not_in, sym__is_not, - ACTIONS(2375), 6, + ACTIONS(2359), 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(2788), 9, + ACTIONS(2774), 9, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -108746,100 +107981,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [97020] = 9, - ACTIONS(2777), 1, - anon_sym_EQ, - ACTIONS(2779), 1, + [96514] = 9, + ACTIONS(2086), 1, anon_sym_not, - ACTIONS(2812), 1, + ACTIONS(2248), 1, anon_sym_is, - STATE(1562), 1, + ACTIONS(2776), 1, + anon_sym_as, + STATE(1552), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2815), 2, + ACTIONS(2250), 2, anon_sym_LT, anon_sym_GT, - STATE(898), 2, + STATE(920), 2, sym__not_in, sym__is_not, - ACTIONS(2809), 6, + ACTIONS(2232), 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(2772), 9, - anon_sym_DOT, - anon_sym_RPAREN, + ACTIONS(2774), 8, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_PIPE, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [97064] = 8, - ACTIONS(2779), 1, + [96557] = 9, + ACTIONS(2755), 1, + anon_sym_EQ, + ACTIONS(2757), 1, anon_sym_not, - ACTIONS(2821), 1, + ACTIONS(2805), 1, anon_sym_is, - STATE(1563), 1, + STATE(1548), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2824), 2, + ACTIONS(2808), 2, anon_sym_LT, anon_sym_GT, - STATE(941), 2, + STATE(945), 2, sym__not_in, sym__is_not, - ACTIONS(2818), 6, + ACTIONS(2802), 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(2772), 9, - anon_sym_DOT, + ACTIONS(2750), 8, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [97105] = 9, - ACTIONS(2777), 1, - anon_sym_EQ, - ACTIONS(2779), 1, + sym_type_conversion, + [96600] = 9, + ACTIONS(2086), 1, anon_sym_not, - ACTIONS(2830), 1, + ACTIONS(2214), 1, anon_sym_is, - STATE(1564), 1, + ACTIONS(2776), 1, + anon_sym_EQ, + STATE(1548), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2833), 2, + ACTIONS(2216), 2, anon_sym_LT, anon_sym_GT, - STATE(940), 2, + STATE(945), 2, sym__not_in, sym__is_not, - ACTIONS(2827), 6, + ACTIONS(2198), 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(2772), 8, + ACTIONS(2774), 8, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -108848,64 +108083,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, sym_type_conversion, - [97148] = 9, - ACTIONS(2102), 1, + [96643] = 8, + ACTIONS(2086), 1, anon_sym_not, - ACTIONS(2212), 1, + ACTIONS(2410), 1, anon_sym_is, - ACTIONS(2790), 1, - anon_sym_as, - STATE(1568), 1, + STATE(1551), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2214), 2, + ACTIONS(2412), 2, anon_sym_LT, anon_sym_GT, - STATE(873), 2, + STATE(885), 2, sym__not_in, sym__is_not, - ACTIONS(2196), 6, + ACTIONS(2394), 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(2788), 8, + ACTIONS(2774), 9, + anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_and, anon_sym_or, - [97191] = 8, - ACTIONS(2102), 1, + [96684] = 8, + ACTIONS(2757), 1, anon_sym_not, - ACTIONS(2426), 1, + ACTIONS(2814), 1, anon_sym_is, - STATE(1563), 1, + STATE(1551), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2428), 2, + ACTIONS(2817), 2, anon_sym_LT, anon_sym_GT, - STATE(941), 2, + STATE(885), 2, sym__not_in, sym__is_not, - ACTIONS(2410), 6, + ACTIONS(2811), 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(2788), 9, + ACTIONS(2750), 9, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -108915,115 +108149,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [97232] = 9, - ACTIONS(2102), 1, + [96725] = 9, + ACTIONS(2755), 1, + anon_sym_as, + ACTIONS(2757), 1, anon_sym_not, - ACTIONS(2184), 1, + ACTIONS(2823), 1, anon_sym_is, - ACTIONS(2790), 1, - anon_sym_EQ, - STATE(1564), 1, + STATE(1552), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2186), 2, + ACTIONS(2826), 2, anon_sym_LT, anon_sym_GT, - STATE(940), 2, + STATE(920), 2, sym__not_in, sym__is_not, - ACTIONS(2168), 6, + ACTIONS(2820), 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(2788), 8, + ACTIONS(2750), 8, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, anon_sym_and, anon_sym_or, + [96768] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(271), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(311), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, sym_type_conversion, - [97275] = 9, - ACTIONS(2777), 1, + ACTIONS(269), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [96800] = 9, + ACTIONS(2755), 1, anon_sym_as, - ACTIONS(2779), 1, + ACTIONS(2757), 1, anon_sym_not, - ACTIONS(2839), 1, + ACTIONS(2832), 1, anon_sym_is, - STATE(1568), 1, + STATE(1554), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2842), 2, + ACTIONS(2835), 2, anon_sym_LT, anon_sym_GT, - STATE(873), 2, + STATE(865), 2, sym__not_in, sym__is_not, - ACTIONS(2836), 6, + ACTIONS(2829), 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(2772), 8, + ACTIONS(2750), 7, anon_sym_COMMA, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_and, anon_sym_or, - [97318] = 3, + [96842] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2847), 10, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(2845), 11, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_type, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [97348] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(1613), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(319), 5, + ACTIONS(1547), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(277), 14, + ACTIONS(1608), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109038,32 +108272,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [97380] = 9, - ACTIONS(2102), 1, + [96874] = 9, + ACTIONS(2086), 1, anon_sym_not, - ACTIONS(2292), 1, + ACTIONS(2276), 1, anon_sym_is, - ACTIONS(2790), 1, + ACTIONS(2776), 1, anon_sym_as, - STATE(1575), 1, + STATE(1560), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2294), 2, + ACTIONS(2278), 2, anon_sym_LT, anon_sym_GT, - STATE(889), 2, + STATE(905), 2, sym__not_in, sym__is_not, - ACTIONS(2276), 6, + ACTIONS(2260), 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(2788), 7, + ACTIONS(2774), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -109071,32 +108305,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_and, anon_sym_or, - [97422] = 9, - ACTIONS(2102), 1, + [96916] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2840), 10, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(2838), 11, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [96946] = 9, + ACTIONS(2086), 1, anon_sym_not, - ACTIONS(2324), 1, + ACTIONS(2319), 1, anon_sym_is, - ACTIONS(2790), 1, + ACTIONS(2776), 1, anon_sym_as, - STATE(1579), 1, + STATE(1554), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2326), 2, + ACTIONS(2321), 2, anon_sym_LT, anon_sym_GT, - STATE(869), 2, + STATE(865), 2, sym__not_in, sym__is_not, - ACTIONS(2308), 6, + ACTIONS(2303), 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(2788), 7, + ACTIONS(2774), 7, anon_sym_COMMA, anon_sym_if, anon_sym_async, @@ -109104,11 +108365,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_and, anon_sym_or, - [97464] = 3, + [96988] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2851), 10, + ACTIONS(2844), 10, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, @@ -109119,7 +108380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2849), 11, + ACTIONS(2842), 11, anon_sym_print, anon_sym_match, anon_sym_async, @@ -109131,60 +108392,32 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [97494] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1642), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1646), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(1637), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [97526] = 9, - ACTIONS(2777), 1, + [97018] = 9, + ACTIONS(2755), 1, anon_sym_as, - ACTIONS(2779), 1, + ACTIONS(2757), 1, anon_sym_not, - ACTIONS(2856), 1, + ACTIONS(2849), 1, anon_sym_is, - STATE(1575), 1, + STATE(1560), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2859), 2, + ACTIONS(2852), 2, anon_sym_LT, anon_sym_GT, - STATE(889), 2, + STATE(905), 2, sym__not_in, sym__is_not, - ACTIONS(2853), 6, + ACTIONS(2846), 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(2772), 7, + ACTIONS(2750), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -109192,20 +108425,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_and, anon_sym_or, - [97568] = 4, + [97060] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 2, + ACTIONS(271), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1563), 5, + ACTIONS(311), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(1547), 14, + ACTIONS(269), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109220,20 +108453,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [97600] = 4, + [97092] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(1536), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(319), 5, + ACTIONS(1547), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(277), 14, + ACTIONS(1531), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109248,20 +108481,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [97632] = 4, + [97124] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1614), 2, + ACTIONS(1636), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1563), 5, + ACTIONS(1640), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(1609), 14, + ACTIONS(1631), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109276,79 +108509,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [97664] = 9, - ACTIONS(2777), 1, - anon_sym_as, - ACTIONS(2779), 1, - anon_sym_not, - ACTIONS(2865), 1, - anon_sym_is, - STATE(1579), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2868), 2, - anon_sym_LT, - anon_sym_GT, - STATE(869), 2, - sym__not_in, - sym__is_not, - ACTIONS(2862), 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(2772), 7, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_and, - anon_sym_or, - [97706] = 4, + [97156] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1628), 2, + ACTIONS(1594), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1630), 5, + ACTIONS(1596), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(1623), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [97738] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(279), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(663), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(277), 14, + ACTIONS(1589), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109363,18 +108537,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [97768] = 4, + [97188] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(1536), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(663), 3, + ACTIONS(2855), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(277), 14, + ACTIONS(1531), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109389,18 +108563,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [97798] = 4, + [97218] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 2, + ACTIONS(271), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1648), 3, + ACTIONS(1407), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(1547), 14, + ACTIONS(269), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109415,15 +108589,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [97828] = 4, - ACTIONS(2871), 1, + [97248] = 4, + ACTIONS(2857), 1, anon_sym_COMMA, - STATE(1587), 1, + STATE(1570), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(959), 17, + ACTIONS(957), 17, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -109441,18 +108615,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [97858] = 4, + [97278] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 2, + ACTIONS(1536), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2873), 3, + ACTIONS(1664), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(1547), 14, + ACTIONS(1531), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109467,18 +108641,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [97888] = 4, + [97308] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(271), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1415), 3, + ACTIONS(1407), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(277), 14, + ACTIONS(269), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109493,15 +108667,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [97918] = 4, - ACTIONS(2877), 1, + [97338] = 4, + ACTIONS(2861), 1, anon_sym_COMMA, - STATE(1587), 1, + STATE(1570), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2875), 17, + ACTIONS(2859), 17, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -109519,18 +108693,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [97948] = 4, + [97368] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(271), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1415), 3, + ACTIONS(647), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(277), 14, + ACTIONS(269), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109545,51 +108719,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [97978] = 13, - ACTIONS(2160), 1, - anon_sym_DOT, - ACTIONS(2172), 1, - anon_sym_LBRACK, - ACTIONS(2369), 1, - anon_sym_LPAREN, - ACTIONS(2377), 1, - anon_sym_STAR_STAR, - ACTIONS(2385), 1, - anon_sym_PIPE, - ACTIONS(2387), 1, - anon_sym_AMP, - ACTIONS(2389), 1, - anon_sym_CARET, + [97398] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2371), 2, + ACTIONS(271), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2373), 2, + ACTIONS(647), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(269), 14, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2383), 2, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - STATE(1403), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2381), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [98025] = 4, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [97428] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1563), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1614), 2, + ACTIONS(271), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1609), 14, + ACTIONS(647), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(269), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109604,45 +108770,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98054] = 13, - ACTIONS(2328), 1, + [97457] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(271), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(311), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(269), 14, anon_sym_DOT, - ACTIONS(2330), 1, - anon_sym_LBRACK, - ACTIONS(2369), 1, anon_sym_LPAREN, - ACTIONS(2377), 1, + anon_sym_GT_GT, anon_sym_STAR_STAR, - ACTIONS(2385), 1, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(2387), 1, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - ACTIONS(2389), 1, anon_sym_CARET, + anon_sym_LT_LT, + [97486] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2371), 2, + ACTIONS(271), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2373), 2, + ACTIONS(311), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(269), 14, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2383), 2, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - STATE(1403), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2381), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [98101] = 2, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [97515] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2864), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + 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, + [97540] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2866), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + 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, + [97565] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1563), 18, + ACTIONS(2859), 18, sym__newline, anon_sym_SEMI, anon_sym_COMMA, @@ -109661,17 +108889,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [98126] = 4, + [97590] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1628), 2, + ACTIONS(1547), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1613), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1630), 2, + ACTIONS(1608), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [97619] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1536), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1547), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1531), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [97648] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(271), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(311), 2, anon_sym_COMMA, anon_sym_in, - ACTIONS(1623), 14, + ACTIONS(269), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109686,17 +108964,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98155] = 4, + [97677] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(1594), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(319), 2, + ACTIONS(1596), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(277), 14, + ACTIONS(1589), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109711,17 +108989,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98184] = 4, + [97706] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(271), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(319), 2, + ACTIONS(311), 2, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(277), 14, + anon_sym_in, + ACTIONS(269), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [97735] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1636), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1640), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1631), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [97764] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1536), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1664), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1531), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109736,17 +109064,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98213] = 4, + [97793] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1563), 2, + ACTIONS(1547), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1614), 2, + ACTIONS(1613), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1609), 14, + ACTIONS(1608), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109761,17 +109089,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98242] = 4, + [97822] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 2, + ACTIONS(1536), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1563), 2, + ACTIONS(1547), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1547), 14, + ACTIONS(1531), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109786,17 +109114,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98271] = 4, + [97851] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 2, + ACTIONS(1594), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1563), 2, - anon_sym_RPAREN, + ACTIONS(1596), 2, anon_sym_COMMA, - ACTIONS(1547), 14, + anon_sym_RBRACK, + ACTIONS(1589), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109811,17 +109139,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98300] = 4, + [97880] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1628), 2, + ACTIONS(1636), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1630), 2, - anon_sym_RPAREN, + ACTIONS(1640), 2, anon_sym_COMMA, - ACTIONS(1623), 14, + anon_sym_RBRACK, + ACTIONS(1631), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109836,17 +109164,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98329] = 4, + [97909] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1642), 2, + ACTIONS(271), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1646), 2, - anon_sym_RPAREN, + ACTIONS(1407), 2, anon_sym_COMMA, - ACTIONS(1637), 14, + anon_sym_COLON, + ACTIONS(269), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109861,17 +109189,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98358] = 4, + [97938] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(271), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(319), 2, - anon_sym_RPAREN, + ACTIONS(1407), 2, anon_sym_COMMA, - ACTIONS(277), 14, + anon_sym_COLON, + ACTIONS(269), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109886,17 +109214,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98387] = 4, + [97967] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(1536), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(319), 2, - anon_sym_RPAREN, + ACTIONS(2855), 2, anon_sym_COMMA, - ACTIONS(277), 14, + anon_sym_COLON, + ACTIONS(1531), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109911,17 +109239,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98416] = 4, + [97996] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1563), 2, + ACTIONS(1547), 2, anon_sym_COMMA, anon_sym_in, - ACTIONS(1614), 2, + ACTIONS(1613), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1609), 14, + ACTIONS(1608), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109936,40 +109264,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98445] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2880), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - 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, - [98470] = 4, + [98025] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(1536), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1415), 2, + ACTIONS(1547), 2, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(277), 14, + anon_sym_in, + ACTIONS(1531), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109984,17 +109289,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98499] = 4, + [98054] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1628), 2, + ACTIONS(1594), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1630), 2, + ACTIONS(1596), 2, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1623), 14, + anon_sym_in, + ACTIONS(1589), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110009,17 +109314,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98528] = 4, + [98083] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 2, + ACTIONS(1636), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1648), 2, + ACTIONS(1640), 2, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1547), 14, + anon_sym_in, + ACTIONS(1631), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110034,17 +109339,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98557] = 4, + [98112] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(271), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(663), 2, + ACTIONS(647), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(277), 14, + ACTIONS(269), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110059,17 +109364,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98586] = 4, + [98141] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(271), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(663), 2, + ACTIONS(311), 2, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(277), 14, + anon_sym_RBRACK, + ACTIONS(269), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110084,40 +109389,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98615] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2875), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - 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, - [98640] = 4, + [98170] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 2, + ACTIONS(271), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2873), 2, + ACTIONS(311), 2, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1547), 14, + anon_sym_RBRACK, + ACTIONS(269), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110132,433 +109414,351 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98669] = 13, - ACTIONS(2367), 1, + [98199] = 13, + ACTIONS(2291), 1, anon_sym_DOT, - ACTIONS(2369), 1, + ACTIONS(2293), 1, + anon_sym_LBRACK, + ACTIONS(2353), 1, anon_sym_LPAREN, - ACTIONS(2377), 1, + ACTIONS(2361), 1, anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_LBRACK, - ACTIONS(2385), 1, + ACTIONS(2369), 1, anon_sym_PIPE, - ACTIONS(2387), 1, + ACTIONS(2371), 1, anon_sym_AMP, - ACTIONS(2389), 1, + ACTIONS(2373), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2371), 2, + ACTIONS(2355), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2373), 2, + ACTIONS(2357), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2383), 2, + ACTIONS(2367), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1403), 2, + STATE(1352), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2381), 3, + ACTIONS(2365), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [98716] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1552), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1563), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(1547), 14, + [98246] = 13, + ACTIONS(2351), 1, anon_sym_DOT, + ACTIONS(2353), 1, anon_sym_LPAREN, - anon_sym_GT_GT, + ACTIONS(2361), 1, anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [98745] = 13, - ACTIONS(2080), 1, - anon_sym_DOT, - ACTIONS(2094), 1, + ACTIONS(2363), 1, anon_sym_LBRACK, ACTIONS(2369), 1, - anon_sym_LPAREN, - ACTIONS(2377), 1, - anon_sym_STAR_STAR, - ACTIONS(2385), 1, anon_sym_PIPE, - ACTIONS(2387), 1, + ACTIONS(2371), 1, anon_sym_AMP, - ACTIONS(2389), 1, + ACTIONS(2373), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2371), 2, + ACTIONS(2355), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2373), 2, + ACTIONS(2357), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2383), 2, + ACTIONS(2367), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1403), 2, + STATE(1352), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2381), 3, + ACTIONS(2365), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [98792] = 13, - ACTIONS(2268), 1, + [98293] = 13, + ACTIONS(2064), 1, anon_sym_DOT, - ACTIONS(2280), 1, + ACTIONS(2078), 1, anon_sym_LBRACK, - ACTIONS(2369), 1, + ACTIONS(2353), 1, anon_sym_LPAREN, - ACTIONS(2377), 1, + ACTIONS(2361), 1, anon_sym_STAR_STAR, - ACTIONS(2385), 1, + ACTIONS(2369), 1, anon_sym_PIPE, - ACTIONS(2387), 1, + ACTIONS(2371), 1, anon_sym_AMP, - ACTIONS(2389), 1, + ACTIONS(2373), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2371), 2, + ACTIONS(2355), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2373), 2, + ACTIONS(2357), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2383), 2, + ACTIONS(2367), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1403), 2, + STATE(1352), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2381), 3, + ACTIONS(2365), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [98839] = 13, - ACTIONS(2369), 1, + [98340] = 13, + ACTIONS(2252), 1, + anon_sym_DOT, + ACTIONS(2264), 1, + anon_sym_LBRACK, + ACTIONS(2353), 1, anon_sym_LPAREN, - ACTIONS(2377), 1, + ACTIONS(2361), 1, anon_sym_STAR_STAR, - ACTIONS(2385), 1, + ACTIONS(2369), 1, anon_sym_PIPE, - ACTIONS(2387), 1, + ACTIONS(2371), 1, anon_sym_AMP, - ACTIONS(2389), 1, + ACTIONS(2373), 1, anon_sym_CARET, - ACTIONS(2882), 1, - anon_sym_DOT, - ACTIONS(2884), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2371), 2, + ACTIONS(2355), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2373), 2, + ACTIONS(2357), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2383), 2, + ACTIONS(2367), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1403), 2, + STATE(1352), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2381), 3, + ACTIONS(2365), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [98886] = 13, - ACTIONS(2332), 1, + [98387] = 13, + ACTIONS(2224), 1, anon_sym_DOT, - ACTIONS(2344), 1, + ACTIONS(2236), 1, anon_sym_LBRACK, - ACTIONS(2369), 1, + ACTIONS(2353), 1, anon_sym_LPAREN, - ACTIONS(2377), 1, + ACTIONS(2361), 1, anon_sym_STAR_STAR, - ACTIONS(2385), 1, + ACTIONS(2369), 1, anon_sym_PIPE, - ACTIONS(2387), 1, + ACTIONS(2371), 1, anon_sym_AMP, - ACTIONS(2389), 1, + ACTIONS(2373), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2371), 2, + ACTIONS(2355), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2373), 2, + ACTIONS(2357), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2383), 2, + ACTIONS(2367), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1403), 2, + STATE(1352), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2381), 3, + ACTIONS(2365), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [98933] = 13, - ACTIONS(2369), 1, + [98434] = 13, + ACTIONS(2353), 1, anon_sym_LPAREN, - ACTIONS(2377), 1, + ACTIONS(2361), 1, anon_sym_STAR_STAR, - ACTIONS(2385), 1, + ACTIONS(2369), 1, anon_sym_PIPE, - ACTIONS(2387), 1, + ACTIONS(2371), 1, anon_sym_AMP, - ACTIONS(2389), 1, + ACTIONS(2373), 1, anon_sym_CARET, - ACTIONS(2402), 1, + ACTIONS(2868), 1, anon_sym_DOT, - ACTIONS(2414), 1, + ACTIONS(2870), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2371), 2, + ACTIONS(2355), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2373), 2, + ACTIONS(2357), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2383), 2, + ACTIONS(2367), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1403), 2, + STATE(1352), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2381), 3, + ACTIONS(2365), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [98980] = 13, - ACTIONS(2300), 1, + [98481] = 13, + ACTIONS(2190), 1, anon_sym_DOT, - ACTIONS(2312), 1, + ACTIONS(2202), 1, anon_sym_LBRACK, - ACTIONS(2369), 1, + ACTIONS(2353), 1, anon_sym_LPAREN, - ACTIONS(2377), 1, + ACTIONS(2361), 1, anon_sym_STAR_STAR, - ACTIONS(2385), 1, + ACTIONS(2369), 1, anon_sym_PIPE, - ACTIONS(2387), 1, + ACTIONS(2371), 1, anon_sym_AMP, - ACTIONS(2389), 1, + ACTIONS(2373), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2371), 2, + ACTIONS(2355), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2373), 2, + ACTIONS(2357), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2383), 2, + ACTIONS(2367), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1403), 2, + STATE(1352), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2381), 3, + ACTIONS(2365), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [99027] = 13, - ACTIONS(2188), 1, + [98528] = 13, + ACTIONS(2323), 1, anon_sym_DOT, - ACTIONS(2200), 1, + ACTIONS(2335), 1, anon_sym_LBRACK, - ACTIONS(2369), 1, + ACTIONS(2353), 1, anon_sym_LPAREN, - ACTIONS(2377), 1, + ACTIONS(2361), 1, anon_sym_STAR_STAR, - ACTIONS(2385), 1, + ACTIONS(2369), 1, anon_sym_PIPE, - ACTIONS(2387), 1, + ACTIONS(2371), 1, anon_sym_AMP, - ACTIONS(2389), 1, + ACTIONS(2373), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2371), 2, + ACTIONS(2355), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2373), 2, + ACTIONS(2357), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2383), 2, + ACTIONS(2367), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1403), 2, + STATE(1352), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2381), 3, + ACTIONS(2365), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [99074] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1642), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1646), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1637), 14, - anon_sym_DOT, + [98575] = 13, + ACTIONS(2353), 1, anon_sym_LPAREN, - anon_sym_GT_GT, + ACTIONS(2361), 1, anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2369), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(2371), 1, anon_sym_AMP, + ACTIONS(2373), 1, anon_sym_CARET, - anon_sym_LT_LT, - [99103] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1642), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1646), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(1637), 14, + ACTIONS(2386), 1, anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, + ACTIONS(2398), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [99132] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(2355), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(319), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(277), 14, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2357), 2, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(2367), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, + STATE(1352), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2365), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [99161] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(279), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(319), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(277), 14, + [98622] = 13, + ACTIONS(2295), 1, anon_sym_DOT, + ACTIONS(2307), 1, + anon_sym_LBRACK, + ACTIONS(2353), 1, anon_sym_LPAREN, - anon_sym_GT_GT, + ACTIONS(2361), 1, anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2369), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(2371), 1, anon_sym_AMP, + ACTIONS(2373), 1, anon_sym_CARET, - anon_sym_LT_LT, - [99190] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(2355), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1415), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(277), 14, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2357), 2, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(2367), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, + STATE(1352), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2365), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [99219] = 2, + [98669] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2886), 18, + ACTIONS(1547), 18, sym__newline, anon_sym_SEMI, anon_sym_COMMA, @@ -110577,11 +109777,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99244] = 2, + [98694] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2880), 17, + ACTIONS(2859), 17, anon_sym_COMMA, anon_sym_COLON, anon_sym_in, @@ -110599,84 +109799,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99268] = 13, - ACTIONS(2888), 1, + [98718] = 13, + ACTIONS(2872), 1, sym_identifier, - ACTIONS(2890), 1, + ACTIONS(2874), 1, anon_sym_LPAREN, - ACTIONS(2892), 1, + ACTIONS(2876), 1, anon_sym_STAR, - ACTIONS(2894), 1, + ACTIONS(2878), 1, anon_sym_COLON, - ACTIONS(2896), 1, + ACTIONS(2880), 1, anon_sym_STAR_STAR, - ACTIONS(2898), 1, + ACTIONS(2882), 1, anon_sym_SLASH, - STATE(2457), 1, + STATE(2333), 1, sym_parameter, - STATE(2458), 1, + STATE(2336), 1, sym_tuple_pattern, - STATE(2639), 1, - sym_lambda_parameters, - STATE(2718), 1, + STATE(2624), 1, sym__parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2580), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2577), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [99314] = 13, - ACTIONS(2888), 1, - sym_identifier, - ACTIONS(2890), 1, - anon_sym_LPAREN, - ACTIONS(2892), 1, - anon_sym_STAR, - ACTIONS(2896), 1, - anon_sym_STAR_STAR, - ACTIONS(2898), 1, - anon_sym_SLASH, - ACTIONS(2900), 1, - anon_sym_COLON, - STATE(2457), 1, - sym_parameter, - STATE(2458), 1, - sym_tuple_pattern, - STATE(2711), 1, + STATE(2728), 1, sym_lambda_parameters, - STATE(2718), 1, - sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2580), 2, + STATE(2531), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2577), 5, + STATE(2557), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [99360] = 5, - ACTIONS(2904), 1, + [98764] = 5, + ACTIONS(2886), 1, anon_sym_COLON, - ACTIONS(2906), 1, + ACTIONS(2888), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2902), 2, + ACTIONS(2884), 2, sym__newline, anon_sym_SEMI, - ACTIONS(2908), 13, + ACTIONS(2890), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110690,52 +109857,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99390] = 13, - ACTIONS(2888), 1, - sym_identifier, - ACTIONS(2890), 1, - anon_sym_LPAREN, + [98794] = 4, ACTIONS(2892), 1, - anon_sym_STAR, - ACTIONS(2896), 1, - anon_sym_STAR_STAR, - ACTIONS(2898), 1, - anon_sym_SLASH, - ACTIONS(2910), 1, - anon_sym_COLON, - STATE(2457), 1, - sym_parameter, - STATE(2458), 1, - sym_tuple_pattern, - STATE(2671), 1, - sym_lambda_parameters, - STATE(2718), 1, - sym__parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2580), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2577), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [99436] = 6, - ACTIONS(2904), 1, - anon_sym_COLON, - ACTIONS(2906), 1, - anon_sym_EQ, - ACTIONS(2912), 1, anon_sym_COMMA, - STATE(1584), 1, + STATE(1614), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2908), 13, + ACTIONS(2859), 15, + anon_sym_COLON, + anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110749,52 +109881,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99468] = 13, - ACTIONS(2888), 1, + [98822] = 13, + ACTIONS(2872), 1, sym_identifier, - ACTIONS(2890), 1, + ACTIONS(2874), 1, anon_sym_LPAREN, - ACTIONS(2892), 1, + ACTIONS(2876), 1, anon_sym_STAR, - ACTIONS(2896), 1, + ACTIONS(2880), 1, anon_sym_STAR_STAR, - ACTIONS(2898), 1, + ACTIONS(2882), 1, anon_sym_SLASH, - ACTIONS(2914), 1, + ACTIONS(2895), 1, anon_sym_COLON, - STATE(2457), 1, + STATE(2333), 1, sym_parameter, - STATE(2458), 1, + STATE(2336), 1, sym_tuple_pattern, - STATE(2718), 1, + STATE(2624), 1, sym__parameters, - STATE(2724), 1, + STATE(2729), 1, sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2580), 2, + STATE(2531), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2577), 5, + STATE(2557), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [99514] = 6, - ACTIONS(2904), 1, + [98868] = 6, + ACTIONS(2886), 1, anon_sym_COLON, - ACTIONS(2906), 1, + ACTIONS(2888), 1, anon_sym_EQ, - ACTIONS(2916), 1, + ACTIONS(2897), 1, anon_sym_COMMA, - STATE(1644), 1, + STATE(1567), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2908), 13, + ACTIONS(2890), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110808,143 +109940,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99546] = 13, - ACTIONS(2888), 1, + [98900] = 13, + ACTIONS(2872), 1, sym_identifier, - ACTIONS(2890), 1, + ACTIONS(2874), 1, anon_sym_LPAREN, - ACTIONS(2892), 1, + ACTIONS(2876), 1, anon_sym_STAR, - ACTIONS(2896), 1, + ACTIONS(2880), 1, anon_sym_STAR_STAR, - ACTIONS(2898), 1, + ACTIONS(2882), 1, anon_sym_SLASH, - ACTIONS(2918), 1, + ACTIONS(2899), 1, anon_sym_COLON, - STATE(2457), 1, + STATE(2333), 1, sym_parameter, - STATE(2458), 1, + STATE(2336), 1, sym_tuple_pattern, - STATE(2718), 1, + STATE(2624), 1, sym__parameters, - STATE(2750), 1, + STATE(2683), 1, sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2580), 2, + STATE(2531), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2577), 5, + STATE(2557), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [99592] = 13, - ACTIONS(2888), 1, + [98946] = 13, + ACTIONS(2872), 1, sym_identifier, - ACTIONS(2890), 1, + ACTIONS(2874), 1, anon_sym_LPAREN, - ACTIONS(2892), 1, + ACTIONS(2876), 1, anon_sym_STAR, - ACTIONS(2896), 1, + ACTIONS(2880), 1, anon_sym_STAR_STAR, - ACTIONS(2898), 1, + ACTIONS(2882), 1, anon_sym_SLASH, - ACTIONS(2920), 1, + ACTIONS(2901), 1, anon_sym_COLON, - STATE(2457), 1, + STATE(2333), 1, sym_parameter, - STATE(2458), 1, + STATE(2336), 1, sym_tuple_pattern, - STATE(2600), 1, - sym_lambda_parameters, - STATE(2718), 1, + STATE(2624), 1, sym__parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2580), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2577), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [99638] = 13, - ACTIONS(2888), 1, - sym_identifier, - ACTIONS(2890), 1, - anon_sym_LPAREN, - ACTIONS(2892), 1, - anon_sym_STAR, - ACTIONS(2896), 1, - anon_sym_STAR_STAR, - ACTIONS(2898), 1, - anon_sym_SLASH, - ACTIONS(2922), 1, - anon_sym_COLON, - STATE(2457), 1, - sym_parameter, - STATE(2458), 1, - sym_tuple_pattern, - STATE(2677), 1, + STATE(2734), 1, sym_lambda_parameters, - STATE(2718), 1, - sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2580), 2, + STATE(2531), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2577), 5, + STATE(2557), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [99684] = 13, - ACTIONS(2888), 1, + [98992] = 13, + ACTIONS(2872), 1, sym_identifier, - ACTIONS(2890), 1, + ACTIONS(2874), 1, anon_sym_LPAREN, - ACTIONS(2892), 1, + ACTIONS(2876), 1, anon_sym_STAR, - ACTIONS(2896), 1, + ACTIONS(2880), 1, anon_sym_STAR_STAR, - ACTIONS(2898), 1, + ACTIONS(2882), 1, anon_sym_SLASH, - ACTIONS(2924), 1, + ACTIONS(2903), 1, anon_sym_COLON, - STATE(2457), 1, + STATE(2333), 1, sym_parameter, - STATE(2458), 1, + STATE(2336), 1, sym_tuple_pattern, - STATE(2682), 1, - sym_lambda_parameters, - STATE(2718), 1, + STATE(2624), 1, sym__parameters, + STATE(2632), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2580), 2, + STATE(2531), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2577), 5, + STATE(2557), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [99730] = 2, + [99038] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2875), 17, + ACTIONS(2864), 17, anon_sym_COMMA, anon_sym_COLON, anon_sym_in, @@ -110962,14 +110061,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99754] = 2, + [99062] = 4, + ACTIONS(2905), 1, + anon_sym_COMMA, + STATE(1614), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1563), 17, - anon_sym_COMMA, + ACTIONS(957), 15, anon_sym_COLON, - anon_sym_in, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -110984,17 +110085,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99778] = 4, - ACTIONS(2926), 1, + [99090] = 6, + ACTIONS(2886), 1, + anon_sym_COLON, + ACTIONS(2888), 1, + anon_sym_EQ, + ACTIONS(2907), 1, anon_sym_COMMA, - STATE(1641), 1, + STATE(1621), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2875), 15, - anon_sym_COLON, - anon_sym_EQ, + ACTIONS(2890), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111008,11 +110111,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99806] = 2, + [99122] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2886), 17, + ACTIONS(1547), 17, anon_sym_COMMA, anon_sym_COLON, anon_sym_in, @@ -111030,49 +110133,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99830] = 13, - ACTIONS(2888), 1, + [99146] = 13, + ACTIONS(2872), 1, sym_identifier, - ACTIONS(2890), 1, + ACTIONS(2874), 1, anon_sym_LPAREN, - ACTIONS(2892), 1, + ACTIONS(2876), 1, anon_sym_STAR, - ACTIONS(2896), 1, + ACTIONS(2880), 1, anon_sym_STAR_STAR, - ACTIONS(2898), 1, + ACTIONS(2882), 1, anon_sym_SLASH, - ACTIONS(2929), 1, + ACTIONS(2909), 1, anon_sym_COLON, - STATE(2457), 1, + STATE(2333), 1, sym_parameter, - STATE(2458), 1, + STATE(2336), 1, sym_tuple_pattern, - STATE(2609), 1, + STATE(2611), 1, sym_lambda_parameters, - STATE(2718), 1, + STATE(2624), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2580), 2, + STATE(2531), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2577), 5, + STATE(2557), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [99876] = 4, - ACTIONS(2931), 1, - anon_sym_COMMA, - STATE(1641), 1, - aux_sym__patterns_repeat1, + [99192] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(959), 15, + ACTIONS(2866), 17, + anon_sym_COMMA, anon_sym_COLON, + anon_sym_in, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -111087,360 +110188,448 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99904] = 13, - ACTIONS(2888), 1, + [99216] = 13, + ACTIONS(2872), 1, sym_identifier, - ACTIONS(2890), 1, + ACTIONS(2874), 1, anon_sym_LPAREN, - ACTIONS(2892), 1, + ACTIONS(2876), 1, anon_sym_STAR, - ACTIONS(2896), 1, + ACTIONS(2880), 1, anon_sym_STAR_STAR, - ACTIONS(2898), 1, + ACTIONS(2882), 1, anon_sym_SLASH, - ACTIONS(2933), 1, + ACTIONS(2911), 1, anon_sym_COLON, - STATE(2457), 1, + STATE(2333), 1, sym_parameter, - STATE(2458), 1, + STATE(2336), 1, sym_tuple_pattern, - STATE(2717), 1, + STATE(2624), 1, + sym__parameters, + STATE(2661), 1, sym_lambda_parameters, - STATE(2718), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2531), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(2557), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [99262] = 13, + ACTIONS(2872), 1, + sym_identifier, + ACTIONS(2874), 1, + anon_sym_LPAREN, + ACTIONS(2876), 1, + anon_sym_STAR, + ACTIONS(2880), 1, + anon_sym_STAR_STAR, + ACTIONS(2882), 1, + anon_sym_SLASH, + ACTIONS(2913), 1, + anon_sym_COLON, + STATE(2333), 1, + sym_parameter, + STATE(2336), 1, + sym_tuple_pattern, + STATE(2624), 1, sym__parameters, + STATE(2761), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2580), 2, + STATE(2531), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2577), 5, + STATE(2557), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [99950] = 13, - ACTIONS(2888), 1, + [99308] = 13, + ACTIONS(2872), 1, sym_identifier, - ACTIONS(2890), 1, + ACTIONS(2874), 1, anon_sym_LPAREN, - ACTIONS(2892), 1, + ACTIONS(2876), 1, anon_sym_STAR, - ACTIONS(2896), 1, + ACTIONS(2880), 1, anon_sym_STAR_STAR, - ACTIONS(2898), 1, + ACTIONS(2882), 1, + anon_sym_SLASH, + ACTIONS(2915), 1, + anon_sym_COLON, + STATE(2333), 1, + sym_parameter, + STATE(2336), 1, + sym_tuple_pattern, + STATE(2593), 1, + sym_lambda_parameters, + STATE(2624), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2531), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(2557), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [99354] = 13, + ACTIONS(2872), 1, + sym_identifier, + ACTIONS(2874), 1, + anon_sym_LPAREN, + ACTIONS(2876), 1, + anon_sym_STAR, + ACTIONS(2880), 1, + anon_sym_STAR_STAR, + ACTIONS(2882), 1, + anon_sym_SLASH, + ACTIONS(2917), 1, + anon_sym_COLON, + STATE(2333), 1, + sym_parameter, + STATE(2336), 1, + sym_tuple_pattern, + STATE(2624), 1, + sym__parameters, + STATE(2687), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2531), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(2557), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [99400] = 13, + ACTIONS(2872), 1, + sym_identifier, + ACTIONS(2874), 1, + anon_sym_LPAREN, + ACTIONS(2876), 1, + anon_sym_STAR, + ACTIONS(2880), 1, + anon_sym_STAR_STAR, + ACTIONS(2882), 1, anon_sym_SLASH, - ACTIONS(2935), 1, + ACTIONS(2919), 1, anon_sym_COLON, - STATE(2457), 1, + STATE(2333), 1, sym_parameter, - STATE(2458), 1, + STATE(2336), 1, sym_tuple_pattern, - STATE(2655), 1, - sym_lambda_parameters, - STATE(2718), 1, + STATE(2624), 1, sym__parameters, + STATE(2704), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2580), 2, + STATE(2531), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2577), 5, + STATE(2557), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [99996] = 12, - ACTIONS(2937), 1, + [99446] = 12, + ACTIONS(2921), 1, sym_identifier, - ACTIONS(2939), 1, + ACTIONS(2923), 1, anon_sym_LPAREN, - ACTIONS(2941), 1, + ACTIONS(2925), 1, anon_sym_RPAREN, - ACTIONS(2943), 1, + ACTIONS(2927), 1, anon_sym_STAR, - ACTIONS(2945), 1, + ACTIONS(2929), 1, anon_sym_STAR_STAR, - ACTIONS(2947), 1, + ACTIONS(2931), 1, anon_sym_SLASH, - STATE(2482), 1, + STATE(2226), 1, sym_parameter, - STATE(2487), 1, + STATE(2237), 1, sym_tuple_pattern, - STATE(2763), 1, + STATE(2725), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2489), 2, + STATE(2244), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2537), 5, + STATE(2520), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100039] = 4, - ACTIONS(2904), 1, - anon_sym_COLON, - ACTIONS(2906), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2908), 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, - [100065] = 11, - ACTIONS(2888), 1, + [99489] = 11, + ACTIONS(2921), 1, sym_identifier, - ACTIONS(2890), 1, + ACTIONS(2923), 1, anon_sym_LPAREN, - ACTIONS(2892), 1, + ACTIONS(2927), 1, anon_sym_STAR, - ACTIONS(2896), 1, + ACTIONS(2929), 1, anon_sym_STAR_STAR, - ACTIONS(2898), 1, + ACTIONS(2931), 1, anon_sym_SLASH, - ACTIONS(2949), 1, - anon_sym_COLON, - STATE(2458), 1, + ACTIONS(2933), 1, + anon_sym_RPAREN, + STATE(2237), 1, sym_tuple_pattern, - STATE(2549), 1, + STATE(2509), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2580), 2, + STATE(2244), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2577), 5, + STATE(2520), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100105] = 11, - ACTIONS(2888), 1, + [99529] = 11, + ACTIONS(2921), 1, sym_identifier, - ACTIONS(2890), 1, + ACTIONS(2923), 1, anon_sym_LPAREN, - ACTIONS(2892), 1, + ACTIONS(2927), 1, anon_sym_STAR, - ACTIONS(2896), 1, + ACTIONS(2929), 1, anon_sym_STAR_STAR, - ACTIONS(2898), 1, + ACTIONS(2931), 1, anon_sym_SLASH, - ACTIONS(2951), 1, - anon_sym_COLON, - STATE(2458), 1, + ACTIONS(2935), 1, + anon_sym_RPAREN, + STATE(2237), 1, sym_tuple_pattern, - STATE(2549), 1, + STATE(2509), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2580), 2, + STATE(2244), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2577), 5, + STATE(2520), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100145] = 11, - ACTIONS(2937), 1, + [99569] = 11, + ACTIONS(2872), 1, sym_identifier, - ACTIONS(2939), 1, + ACTIONS(2874), 1, anon_sym_LPAREN, - ACTIONS(2943), 1, + ACTIONS(2876), 1, anon_sym_STAR, - ACTIONS(2945), 1, + ACTIONS(2880), 1, anon_sym_STAR_STAR, - ACTIONS(2947), 1, + ACTIONS(2882), 1, anon_sym_SLASH, - ACTIONS(2949), 1, - anon_sym_RPAREN, - STATE(2487), 1, + ACTIONS(2935), 1, + anon_sym_COLON, + STATE(2336), 1, sym_tuple_pattern, - STATE(2593), 1, + STATE(2525), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2489), 2, + STATE(2531), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2537), 5, + STATE(2557), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100185] = 11, - ACTIONS(2937), 1, + [99609] = 11, + ACTIONS(2872), 1, sym_identifier, - ACTIONS(2939), 1, + ACTIONS(2874), 1, anon_sym_LPAREN, - ACTIONS(2943), 1, + ACTIONS(2876), 1, anon_sym_STAR, - ACTIONS(2945), 1, + ACTIONS(2880), 1, anon_sym_STAR_STAR, - ACTIONS(2947), 1, + ACTIONS(2882), 1, anon_sym_SLASH, - ACTIONS(2951), 1, - anon_sym_RPAREN, - STATE(2487), 1, + ACTIONS(2933), 1, + anon_sym_COLON, + STATE(2336), 1, sym_tuple_pattern, - STATE(2593), 1, + STATE(2525), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2489), 2, + STATE(2531), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2537), 5, + STATE(2557), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100225] = 10, + [99649] = 4, + ACTIONS(2886), 1, + anon_sym_COLON, ACTIONS(2888), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2890), 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, + [99675] = 10, + ACTIONS(2872), 1, sym_identifier, - ACTIONS(2890), 1, + ACTIONS(2874), 1, anon_sym_LPAREN, - ACTIONS(2892), 1, + ACTIONS(2876), 1, anon_sym_STAR, - ACTIONS(2896), 1, + ACTIONS(2880), 1, anon_sym_STAR_STAR, - ACTIONS(2898), 1, + ACTIONS(2882), 1, anon_sym_SLASH, - STATE(2458), 1, + STATE(2336), 1, sym_tuple_pattern, - STATE(2549), 1, + STATE(2525), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2580), 2, + STATE(2531), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2577), 5, + STATE(2557), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100262] = 10, - ACTIONS(2937), 1, + [99712] = 10, + ACTIONS(2921), 1, sym_identifier, - ACTIONS(2939), 1, + ACTIONS(2923), 1, anon_sym_LPAREN, - ACTIONS(2943), 1, + ACTIONS(2927), 1, anon_sym_STAR, - ACTIONS(2945), 1, + ACTIONS(2929), 1, anon_sym_STAR_STAR, - ACTIONS(2947), 1, + ACTIONS(2931), 1, anon_sym_SLASH, - STATE(2487), 1, + STATE(2237), 1, sym_tuple_pattern, - STATE(2593), 1, + STATE(2509), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2489), 2, + STATE(2244), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2537), 5, + STATE(2520), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100299] = 13, - ACTIONS(2953), 1, + [99749] = 13, + ACTIONS(2937), 1, anon_sym_COMMA, - ACTIONS(2955), 1, + ACTIONS(2939), 1, anon_sym_as, - ACTIONS(2957), 1, + ACTIONS(2941), 1, anon_sym_if, - ACTIONS(2959), 1, + ACTIONS(2943), 1, anon_sym_COLON, - ACTIONS(2961), 1, + ACTIONS(2945), 1, anon_sym_async, - ACTIONS(2963), 1, + ACTIONS(2947), 1, anon_sym_for, - ACTIONS(2965), 1, + ACTIONS(2949), 1, anon_sym_RBRACE, - ACTIONS(2967), 1, + ACTIONS(2951), 1, anon_sym_and, - ACTIONS(2969), 1, + ACTIONS(2953), 1, anon_sym_or, - STATE(1865), 1, + STATE(1864), 1, sym_for_in_clause, - STATE(2348), 1, + STATE(2312), 1, aux_sym__collection_elements_repeat1, - STATE(2618), 1, + STATE(2612), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [100340] = 13, - ACTIONS(2953), 1, + [99790] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2062), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, anon_sym_COMMA, - ACTIONS(2955), 1, anon_sym_as, - ACTIONS(2957), 1, anon_sym_if, - ACTIONS(2959), 1, anon_sym_COLON, - ACTIONS(2961), 1, - anon_sym_async, - ACTIONS(2963), 1, - anon_sym_for, - ACTIONS(2965), 1, - anon_sym_RBRACE, - ACTIONS(2967), 1, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_and, - ACTIONS(2969), 1, anon_sym_or, - STATE(1865), 1, - sym_for_in_clause, - STATE(2348), 1, - aux_sym__collection_elements_repeat1, - STATE(2690), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [100381] = 4, - ACTIONS(2973), 1, + [99809] = 4, + ACTIONS(2957), 1, anon_sym_and, - ACTIONS(2975), 1, + ACTIONS(2959), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2971), 10, + ACTIONS(2955), 10, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -111451,11 +110640,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [100404] = 2, + [99832] = 13, + ACTIONS(2937), 1, + anon_sym_COMMA, + ACTIONS(2939), 1, + anon_sym_as, + ACTIONS(2941), 1, + anon_sym_if, + ACTIONS(2943), 1, + anon_sym_COLON, + ACTIONS(2945), 1, + anon_sym_async, + ACTIONS(2947), 1, + anon_sym_for, + ACTIONS(2949), 1, + anon_sym_RBRACE, + ACTIONS(2951), 1, + anon_sym_and, + ACTIONS(2953), 1, + anon_sym_or, + STATE(1864), 1, + sym_for_in_clause, + STATE(2312), 1, + aux_sym__collection_elements_repeat1, + STATE(2706), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [99873] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2977), 12, + ACTIONS(2961), 12, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -111468,13 +110685,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [100423] = 3, - ACTIONS(2973), 1, + [99892] = 3, + ACTIONS(2957), 1, anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2977), 11, + ACTIONS(2961), 11, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -111486,19 +110703,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_PIPE, anon_sym_or, - [100444] = 6, - ACTIONS(2973), 1, + [99913] = 6, + ACTIONS(2957), 1, anon_sym_and, - ACTIONS(2975), 1, + ACTIONS(2959), 1, anon_sym_or, - ACTIONS(2981), 1, + ACTIONS(2965), 1, anon_sym_as, - ACTIONS(2983), 1, + ACTIONS(2967), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2979), 8, + ACTIONS(2963), 8, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -111507,1385 +110724,1365 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [100471] = 6, - ACTIONS(2973), 1, + [99940] = 5, + ACTIONS(2957), 1, anon_sym_and, - ACTIONS(2975), 1, + ACTIONS(2959), 1, anon_sym_or, - ACTIONS(2981), 1, + ACTIONS(2971), 1, anon_sym_as, - ACTIONS(2983), 1, - anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2985), 8, + ACTIONS(2969), 9, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_from, anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [100498] = 6, - ACTIONS(2973), 1, - anon_sym_and, - ACTIONS(2975), 1, - anon_sym_or, - ACTIONS(2981), 1, - anon_sym_as, - ACTIONS(2983), 1, - anon_sym_if, + [99965] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2987), 8, + ACTIONS(2974), 12, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_from, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [100525] = 13, - ACTIONS(2953), 1, + anon_sym_and, + anon_sym_or, + [99984] = 13, + ACTIONS(2937), 1, anon_sym_COMMA, - ACTIONS(2955), 1, + ACTIONS(2939), 1, anon_sym_as, - ACTIONS(2957), 1, + ACTIONS(2941), 1, anon_sym_if, - ACTIONS(2959), 1, + ACTIONS(2943), 1, anon_sym_COLON, - ACTIONS(2961), 1, + ACTIONS(2945), 1, anon_sym_async, - ACTIONS(2963), 1, + ACTIONS(2947), 1, anon_sym_for, - ACTIONS(2965), 1, + ACTIONS(2949), 1, anon_sym_RBRACE, - ACTIONS(2967), 1, + ACTIONS(2951), 1, anon_sym_and, - ACTIONS(2969), 1, + ACTIONS(2953), 1, anon_sym_or, - STATE(1865), 1, + STATE(1864), 1, sym_for_in_clause, - STATE(2348), 1, + STATE(2312), 1, aux_sym__collection_elements_repeat1, - STATE(2670), 1, + STATE(2697), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [100566] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2989), 12, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [100585] = 5, - ACTIONS(2973), 1, + [100025] = 6, + ACTIONS(2957), 1, anon_sym_and, - ACTIONS(2975), 1, + ACTIONS(2959), 1, anon_sym_or, - ACTIONS(2993), 1, + ACTIONS(2965), 1, anon_sym_as, + ACTIONS(2967), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2991), 9, + ACTIONS(2976), 8, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_from, anon_sym_COMMA, - anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [100610] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2078), 12, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, + [100052] = 13, + ACTIONS(2937), 1, anon_sym_COMMA, + ACTIONS(2939), 1, anon_sym_as, + ACTIONS(2941), 1, anon_sym_if, + ACTIONS(2943), 1, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(2945), 1, + anon_sym_async, + ACTIONS(2947), 1, + anon_sym_for, + ACTIONS(2949), 1, + anon_sym_RBRACE, + ACTIONS(2951), 1, anon_sym_and, - anon_sym_or, - [100629] = 13, ACTIONS(2953), 1, + anon_sym_or, + STATE(1864), 1, + sym_for_in_clause, + STATE(2312), 1, + aux_sym__collection_elements_repeat1, + STATE(2674), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [100093] = 13, + ACTIONS(2937), 1, anon_sym_COMMA, - ACTIONS(2955), 1, + ACTIONS(2939), 1, anon_sym_as, - ACTIONS(2957), 1, + ACTIONS(2941), 1, anon_sym_if, - ACTIONS(2959), 1, + ACTIONS(2943), 1, anon_sym_COLON, - ACTIONS(2961), 1, + ACTIONS(2945), 1, anon_sym_async, - ACTIONS(2963), 1, + ACTIONS(2947), 1, anon_sym_for, - ACTIONS(2965), 1, + ACTIONS(2949), 1, anon_sym_RBRACE, - ACTIONS(2967), 1, + ACTIONS(2951), 1, anon_sym_and, - ACTIONS(2969), 1, + ACTIONS(2953), 1, anon_sym_or, - STATE(1865), 1, + STATE(1864), 1, sym_for_in_clause, - STATE(2348), 1, + STATE(2312), 1, aux_sym__collection_elements_repeat1, - STATE(2742), 1, + STATE(2707), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [100670] = 13, - ACTIONS(2953), 1, + [100134] = 13, + ACTIONS(2937), 1, anon_sym_COMMA, - ACTIONS(2955), 1, + ACTIONS(2939), 1, anon_sym_as, - ACTIONS(2957), 1, + ACTIONS(2941), 1, anon_sym_if, - ACTIONS(2959), 1, + ACTIONS(2943), 1, anon_sym_COLON, - ACTIONS(2961), 1, + ACTIONS(2945), 1, anon_sym_async, - ACTIONS(2963), 1, + ACTIONS(2947), 1, anon_sym_for, - ACTIONS(2965), 1, + ACTIONS(2949), 1, anon_sym_RBRACE, - ACTIONS(2967), 1, + ACTIONS(2951), 1, anon_sym_and, - ACTIONS(2969), 1, + ACTIONS(2953), 1, anon_sym_or, - STATE(1865), 1, + STATE(1864), 1, sym_for_in_clause, - STATE(2348), 1, + STATE(2312), 1, aux_sym__collection_elements_repeat1, - STATE(2669), 1, + STATE(2679), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [100711] = 13, - ACTIONS(2953), 1, + [100175] = 6, + ACTIONS(2957), 1, + anon_sym_and, + ACTIONS(2959), 1, + anon_sym_or, + ACTIONS(2965), 1, + anon_sym_as, + ACTIONS(2967), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2978), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [100202] = 13, + ACTIONS(2937), 1, anon_sym_COMMA, - ACTIONS(2955), 1, + ACTIONS(2939), 1, anon_sym_as, - ACTIONS(2957), 1, + ACTIONS(2941), 1, anon_sym_if, - ACTIONS(2959), 1, + ACTIONS(2943), 1, anon_sym_COLON, - ACTIONS(2961), 1, + ACTIONS(2945), 1, anon_sym_async, - ACTIONS(2963), 1, + ACTIONS(2947), 1, anon_sym_for, - ACTIONS(2965), 1, + ACTIONS(2949), 1, anon_sym_RBRACE, - ACTIONS(2967), 1, + ACTIONS(2951), 1, anon_sym_and, - ACTIONS(2969), 1, + ACTIONS(2953), 1, anon_sym_or, - STATE(1865), 1, + STATE(1864), 1, sym_for_in_clause, - STATE(2348), 1, + STATE(2312), 1, aux_sym__collection_elements_repeat1, - STATE(2739), 1, + STATE(2600), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [100752] = 13, - ACTIONS(2953), 1, + [100243] = 13, + ACTIONS(2937), 1, anon_sym_COMMA, - ACTIONS(2955), 1, + ACTIONS(2939), 1, anon_sym_as, - ACTIONS(2957), 1, + ACTIONS(2941), 1, anon_sym_if, - ACTIONS(2959), 1, + ACTIONS(2943), 1, anon_sym_COLON, - ACTIONS(2961), 1, + ACTIONS(2945), 1, anon_sym_async, - ACTIONS(2963), 1, + ACTIONS(2947), 1, anon_sym_for, - ACTIONS(2965), 1, + ACTIONS(2949), 1, anon_sym_RBRACE, - ACTIONS(2967), 1, + ACTIONS(2951), 1, anon_sym_and, - ACTIONS(2969), 1, + ACTIONS(2953), 1, anon_sym_or, - STATE(1865), 1, + STATE(1864), 1, sym_for_in_clause, - STATE(2348), 1, + STATE(2312), 1, aux_sym__collection_elements_repeat1, - STATE(2727), 1, + STATE(2584), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [100793] = 13, - ACTIONS(2953), 1, + [100284] = 12, + ACTIONS(2949), 1, + anon_sym_RBRACK, + ACTIONS(2980), 1, anon_sym_COMMA, - ACTIONS(2955), 1, + ACTIONS(2982), 1, anon_sym_as, - ACTIONS(2957), 1, + ACTIONS(2984), 1, anon_sym_if, - ACTIONS(2959), 1, - anon_sym_COLON, - ACTIONS(2961), 1, + ACTIONS(2986), 1, anon_sym_async, - ACTIONS(2963), 1, + ACTIONS(2988), 1, anon_sym_for, - ACTIONS(2965), 1, - anon_sym_RBRACE, - ACTIONS(2967), 1, + ACTIONS(2990), 1, anon_sym_and, - ACTIONS(2969), 1, + ACTIONS(2992), 1, anon_sym_or, - STATE(1865), 1, + STATE(1866), 1, sym_for_in_clause, - STATE(2348), 1, + STATE(2399), 1, aux_sym__collection_elements_repeat1, - STATE(2607), 1, + STATE(2769), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [100834] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, + [100322] = 12, + ACTIONS(2994), 1, + anon_sym_RPAREN, ACTIONS(2996), 1, - anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(2998), 1, + anon_sym_as, ACTIONS(3000), 1, - anon_sym_BSLASH, + anon_sym_if, ACTIONS(3002), 1, - sym_string_end, - STATE(1812), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(2998), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1715), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [100864] = 12, - ACTIONS(2965), 1, - anon_sym_RBRACK, + anon_sym_async, ACTIONS(3004), 1, - anon_sym_COMMA, + anon_sym_for, ACTIONS(3006), 1, - anon_sym_as, + anon_sym_and, ACTIONS(3008), 1, + anon_sym_or, + STATE(1857), 1, + sym_for_in_clause, + STATE(2350), 1, + aux_sym__collection_elements_repeat1, + STATE(2606), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [100360] = 12, + ACTIONS(2998), 1, + anon_sym_as, + ACTIONS(3000), 1, anon_sym_if, - ACTIONS(3010), 1, + ACTIONS(3002), 1, anon_sym_async, - ACTIONS(3012), 1, + ACTIONS(3004), 1, anon_sym_for, - ACTIONS(3014), 1, + ACTIONS(3006), 1, anon_sym_and, - ACTIONS(3016), 1, + ACTIONS(3008), 1, anon_sym_or, - STATE(1851), 1, + ACTIONS(3010), 1, + anon_sym_RPAREN, + ACTIONS(3012), 1, + anon_sym_COMMA, + STATE(1857), 1, sym_for_in_clause, - STATE(2311), 1, - aux_sym__collection_elements_repeat1, - STATE(2615), 1, + STATE(2241), 1, + aux_sym_argument_list_repeat1, + STATE(2606), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [100902] = 8, + [100398] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2996), 1, + ACTIONS(3014), 1, anon_sym_LBRACE, - ACTIONS(3000), 1, - anon_sym_BSLASH, ACTIONS(3018), 1, + anon_sym_BSLASH, + ACTIONS(3020), 1, sym_string_end, - STATE(1812), 2, + STATE(1805), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(2998), 3, + ACTIONS(3016), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1675), 3, + STATE(1660), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [100932] = 8, + [100428] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2996), 1, + ACTIONS(3014), 1, anon_sym_LBRACE, - ACTIONS(3000), 1, + ACTIONS(3018), 1, anon_sym_BSLASH, - ACTIONS(3020), 1, + ACTIONS(3022), 1, sym_string_end, - STATE(1812), 2, + STATE(1805), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(2998), 3, + ACTIONS(3016), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1706), 3, + STATE(1663), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [100962] = 12, - ACTIONS(3022), 1, - anon_sym_RPAREN, - ACTIONS(3024), 1, + [100458] = 12, + ACTIONS(2996), 1, anon_sym_COMMA, - ACTIONS(3026), 1, + ACTIONS(2998), 1, anon_sym_as, - ACTIONS(3028), 1, + ACTIONS(3000), 1, anon_sym_if, - ACTIONS(3030), 1, + ACTIONS(3002), 1, anon_sym_async, - ACTIONS(3032), 1, + ACTIONS(3004), 1, anon_sym_for, - ACTIONS(3034), 1, + ACTIONS(3006), 1, anon_sym_and, - ACTIONS(3036), 1, + ACTIONS(3008), 1, anon_sym_or, - STATE(1843), 1, + ACTIONS(3024), 1, + anon_sym_RPAREN, + STATE(1857), 1, sym_for_in_clause, - STATE(2254), 1, + STATE(2350), 1, aux_sym__collection_elements_repeat1, - STATE(2660), 1, + STATE(2758), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101000] = 12, - ACTIONS(3026), 1, + [100496] = 12, + ACTIONS(2998), 1, anon_sym_as, - ACTIONS(3028), 1, + ACTIONS(3000), 1, anon_sym_if, - ACTIONS(3030), 1, + ACTIONS(3002), 1, anon_sym_async, - ACTIONS(3032), 1, + ACTIONS(3004), 1, anon_sym_for, - ACTIONS(3034), 1, + ACTIONS(3006), 1, anon_sym_and, - ACTIONS(3036), 1, + ACTIONS(3008), 1, anon_sym_or, - ACTIONS(3038), 1, + ACTIONS(3026), 1, anon_sym_RPAREN, - ACTIONS(3040), 1, + ACTIONS(3028), 1, anon_sym_COMMA, - STATE(1843), 1, + STATE(1857), 1, sym_for_in_clause, - STATE(2335), 1, + STATE(2294), 1, aux_sym_argument_list_repeat1, - STATE(2660), 1, + STATE(2758), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101038] = 8, + [100534] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2996), 1, + ACTIONS(3030), 1, anon_sym_LBRACE, - ACTIONS(3000), 1, + ACTIONS(3036), 1, anon_sym_BSLASH, - ACTIONS(3042), 1, + ACTIONS(3039), 1, sym_string_end, - STATE(1812), 2, + STATE(1805), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(2998), 3, + ACTIONS(3033), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1679), 3, + STATE(1663), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101068] = 8, + [100564] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2996), 1, + ACTIONS(3014), 1, anon_sym_LBRACE, - ACTIONS(3000), 1, + ACTIONS(3018), 1, anon_sym_BSLASH, - ACTIONS(3044), 1, + ACTIONS(3041), 1, sym_string_end, - STATE(1812), 2, + STATE(1805), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(2998), 3, + ACTIONS(3016), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1706), 3, + STATE(1667), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101098] = 12, - ACTIONS(3024), 1, + [100594] = 12, + ACTIONS(2949), 1, + anon_sym_RBRACK, + ACTIONS(2980), 1, anon_sym_COMMA, - ACTIONS(3026), 1, + ACTIONS(2982), 1, anon_sym_as, - ACTIONS(3028), 1, + ACTIONS(2984), 1, anon_sym_if, - ACTIONS(3030), 1, + ACTIONS(2986), 1, anon_sym_async, - ACTIONS(3032), 1, + ACTIONS(2988), 1, anon_sym_for, - ACTIONS(3034), 1, + ACTIONS(2990), 1, anon_sym_and, - ACTIONS(3036), 1, + ACTIONS(2992), 1, anon_sym_or, - ACTIONS(3046), 1, - anon_sym_RPAREN, - STATE(1843), 1, + STATE(1866), 1, sym_for_in_clause, - STATE(2254), 1, + STATE(2399), 1, aux_sym__collection_elements_repeat1, - STATE(2726), 1, + STATE(2754), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101136] = 12, - ACTIONS(3024), 1, - anon_sym_COMMA, - ACTIONS(3026), 1, + [100632] = 12, + ACTIONS(2994), 1, + anon_sym_RPAREN, + ACTIONS(2998), 1, anon_sym_as, - ACTIONS(3028), 1, + ACTIONS(3000), 1, anon_sym_if, - ACTIONS(3030), 1, + ACTIONS(3002), 1, anon_sym_async, - ACTIONS(3032), 1, + ACTIONS(3004), 1, anon_sym_for, - ACTIONS(3034), 1, + ACTIONS(3006), 1, anon_sym_and, - ACTIONS(3036), 1, + ACTIONS(3008), 1, anon_sym_or, - ACTIONS(3048), 1, - anon_sym_RPAREN, - STATE(1843), 1, + ACTIONS(3043), 1, + anon_sym_COMMA, + STATE(1857), 1, sym_for_in_clause, - STATE(2254), 1, + STATE(2350), 1, aux_sym__collection_elements_repeat1, - STATE(2707), 1, + STATE(2606), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101174] = 12, - ACTIONS(3026), 1, + [100670] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3014), 1, + anon_sym_LBRACE, + ACTIONS(3018), 1, + anon_sym_BSLASH, + ACTIONS(3046), 1, + sym_string_end, + STATE(1805), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(3016), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1663), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [100700] = 12, + ACTIONS(2996), 1, + anon_sym_COMMA, + ACTIONS(2998), 1, anon_sym_as, - ACTIONS(3028), 1, + ACTIONS(3000), 1, anon_sym_if, - ACTIONS(3030), 1, + ACTIONS(3002), 1, anon_sym_async, - ACTIONS(3032), 1, + ACTIONS(3004), 1, anon_sym_for, - ACTIONS(3034), 1, + ACTIONS(3006), 1, anon_sym_and, - ACTIONS(3036), 1, + ACTIONS(3008), 1, anon_sym_or, - ACTIONS(3050), 1, + ACTIONS(3048), 1, anon_sym_RPAREN, - ACTIONS(3052), 1, - anon_sym_COMMA, - STATE(1843), 1, + STATE(1857), 1, sym_for_in_clause, - STATE(2472), 1, - aux_sym_argument_list_repeat1, - STATE(2726), 1, + STATE(2350), 1, + aux_sym__collection_elements_repeat1, + STATE(2690), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101212] = 8, + [100738] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2996), 1, + ACTIONS(3014), 1, anon_sym_LBRACE, - ACTIONS(3000), 1, + ACTIONS(3018), 1, anon_sym_BSLASH, - ACTIONS(3054), 1, + ACTIONS(3050), 1, sym_string_end, - STATE(1812), 2, + STATE(1805), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(2998), 3, + ACTIONS(3016), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1706), 3, + STATE(1663), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101242] = 8, + [100768] = 12, + ACTIONS(2998), 1, + anon_sym_as, + ACTIONS(3000), 1, + anon_sym_if, + ACTIONS(3002), 1, + anon_sym_async, + ACTIONS(3004), 1, + anon_sym_for, + ACTIONS(3006), 1, + anon_sym_and, + ACTIONS(3008), 1, + anon_sym_or, + ACTIONS(3052), 1, + anon_sym_RPAREN, + ACTIONS(3054), 1, + anon_sym_COMMA, + STATE(1857), 1, + sym_for_in_clause, + STATE(2338), 1, + aux_sym_argument_list_repeat1, + STATE(2690), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [100806] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2996), 1, + ACTIONS(3014), 1, anon_sym_LBRACE, - ACTIONS(3000), 1, + ACTIONS(3018), 1, anon_sym_BSLASH, ACTIONS(3056), 1, sym_string_end, - STATE(1812), 2, + STATE(1805), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(2998), 3, + ACTIONS(3016), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1685), 3, + STATE(1672), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101272] = 8, + [100836] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2996), 1, + ACTIONS(3014), 1, anon_sym_LBRACE, - ACTIONS(3000), 1, + ACTIONS(3018), 1, anon_sym_BSLASH, ACTIONS(3058), 1, sym_string_end, - STATE(1812), 2, + STATE(1805), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(2998), 3, + ACTIONS(3016), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1706), 3, + STATE(1663), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101302] = 12, - ACTIONS(3024), 1, + [100866] = 12, + ACTIONS(2996), 1, anon_sym_COMMA, - ACTIONS(3026), 1, + ACTIONS(2998), 1, anon_sym_as, - ACTIONS(3028), 1, + ACTIONS(3000), 1, anon_sym_if, - ACTIONS(3030), 1, + ACTIONS(3002), 1, anon_sym_async, - ACTIONS(3032), 1, + ACTIONS(3004), 1, anon_sym_for, - ACTIONS(3034), 1, + ACTIONS(3006), 1, anon_sym_and, - ACTIONS(3036), 1, + ACTIONS(3008), 1, anon_sym_or, ACTIONS(3060), 1, anon_sym_RPAREN, - STATE(1843), 1, + STATE(1857), 1, sym_for_in_clause, - STATE(2254), 1, + STATE(2350), 1, aux_sym__collection_elements_repeat1, - STATE(2721), 1, + STATE(2656), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101340] = 12, - ACTIONS(3026), 1, + [100904] = 12, + ACTIONS(2998), 1, anon_sym_as, - ACTIONS(3028), 1, + ACTIONS(3000), 1, anon_sym_if, - ACTIONS(3030), 1, + ACTIONS(3002), 1, anon_sym_async, - ACTIONS(3032), 1, + ACTIONS(3004), 1, anon_sym_for, - ACTIONS(3034), 1, + ACTIONS(3006), 1, anon_sym_and, - ACTIONS(3036), 1, + ACTIONS(3008), 1, anon_sym_or, ACTIONS(3062), 1, anon_sym_RPAREN, ACTIONS(3064), 1, anon_sym_COMMA, - STATE(1843), 1, + STATE(1857), 1, sym_for_in_clause, - STATE(2282), 1, + STATE(2366), 1, aux_sym_argument_list_repeat1, - STATE(2721), 1, + STATE(2656), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101378] = 12, - ACTIONS(3024), 1, - anon_sym_COMMA, - ACTIONS(3026), 1, - anon_sym_as, - ACTIONS(3028), 1, - anon_sym_if, - ACTIONS(3030), 1, - anon_sym_async, - ACTIONS(3032), 1, - anon_sym_for, - ACTIONS(3034), 1, - anon_sym_and, - ACTIONS(3036), 1, - anon_sym_or, - ACTIONS(3066), 1, - anon_sym_RPAREN, - STATE(1843), 1, - sym_for_in_clause, - STATE(2254), 1, - aux_sym__collection_elements_repeat1, - STATE(2627), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, + [100942] = 8, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - [101416] = 8, + ACTIONS(3014), 1, + anon_sym_LBRACE, + ACTIONS(3018), 1, + anon_sym_BSLASH, + ACTIONS(3066), 1, + sym_string_end, + STATE(1805), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(3016), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1677), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [100972] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2996), 1, + ACTIONS(3014), 1, anon_sym_LBRACE, - ACTIONS(3000), 1, + ACTIONS(3018), 1, anon_sym_BSLASH, ACTIONS(3068), 1, sym_string_end, - STATE(1812), 2, + STATE(1805), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(2998), 3, + ACTIONS(3016), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1690), 3, + STATE(1688), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101446] = 8, + [101002] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2996), 1, + ACTIONS(3014), 1, anon_sym_LBRACE, - ACTIONS(3000), 1, + ACTIONS(3018), 1, anon_sym_BSLASH, ACTIONS(3070), 1, sym_string_end, - STATE(1812), 2, + STATE(1805), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(2998), 3, + ACTIONS(3016), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1706), 3, + STATE(1663), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101476] = 12, - ACTIONS(3024), 1, + [101032] = 12, + ACTIONS(2996), 1, anon_sym_COMMA, - ACTIONS(3026), 1, + ACTIONS(2998), 1, anon_sym_as, - ACTIONS(3028), 1, + ACTIONS(3000), 1, anon_sym_if, - ACTIONS(3030), 1, + ACTIONS(3002), 1, anon_sym_async, - ACTIONS(3032), 1, + ACTIONS(3004), 1, anon_sym_for, - ACTIONS(3034), 1, + ACTIONS(3006), 1, anon_sym_and, - ACTIONS(3036), 1, + ACTIONS(3008), 1, anon_sym_or, ACTIONS(3072), 1, anon_sym_RPAREN, - STATE(1843), 1, - sym_for_in_clause, - STATE(2254), 1, - aux_sym__collection_elements_repeat1, - STATE(2713), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [101514] = 12, - ACTIONS(3026), 1, - anon_sym_as, - ACTIONS(3028), 1, - anon_sym_if, - ACTIONS(3030), 1, - anon_sym_async, - ACTIONS(3032), 1, - anon_sym_for, - ACTIONS(3034), 1, - anon_sym_and, - ACTIONS(3036), 1, - anon_sym_or, - ACTIONS(3074), 1, - anon_sym_RPAREN, - ACTIONS(3076), 1, - anon_sym_COMMA, - STATE(1843), 1, - sym_for_in_clause, - STATE(2301), 1, - aux_sym_argument_list_repeat1, - STATE(2627), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [101552] = 12, - ACTIONS(3026), 1, - anon_sym_as, - ACTIONS(3028), 1, - anon_sym_if, - ACTIONS(3030), 1, - anon_sym_async, - ACTIONS(3032), 1, - anon_sym_for, - ACTIONS(3034), 1, - anon_sym_and, - ACTIONS(3036), 1, - anon_sym_or, - ACTIONS(3078), 1, - anon_sym_RPAREN, - ACTIONS(3080), 1, - anon_sym_COMMA, - STATE(1843), 1, - sym_for_in_clause, - STATE(2324), 1, - aux_sym_argument_list_repeat1, - STATE(2713), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [101590] = 12, - ACTIONS(3022), 1, - anon_sym_RPAREN, - ACTIONS(3026), 1, - anon_sym_as, - ACTIONS(3028), 1, - anon_sym_if, - ACTIONS(3030), 1, - anon_sym_async, - ACTIONS(3032), 1, - anon_sym_for, - ACTIONS(3034), 1, - anon_sym_and, - ACTIONS(3036), 1, - anon_sym_or, - ACTIONS(3082), 1, - anon_sym_COMMA, - STATE(1843), 1, + STATE(1857), 1, sym_for_in_clause, - STATE(2254), 1, + STATE(2350), 1, aux_sym__collection_elements_repeat1, - STATE(2660), 1, + STATE(2669), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101628] = 8, + [101070] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2996), 1, + ACTIONS(3014), 1, anon_sym_LBRACE, - ACTIONS(3000), 1, + ACTIONS(3018), 1, anon_sym_BSLASH, - ACTIONS(3085), 1, + ACTIONS(3074), 1, sym_string_end, - STATE(1812), 2, + STATE(1805), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(2998), 3, + ACTIONS(3016), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1696), 3, + STATE(1663), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101658] = 8, + [101100] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2996), 1, + ACTIONS(3014), 1, anon_sym_LBRACE, - ACTIONS(3000), 1, + ACTIONS(3018), 1, anon_sym_BSLASH, - ACTIONS(3087), 1, + ACTIONS(3076), 1, sym_string_end, - STATE(1812), 2, + STATE(1805), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(2998), 3, + ACTIONS(3016), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1706), 3, + STATE(1669), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101688] = 12, - ACTIONS(3024), 1, - anon_sym_COMMA, - ACTIONS(3026), 1, - anon_sym_as, - ACTIONS(3028), 1, - anon_sym_if, - ACTIONS(3030), 1, - anon_sym_async, - ACTIONS(3032), 1, - anon_sym_for, - ACTIONS(3034), 1, - anon_sym_and, - ACTIONS(3036), 1, - anon_sym_or, - ACTIONS(3089), 1, - anon_sym_RPAREN, - STATE(1843), 1, - sym_for_in_clause, - STATE(2254), 1, - aux_sym__collection_elements_repeat1, - STATE(2680), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [101726] = 12, - ACTIONS(3026), 1, - anon_sym_as, - ACTIONS(3028), 1, - anon_sym_if, - ACTIONS(3030), 1, - anon_sym_async, - ACTIONS(3032), 1, - anon_sym_for, - ACTIONS(3034), 1, - anon_sym_and, - ACTIONS(3036), 1, - anon_sym_or, - ACTIONS(3091), 1, - anon_sym_RPAREN, - ACTIONS(3093), 1, - anon_sym_COMMA, - STATE(1843), 1, - sym_for_in_clause, - STATE(2361), 1, - aux_sym_argument_list_repeat1, - STATE(2680), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [101764] = 8, + [101130] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2996), 1, + ACTIONS(3014), 1, anon_sym_LBRACE, - ACTIONS(3000), 1, + ACTIONS(3018), 1, anon_sym_BSLASH, - ACTIONS(3095), 1, + ACTIONS(3078), 1, sym_string_end, - STATE(1812), 2, + STATE(1805), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(2998), 3, + ACTIONS(3016), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1700), 3, + STATE(1682), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101794] = 8, + [101160] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2996), 1, + ACTIONS(3014), 1, anon_sym_LBRACE, - ACTIONS(3000), 1, + ACTIONS(3018), 1, anon_sym_BSLASH, - ACTIONS(3097), 1, + ACTIONS(3080), 1, sym_string_end, - STATE(1812), 2, + STATE(1805), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(2998), 3, + ACTIONS(3016), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1706), 3, + STATE(1663), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101824] = 12, - ACTIONS(3024), 1, + [101190] = 12, + ACTIONS(2996), 1, anon_sym_COMMA, - ACTIONS(3026), 1, + ACTIONS(2998), 1, anon_sym_as, - ACTIONS(3028), 1, + ACTIONS(3000), 1, anon_sym_if, - ACTIONS(3030), 1, + ACTIONS(3002), 1, anon_sym_async, - ACTIONS(3032), 1, + ACTIONS(3004), 1, anon_sym_for, - ACTIONS(3034), 1, + ACTIONS(3006), 1, anon_sym_and, - ACTIONS(3036), 1, + ACTIONS(3008), 1, anon_sym_or, - ACTIONS(3099), 1, + ACTIONS(3082), 1, anon_sym_RPAREN, - STATE(1843), 1, + STATE(1857), 1, sym_for_in_clause, - STATE(2254), 1, + STATE(2350), 1, aux_sym__collection_elements_repeat1, - STATE(2614), 1, + STATE(2596), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101862] = 12, - ACTIONS(3026), 1, + [101228] = 12, + ACTIONS(2998), 1, anon_sym_as, - ACTIONS(3028), 1, + ACTIONS(3000), 1, anon_sym_if, - ACTIONS(3030), 1, + ACTIONS(3002), 1, anon_sym_async, - ACTIONS(3032), 1, + ACTIONS(3004), 1, anon_sym_for, - ACTIONS(3034), 1, + ACTIONS(3006), 1, anon_sym_and, - ACTIONS(3036), 1, + ACTIONS(3008), 1, anon_sym_or, - ACTIONS(3101), 1, + ACTIONS(3084), 1, anon_sym_RPAREN, - ACTIONS(3103), 1, + ACTIONS(3086), 1, anon_sym_COMMA, - STATE(1843), 1, + STATE(1857), 1, sym_for_in_clause, - STATE(2394), 1, + STATE(2409), 1, aux_sym_argument_list_repeat1, - STATE(2614), 1, + STATE(2596), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101900] = 8, + [101266] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2996), 1, + ACTIONS(3014), 1, anon_sym_LBRACE, - ACTIONS(3000), 1, + ACTIONS(3018), 1, anon_sym_BSLASH, - ACTIONS(3105), 1, + ACTIONS(3088), 1, sym_string_end, - STATE(1812), 2, + STATE(1805), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(2998), 3, + ACTIONS(3016), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1704), 3, + STATE(1686), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101930] = 8, + [101296] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2996), 1, + ACTIONS(3014), 1, anon_sym_LBRACE, - ACTIONS(3000), 1, + ACTIONS(3018), 1, anon_sym_BSLASH, - ACTIONS(3107), 1, + ACTIONS(3090), 1, sym_string_end, - STATE(1812), 2, + STATE(1805), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(2998), 3, + ACTIONS(3016), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1706), 3, + STATE(1663), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101960] = 12, - ACTIONS(2965), 1, + [101326] = 12, + ACTIONS(2949), 1, anon_sym_RBRACK, - ACTIONS(3004), 1, + ACTIONS(2980), 1, anon_sym_COMMA, - ACTIONS(3006), 1, + ACTIONS(2982), 1, anon_sym_as, - ACTIONS(3008), 1, + ACTIONS(2984), 1, anon_sym_if, - ACTIONS(3010), 1, + ACTIONS(2986), 1, anon_sym_async, - ACTIONS(3012), 1, + ACTIONS(2988), 1, anon_sym_for, - ACTIONS(3014), 1, + ACTIONS(2990), 1, anon_sym_and, - ACTIONS(3016), 1, + ACTIONS(2992), 1, anon_sym_or, - STATE(1851), 1, + STATE(1866), 1, sym_for_in_clause, - STATE(2311), 1, + STATE(2399), 1, aux_sym__collection_elements_repeat1, - STATE(2687), 1, + STATE(2736), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101998] = 8, + [101364] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3109), 1, + ACTIONS(3014), 1, anon_sym_LBRACE, - ACTIONS(3115), 1, + ACTIONS(3018), 1, anon_sym_BSLASH, - ACTIONS(3118), 1, + ACTIONS(3092), 1, sym_string_end, - STATE(1812), 2, + STATE(1805), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3112), 3, + ACTIONS(3016), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1706), 3, + STATE(1663), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [102028] = 12, - ACTIONS(2965), 1, + [101394] = 12, + ACTIONS(2949), 1, anon_sym_RBRACK, - ACTIONS(3004), 1, + ACTIONS(2980), 1, anon_sym_COMMA, - ACTIONS(3006), 1, + ACTIONS(2982), 1, anon_sym_as, - ACTIONS(3008), 1, + ACTIONS(2984), 1, anon_sym_if, - ACTIONS(3010), 1, + ACTIONS(2986), 1, anon_sym_async, - ACTIONS(3012), 1, + ACTIONS(2988), 1, anon_sym_for, - ACTIONS(3014), 1, + ACTIONS(2990), 1, anon_sym_and, - ACTIONS(3016), 1, + ACTIONS(2992), 1, anon_sym_or, - STATE(1851), 1, + STATE(1866), 1, sym_for_in_clause, - STATE(2311), 1, + STATE(2399), 1, aux_sym__collection_elements_repeat1, - STATE(2663), 1, + STATE(2619), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102066] = 12, - ACTIONS(3026), 1, + [101432] = 12, + ACTIONS(2996), 1, + anon_sym_COMMA, + ACTIONS(2998), 1, anon_sym_as, - ACTIONS(3028), 1, + ACTIONS(3000), 1, anon_sym_if, - ACTIONS(3030), 1, + ACTIONS(3002), 1, anon_sym_async, - ACTIONS(3032), 1, + ACTIONS(3004), 1, anon_sym_for, - ACTIONS(3034), 1, + ACTIONS(3006), 1, anon_sym_and, - ACTIONS(3036), 1, + ACTIONS(3008), 1, anon_sym_or, - ACTIONS(3120), 1, + ACTIONS(3094), 1, anon_sym_RPAREN, - ACTIONS(3122), 1, - anon_sym_COMMA, - STATE(1843), 1, + STATE(1857), 1, sym_for_in_clause, - STATE(2479), 1, - aux_sym_argument_list_repeat1, - STATE(2707), 1, + STATE(2350), 1, + aux_sym__collection_elements_repeat1, + STATE(2735), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102104] = 12, - ACTIONS(2965), 1, - anon_sym_RBRACK, - ACTIONS(3004), 1, - anon_sym_COMMA, - ACTIONS(3006), 1, + [101470] = 12, + ACTIONS(2998), 1, anon_sym_as, - ACTIONS(3008), 1, + ACTIONS(3000), 1, anon_sym_if, - ACTIONS(3010), 1, + ACTIONS(3002), 1, anon_sym_async, - ACTIONS(3012), 1, + ACTIONS(3004), 1, anon_sym_for, - ACTIONS(3014), 1, + ACTIONS(3006), 1, anon_sym_and, - ACTIONS(3016), 1, + ACTIONS(3008), 1, anon_sym_or, - STATE(1851), 1, + ACTIONS(3096), 1, + anon_sym_RPAREN, + ACTIONS(3098), 1, + anon_sym_COMMA, + STATE(1857), 1, sym_for_in_clause, - STATE(2311), 1, - aux_sym__collection_elements_repeat1, - STATE(2733), 1, + STATE(2316), 1, + aux_sym_argument_list_repeat1, + STATE(2735), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102142] = 8, - ACTIONS(3), 1, + [101508] = 12, + ACTIONS(2998), 1, + anon_sym_as, + ACTIONS(3000), 1, + anon_sym_if, + ACTIONS(3002), 1, + anon_sym_async, + ACTIONS(3004), 1, + anon_sym_for, + ACTIONS(3006), 1, + anon_sym_and, + ACTIONS(3008), 1, + anon_sym_or, + ACTIONS(3100), 1, + anon_sym_RPAREN, + ACTIONS(3102), 1, + anon_sym_COMMA, + STATE(1857), 1, + sym_for_in_clause, + STATE(2459), 1, + aux_sym_argument_list_repeat1, + STATE(2622), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2996), 1, - anon_sym_LBRACE, - ACTIONS(3000), 1, - anon_sym_BSLASH, - ACTIONS(3124), 1, - sym_string_end, - STATE(1812), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(2998), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1683), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [102172] = 12, - ACTIONS(2965), 1, + [101546] = 12, + ACTIONS(2949), 1, anon_sym_RBRACK, - ACTIONS(3004), 1, + ACTIONS(2980), 1, anon_sym_COMMA, - ACTIONS(3006), 1, + ACTIONS(2982), 1, anon_sym_as, - ACTIONS(3008), 1, + ACTIONS(2984), 1, anon_sym_if, - ACTIONS(3010), 1, + ACTIONS(2986), 1, anon_sym_async, - ACTIONS(3012), 1, + ACTIONS(2988), 1, anon_sym_for, - ACTIONS(3014), 1, + ACTIONS(2990), 1, anon_sym_and, - ACTIONS(3016), 1, + ACTIONS(2992), 1, anon_sym_or, - STATE(1851), 1, + STATE(1866), 1, sym_for_in_clause, - STATE(2311), 1, + STATE(2399), 1, aux_sym__collection_elements_repeat1, - STATE(2723), 1, + STATE(2693), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102210] = 12, - ACTIONS(2965), 1, + [101584] = 12, + ACTIONS(2949), 1, anon_sym_RBRACK, - ACTIONS(3004), 1, + ACTIONS(2980), 1, anon_sym_COMMA, - ACTIONS(3006), 1, + ACTIONS(2982), 1, anon_sym_as, - ACTIONS(3008), 1, + ACTIONS(2984), 1, anon_sym_if, - ACTIONS(3010), 1, + ACTIONS(2986), 1, anon_sym_async, - ACTIONS(3012), 1, + ACTIONS(2988), 1, anon_sym_for, - ACTIONS(3014), 1, + ACTIONS(2990), 1, anon_sym_and, - ACTIONS(3016), 1, + ACTIONS(2992), 1, anon_sym_or, - STATE(1851), 1, + STATE(1866), 1, sym_for_in_clause, - STATE(2311), 1, + STATE(2399), 1, aux_sym__collection_elements_repeat1, - STATE(2754), 1, + STATE(2657), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102248] = 12, - ACTIONS(2965), 1, - anon_sym_RBRACK, - ACTIONS(3004), 1, + [101622] = 12, + ACTIONS(2996), 1, anon_sym_COMMA, - ACTIONS(3006), 1, + ACTIONS(2998), 1, anon_sym_as, - ACTIONS(3008), 1, + ACTIONS(3000), 1, anon_sym_if, - ACTIONS(3010), 1, + ACTIONS(3002), 1, anon_sym_async, - ACTIONS(3012), 1, + ACTIONS(3004), 1, anon_sym_for, - ACTIONS(3014), 1, + ACTIONS(3006), 1, anon_sym_and, - ACTIONS(3016), 1, + ACTIONS(3008), 1, anon_sym_or, - STATE(1851), 1, + ACTIONS(3104), 1, + anon_sym_RPAREN, + STATE(1857), 1, sym_for_in_clause, - STATE(2311), 1, + STATE(2350), 1, aux_sym__collection_elements_repeat1, - STATE(2725), 1, + STATE(2622), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102286] = 12, + [101660] = 9, + ACTIONS(2957), 1, + anon_sym_and, + ACTIONS(2959), 1, + anon_sym_or, ACTIONS(2965), 1, + anon_sym_as, + ACTIONS(2967), 1, + anon_sym_if, + ACTIONS(3110), 1, + anon_sym_COMMA, + STATE(2137), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3106), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3108), 3, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + [101692] = 12, + ACTIONS(2949), 1, anon_sym_RBRACK, - ACTIONS(3004), 1, + ACTIONS(2980), 1, anon_sym_COMMA, - ACTIONS(3006), 1, + ACTIONS(2982), 1, anon_sym_as, - ACTIONS(3008), 1, + ACTIONS(2984), 1, anon_sym_if, - ACTIONS(3010), 1, + ACTIONS(2986), 1, anon_sym_async, - ACTIONS(3012), 1, + ACTIONS(2988), 1, anon_sym_for, - ACTIONS(3014), 1, + ACTIONS(2990), 1, anon_sym_and, - ACTIONS(3016), 1, + ACTIONS(2992), 1, anon_sym_or, - STATE(1851), 1, + STATE(1866), 1, sym_for_in_clause, - STATE(2311), 1, + STATE(2399), 1, aux_sym__collection_elements_repeat1, - STATE(2681), 1, + STATE(2670), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102324] = 8, + [101730] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2996), 1, + ACTIONS(3014), 1, anon_sym_LBRACE, - ACTIONS(3000), 1, + ACTIONS(3018), 1, anon_sym_BSLASH, - ACTIONS(3126), 1, + ACTIONS(3112), 1, sym_string_end, - STATE(1812), 2, + STATE(1805), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(2998), 3, + ACTIONS(3016), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1706), 3, + STATE(1679), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [102354] = 9, - ACTIONS(2973), 1, + [101760] = 12, + ACTIONS(2949), 1, + anon_sym_RBRACK, + ACTIONS(2980), 1, + anon_sym_COMMA, + ACTIONS(2982), 1, + anon_sym_as, + ACTIONS(2984), 1, + anon_sym_if, + ACTIONS(2986), 1, + anon_sym_async, + ACTIONS(2988), 1, + anon_sym_for, + ACTIONS(2990), 1, anon_sym_and, - ACTIONS(2975), 1, + ACTIONS(2992), 1, anon_sym_or, - ACTIONS(2981), 1, + STATE(1866), 1, + sym_for_in_clause, + STATE(2399), 1, + aux_sym__collection_elements_repeat1, + STATE(2597), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [101798] = 12, + ACTIONS(2998), 1, anon_sym_as, - ACTIONS(2983), 1, + ACTIONS(3000), 1, anon_sym_if, - ACTIONS(3132), 1, + ACTIONS(3002), 1, + anon_sym_async, + ACTIONS(3004), 1, + anon_sym_for, + ACTIONS(3006), 1, + anon_sym_and, + ACTIONS(3008), 1, + anon_sym_or, + ACTIONS(3114), 1, + anon_sym_RPAREN, + ACTIONS(3116), 1, anon_sym_COMMA, - STATE(2213), 1, - aux_sym_assert_statement_repeat1, + STATE(1857), 1, + sym_for_in_clause, + STATE(2384), 1, + aux_sym_argument_list_repeat1, + STATE(2669), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3128), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(3130), 3, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_PIPE, - [102386] = 2, + [101836] = 3, + ACTIONS(3118), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2078), 10, + ACTIONS(2961), 9, anon_sym_DOT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [102403] = 4, - ACTIONS(3134), 1, - anon_sym_and, - ACTIONS(3136), 1, anon_sym_or, + [101855] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2971), 8, + ACTIONS(2062), 10, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, @@ -112894,83 +112091,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [102424] = 2, + anon_sym_and, + anon_sym_or, + [101872] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2977), 10, + ACTIONS(2974), 10, anon_sym_DOT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_EQ, anon_sym_PIPE, anon_sym_and, anon_sym_or, - [102441] = 6, - ACTIONS(3138), 1, - anon_sym_as, - ACTIONS(3140), 1, - anon_sym_if, - ACTIONS(3142), 1, + [101889] = 5, + ACTIONS(3118), 1, anon_sym_and, - ACTIONS(3144), 1, + ACTIONS(3120), 1, + anon_sym_as, + ACTIONS(3123), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2979), 6, + ACTIONS(2969), 7, anon_sym_DOT, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - [102466] = 6, - ACTIONS(3138), 1, + [101912] = 8, + ACTIONS(3125), 1, + anon_sym_COMMA, + ACTIONS(3127), 1, anon_sym_as, - ACTIONS(3140), 1, + ACTIONS(3129), 1, anon_sym_if, - ACTIONS(3142), 1, - anon_sym_and, - ACTIONS(3144), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2985), 6, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_EQ, - anon_sym_PIPE, - [102491] = 6, - ACTIONS(3134), 1, + ACTIONS(3133), 1, anon_sym_and, - ACTIONS(3136), 1, + ACTIONS(3135), 1, anon_sym_or, - ACTIONS(3146), 1, - anon_sym_as, - ACTIONS(3148), 1, - anon_sym_if, + STATE(1875), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2979), 6, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(3131), 4, anon_sym_COLON, anon_sym_EQ, - anon_sym_PIPE, - [102516] = 2, + anon_sym_RBRACE, + sym_type_conversion, + [101941] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2078), 10, + ACTIONS(2974), 10, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, @@ -112981,71 +112162,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [102533] = 6, - ACTIONS(3134), 1, + [101958] = 4, + ACTIONS(3118), 1, anon_sym_and, - ACTIONS(3136), 1, + ACTIONS(3123), 1, anon_sym_or, - ACTIONS(3146), 1, - anon_sym_as, - ACTIONS(3148), 1, - anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3130), 6, + ACTIONS(2955), 8, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [102558] = 5, - ACTIONS(3142), 1, + [101979] = 6, + ACTIONS(3137), 1, + anon_sym_as, + ACTIONS(3139), 1, + anon_sym_if, + ACTIONS(3141), 1, anon_sym_and, - ACTIONS(3144), 1, + ACTIONS(3143), 1, anon_sym_or, - ACTIONS(3150), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2991), 7, + ACTIONS(2976), 6, anon_sym_DOT, anon_sym_COMMA, - anon_sym_if, anon_sym_COLON, anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - [102581] = 6, - ACTIONS(3134), 1, + [102004] = 5, + ACTIONS(3141), 1, anon_sym_and, - ACTIONS(3136), 1, + ACTIONS(3143), 1, anon_sym_or, - ACTIONS(3146), 1, + ACTIONS(3145), 1, anon_sym_as, - ACTIONS(3148), 1, - anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2987), 6, + ACTIONS(2969), 7, anon_sym_DOT, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - [102606] = 4, - ACTIONS(3142), 1, + [102027] = 4, + ACTIONS(3141), 1, anon_sym_and, - ACTIONS(3144), 1, + ACTIONS(3143), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2971), 8, + ACTIONS(2955), 8, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -113054,30 +112233,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - [102627] = 6, - ACTIONS(3134), 1, + [102048] = 6, + ACTIONS(3118), 1, anon_sym_and, - ACTIONS(3136), 1, + ACTIONS(3123), 1, anon_sym_or, - ACTIONS(3146), 1, - anon_sym_as, ACTIONS(3148), 1, + anon_sym_as, + ACTIONS(3150), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2985), 6, + ACTIONS(2976), 6, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [102652] = 2, + [102073] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2989), 10, + ACTIONS(2961), 10, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -113088,11 +112267,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [102669] = 2, + [102090] = 3, + ACTIONS(3141), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2977), 10, + ACTIONS(2961), 9, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -113101,86 +112282,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - anon_sym_and, anon_sym_or, - [102686] = 3, - ACTIONS(3142), 1, + [102109] = 6, + ACTIONS(3118), 1, anon_sym_and, + ACTIONS(3123), 1, + anon_sym_or, + ACTIONS(3148), 1, + anon_sym_as, + ACTIONS(3150), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2977), 9, + ACTIONS(3108), 6, anon_sym_DOT, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [102134] = 6, + ACTIONS(3118), 1, + anon_sym_and, + ACTIONS(3123), 1, + anon_sym_or, + ACTIONS(3148), 1, anon_sym_as, + ACTIONS(3150), 1, anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2978), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - anon_sym_or, - [102705] = 8, - ACTIONS(3153), 1, + [102159] = 8, + ACTIONS(3125), 1, anon_sym_COMMA, - ACTIONS(3155), 1, + ACTIONS(3127), 1, anon_sym_as, - ACTIONS(3157), 1, + ACTIONS(3129), 1, anon_sym_if, - ACTIONS(3161), 1, + ACTIONS(3133), 1, anon_sym_and, - ACTIONS(3163), 1, + ACTIONS(3135), 1, anon_sym_or, - STATE(1886), 1, + STATE(1875), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3159), 4, + ACTIONS(3152), 4, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [102734] = 2, + [102188] = 6, + ACTIONS(2957), 1, + anon_sym_and, + ACTIONS(2959), 1, + anon_sym_or, + ACTIONS(2965), 1, + anon_sym_as, + ACTIONS(2967), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2989), 10, + ACTIONS(3108), 6, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [102751] = 6, - ACTIONS(3138), 1, + [102213] = 6, + ACTIONS(3137), 1, anon_sym_as, - ACTIONS(3140), 1, + ACTIONS(3139), 1, anon_sym_if, - ACTIONS(3142), 1, + ACTIONS(3141), 1, anon_sym_and, - ACTIONS(3144), 1, + ACTIONS(3143), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2987), 6, + ACTIONS(2963), 6, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - [102776] = 3, - ACTIONS(3134), 1, - anon_sym_and, + [102238] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2977), 9, + ACTIONS(2961), 10, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, @@ -113189,368 +112393,355 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - anon_sym_or, - [102795] = 5, - ACTIONS(3134), 1, anon_sym_and, - ACTIONS(3136), 1, anon_sym_or, - ACTIONS(3165), 1, - anon_sym_as, + [102255] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2991), 7, + ACTIONS(2062), 10, anon_sym_DOT, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - [102818] = 8, - ACTIONS(3153), 1, - anon_sym_COMMA, - ACTIONS(3155), 1, + anon_sym_and, + anon_sym_or, + [102272] = 6, + ACTIONS(3137), 1, anon_sym_as, - ACTIONS(3157), 1, + ACTIONS(3139), 1, anon_sym_if, - ACTIONS(3161), 1, + ACTIONS(3141), 1, anon_sym_and, - ACTIONS(3163), 1, + ACTIONS(3143), 1, anon_sym_or, - STATE(1886), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3168), 4, + ACTIONS(2978), 6, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_COLON, + anon_sym_else, anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [102847] = 6, - ACTIONS(2973), 1, + anon_sym_PIPE, + [102297] = 6, + ACTIONS(3118), 1, anon_sym_and, - ACTIONS(2975), 1, + ACTIONS(3123), 1, anon_sym_or, - ACTIONS(2981), 1, + ACTIONS(3148), 1, anon_sym_as, - ACTIONS(2983), 1, + ACTIONS(3150), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3130), 6, - sym__newline, - anon_sym_SEMI, + ACTIONS(2963), 6, anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [102872] = 6, - ACTIONS(2955), 1, - anon_sym_as, - ACTIONS(2957), 1, - anon_sym_if, - ACTIONS(2967), 1, - anon_sym_and, - ACTIONS(2969), 1, - anon_sym_or, + [102322] = 4, + ACTIONS(3156), 1, + anon_sym_DOT, + STATE(1740), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2985), 5, + ACTIONS(3154), 7, + anon_sym_import, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [102896] = 6, - ACTIONS(3155), 1, + anon_sym_PIPE, + [102342] = 6, + ACTIONS(3158), 1, anon_sym_as, - ACTIONS(3157), 1, + ACTIONS(3160), 1, anon_sym_if, - ACTIONS(3161), 1, + ACTIONS(3162), 1, anon_sym_and, - ACTIONS(3163), 1, + ACTIONS(3164), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2985), 5, + ACTIONS(2976), 5, + anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [102920] = 5, - ACTIONS(3161), 1, + anon_sym_RBRACK, + anon_sym_PIPE, + [102366] = 5, + ACTIONS(3162), 1, anon_sym_and, - ACTIONS(3163), 1, + ACTIONS(3164), 1, anon_sym_or, - ACTIONS(3170), 1, + ACTIONS(3166), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2991), 6, + ACTIONS(2969), 6, + anon_sym_DOT, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [102942] = 4, - ACTIONS(3161), 1, + anon_sym_RBRACK, + anon_sym_PIPE, + [102388] = 4, + ACTIONS(3162), 1, anon_sym_and, - ACTIONS(3163), 1, + ACTIONS(3164), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2971), 7, + ACTIONS(2955), 7, + anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [102962] = 2, + anon_sym_RBRACK, + anon_sym_PIPE, + [102408] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2977), 9, + ACTIONS(2961), 9, + anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_and, anon_sym_or, - sym_type_conversion, - [102978] = 3, - ACTIONS(3161), 1, + [102424] = 3, + ACTIONS(3162), 1, anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2977), 8, + ACTIONS(2961), 8, + anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_or, - sym_type_conversion, - [102996] = 3, - ACTIONS(3173), 1, + [102442] = 6, + ACTIONS(3158), 1, anon_sym_as, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2989), 8, - anon_sym_COMMA, + ACTIONS(3160), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, + ACTIONS(3162), 1, anon_sym_and, + ACTIONS(3164), 1, anon_sym_or, - [103014] = 9, - ACTIONS(2973), 1, - anon_sym_and, - ACTIONS(2975), 1, - anon_sym_or, - ACTIONS(2981), 1, - anon_sym_as, - ACTIONS(2983), 1, - anon_sym_if, - ACTIONS(3177), 1, - anon_sym_from, - ACTIONS(3179), 1, - anon_sym_COMMA, - STATE(2092), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3175), 2, - sym__newline, - anon_sym_SEMI, - [103044] = 4, - ACTIONS(3183), 1, + ACTIONS(2963), 5, anon_sym_DOT, - STATE(1757), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3181), 7, - anon_sym_import, - anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PIPE, - [103064] = 5, - ACTIONS(3183), 1, + [102466] = 4, + ACTIONS(3171), 1, anon_sym_DOT, - ACTIONS(3185), 1, - anon_sym_EQ, - STATE(1757), 1, + STATE(1730), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3181), 6, + ACTIONS(3169), 7, + anon_sym_import, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [103086] = 6, - ACTIONS(3155), 1, + [102486] = 6, + ACTIONS(3127), 1, anon_sym_as, - ACTIONS(3157), 1, + ACTIONS(3129), 1, anon_sym_if, - ACTIONS(3161), 1, + ACTIONS(3133), 1, anon_sym_and, - ACTIONS(3163), 1, + ACTIONS(3135), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2979), 5, + ACTIONS(2976), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [103110] = 6, - ACTIONS(3155), 1, + [102510] = 6, + ACTIONS(3158), 1, anon_sym_as, - ACTIONS(3157), 1, + ACTIONS(3160), 1, anon_sym_if, - ACTIONS(3161), 1, + ACTIONS(3162), 1, anon_sym_and, - ACTIONS(3163), 1, + ACTIONS(3164), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2987), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [103134] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2078), 9, + ACTIONS(2978), 5, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, + [102534] = 5, + ACTIONS(3133), 1, anon_sym_and, + ACTIONS(3135), 1, anon_sym_or, - [103150] = 5, - ACTIONS(2967), 1, - anon_sym_and, - ACTIONS(2969), 1, - anon_sym_or, - ACTIONS(3187), 1, + ACTIONS(3174), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2991), 6, + ACTIONS(2969), 6, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_EQ, anon_sym_RBRACE, - [103172] = 5, - ACTIONS(2967), 1, + sym_type_conversion, + [102556] = 4, + ACTIONS(3133), 1, anon_sym_and, - ACTIONS(2969), 1, + ACTIONS(3135), 1, anon_sym_or, - ACTIONS(3190), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2971), 6, + ACTIONS(2955), 7, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_EQ, anon_sym_RBRACE, - [103194] = 3, - ACTIONS(3192), 1, - anon_sym_as, + sym_type_conversion, + [102576] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2977), 8, + ACTIONS(2961), 9, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_EQ, anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [103212] = 2, + sym_type_conversion, + [102592] = 3, + ACTIONS(3133), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2989), 9, + ACTIONS(2961), 8, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, - anon_sym_and, anon_sym_or, sym_type_conversion, - [103228] = 2, + [102610] = 6, + ACTIONS(3127), 1, + anon_sym_as, + ACTIONS(3129), 1, + anon_sym_if, + ACTIONS(3133), 1, + anon_sym_and, + ACTIONS(3135), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2989), 9, - anon_sym_DOT, + ACTIONS(2963), 5, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [102634] = 6, + ACTIONS(3127), 1, anon_sym_as, + ACTIONS(3129), 1, anon_sym_if, + ACTIONS(3133), 1, + anon_sym_and, + ACTIONS(3135), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2978), 5, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [102658] = 9, + ACTIONS(2957), 1, anon_sym_and, + ACTIONS(2959), 1, anon_sym_or, - [103244] = 4, - ACTIONS(3183), 1, + ACTIONS(2965), 1, + anon_sym_as, + ACTIONS(2967), 1, + anon_sym_if, + ACTIONS(3179), 1, + anon_sym_from, + ACTIONS(3181), 1, + anon_sym_COMMA, + STATE(1983), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3177), 2, + sym__newline, + anon_sym_SEMI, + [102688] = 4, + ACTIONS(3156), 1, anon_sym_DOT, - STATE(1770), 1, + STATE(1730), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3194), 7, + ACTIONS(3183), 7, anon_sym_import, anon_sym_LPAREN, anon_sym_COMMA, @@ -113558,150 +112749,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [103264] = 6, - ACTIONS(2955), 1, + [102708] = 6, + ACTIONS(2939), 1, anon_sym_as, - ACTIONS(2957), 1, + ACTIONS(2941), 1, anon_sym_if, - ACTIONS(2967), 1, + ACTIONS(2951), 1, anon_sym_and, - ACTIONS(2969), 1, + ACTIONS(2953), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2979), 5, + ACTIONS(2963), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [103288] = 6, - ACTIONS(2955), 1, + [102732] = 6, + ACTIONS(2939), 1, anon_sym_as, - ACTIONS(2957), 1, + ACTIONS(2941), 1, anon_sym_if, - ACTIONS(2967), 1, + ACTIONS(2951), 1, anon_sym_and, - ACTIONS(2969), 1, + ACTIONS(2953), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2987), 5, + ACTIONS(2978), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [103312] = 6, - ACTIONS(3196), 1, + [102756] = 6, + ACTIONS(3137), 1, anon_sym_as, - ACTIONS(3198), 1, + ACTIONS(3139), 1, anon_sym_if, - ACTIONS(3200), 1, + ACTIONS(3141), 1, anon_sym_and, - ACTIONS(3202), 1, + ACTIONS(3143), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2985), 5, + ACTIONS(3108), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_EQ, anon_sym_PIPE, - [103336] = 6, - ACTIONS(3138), 1, - anon_sym_as, - ACTIONS(3140), 1, - anon_sym_if, - ACTIONS(3142), 1, - anon_sym_and, - ACTIONS(3144), 1, - anon_sym_or, + [102780] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3130), 5, - anon_sym_DOT, + ACTIONS(2062), 9, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, anon_sym_EQ, - anon_sym_PIPE, - [103360] = 6, - ACTIONS(3155), 1, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + sym_type_conversion, + [102796] = 6, + ACTIONS(3127), 1, anon_sym_as, - ACTIONS(3157), 1, + ACTIONS(3129), 1, anon_sym_if, - ACTIONS(3161), 1, + ACTIONS(3133), 1, anon_sym_and, - ACTIONS(3163), 1, + ACTIONS(3135), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3204), 5, + ACTIONS(3185), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [103384] = 5, - ACTIONS(3200), 1, + [102820] = 6, + ACTIONS(3158), 1, + anon_sym_as, + ACTIONS(3160), 1, + anon_sym_if, + ACTIONS(3162), 1, anon_sym_and, - ACTIONS(3202), 1, + ACTIONS(3164), 1, anon_sym_or, - ACTIONS(3206), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2991), 6, + ACTIONS(3108), 5, anon_sym_DOT, anon_sym_COMMA, - anon_sym_if, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - [103406] = 4, - ACTIONS(3200), 1, - anon_sym_and, - ACTIONS(3202), 1, - anon_sym_or, + [102844] = 3, + ACTIONS(3187), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2971), 7, - anon_sym_DOT, + ACTIONS(2974), 8, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [103426] = 2, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + [102862] = 6, + ACTIONS(2939), 1, + anon_sym_as, + ACTIONS(2941), 1, + anon_sym_if, + ACTIONS(2951), 1, + anon_sym_and, + ACTIONS(2953), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2977), 9, - anon_sym_DOT, + ACTIONS(2976), 5, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [102886] = 5, + ACTIONS(2951), 1, + anon_sym_and, + ACTIONS(2953), 1, + anon_sym_or, + ACTIONS(3189), 1, anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2969), 6, + anon_sym_COMMA, anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [102908] = 5, + ACTIONS(2951), 1, anon_sym_and, + ACTIONS(2953), 1, anon_sym_or, - [103442] = 3, - ACTIONS(3200), 1, - anon_sym_and, + ACTIONS(3192), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2955), 6, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [102930] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2977), 8, + ACTIONS(2062), 9, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -113709,12 +112932,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, + anon_sym_and, anon_sym_or, - [103460] = 2, + [102946] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2078), 9, + ACTIONS(2974), 9, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -113724,203 +112948,225 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, sym_type_conversion, - [103476] = 6, - ACTIONS(3196), 1, + [102962] = 6, + ACTIONS(3127), 1, anon_sym_as, - ACTIONS(3198), 1, + ACTIONS(3129), 1, anon_sym_if, - ACTIONS(3200), 1, + ACTIONS(3133), 1, anon_sym_and, - ACTIONS(3202), 1, + ACTIONS(3135), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3130), 5, - anon_sym_DOT, + ACTIONS(3194), 5, anon_sym_COMMA, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [103500] = 6, - ACTIONS(3155), 1, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [102986] = 3, + ACTIONS(2076), 1, anon_sym_as, - ACTIONS(3157), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2062), 8, + anon_sym_COMMA, anon_sym_if, - ACTIONS(3161), 1, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, anon_sym_and, - ACTIONS(3163), 1, anon_sym_or, + [103004] = 3, + ACTIONS(3196), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3209), 5, + ACTIONS(2961), 8, anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, - anon_sym_EQ, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, - sym_type_conversion, - [103524] = 4, - ACTIONS(3213), 1, + anon_sym_and, + anon_sym_or, + [103022] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2974), 9, anon_sym_DOT, - STATE(1770), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [103038] = 5, + ACTIONS(3156), 1, + anon_sym_DOT, + ACTIONS(3198), 1, + anon_sym_EQ, + STATE(1740), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3211), 7, - anon_sym_import, + ACTIONS(3154), 6, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [103544] = 3, - ACTIONS(2092), 1, + [103060] = 4, + ACTIONS(2951), 1, + anon_sym_and, + ACTIONS(3196), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2078), 8, + ACTIONS(2961), 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, - [103562] = 6, - ACTIONS(3196), 1, + [103080] = 5, + ACTIONS(2998), 1, anon_sym_as, - ACTIONS(3198), 1, - anon_sym_if, - ACTIONS(3200), 1, + ACTIONS(3006), 1, anon_sym_and, - ACTIONS(3202), 1, + ACTIONS(3008), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2979), 5, - anon_sym_DOT, + ACTIONS(3200), 5, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [103586] = 6, - ACTIONS(3196), 1, - anon_sym_as, - ACTIONS(3198), 1, anon_sym_if, - ACTIONS(3200), 1, + anon_sym_async, + anon_sym_for, + [103101] = 6, + ACTIONS(2957), 1, anon_sym_and, - ACTIONS(3202), 1, + ACTIONS(2959), 1, anon_sym_or, + ACTIONS(2965), 1, + anon_sym_as, + ACTIONS(2967), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2987), 5, - anon_sym_DOT, + ACTIONS(3194), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_from, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [103610] = 4, - ACTIONS(2967), 1, - anon_sym_and, - ACTIONS(3192), 1, - anon_sym_as, + [103124] = 4, + ACTIONS(319), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2977), 7, + STATE(1010), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(3202), 5, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - anon_sym_or, - [103630] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3221), 1, - anon_sym_BSLASH, - ACTIONS(3216), 2, - sym_string_end, - anon_sym_LBRACE, - STATE(1775), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(3218), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - [103653] = 7, - ACTIONS(1487), 1, - anon_sym_except, - ACTIONS(1491), 1, - anon_sym_except_STAR, - ACTIONS(3224), 1, - anon_sym_finally, - STATE(737), 1, - sym_finally_clause, + anon_sym_PIPE, + [103143] = 5, + ACTIONS(2998), 1, + anon_sym_as, + ACTIONS(3006), 1, + anon_sym_and, + ACTIONS(3008), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(485), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - STATE(486), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - [103678] = 6, - ACTIONS(3006), 1, + ACTIONS(3200), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [103164] = 6, + ACTIONS(2982), 1, anon_sym_as, - ACTIONS(3008), 1, + ACTIONS(2984), 1, anon_sym_if, - ACTIONS(3014), 1, + ACTIONS(2990), 1, anon_sym_and, - ACTIONS(3016), 1, + ACTIONS(2992), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2987), 4, + ACTIONS(2976), 4, anon_sym_COMMA, anon_sym_async, anon_sym_for, anon_sym_RBRACK, - [103701] = 8, - ACTIONS(2973), 1, + [103187] = 5, + ACTIONS(2939), 1, + anon_sym_as, + ACTIONS(2951), 1, anon_sym_and, - ACTIONS(2975), 1, + ACTIONS(2953), 1, anon_sym_or, - ACTIONS(2981), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3200), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [103208] = 9, + ACTIONS(3158), 1, anon_sym_as, - ACTIONS(2983), 1, + ACTIONS(3160), 1, anon_sym_if, - ACTIONS(3179), 1, + ACTIONS(3162), 1, + anon_sym_and, + ACTIONS(3164), 1, + anon_sym_or, + ACTIONS(3204), 1, anon_sym_COMMA, - STATE(2092), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(3206), 1, + anon_sym_COLON, + ACTIONS(3208), 1, + anon_sym_RBRACK, + STATE(2387), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2902), 2, - sym__newline, - anon_sym_SEMI, - [103728] = 3, - ACTIONS(3173), 1, + [103237] = 3, + ACTIONS(3187), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2989), 7, + ACTIONS(2974), 7, anon_sym_COMMA, anon_sym_if, anon_sym_async, @@ -113928,8410 +113174,8432 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_and, anon_sym_or, - [103745] = 8, - ACTIONS(2973), 1, - anon_sym_and, - ACTIONS(2975), 1, - anon_sym_or, - ACTIONS(2981), 1, + [103254] = 9, + ACTIONS(3158), 1, anon_sym_as, - ACTIONS(2983), 1, + ACTIONS(3160), 1, anon_sym_if, - ACTIONS(3228), 1, - anon_sym_COMMA, - STATE(2189), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3226), 2, - sym__newline, - anon_sym_SEMI, - [103772] = 8, - ACTIONS(2973), 1, + ACTIONS(3162), 1, anon_sym_and, - ACTIONS(2975), 1, + ACTIONS(3164), 1, anon_sym_or, - ACTIONS(2981), 1, - anon_sym_as, - ACTIONS(2983), 1, - anon_sym_if, - ACTIONS(3179), 1, + ACTIONS(3206), 1, + anon_sym_COLON, + ACTIONS(3210), 1, anon_sym_COMMA, - STATE(2092), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(3212), 1, + anon_sym_RBRACK, + STATE(2297), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3230), 2, - sym__newline, - anon_sym_SEMI, - [103799] = 8, - ACTIONS(2973), 1, + [103283] = 5, + ACTIONS(2990), 1, anon_sym_and, - ACTIONS(2975), 1, + ACTIONS(2992), 1, anon_sym_or, - ACTIONS(2981), 1, - anon_sym_as, - ACTIONS(2983), 1, - anon_sym_if, - ACTIONS(3132), 1, - anon_sym_COMMA, - STATE(2213), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3128), 2, - sym__newline, - anon_sym_SEMI, - [103826] = 5, - ACTIONS(3026), 1, + ACTIONS(3214), 1, anon_sym_as, - ACTIONS(3034), 1, - anon_sym_and, - ACTIONS(3036), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3232), 5, - anon_sym_RPAREN, + ACTIONS(2969), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [103847] = 9, - ACTIONS(3196), 1, + anon_sym_RBRACK, + [103304] = 9, + ACTIONS(3158), 1, anon_sym_as, - ACTIONS(3198), 1, + ACTIONS(3160), 1, anon_sym_if, - ACTIONS(3200), 1, + ACTIONS(3162), 1, anon_sym_and, - ACTIONS(3202), 1, + ACTIONS(3164), 1, anon_sym_or, - ACTIONS(3234), 1, - anon_sym_COMMA, - ACTIONS(3236), 1, + ACTIONS(3206), 1, anon_sym_COLON, - ACTIONS(3238), 1, + ACTIONS(3217), 1, + anon_sym_COMMA, + ACTIONS(3219), 1, anon_sym_RBRACK, - STATE(2474), 1, + STATE(2342), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [103876] = 3, - ACTIONS(3173), 1, + [103333] = 6, + ACTIONS(2939), 1, anon_sym_as, + ACTIONS(2941), 1, + anon_sym_if, + ACTIONS(2951), 1, + anon_sym_and, + ACTIONS(2953), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2989), 7, - anon_sym_RPAREN, + ACTIONS(3221), 4, anon_sym_COMMA, - anon_sym_if, anon_sym_async, anon_sym_for, + anon_sym_RBRACE, + [103356] = 5, + ACTIONS(2990), 1, anon_sym_and, + ACTIONS(2992), 1, anon_sym_or, - [103893] = 5, - ACTIONS(3240), 1, - anon_sym_DOT, - ACTIONS(3242), 1, - anon_sym_EQ, - STATE(1871), 1, - aux_sym_dotted_name_repeat1, + ACTIONS(3192), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3181), 5, - anon_sym_LPAREN, + ACTIONS(2955), 5, anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [103377] = 3, + ACTIONS(3196), 1, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [103914] = 6, - ACTIONS(3006), 1, - anon_sym_as, - ACTIONS(3008), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2961), 7, + anon_sym_COMMA, anon_sym_if, - ACTIONS(3014), 1, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, anon_sym_and, - ACTIONS(3016), 1, anon_sym_or, + [103394] = 4, + ACTIONS(2990), 1, + anon_sym_and, + ACTIONS(3196), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2979), 4, + ACTIONS(2961), 6, anon_sym_COMMA, + anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, - [103937] = 7, - ACTIONS(1487), 1, - anon_sym_except, - ACTIONS(1491), 1, - anon_sym_except_STAR, - ACTIONS(3224), 1, - anon_sym_finally, - STATE(785), 1, - sym_finally_clause, + anon_sym_or, + [103413] = 3, + ACTIONS(3187), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(562), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - STATE(563), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - [103962] = 8, - ACTIONS(2973), 1, + ACTIONS(2974), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_and, - ACTIONS(2975), 1, anon_sym_or, - ACTIONS(2981), 1, + [103430] = 6, + ACTIONS(2998), 1, anon_sym_as, - ACTIONS(2983), 1, + ACTIONS(3000), 1, anon_sym_if, - ACTIONS(3228), 1, - anon_sym_COMMA, - STATE(2218), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(3006), 1, + anon_sym_and, + ACTIONS(3008), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3244), 2, - sym__newline, - anon_sym_SEMI, - [103989] = 9, - ACTIONS(3196), 1, - anon_sym_as, - ACTIONS(3198), 1, - anon_sym_if, - ACTIONS(3200), 1, + ACTIONS(2978), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_async, + anon_sym_for, + [103453] = 8, + ACTIONS(2957), 1, anon_sym_and, - ACTIONS(3202), 1, + ACTIONS(2959), 1, anon_sym_or, - ACTIONS(3236), 1, - anon_sym_COLON, - ACTIONS(3246), 1, + ACTIONS(2965), 1, + anon_sym_as, + ACTIONS(2967), 1, + anon_sym_if, + ACTIONS(3225), 1, anon_sym_COMMA, - ACTIONS(3248), 1, - anon_sym_RBRACK, - STATE(2286), 1, - aux_sym_subscript_repeat1, + STATE(2108), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104018] = 7, + ACTIONS(3223), 2, + sym__newline, + anon_sym_SEMI, + [103480] = 7, ACTIONS(63), 1, anon_sym_AT, - ACTIONS(3250), 1, + ACTIONS(3227), 1, anon_sym_async, - ACTIONS(3252), 1, + ACTIONS(3229), 1, anon_sym_def, - ACTIONS(3254), 1, + ACTIONS(3231), 1, anon_sym_class, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(817), 2, + STATE(784), 2, sym_function_definition, sym_class_definition, - STATE(1954), 2, + STATE(1944), 2, sym_decorator, aux_sym_decorated_definition_repeat1, - [104043] = 6, - ACTIONS(2955), 1, + [103505] = 9, + ACTIONS(3158), 1, anon_sym_as, - ACTIONS(2957), 1, + ACTIONS(3160), 1, anon_sym_if, - ACTIONS(2967), 1, + ACTIONS(3162), 1, anon_sym_and, - ACTIONS(2969), 1, + ACTIONS(3164), 1, anon_sym_or, + ACTIONS(3206), 1, + anon_sym_COLON, + ACTIONS(3233), 1, + anon_sym_COMMA, + ACTIONS(3235), 1, + anon_sym_RBRACK, + STATE(2411), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3256), 4, + [103534] = 8, + ACTIONS(2957), 1, + anon_sym_and, + ACTIONS(2959), 1, + anon_sym_or, + ACTIONS(2965), 1, + anon_sym_as, + ACTIONS(2967), 1, + anon_sym_if, + ACTIONS(3239), 1, anon_sym_COMMA, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [104066] = 3, - ACTIONS(2092), 1, + STATE(2203), 1, + aux_sym_print_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3237), 2, + sym__newline, + anon_sym_SEMI, + [103561] = 6, + ACTIONS(2998), 1, anon_sym_as, + ACTIONS(3000), 1, + anon_sym_if, + ACTIONS(3006), 1, + anon_sym_and, + ACTIONS(3008), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2078), 7, + ACTIONS(2976), 4, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, + [103584] = 8, + ACTIONS(2957), 1, anon_sym_and, + ACTIONS(2959), 1, anon_sym_or, - [104083] = 5, - ACTIONS(2955), 1, + ACTIONS(2965), 1, anon_sym_as, ACTIONS(2967), 1, + anon_sym_if, + ACTIONS(3225), 1, + anon_sym_COMMA, + STATE(2119), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3241), 2, + sym__newline, + anon_sym_SEMI, + [103611] = 5, + ACTIONS(2982), 1, + anon_sym_as, + ACTIONS(2990), 1, anon_sym_and, - ACTIONS(2969), 1, + ACTIONS(2992), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3232), 5, + ACTIONS(3200), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, - [104104] = 9, - ACTIONS(3196), 1, + anon_sym_RBRACK, + [103632] = 9, + ACTIONS(3158), 1, anon_sym_as, - ACTIONS(3198), 1, + ACTIONS(3160), 1, anon_sym_if, - ACTIONS(3200), 1, + ACTIONS(3162), 1, anon_sym_and, - ACTIONS(3202), 1, + ACTIONS(3164), 1, anon_sym_or, - ACTIONS(3236), 1, + ACTIONS(3206), 1, anon_sym_COLON, - ACTIONS(3258), 1, + ACTIONS(3243), 1, anon_sym_COMMA, - ACTIONS(3260), 1, + ACTIONS(3245), 1, anon_sym_RBRACK, - STATE(2463), 1, + STATE(2417), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104133] = 7, - ACTIONS(63), 1, - anon_sym_AT, - ACTIONS(3262), 1, - anon_sym_async, - ACTIONS(3264), 1, - anon_sym_def, - ACTIONS(3266), 1, - anon_sym_class, + [103661] = 7, + ACTIONS(1471), 1, + anon_sym_except, + ACTIONS(1475), 1, + anon_sym_except_STAR, + ACTIONS(3247), 1, + anon_sym_finally, + STATE(742), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(795), 2, - sym_function_definition, - sym_class_definition, - STATE(1954), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - [104158] = 9, - ACTIONS(3196), 1, + STATE(543), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + STATE(544), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + [103686] = 9, + ACTIONS(3158), 1, anon_sym_as, - ACTIONS(3198), 1, + ACTIONS(3160), 1, anon_sym_if, - ACTIONS(3200), 1, + ACTIONS(3162), 1, anon_sym_and, - ACTIONS(3202), 1, + ACTIONS(3164), 1, anon_sym_or, - ACTIONS(3236), 1, + ACTIONS(3206), 1, anon_sym_COLON, - ACTIONS(3268), 1, + ACTIONS(3249), 1, anon_sym_COMMA, - ACTIONS(3270), 1, + ACTIONS(3251), 1, anon_sym_RBRACK, - STATE(2328), 1, + STATE(2422), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104187] = 6, - ACTIONS(3026), 1, + [103715] = 6, + ACTIONS(2982), 1, anon_sym_as, - ACTIONS(3028), 1, + ACTIONS(2984), 1, anon_sym_if, - ACTIONS(3034), 1, + ACTIONS(2990), 1, anon_sym_and, - ACTIONS(3036), 1, + ACTIONS(2992), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2985), 4, - anon_sym_RPAREN, + ACTIONS(2963), 4, anon_sym_COMMA, anon_sym_async, anon_sym_for, - [104210] = 7, - ACTIONS(1541), 1, + anon_sym_RBRACK, + [103738] = 9, + ACTIONS(3158), 1, + anon_sym_as, + ACTIONS(3160), 1, + anon_sym_if, + ACTIONS(3162), 1, + anon_sym_and, + ACTIONS(3164), 1, + anon_sym_or, + ACTIONS(3206), 1, + anon_sym_COLON, + ACTIONS(3253), 1, + anon_sym_COMMA, + ACTIONS(3255), 1, + anon_sym_RBRACK, + STATE(2245), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [103767] = 7, + ACTIONS(1487), 1, anon_sym_except, - ACTIONS(1545), 1, + ACTIONS(1491), 1, anon_sym_except_STAR, - ACTIONS(3272), 1, + ACTIONS(3257), 1, anon_sym_finally, - STATE(803), 1, + STATE(731), 1, sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(590), 2, + STATE(532), 2, sym_except_clause, aux_sym_try_statement_repeat1, - STATE(591), 2, + STATE(534), 2, sym_except_group_clause, aux_sym_try_statement_repeat2, - [104235] = 9, - ACTIONS(3196), 1, - anon_sym_as, - ACTIONS(3198), 1, - anon_sym_if, - ACTIONS(3200), 1, - anon_sym_and, - ACTIONS(3202), 1, - anon_sym_or, - ACTIONS(3236), 1, - anon_sym_COLON, - ACTIONS(3274), 1, - anon_sym_COMMA, - ACTIONS(3276), 1, - anon_sym_RBRACK, - STATE(2364), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, + [103792] = 6, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - [104264] = 5, - ACTIONS(3006), 1, - anon_sym_as, - ACTIONS(3014), 1, + ACTIONS(3264), 1, + anon_sym_BSLASH, + ACTIONS(3259), 2, + sym_string_end, + anon_sym_LBRACE, + STATE(1789), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(3261), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + [103815] = 8, + ACTIONS(2957), 1, anon_sym_and, - ACTIONS(3016), 1, + ACTIONS(2959), 1, anon_sym_or, + ACTIONS(2965), 1, + anon_sym_as, + ACTIONS(2967), 1, + anon_sym_if, + ACTIONS(3181), 1, + anon_sym_COMMA, + STATE(1983), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3232), 5, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [104285] = 5, - ACTIONS(3006), 1, + ACTIONS(3267), 2, + sym__newline, + anon_sym_SEMI, + [103842] = 6, + ACTIONS(2982), 1, anon_sym_as, - ACTIONS(3014), 1, + ACTIONS(2984), 1, + anon_sym_if, + ACTIONS(2990), 1, anon_sym_and, - ACTIONS(3016), 1, + ACTIONS(2992), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3232), 5, + ACTIONS(2978), 4, anon_sym_COMMA, - anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, - [104306] = 9, - ACTIONS(3196), 1, + [103865] = 9, + ACTIONS(3158), 1, anon_sym_as, - ACTIONS(3198), 1, + ACTIONS(3160), 1, anon_sym_if, - ACTIONS(3200), 1, + ACTIONS(3162), 1, anon_sym_and, - ACTIONS(3202), 1, + ACTIONS(3164), 1, anon_sym_or, - ACTIONS(3236), 1, + ACTIONS(3206), 1, anon_sym_COLON, - ACTIONS(3278), 1, + ACTIONS(3269), 1, anon_sym_COMMA, - ACTIONS(3280), 1, + ACTIONS(3271), 1, anon_sym_RBRACK, - STATE(2342), 1, + STATE(2323), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104335] = 5, - ACTIONS(2955), 1, - anon_sym_as, - ACTIONS(2967), 1, - anon_sym_and, - ACTIONS(2969), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3232), 5, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [104356] = 6, - ACTIONS(2973), 1, + [103894] = 8, + ACTIONS(2957), 1, anon_sym_and, - ACTIONS(2975), 1, + ACTIONS(2959), 1, anon_sym_or, - ACTIONS(2981), 1, + ACTIONS(2965), 1, anon_sym_as, - ACTIONS(2983), 1, + ACTIONS(2967), 1, anon_sym_if, + ACTIONS(3181), 1, + anon_sym_COMMA, + STATE(1983), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3204), 4, + ACTIONS(3273), 2, sym__newline, anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - [104379] = 3, - ACTIONS(2092), 1, - anon_sym_as, + [103921] = 7, + ACTIONS(1487), 1, + anon_sym_except, + ACTIONS(1491), 1, + anon_sym_except_STAR, + ACTIONS(3257), 1, + anon_sym_finally, + STATE(760), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2078), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_and, - anon_sym_or, - [104396] = 5, - ACTIONS(3034), 1, + STATE(545), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + STATE(602), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + [103946] = 5, + ACTIONS(2982), 1, + anon_sym_as, + ACTIONS(2990), 1, anon_sym_and, - ACTIONS(3036), 1, + ACTIONS(2992), 1, anon_sym_or, - ACTIONS(3190), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2971), 5, - anon_sym_RPAREN, + ACTIONS(3200), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [104417] = 3, - ACTIONS(3192), 1, + anon_sym_RBRACK, + [103967] = 9, + ACTIONS(3158), 1, anon_sym_as, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2977), 7, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(3160), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, + ACTIONS(3162), 1, anon_sym_and, + ACTIONS(3164), 1, anon_sym_or, - [104434] = 4, - ACTIONS(3034), 1, - anon_sym_and, - ACTIONS(3192), 1, + ACTIONS(3206), 1, + anon_sym_COLON, + ACTIONS(3275), 1, + anon_sym_COMMA, + ACTIONS(3277), 1, + anon_sym_RBRACK, + STATE(2300), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [103996] = 3, + ACTIONS(2076), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2977), 6, + ACTIONS(2062), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_or, - [104453] = 9, - ACTIONS(3196), 1, - anon_sym_as, - ACTIONS(3198), 1, - anon_sym_if, - ACTIONS(3200), 1, anon_sym_and, - ACTIONS(3202), 1, anon_sym_or, - ACTIONS(3236), 1, - anon_sym_COLON, - ACTIONS(3282), 1, - anon_sym_COMMA, - ACTIONS(3284), 1, - anon_sym_RBRACK, - STATE(2397), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [104482] = 5, - ACTIONS(3286), 1, + [104013] = 5, + ACTIONS(3279), 1, anon_sym_DOT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_EQ, - STATE(1840), 1, + STATE(1862), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3181), 5, + ACTIONS(3154), 5, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [104503] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3294), 1, - anon_sym_BSLASH, - ACTIONS(3290), 2, - sym_string_end, - anon_sym_LBRACE, - STATE(1775), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(3292), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - [104526] = 6, - ACTIONS(3026), 1, + [104034] = 8, + ACTIONS(2957), 1, + anon_sym_and, + ACTIONS(2959), 1, + anon_sym_or, + ACTIONS(2965), 1, anon_sym_as, - ACTIONS(3028), 1, + ACTIONS(2967), 1, anon_sym_if, - ACTIONS(3034), 1, + ACTIONS(3181), 1, + anon_sym_COMMA, + STATE(1983), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3152), 2, + sym__newline, + anon_sym_SEMI, + [104061] = 5, + ACTIONS(3006), 1, anon_sym_and, - ACTIONS(3036), 1, + ACTIONS(3008), 1, anon_sym_or, + ACTIONS(3283), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2987), 4, + ACTIONS(2969), 5, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_if, anon_sym_async, anon_sym_for, - [104549] = 9, - ACTIONS(3196), 1, + [104082] = 3, + ACTIONS(2076), 1, anon_sym_as, - ACTIONS(3198), 1, - anon_sym_if, - ACTIONS(3200), 1, - anon_sym_and, - ACTIONS(3202), 1, - anon_sym_or, - ACTIONS(3236), 1, - anon_sym_COLON, - ACTIONS(3296), 1, - anon_sym_COMMA, - ACTIONS(3298), 1, - anon_sym_RBRACK, - STATE(2322), 1, - aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104578] = 8, - ACTIONS(2973), 1, + ACTIONS(2062), 7, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, anon_sym_and, - ACTIONS(2975), 1, anon_sym_or, - ACTIONS(2981), 1, - anon_sym_as, - ACTIONS(2983), 1, - anon_sym_if, - ACTIONS(3179), 1, - anon_sym_COMMA, - STATE(2092), 1, - aux_sym_assert_statement_repeat1, + [104099] = 5, + ACTIONS(3286), 1, + anon_sym_DOT, + ACTIONS(3288), 1, + anon_sym_EQ, + STATE(1847), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3300), 2, - sym__newline, - anon_sym_SEMI, - [104605] = 6, - ACTIONS(3006), 1, + ACTIONS(3154), 5, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3008), 1, - anon_sym_if, - ACTIONS(3014), 1, + anon_sym_PIPE, + anon_sym_RBRACE, + [104120] = 5, + ACTIONS(2982), 1, + anon_sym_as, + ACTIONS(2990), 1, anon_sym_and, - ACTIONS(3016), 1, + ACTIONS(2992), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2985), 4, + ACTIONS(3200), 5, anon_sym_COMMA, + anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, - [104628] = 9, - ACTIONS(3196), 1, - anon_sym_as, - ACTIONS(3198), 1, - anon_sym_if, - ACTIONS(3200), 1, - anon_sym_and, - ACTIONS(3202), 1, - anon_sym_or, - ACTIONS(3236), 1, - anon_sym_COLON, - ACTIONS(3302), 1, - anon_sym_COMMA, - ACTIONS(3304), 1, - anon_sym_RBRACK, - STATE(2409), 1, - aux_sym_subscript_repeat1, + [104141] = 7, + ACTIONS(63), 1, + anon_sym_AT, + ACTIONS(3290), 1, + anon_sym_async, + ACTIONS(3292), 1, + anon_sym_def, + ACTIONS(3294), 1, + anon_sym_class, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104657] = 4, - ACTIONS(327), 1, - sym_string_start, - ACTIONS(3), 2, + STATE(779), 2, + sym_function_definition, + sym_class_definition, + STATE(1944), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + [104166] = 6, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - STATE(993), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3306), 5, - anon_sym_COMMA, + ACTIONS(3300), 1, + anon_sym_BSLASH, + ACTIONS(3296), 2, + sym_string_end, + anon_sym_LBRACE, + STATE(1789), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(3298), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + [104189] = 5, + ACTIONS(3006), 1, + anon_sym_and, + ACTIONS(3008), 1, + anon_sym_or, + ACTIONS(3192), 1, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [104676] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3211), 8, - anon_sym_import, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2955), 5, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [104691] = 9, - ACTIONS(3196), 1, - anon_sym_as, - ACTIONS(3198), 1, anon_sym_if, - ACTIONS(3200), 1, + anon_sym_async, + anon_sym_for, + [104210] = 8, + ACTIONS(2957), 1, anon_sym_and, - ACTIONS(3202), 1, + ACTIONS(2959), 1, anon_sym_or, - ACTIONS(3236), 1, - anon_sym_COLON, - ACTIONS(3308), 1, + ACTIONS(2965), 1, + anon_sym_as, + ACTIONS(2967), 1, + anon_sym_if, + ACTIONS(3181), 1, anon_sym_COMMA, - ACTIONS(3310), 1, - anon_sym_RBRACK, - STATE(2415), 1, - aux_sym_subscript_repeat1, + STATE(1983), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104720] = 5, - ACTIONS(3014), 1, - anon_sym_and, - ACTIONS(3016), 1, - anon_sym_or, - ACTIONS(3312), 1, + ACTIONS(2884), 2, + sym__newline, + anon_sym_SEMI, + [104237] = 3, + ACTIONS(3196), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2991), 5, + ACTIONS(2961), 7, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [104741] = 7, - ACTIONS(1541), 1, - anon_sym_except, - ACTIONS(1545), 1, - anon_sym_except_STAR, - ACTIONS(3272), 1, - anon_sym_finally, - STATE(819), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(594), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - STATE(595), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - [104766] = 5, - ACTIONS(3014), 1, anon_sym_and, - ACTIONS(3016), 1, anon_sym_or, - ACTIONS(3190), 1, + [104254] = 4, + ACTIONS(3006), 1, + anon_sym_and, + ACTIONS(3196), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2971), 5, + ACTIONS(2961), 6, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [104787] = 5, - ACTIONS(2955), 1, + anon_sym_or, + [104273] = 5, + ACTIONS(2998), 1, anon_sym_as, - ACTIONS(2967), 1, + ACTIONS(3006), 1, anon_sym_and, - ACTIONS(2969), 1, + ACTIONS(3008), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3232), 5, + ACTIONS(3200), 5, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, - [104808] = 3, - ACTIONS(3192), 1, + [104294] = 5, + ACTIONS(2939), 1, anon_sym_as, + ACTIONS(2951), 1, + anon_sym_and, + ACTIONS(2953), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2977), 7, + ACTIONS(3200), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, + anon_sym_RBRACE, + [104315] = 9, + ACTIONS(3158), 1, + anon_sym_as, + ACTIONS(3160), 1, + anon_sym_if, + ACTIONS(3162), 1, anon_sym_and, + ACTIONS(3164), 1, anon_sym_or, - [104825] = 4, - ACTIONS(3014), 1, - anon_sym_and, - ACTIONS(3192), 1, - anon_sym_as, + ACTIONS(3206), 1, + anon_sym_COLON, + ACTIONS(3302), 1, + anon_sym_COMMA, + ACTIONS(3304), 1, + anon_sym_RBRACK, + STATE(2368), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2977), 6, + [104344] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3169), 8, + anon_sym_import, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_or, - [104844] = 5, - ACTIONS(3026), 1, + anon_sym_COLON, + anon_sym_PIPE, + [104359] = 5, + ACTIONS(2939), 1, anon_sym_as, - ACTIONS(3034), 1, + ACTIONS(2951), 1, anon_sym_and, - ACTIONS(3036), 1, + ACTIONS(2953), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3232), 5, - anon_sym_RPAREN, + ACTIONS(3200), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [104865] = 8, - ACTIONS(2973), 1, - anon_sym_and, - ACTIONS(2975), 1, - anon_sym_or, - ACTIONS(2981), 1, - anon_sym_as, - ACTIONS(2983), 1, - anon_sym_if, - ACTIONS(3317), 1, + anon_sym_RBRACE, + [104380] = 5, + ACTIONS(3306), 1, + anon_sym_DOT, + ACTIONS(3308), 1, + anon_sym_EQ, + STATE(1840), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3154), 5, + anon_sym_LPAREN, anon_sym_COMMA, - STATE(2185), 1, - aux_sym_print_statement_repeat1, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [104401] = 7, + ACTIONS(1471), 1, + anon_sym_except, + ACTIONS(1475), 1, + anon_sym_except_STAR, + ACTIONS(3247), 1, + anon_sym_finally, + STATE(797), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3315), 2, - sym__newline, - anon_sym_SEMI, - [104892] = 8, - ACTIONS(2973), 1, + STATE(488), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + STATE(489), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + [104426] = 8, + ACTIONS(2957), 1, anon_sym_and, - ACTIONS(2975), 1, + ACTIONS(2959), 1, anon_sym_or, - ACTIONS(2981), 1, + ACTIONS(2965), 1, anon_sym_as, - ACTIONS(2983), 1, + ACTIONS(2967), 1, anon_sym_if, - ACTIONS(3179), 1, + ACTIONS(3110), 1, anon_sym_COMMA, - STATE(2092), 1, + STATE(2137), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3159), 2, + ACTIONS(3106), 2, sym__newline, anon_sym_SEMI, - [104919] = 5, - ACTIONS(3026), 1, + [104453] = 6, + ACTIONS(2998), 1, anon_sym_as, - ACTIONS(3034), 1, + ACTIONS(3000), 1, + anon_sym_if, + ACTIONS(3006), 1, anon_sym_and, - ACTIONS(3036), 1, + ACTIONS(3008), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3232), 5, + ACTIONS(2963), 4, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, anon_sym_async, anon_sym_for, - [104940] = 5, - ACTIONS(3006), 1, + [104476] = 4, + ACTIONS(3310), 1, + anon_sym_DOT, + STATE(1819), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3169), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3014), 1, + anon_sym_PIPE, + [104494] = 5, + ACTIONS(2939), 1, + anon_sym_as, + ACTIONS(2951), 1, anon_sym_and, - ACTIONS(3016), 1, + ACTIONS(2953), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3232), 5, - anon_sym_COMMA, + ACTIONS(3313), 4, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [104961] = 6, - ACTIONS(3026), 1, - anon_sym_as, - ACTIONS(3028), 1, + anon_sym_RBRACE, + [104514] = 6, + ACTIONS(3315), 1, anon_sym_if, - ACTIONS(3034), 1, - anon_sym_and, - ACTIONS(3036), 1, - anon_sym_or, + ACTIONS(3318), 1, + anon_sym_async, + ACTIONS(3321), 1, + anon_sym_for, + ACTIONS(3324), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2979), 4, - anon_sym_RPAREN, - anon_sym_COMMA, + STATE(1821), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [104536] = 8, + ACTIONS(2945), 1, anon_sym_async, + ACTIONS(2947), 1, anon_sym_for, - [104984] = 5, - ACTIONS(3319), 1, - anon_sym_DOT, - ACTIONS(3321), 1, - anon_sym_EQ, - STATE(1838), 1, - aux_sym_dotted_name_repeat1, + ACTIONS(3326), 1, + anon_sym_COMMA, + ACTIONS(3328), 1, + anon_sym_RBRACE, + STATE(1864), 1, + sym_for_in_clause, + STATE(2233), 1, + aux_sym_dictionary_repeat1, + STATE(2717), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3181), 5, - anon_sym_LPAREN, + [104562] = 4, + ACTIONS(781), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1047), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(3202), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [105005] = 5, - ACTIONS(3034), 1, + [104580] = 6, + ACTIONS(2957), 1, anon_sym_and, - ACTIONS(3036), 1, + ACTIONS(2959), 1, anon_sym_or, - ACTIONS(3323), 1, + ACTIONS(2965), 1, anon_sym_as, + ACTIONS(2967), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2991), 5, - anon_sym_RPAREN, + ACTIONS(3330), 3, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_if, + [104602] = 6, + ACTIONS(2986), 1, anon_sym_async, + ACTIONS(2988), 1, anon_sym_for, - [105026] = 8, - ACTIONS(3138), 1, - anon_sym_as, - ACTIONS(3140), 1, + ACTIONS(3332), 1, anon_sym_if, - ACTIONS(3142), 1, - anon_sym_and, - ACTIONS(3144), 1, - anon_sym_or, - ACTIONS(3326), 1, - anon_sym_COMMA, - ACTIONS(3328), 1, - anon_sym_COLON, - STATE(2239), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(3334), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105052] = 8, - ACTIONS(2961), 1, - anon_sym_async, - ACTIONS(2963), 1, - anon_sym_for, - ACTIONS(3330), 1, - anon_sym_COMMA, - ACTIONS(3332), 1, - anon_sym_RBRACE, - STATE(1865), 1, + STATE(1836), 3, sym_for_in_clause, - STATE(2386), 1, - aux_sym_dictionary_repeat1, - STATE(2619), 1, - sym__comprehension_clauses, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [104624] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105078] = 8, - ACTIONS(3159), 1, - anon_sym_RBRACK, - ACTIONS(3196), 1, + ACTIONS(3336), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3202), 5, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3198), 1, anon_sym_if, - ACTIONS(3200), 1, - anon_sym_and, - ACTIONS(3202), 1, - anon_sym_or, - ACTIONS(3334), 1, + anon_sym_COLON, + anon_sym_PIPE, + [104640] = 8, + ACTIONS(2945), 1, + anon_sym_async, + ACTIONS(2947), 1, + anon_sym_for, + ACTIONS(3338), 1, anon_sym_COMMA, - STATE(2477), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(3340), 1, + anon_sym_RBRACE, + STATE(1864), 1, + sym_for_in_clause, + STATE(2283), 1, + aux_sym_dictionary_repeat1, + STATE(2718), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105104] = 4, - ACTIONS(3319), 1, + [104666] = 4, + ACTIONS(3306), 1, anon_sym_DOT, - STATE(1849), 1, + STATE(1840), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3194), 5, + ACTIONS(3154), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [105122] = 8, - ACTIONS(3138), 1, - anon_sym_as, - ACTIONS(3140), 1, + [104684] = 6, + ACTIONS(3002), 1, + anon_sym_async, + ACTIONS(3004), 1, + anon_sym_for, + ACTIONS(3334), 1, + anon_sym_RPAREN, + ACTIONS(3342), 1, anon_sym_if, - ACTIONS(3142), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1842), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [104706] = 6, + ACTIONS(2957), 1, anon_sym_and, - ACTIONS(3144), 1, + ACTIONS(2959), 1, anon_sym_or, - ACTIONS(3326), 1, - anon_sym_COMMA, - ACTIONS(3336), 1, - anon_sym_COLON, - STATE(2239), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(2965), 1, + anon_sym_as, + ACTIONS(2967), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105148] = 4, + ACTIONS(3344), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + [104728] = 4, ACTIONS(3286), 1, anon_sym_DOT, - STATE(1864), 1, + STATE(1847), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3194), 5, + ACTIONS(3154), 5, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [105166] = 4, - ACTIONS(3338), 1, - anon_sym_DOT, - STATE(1841), 1, - aux_sym_dotted_name_repeat1, + anon_sym_RBRACE, + [104746] = 8, + ACTIONS(2945), 1, + anon_sym_async, + ACTIONS(2947), 1, + anon_sym_for, + ACTIONS(3346), 1, + anon_sym_COMMA, + ACTIONS(3348), 1, + anon_sym_RBRACE, + STATE(1864), 1, + sym_for_in_clause, + STATE(2330), 1, + aux_sym_dictionary_repeat1, + STATE(2698), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3211), 5, + [104772] = 8, + ACTIONS(3350), 1, + sym_identifier, + ACTIONS(3352), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [105184] = 4, - ACTIONS(729), 1, - sym_string_start, + ACTIONS(3354), 1, + anon_sym_STAR, + STATE(2067), 1, + sym_dotted_name, + STATE(2147), 1, + sym_aliased_import, + STATE(2517), 1, + sym__import_list, + STATE(2565), 1, + sym_wildcard_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(995), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3306), 4, + [104798] = 8, + ACTIONS(3118), 1, + anon_sym_and, + ACTIONS(3123), 1, + anon_sym_or, + ACTIONS(3148), 1, + anon_sym_as, + ACTIONS(3150), 1, + anon_sym_if, + ACTIONS(3152), 1, anon_sym_RPAREN, + ACTIONS(3356), 1, anon_sym_COMMA, + STATE(2344), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [104824] = 5, + ACTIONS(2982), 1, anon_sym_as, - anon_sym_PIPE, - [105202] = 6, - ACTIONS(3030), 1, + ACTIONS(2990), 1, + anon_sym_and, + ACTIONS(2992), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3313), 4, + anon_sym_if, anon_sym_async, - ACTIONS(3032), 1, anon_sym_for, - ACTIONS(3341), 1, - anon_sym_RPAREN, - ACTIONS(3343), 1, + anon_sym_RBRACK, + [104844] = 6, + ACTIONS(3324), 1, + anon_sym_RBRACK, + ACTIONS(3358), 1, anon_sym_if, + ACTIONS(3361), 1, + anon_sym_async, + ACTIONS(3364), 1, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1874), 3, + STATE(1836), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [105224] = 7, - ACTIONS(3196), 1, - anon_sym_as, - ACTIONS(3198), 1, - anon_sym_if, - ACTIONS(3200), 1, - anon_sym_and, - ACTIONS(3202), 1, - anon_sym_or, - ACTIONS(3236), 1, - anon_sym_COLON, + [104866] = 7, + ACTIONS(2698), 1, + sym_identifier, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3369), 1, + anon_sym___future__, + STATE(2202), 1, + aux_sym_import_prefix_repeat1, + STATE(2447), 1, + sym_import_prefix, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3345), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [105248] = 8, - ACTIONS(2961), 1, + STATE(2705), 2, + sym_relative_import, + sym_dotted_name, + [104890] = 8, + ACTIONS(2945), 1, anon_sym_async, - ACTIONS(2963), 1, + ACTIONS(2947), 1, anon_sym_for, - ACTIONS(3347), 1, + ACTIONS(3371), 1, anon_sym_COMMA, - ACTIONS(3349), 1, + ACTIONS(3373), 1, anon_sym_RBRACE, - STATE(1865), 1, + STATE(1864), 1, sym_for_in_clause, - STATE(2313), 1, + STATE(2450), 1, aux_sym_dictionary_repeat1, - STATE(2621), 1, + STATE(2708), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105274] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3351), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3306), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [105290] = 4, - ACTIONS(704), 1, - sym_string_start, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(984), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3306), 4, + [104916] = 8, + ACTIONS(2945), 1, + anon_sym_async, + ACTIONS(2947), 1, + anon_sym_for, + ACTIONS(3375), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, + ACTIONS(3377), 1, anon_sym_RBRACE, - [105308] = 8, - ACTIONS(3134), 1, - anon_sym_and, - ACTIONS(3136), 1, - anon_sym_or, - ACTIONS(3146), 1, - anon_sym_as, - ACTIONS(3148), 1, - anon_sym_if, - ACTIONS(3159), 1, - anon_sym_RPAREN, - ACTIONS(3353), 1, - anon_sym_COMMA, - STATE(2425), 1, - aux_sym_assert_statement_repeat1, + STATE(1864), 1, + sym_for_in_clause, + STATE(2359), 1, + aux_sym_dictionary_repeat1, + STATE(2695), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105334] = 4, - ACTIONS(3355), 1, + [104942] = 4, + ACTIONS(3306), 1, anon_sym_DOT, - STATE(1849), 1, + STATE(1852), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3211), 5, + ACTIONS(3183), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [105352] = 7, - ACTIONS(3196), 1, + [104960] = 5, + ACTIONS(2998), 1, anon_sym_as, - ACTIONS(3198), 1, - anon_sym_if, - ACTIONS(3200), 1, + ACTIONS(3006), 1, anon_sym_and, - ACTIONS(3202), 1, + ACTIONS(3008), 1, anon_sym_or, - ACTIONS(3358), 1, - anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1425), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [105376] = 6, - ACTIONS(3010), 1, + ACTIONS(3313), 4, + anon_sym_RPAREN, + anon_sym_if, anon_sym_async, - ACTIONS(3012), 1, anon_sym_for, - ACTIONS(3341), 1, - anon_sym_RBRACK, - ACTIONS(3360), 1, + [104980] = 6, + ACTIONS(3324), 1, + anon_sym_RPAREN, + ACTIONS(3379), 1, anon_sym_if, + ACTIONS(3382), 1, + anon_sym_async, + ACTIONS(3385), 1, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1861), 3, + STATE(1842), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [105398] = 5, - ACTIONS(3026), 1, - anon_sym_as, - ACTIONS(3034), 1, - anon_sym_and, - ACTIONS(3036), 1, - anon_sym_or, + [105002] = 6, + ACTIONS(2945), 1, + anon_sym_async, + ACTIONS(2947), 1, + anon_sym_for, + ACTIONS(3334), 1, + anon_sym_RBRACE, + ACTIONS(3388), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3362), 4, - anon_sym_RPAREN, - anon_sym_if, + STATE(1821), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [105024] = 8, + ACTIONS(2945), 1, anon_sym_async, + ACTIONS(2947), 1, anon_sym_for, - [105418] = 7, - ACTIONS(1409), 1, - anon_sym_COLON, - ACTIONS(3196), 1, + ACTIONS(3390), 1, + anon_sym_COMMA, + ACTIONS(3392), 1, + anon_sym_RBRACE, + STATE(1864), 1, + sym_for_in_clause, + STATE(2379), 1, + aux_sym_dictionary_repeat1, + STATE(2681), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [105050] = 8, + ACTIONS(3137), 1, anon_sym_as, - ACTIONS(3198), 1, + ACTIONS(3139), 1, anon_sym_if, - ACTIONS(3200), 1, + ACTIONS(3141), 1, anon_sym_and, - ACTIONS(3202), 1, + ACTIONS(3143), 1, anon_sym_or, + ACTIONS(3394), 1, + anon_sym_COMMA, + ACTIONS(3396), 1, + anon_sym_COLON, + STATE(2374), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1407), 2, + [105076] = 8, + ACTIONS(3010), 1, + anon_sym_RPAREN, + ACTIONS(3012), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [105442] = 4, + ACTIONS(3118), 1, + anon_sym_and, + ACTIONS(3123), 1, + anon_sym_or, + ACTIONS(3148), 1, + anon_sym_as, + ACTIONS(3150), 1, + anon_sym_if, + STATE(2241), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [105102] = 4, ACTIONS(3286), 1, anon_sym_DOT, - STATE(1840), 1, + STATE(1851), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3181), 5, + ACTIONS(3183), 5, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [105460] = 8, - ACTIONS(2961), 1, - anon_sym_async, - ACTIONS(2963), 1, - anon_sym_for, - ACTIONS(3364), 1, - anon_sym_COMMA, - ACTIONS(3366), 1, anon_sym_RBRACE, - STATE(1865), 1, - sym_for_in_clause, - STATE(2421), 1, - aux_sym_dictionary_repeat1, - STATE(2744), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [105486] = 8, - ACTIONS(3138), 1, + [105120] = 7, + ACTIONS(1347), 1, + anon_sym_COLON, + ACTIONS(3158), 1, anon_sym_as, - ACTIONS(3140), 1, + ACTIONS(3160), 1, anon_sym_if, - ACTIONS(3142), 1, + ACTIONS(3162), 1, anon_sym_and, - ACTIONS(3144), 1, + ACTIONS(3164), 1, anon_sym_or, - ACTIONS(3368), 1, - anon_sym_COMMA, - ACTIONS(3370), 1, - anon_sym_COLON, - STATE(2399), 1, - aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105512] = 8, - ACTIONS(3138), 1, + ACTIONS(1345), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [105144] = 8, + ACTIONS(3137), 1, anon_sym_as, - ACTIONS(3140), 1, + ACTIONS(3139), 1, anon_sym_if, - ACTIONS(3142), 1, + ACTIONS(3141), 1, anon_sym_and, - ACTIONS(3144), 1, + ACTIONS(3143), 1, anon_sym_or, - ACTIONS(3326), 1, + ACTIONS(3398), 1, anon_sym_COMMA, - ACTIONS(3372), 1, + ACTIONS(3400), 1, anon_sym_COLON, - STATE(2239), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [105538] = 4, - ACTIONS(819), 1, - sym_string_start, + STATE(2364), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1111), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3306), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [105556] = 8, - ACTIONS(2961), 1, + [105170] = 8, + ACTIONS(2945), 1, anon_sym_async, - ACTIONS(2963), 1, + ACTIONS(2947), 1, anon_sym_for, - ACTIONS(3374), 1, + ACTIONS(3402), 1, anon_sym_COMMA, - ACTIONS(3376), 1, + ACTIONS(3404), 1, anon_sym_RBRACE, - STATE(1865), 1, + STATE(1864), 1, sym_for_in_clause, - STATE(2245), 1, + STATE(2402), 1, aux_sym_dictionary_repeat1, - STATE(2678), 1, + STATE(2601), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105582] = 6, - ACTIONS(2973), 1, - anon_sym_and, - ACTIONS(2975), 1, - anon_sym_or, - ACTIONS(2981), 1, + [105196] = 4, + ACTIONS(3406), 1, + anon_sym_DOT, + STATE(1851), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3169), 5, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(2983), 1, - anon_sym_if, + anon_sym_PIPE, + anon_sym_RBRACE, + [105214] = 4, + ACTIONS(3409), 1, + anon_sym_DOT, + STATE(1852), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3378), 3, - sym__newline, - anon_sym_SEMI, + ACTIONS(3169), 5, + anon_sym_LPAREN, anon_sym_COMMA, - [105604] = 6, - ACTIONS(3010), 1, - anon_sym_async, - ACTIONS(3012), 1, - anon_sym_for, - ACTIONS(3360), 1, - anon_sym_if, - ACTIONS(3380), 1, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [105232] = 8, + ACTIONS(3152), 1, anon_sym_RBRACK, + ACTIONS(3158), 1, + anon_sym_as, + ACTIONS(3160), 1, + anon_sym_if, + ACTIONS(3162), 1, + anon_sym_and, + ACTIONS(3164), 1, + anon_sym_or, + ACTIONS(3412), 1, + anon_sym_COMMA, + STATE(2372), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1883), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [105626] = 8, - ACTIONS(2961), 1, + [105258] = 8, + ACTIONS(2945), 1, anon_sym_async, - ACTIONS(2963), 1, + ACTIONS(2947), 1, anon_sym_for, - ACTIONS(3382), 1, + ACTIONS(3414), 1, anon_sym_COMMA, - ACTIONS(3384), 1, + ACTIONS(3416), 1, anon_sym_RBRACE, - STATE(1865), 1, + STATE(1864), 1, sym_for_in_clause, - STATE(2352), 1, + STATE(2262), 1, aux_sym_dictionary_repeat1, - STATE(2694), 1, + STATE(2587), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105652] = 8, - ACTIONS(3138), 1, + [105284] = 8, + ACTIONS(3137), 1, anon_sym_as, - ACTIONS(3140), 1, + ACTIONS(3139), 1, anon_sym_if, - ACTIONS(3142), 1, + ACTIONS(3141), 1, anon_sym_and, - ACTIONS(3144), 1, + ACTIONS(3143), 1, anon_sym_or, - ACTIONS(3326), 1, + ACTIONS(3418), 1, anon_sym_COMMA, - ACTIONS(3386), 1, + ACTIONS(3420), 1, anon_sym_COLON, - STATE(2239), 1, - aux_sym_assert_statement_repeat1, + STATE(2254), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105678] = 4, - ACTIONS(3388), 1, - anon_sym_DOT, - STATE(1864), 1, - aux_sym_dotted_name_repeat1, + [105310] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3211), 5, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(3424), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3422), 5, anon_sym_COMMA, anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_PIPE, - [105696] = 6, - ACTIONS(2961), 1, + [105326] = 6, + ACTIONS(3002), 1, anon_sym_async, - ACTIONS(2963), 1, + ACTIONS(3004), 1, anon_sym_for, - ACTIONS(3341), 1, - anon_sym_RBRACE, - ACTIONS(3391), 1, + ACTIONS(3342), 1, anon_sym_if, + ACTIONS(3426), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1872), 3, + STATE(1829), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [105718] = 8, - ACTIONS(2961), 1, - anon_sym_async, - ACTIONS(2963), 1, - anon_sym_for, - ACTIONS(3393), 1, - anon_sym_COMMA, - ACTIONS(3395), 1, - anon_sym_RBRACE, - STATE(1865), 1, - sym_for_in_clause, - STATE(2271), 1, - aux_sym_dictionary_repeat1, - STATE(2728), 1, - sym__comprehension_clauses, + [105348] = 4, + ACTIONS(713), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105744] = 6, - ACTIONS(3397), 1, + STATE(1006), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(3202), 4, anon_sym_RPAREN, - ACTIONS(3399), 1, - anon_sym_if, - ACTIONS(3402), 1, - anon_sym_async, - ACTIONS(3405), 1, - anon_sym_for, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1867), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [105766] = 8, - ACTIONS(3138), 1, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3140), 1, + anon_sym_PIPE, + [105366] = 8, + ACTIONS(3137), 1, + anon_sym_as, + ACTIONS(3139), 1, anon_sym_if, - ACTIONS(3142), 1, + ACTIONS(3141), 1, anon_sym_and, - ACTIONS(3144), 1, + ACTIONS(3143), 1, anon_sym_or, - ACTIONS(3408), 1, + ACTIONS(3394), 1, anon_sym_COMMA, - ACTIONS(3410), 1, + ACTIONS(3428), 1, anon_sym_COLON, - STATE(2483), 1, - aux_sym_match_statement_repeat1, + STATE(2374), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105792] = 3, + [105392] = 7, + ACTIONS(3158), 1, + anon_sym_as, + ACTIONS(3160), 1, + anon_sym_if, + ACTIONS(3162), 1, + anon_sym_and, + ACTIONS(3164), 1, + anon_sym_or, + ACTIONS(3206), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3414), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3412), 5, + ACTIONS(3430), 2, anon_sym_COMMA, + anon_sym_RBRACK, + [105416] = 8, + ACTIONS(3137), 1, anon_sym_as, + ACTIONS(3139), 1, anon_sym_if, + ACTIONS(3141), 1, + anon_sym_and, + ACTIONS(3143), 1, + anon_sym_or, + ACTIONS(3394), 1, + anon_sym_COMMA, + ACTIONS(3432), 1, anon_sym_COLON, - anon_sym_PIPE, - [105808] = 4, - ACTIONS(3319), 1, - anon_sym_DOT, - STATE(1838), 1, - aux_sym_dotted_name_repeat1, + STATE(2374), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3181), 5, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [105826] = 4, - ACTIONS(3240), 1, + [105442] = 4, + ACTIONS(3279), 1, anon_sym_DOT, - STATE(1841), 1, + STATE(1819), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3194), 5, + ACTIONS(3183), 5, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [105844] = 6, - ACTIONS(2961), 1, + [105460] = 8, + ACTIONS(3137), 1, + anon_sym_as, + ACTIONS(3139), 1, + anon_sym_if, + ACTIONS(3141), 1, + anon_sym_and, + ACTIONS(3143), 1, + anon_sym_or, + ACTIONS(3394), 1, + anon_sym_COMMA, + ACTIONS(3434), 1, + anon_sym_COLON, + STATE(2374), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [105486] = 6, + ACTIONS(2945), 1, anon_sym_async, - ACTIONS(2963), 1, + ACTIONS(2947), 1, anon_sym_for, - ACTIONS(3380), 1, - anon_sym_RBRACE, - ACTIONS(3391), 1, + ACTIONS(3388), 1, anon_sym_if, + ACTIONS(3426), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1875), 3, + STATE(1843), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [105866] = 7, - ACTIONS(2714), 1, - sym_identifier, - ACTIONS(3416), 1, - anon_sym_DOT, - ACTIONS(3418), 1, - anon_sym___future__, - STATE(2205), 1, - aux_sym_import_prefix_repeat1, - STATE(2363), 1, - sym_import_prefix, + [105508] = 7, + ACTIONS(3158), 1, + anon_sym_as, + ACTIONS(3160), 1, + anon_sym_if, + ACTIONS(3162), 1, + anon_sym_and, + ACTIONS(3164), 1, + anon_sym_or, + ACTIONS(3436), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2740), 2, - sym_relative_import, - sym_dotted_name, - [105890] = 6, - ACTIONS(3030), 1, + ACTIONS(1427), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [105532] = 6, + ACTIONS(2986), 1, anon_sym_async, - ACTIONS(3032), 1, + ACTIONS(2988), 1, anon_sym_for, - ACTIONS(3343), 1, + ACTIONS(3332), 1, anon_sym_if, - ACTIONS(3380), 1, - anon_sym_RPAREN, + ACTIONS(3426), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1867), 3, + STATE(1825), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [105912] = 6, - ACTIONS(3397), 1, - anon_sym_RBRACE, - ACTIONS(3420), 1, - anon_sym_if, - ACTIONS(3423), 1, - anon_sym_async, - ACTIONS(3426), 1, - anon_sym_for, + [105554] = 4, + ACTIONS(691), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1875), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [105934] = 4, - ACTIONS(3240), 1, + STATE(956), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(3202), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [105572] = 4, + ACTIONS(3279), 1, anon_sym_DOT, - STATE(1871), 1, + STATE(1862), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3181), 5, + ACTIONS(3154), 5, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [105952] = 6, - ACTIONS(2973), 1, - anon_sym_and, - ACTIONS(2975), 1, - anon_sym_or, - ACTIONS(2981), 1, - anon_sym_as, - ACTIONS(2983), 1, - anon_sym_if, + [105590] = 4, + ACTIONS(3438), 1, + anon_sym_COMMA, + STATE(1869), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3429), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - [105974] = 8, - ACTIONS(2961), 1, - anon_sym_async, - ACTIONS(2963), 1, - anon_sym_for, - ACTIONS(3431), 1, - anon_sym_COMMA, - ACTIONS(3433), 1, + ACTIONS(2859), 4, + anon_sym_COLON, + anon_sym_EQ, anon_sym_RBRACE, - STATE(1865), 1, - sym_for_in_clause, - STATE(2462), 1, - aux_sym_dictionary_repeat1, - STATE(2741), 1, - sym__comprehension_clauses, + sym_type_conversion, + [105607] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106000] = 8, - ACTIONS(3038), 1, - anon_sym_RPAREN, - ACTIONS(3040), 1, + ACTIONS(3441), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3202), 4, anon_sym_COMMA, - ACTIONS(3134), 1, - anon_sym_and, - ACTIONS(3136), 1, - anon_sym_or, - ACTIONS(3146), 1, anon_sym_as, - ACTIONS(3148), 1, - anon_sym_if, - STATE(2335), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [106026] = 5, - ACTIONS(2955), 1, + anon_sym_RBRACK, + anon_sym_PIPE, + [105622] = 6, + ACTIONS(3127), 1, anon_sym_as, - ACTIONS(2967), 1, + ACTIONS(3129), 1, + anon_sym_if, + ACTIONS(3133), 1, anon_sym_and, - ACTIONS(2969), 1, + ACTIONS(3135), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3362), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, + ACTIONS(3221), 2, + anon_sym_COMMA, anon_sym_RBRACE, - [106046] = 8, - ACTIONS(3435), 1, - sym_identifier, - ACTIONS(3437), 1, - anon_sym_LPAREN, - ACTIONS(3439), 1, - anon_sym_STAR, - STATE(2077), 1, - sym_dotted_name, - STATE(2149), 1, - sym_aliased_import, - STATE(2530), 1, - sym__import_list, - STATE(2532), 1, - sym_wildcard_import, + [105643] = 6, + ACTIONS(3443), 1, + anon_sym_DOT, + ACTIONS(3447), 1, + anon_sym_COLON, + ACTIONS(3449), 1, + anon_sym_EQ, + ACTIONS(3451), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106072] = 5, - ACTIONS(3006), 1, + ACTIONS(3445), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [105664] = 6, + ACTIONS(3158), 1, anon_sym_as, - ACTIONS(3014), 1, + ACTIONS(3160), 1, + anon_sym_if, + ACTIONS(3162), 1, anon_sym_and, - ACTIONS(3016), 1, + ACTIONS(3164), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3362), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [106092] = 6, - ACTIONS(3397), 1, + ACTIONS(3453), 2, + anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(3441), 1, + [105685] = 6, + ACTIONS(3118), 1, + anon_sym_and, + ACTIONS(3123), 1, + anon_sym_or, + ACTIONS(3148), 1, + anon_sym_as, + ACTIONS(3150), 1, anon_sym_if, - ACTIONS(3444), 1, - anon_sym_async, - ACTIONS(3447), 1, - anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1883), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [106114] = 8, - ACTIONS(2961), 1, - anon_sym_async, - ACTIONS(2963), 1, - anon_sym_for, - ACTIONS(3450), 1, + ACTIONS(3455), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3452), 1, - anon_sym_RBRACE, - STATE(1865), 1, - sym_for_in_clause, - STATE(2319), 1, - aux_sym_dictionary_repeat1, - STATE(2673), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [106140] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3456), 1, - anon_sym_BSLASH, - ACTIONS(3454), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [106157] = 4, - ACTIONS(3458), 1, + [105706] = 4, + ACTIONS(3457), 1, anon_sym_COMMA, - STATE(1917), 1, + STATE(1926), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1293), 4, + ACTIONS(1267), 4, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [106174] = 4, - ACTIONS(3460), 1, - anon_sym_COMMA, - STATE(1964), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3462), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [106191] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3464), 6, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [106204] = 2, + [105723] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1650), 6, + ACTIONS(3108), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [106217] = 2, + [105736] = 6, + ACTIONS(2957), 1, + anon_sym_and, + ACTIONS(2959), 1, + anon_sym_or, + ACTIONS(2965), 1, + anon_sym_as, + ACTIONS(2967), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3466), 6, + ACTIONS(3459), 2, sym__newline, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [106230] = 4, - ACTIONS(3468), 1, - anon_sym_COMMA, - STATE(1928), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3462), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [106247] = 6, - ACTIONS(3155), 1, - anon_sym_as, - ACTIONS(3157), 1, - anon_sym_if, - ACTIONS(3161), 1, + [105757] = 6, + ACTIONS(3118), 1, anon_sym_and, - ACTIONS(3163), 1, + ACTIONS(3123), 1, anon_sym_or, + ACTIONS(3148), 1, + anon_sym_as, + ACTIONS(3150), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3470), 2, + ACTIONS(3461), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACE, - [106268] = 4, - ACTIONS(3474), 1, - anon_sym_PIPE, - STATE(1959), 1, - aux_sym_union_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3472), 4, + [105778] = 4, + ACTIONS(3465), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [106285] = 2, + STATE(1879), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3130), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [106298] = 2, + ACTIONS(3463), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [105795] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3211), 6, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(3468), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3422), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [106311] = 2, - ACTIONS(3), 2, + [105810] = 4, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3476), 6, + ACTIONS(3472), 1, + anon_sym_BSLASH, + ACTIONS(3470), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [105827] = 7, + ACTIONS(3474), 1, anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(3476), 1, anon_sym_COMMA, + ACTIONS(3478), 1, anon_sym_COLON, - anon_sym_EQ, + ACTIONS(3480), 1, + anon_sym_RBRACK, + ACTIONS(3482), 1, anon_sym_PIPE, - [106324] = 6, - ACTIONS(3134), 1, + STATE(2248), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [105850] = 6, + ACTIONS(2957), 1, anon_sym_and, - ACTIONS(3136), 1, + ACTIONS(2959), 1, anon_sym_or, - ACTIONS(3146), 1, + ACTIONS(2965), 1, anon_sym_as, - ACTIONS(3148), 1, + ACTIONS(2967), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3470), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [106345] = 4, - ACTIONS(3478), 1, - anon_sym_DOT, - STATE(1946), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3194), 4, + ACTIONS(3185), 2, sym__newline, anon_sym_SEMI, - anon_sym_COMMA, + [105871] = 6, + ACTIONS(3137), 1, anon_sym_as, - [106362] = 4, - ACTIONS(3482), 1, - anon_sym_COMMA, - STATE(1977), 1, - aux_sym_for_in_clause_repeat1, + ACTIONS(3139), 1, + anon_sym_if, + ACTIONS(3141), 1, + anon_sym_and, + ACTIONS(3143), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3480), 4, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [106379] = 4, - ACTIONS(3484), 1, + ACTIONS(3484), 2, anon_sym_COMMA, - STATE(1887), 1, - aux_sym_for_in_clause_repeat1, + anon_sym_COLON, + [105892] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3486), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [106396] = 4, + ACTIONS(3486), 6, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [105905] = 4, ACTIONS(3488), 1, anon_sym_COMMA, - STATE(1891), 1, + STATE(1894), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3486), 4, + ACTIONS(3490), 4, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [106413] = 6, - ACTIONS(3155), 1, - anon_sym_as, - ACTIONS(3157), 1, - anon_sym_if, - ACTIONS(3161), 1, - anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3490), 2, - anon_sym_COMMA, anon_sym_RBRACE, - [106434] = 3, + [105922] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3492), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3306), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [106449] = 7, - ACTIONS(3494), 1, + ACTIONS(3492), 6, anon_sym_DOT, - ACTIONS(3496), 1, + anon_sym_LPAREN, anon_sym_COMMA, - ACTIONS(3498), 1, anon_sym_COLON, - ACTIONS(3500), 1, - anon_sym_RBRACK, - ACTIONS(3502), 1, + anon_sym_EQ, anon_sym_PIPE, - STATE(2480), 1, - aux_sym_type_parameter_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [106472] = 6, - ACTIONS(3155), 1, + [105935] = 6, + ACTIONS(3137), 1, anon_sym_as, - ACTIONS(3157), 1, + ACTIONS(3139), 1, anon_sym_if, - ACTIONS(3161), 1, + ACTIONS(3141), 1, anon_sym_and, - ACTIONS(3163), 1, + ACTIONS(3143), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3504), 2, + ACTIONS(3194), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [106493] = 4, - ACTIONS(3478), 1, - anon_sym_DOT, - STATE(1898), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3181), 4, - sym__newline, - anon_sym_SEMI, + anon_sym_COLON, + [105956] = 4, + ACTIONS(3494), 1, anon_sym_COMMA, - anon_sym_as, - [106510] = 6, - ACTIONS(3134), 1, - anon_sym_and, - ACTIONS(3136), 1, - anon_sym_or, - ACTIONS(3146), 1, - anon_sym_as, - ACTIONS(3148), 1, - anon_sym_if, + STATE(1900), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3209), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [106531] = 3, - ACTIONS(3506), 1, - anon_sym_LPAREN, + ACTIONS(3496), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [105973] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3306), 5, + ACTIONS(3498), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3422), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PIPE, - [106546] = 6, - ACTIONS(3196), 1, - anon_sym_as, - ACTIONS(3198), 1, - anon_sym_if, - ACTIONS(3200), 1, + [105988] = 6, + ACTIONS(3118), 1, anon_sym_and, - ACTIONS(3202), 1, + ACTIONS(3123), 1, anon_sym_or, + ACTIONS(3148), 1, + anon_sym_as, + ACTIONS(3150), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3508), 2, + ACTIONS(3500), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [106567] = 6, - ACTIONS(3134), 1, - anon_sym_and, - ACTIONS(3136), 1, - anon_sym_or, - ACTIONS(3146), 1, - anon_sym_as, - ACTIONS(3148), 1, - anon_sym_if, + [106009] = 4, + ACTIONS(3504), 1, + anon_sym_PIPE, + STATE(1947), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3510), 2, - anon_sym_RPAREN, + ACTIONS(3502), 4, anon_sym_COMMA, - [106588] = 6, - ACTIONS(3138), 1, anon_sym_as, - ACTIONS(3140), 1, anon_sym_if, - ACTIONS(3142), 1, - anon_sym_and, - ACTIONS(3144), 1, - anon_sym_or, + anon_sym_COLON, + [106026] = 4, + ACTIONS(3506), 1, + anon_sym_DOT, + STATE(1966), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3204), 2, - anon_sym_COMMA, - anon_sym_COLON, - [106609] = 7, - ACTIONS(3512), 1, + ACTIONS(3154), 4, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(3514), 1, anon_sym_as, - ACTIONS(3516), 1, - anon_sym_if, - ACTIONS(3518), 1, - anon_sym_COLON, - STATE(2065), 1, - aux_sym_case_clause_repeat1, - STATE(2779), 1, - sym_if_clause, + [106043] = 4, + ACTIONS(3508), 1, + anon_sym_COMMA, + STATE(1900), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106632] = 4, - ACTIONS(3474), 1, - anon_sym_PIPE, - STATE(1959), 1, - aux_sym_union_pattern_repeat1, + ACTIONS(3510), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [106060] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3520), 4, + ACTIONS(1666), 6, + anon_sym_DOT, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - [106649] = 6, - ACTIONS(3196), 1, - anon_sym_as, - ACTIONS(3198), 1, - anon_sym_if, - ACTIONS(3200), 1, - anon_sym_and, - ACTIONS(3202), 1, - anon_sym_or, + anon_sym_EQ, + anon_sym_PIPE, + [106073] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1443), 2, + ACTIONS(3512), 6, + anon_sym_DOT, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [106670] = 4, - ACTIONS(3142), 1, - anon_sym_and, - ACTIONS(3144), 1, - anon_sym_or, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [106086] = 4, + ACTIONS(3516), 1, + anon_sym_COMMA, + STATE(1932), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2971), 4, - anon_sym_COMMA, + ACTIONS(3514), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [106103] = 6, + ACTIONS(3137), 1, anon_sym_as, + ACTIONS(3139), 1, anon_sym_if, - anon_sym_COLON, - [106687] = 6, - ACTIONS(3134), 1, + ACTIONS(3141), 1, anon_sym_and, - ACTIONS(3136), 1, + ACTIONS(3143), 1, anon_sym_or, - ACTIONS(3146), 1, - anon_sym_as, - ACTIONS(3148), 1, - anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3522), 2, - anon_sym_RPAREN, + ACTIONS(3455), 2, anon_sym_COMMA, - [106708] = 4, + anon_sym_COLON, + [106124] = 6, + ACTIONS(3520), 1, + anon_sym_DOT, + ACTIONS(3522), 1, + anon_sym_COLON, ACTIONS(3524), 1, + anon_sym_EQ, + ACTIONS(3526), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3518), 2, + sym__newline, + anon_sym_SEMI, + [106145] = 4, + ACTIONS(3528), 1, anon_sym_COMMA, - STATE(1917), 1, - aux_sym_assert_statement_repeat1, + STATE(1900), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3204), 4, - anon_sym_COLON, - anon_sym_EQ, + ACTIONS(3463), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, - sym_type_conversion, - [106725] = 2, + [106162] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1650), 6, + ACTIONS(1666), 6, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [106738] = 6, - ACTIONS(3138), 1, + [106175] = 6, + ACTIONS(3137), 1, anon_sym_as, - ACTIONS(3140), 1, + ACTIONS(3139), 1, anon_sym_if, - ACTIONS(3142), 1, + ACTIONS(3141), 1, anon_sym_and, - ACTIONS(3144), 1, + ACTIONS(3143), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3527), 2, + ACTIONS(3531), 2, anon_sym_COMMA, anon_sym_COLON, - [106759] = 3, + [106196] = 3, + ACTIONS(3533), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3529), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3412), 4, - anon_sym_RPAREN, + ACTIONS(3202), 5, anon_sym_COMMA, anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_PIPE, - [106774] = 6, - ACTIONS(3134), 1, - anon_sym_and, - ACTIONS(3136), 1, - anon_sym_or, - ACTIONS(3146), 1, + [106211] = 6, + ACTIONS(3137), 1, anon_sym_as, - ACTIONS(3148), 1, + ACTIONS(3139), 1, anon_sym_if, + ACTIONS(3141), 1, + anon_sym_and, + ACTIONS(3143), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3531), 2, - anon_sym_RPAREN, + ACTIONS(3535), 2, anon_sym_COMMA, - [106795] = 7, - ACTIONS(3494), 1, - anon_sym_DOT, - ACTIONS(3498), 1, anon_sym_COLON, - ACTIONS(3502), 1, - anon_sym_PIPE, - ACTIONS(3533), 1, - anon_sym_COMMA, - ACTIONS(3535), 1, - anon_sym_RBRACK, - STATE(2372), 1, - aux_sym_type_parameter_repeat1, + [106232] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106818] = 2, + ACTIONS(3486), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [106245] = 6, + ACTIONS(3118), 1, + anon_sym_and, + ACTIONS(3123), 1, + anon_sym_or, + ACTIONS(3148), 1, + anon_sym_as, + ACTIONS(3150), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3211), 6, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(3185), 2, + anon_sym_RPAREN, anon_sym_COMMA, + [106266] = 6, + ACTIONS(3118), 1, + anon_sym_and, + ACTIONS(3123), 1, + anon_sym_or, + ACTIONS(3148), 1, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [106831] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3539), 1, - anon_sym_BSLASH, - ACTIONS(3537), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [106848] = 2, + ACTIONS(3150), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3466), 6, - anon_sym_DOT, + ACTIONS(3537), 2, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [106861] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3543), 1, - anon_sym_BSLASH, - ACTIONS(3541), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [106878] = 6, - ACTIONS(2973), 1, - anon_sym_and, - ACTIONS(2975), 1, - anon_sym_or, - ACTIONS(2981), 1, + [106287] = 6, + ACTIONS(3158), 1, anon_sym_as, - ACTIONS(2983), 1, + ACTIONS(3160), 1, anon_sym_if, + ACTIONS(3162), 1, + anon_sym_and, + ACTIONS(3164), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3545), 2, - sym__newline, - anon_sym_SEMI, - [106899] = 4, - ACTIONS(3547), 1, + ACTIONS(1429), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [106308] = 4, + ACTIONS(3539), 1, anon_sym_COMMA, - STATE(1928), 1, + STATE(1879), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3550), 4, + ACTIONS(3510), 4, + anon_sym_RPAREN, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [106916] = 6, - ACTIONS(3196), 1, + [106325] = 6, + ACTIONS(3158), 1, anon_sym_as, - ACTIONS(3198), 1, + ACTIONS(3160), 1, anon_sym_if, - ACTIONS(3200), 1, + ACTIONS(3162), 1, anon_sym_and, - ACTIONS(3202), 1, + ACTIONS(3164), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3209), 2, + ACTIONS(3194), 2, anon_sym_COMMA, anon_sym_RBRACK, - [106937] = 6, - ACTIONS(3138), 1, - anon_sym_as, - ACTIONS(3140), 1, - anon_sym_if, - ACTIONS(3142), 1, + [106346] = 6, + ACTIONS(3118), 1, anon_sym_and, - ACTIONS(3144), 1, + ACTIONS(3123), 1, anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3552), 2, - anon_sym_COMMA, - anon_sym_COLON, - [106958] = 6, - ACTIONS(3196), 1, + ACTIONS(3148), 1, anon_sym_as, - ACTIONS(3198), 1, + ACTIONS(3150), 1, anon_sym_if, - ACTIONS(3200), 1, - anon_sym_and, - ACTIONS(3202), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1425), 2, + ACTIONS(3541), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [106979] = 2, + [106367] = 7, + ACTIONS(3543), 1, + anon_sym_COMMA, + ACTIONS(3545), 1, + anon_sym_as, + ACTIONS(3547), 1, + anon_sym_if, + ACTIONS(3549), 1, + anon_sym_COLON, + STATE(1993), 1, + aux_sym_case_clause_repeat1, + STATE(2709), 1, + sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3476), 6, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [106992] = 4, - ACTIONS(3554), 1, + [106390] = 4, + ACTIONS(3551), 1, anon_sym_COMMA, - STATE(1951), 1, + STATE(1869), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(959), 4, + ACTIONS(957), 4, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [107009] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3558), 1, - anon_sym_BSLASH, - ACTIONS(3556), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [107026] = 4, - ACTIONS(3560), 1, - anon_sym_COMMA, - STATE(1964), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3562), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [107043] = 6, - ACTIONS(3134), 1, + [106407] = 6, + ACTIONS(3118), 1, anon_sym_and, - ACTIONS(3136), 1, + ACTIONS(3123), 1, anon_sym_or, - ACTIONS(3146), 1, - anon_sym_as, ACTIONS(3148), 1, + anon_sym_as, + ACTIONS(3150), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3490), 2, + ACTIONS(3553), 2, anon_sym_RPAREN, anon_sym_COMMA, - [107064] = 3, + [106428] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3564), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3306), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, + ACTIONS(3555), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - [107079] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3568), 1, - anon_sym_BSLASH, - ACTIONS(3566), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [107096] = 3, + [106441] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3570), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3412), 4, + ACTIONS(3169), 6, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [107111] = 4, + anon_sym_RBRACE, + [106454] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3574), 1, + ACTIONS(3559), 1, anon_sym_BSLASH, - ACTIONS(3572), 5, + ACTIONS(3557), 5, sym__string_content, sym_escape_interpolation, sym_string_end, anon_sym_LBRACE, sym_escape_sequence, - [107128] = 6, - ACTIONS(3138), 1, - anon_sym_as, - ACTIONS(3140), 1, - anon_sym_if, - ACTIONS(3142), 1, - anon_sym_and, - ACTIONS(3144), 1, - anon_sym_or, + [106471] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3576), 2, - anon_sym_COMMA, + ACTIONS(3512), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_COLON, - [107149] = 3, - STATE(1959), 1, - aux_sym_union_pattern_repeat1, + anon_sym_EQ, + anon_sym_PIPE, + [106484] = 4, + ACTIONS(3561), 1, + anon_sym_COMMA, + STATE(1909), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3578), 5, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(3490), 4, + anon_sym_RPAREN, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [107164] = 4, - ACTIONS(3580), 1, + anon_sym_async, + anon_sym_for, + [106501] = 4, + ACTIONS(3504), 1, anon_sym_PIPE, - STATE(1943), 1, + STATE(1947), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3578), 4, + ACTIONS(3563), 4, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - [107181] = 6, - ACTIONS(3196), 1, + [106518] = 6, + ACTIONS(3158), 1, anon_sym_as, - ACTIONS(3198), 1, + ACTIONS(3160), 1, anon_sym_if, - ACTIONS(3200), 1, + ACTIONS(3162), 1, anon_sym_and, - ACTIONS(3202), 1, + ACTIONS(3164), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3490), 2, + ACTIONS(3500), 2, anon_sym_COMMA, anon_sym_RBRACK, - [107202] = 2, + [106539] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3130), 6, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [107215] = 4, - ACTIONS(3583), 1, + ACTIONS(3169), 6, anon_sym_DOT, - STATE(1946), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3211), 4, - sym__newline, - anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, - [107232] = 7, - ACTIONS(3140), 1, + anon_sym_RBRACK, + anon_sym_PIPE, + [106552] = 7, + ACTIONS(3139), 1, anon_sym_if, - ACTIONS(3142), 1, + ACTIONS(3141), 1, anon_sym_and, - ACTIONS(3144), 1, + ACTIONS(3143), 1, anon_sym_or, - ACTIONS(3586), 1, + ACTIONS(3565), 1, anon_sym_COMMA, - ACTIONS(3588), 1, + ACTIONS(3567), 1, anon_sym_as, - ACTIONS(3590), 1, + ACTIONS(3569), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107255] = 6, - ACTIONS(3134), 1, + [106575] = 6, + ACTIONS(3118), 1, anon_sym_and, - ACTIONS(3136), 1, + ACTIONS(3123), 1, anon_sym_or, - ACTIONS(3146), 1, - anon_sym_as, ACTIONS(3148), 1, + anon_sym_as, + ACTIONS(3150), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3592), 2, + ACTIONS(3531), 2, anon_sym_RPAREN, anon_sym_COMMA, - [107276] = 6, - ACTIONS(3134), 1, - anon_sym_and, - ACTIONS(3136), 1, - anon_sym_or, - ACTIONS(3146), 1, + [106596] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3573), 1, + anon_sym_BSLASH, + ACTIONS(3571), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [106613] = 4, + ACTIONS(3575), 1, + anon_sym_COMMA, + STATE(1926), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3194), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [106630] = 6, + ACTIONS(3158), 1, anon_sym_as, - ACTIONS(3148), 1, + ACTIONS(3160), 1, anon_sym_if, + ACTIONS(3162), 1, + anon_sym_and, + ACTIONS(3164), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3204), 2, - anon_sym_RPAREN, + ACTIONS(1427), 2, anon_sym_COMMA, - [107297] = 2, + anon_sym_RBRACK, + [106651] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3594), 6, - sym__newline, - anon_sym_SEMI, + ACTIONS(3578), 6, anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [107310] = 4, - ACTIONS(3596), 1, - anon_sym_COMMA, - STATE(1951), 1, - aux_sym__patterns_repeat1, + [106664] = 5, + ACTIONS(3443), 1, + anon_sym_DOT, + ACTIONS(3447), 1, + anon_sym_COLON, + ACTIONS(3451), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2875), 4, - anon_sym_COLON, + ACTIONS(3580), 3, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [107327] = 2, + [106683] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3599), 6, + ACTIONS(3582), 6, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [107340] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3601), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3306), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, + [106696] = 7, + ACTIONS(3474), 1, + anon_sym_DOT, + ACTIONS(3478), 1, + anon_sym_COLON, + ACTIONS(3482), 1, anon_sym_PIPE, - [107355] = 4, - ACTIONS(3605), 1, - anon_sym_AT, + ACTIONS(3584), 1, + anon_sym_COMMA, + ACTIONS(3586), 1, + anon_sym_RBRACK, + STATE(2299), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1954), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - ACTIONS(3603), 3, - anon_sym_async, - anon_sym_def, - anon_sym_class, - [107372] = 4, - ACTIONS(3608), 1, + [106719] = 4, + ACTIONS(3588), 1, anon_sym_COMMA, - STATE(1961), 1, + STATE(1879), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3462), 4, + ACTIONS(3496), 4, anon_sym_RPAREN, anon_sym_if, anon_sym_async, anon_sym_for, - [107389] = 6, - ACTIONS(3196), 1, - anon_sym_as, - ACTIONS(3198), 1, - anon_sym_if, - ACTIONS(3200), 1, - anon_sym_and, - ACTIONS(3202), 1, - anon_sym_or, + [106736] = 4, + ACTIONS(3590), 1, + anon_sym_COMMA, + STATE(1941), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3204), 2, - anon_sym_COMMA, + ACTIONS(3510), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, - [107410] = 5, - ACTIONS(3610), 1, - anon_sym_DOT, - ACTIONS(3614), 1, - anon_sym_COLON, - ACTIONS(3616), 1, - anon_sym_PIPE, + [106753] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3612), 3, + ACTIONS(3592), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3202), 4, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_EQ, - [107429] = 7, - ACTIONS(3494), 1, - anon_sym_DOT, - ACTIONS(3498), 1, - anon_sym_COLON, - ACTIONS(3502), 1, + anon_sym_as, anon_sym_PIPE, - ACTIONS(3618), 1, + [106768] = 4, + ACTIONS(3594), 1, anon_sym_COMMA, - ACTIONS(3620), 1, - anon_sym_RBRACK, - STATE(2384), 1, - aux_sym_type_parameter_repeat1, + STATE(1889), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107452] = 4, - ACTIONS(3474), 1, - anon_sym_PIPE, - STATE(1943), 1, + ACTIONS(3514), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [106785] = 3, + STATE(1947), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3622), 4, + ACTIONS(3596), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - [107469] = 2, + anon_sym_PIPE, + [106800] = 4, + ACTIONS(3598), 1, + anon_sym_PIPE, + STATE(1937), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3624), 6, - anon_sym_DOT, - anon_sym_RPAREN, + ACTIONS(3596), 4, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [107482] = 4, - ACTIONS(3626), 1, - anon_sym_COMMA, - STATE(1961), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3550), 4, - anon_sym_RPAREN, + [106817] = 6, + ACTIONS(3118), 1, + anon_sym_and, + ACTIONS(3123), 1, + anon_sym_or, + ACTIONS(3148), 1, + anon_sym_as, + ACTIONS(3150), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - [107499] = 4, - ACTIONS(3629), 1, - anon_sym_COMMA, - STATE(1955), 1, - aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3486), 4, + ACTIONS(3453), 2, anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [107516] = 2, + anon_sym_COMMA, + [106838] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3464), 6, + ACTIONS(3486), 6, anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [107529] = 4, - ACTIONS(3631), 1, + [106851] = 6, + ACTIONS(2957), 1, + anon_sym_and, + ACTIONS(2959), 1, + anon_sym_or, + ACTIONS(2965), 1, + anon_sym_as, + ACTIONS(2967), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3601), 2, + sym__newline, + anon_sym_SEMI, + [106872] = 4, + ACTIONS(3603), 1, anon_sym_COMMA, - STATE(1964), 1, + STATE(1941), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3550), 4, + ACTIONS(3463), 4, anon_sym_if, anon_sym_async, anon_sym_for, + anon_sym_RBRACK, + [106889] = 6, + ACTIONS(3127), 1, + anon_sym_as, + ACTIONS(3129), 1, + anon_sym_if, + ACTIONS(3133), 1, + anon_sym_and, + ACTIONS(3135), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3461), 2, + anon_sym_COMMA, anon_sym_RBRACE, - [107546] = 6, - ACTIONS(2973), 1, + [106910] = 7, + ACTIONS(3139), 1, + anon_sym_if, + ACTIONS(3141), 1, anon_sym_and, - ACTIONS(2975), 1, + ACTIONS(3143), 1, anon_sym_or, - ACTIONS(2981), 1, + ACTIONS(3567), 1, anon_sym_as, - ACTIONS(2983), 1, - anon_sym_if, + ACTIONS(3606), 1, + anon_sym_COMMA, + ACTIONS(3608), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3209), 2, - sym__newline, - anon_sym_SEMI, - [107567] = 2, + [106933] = 4, + ACTIONS(3612), 1, + anon_sym_AT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1944), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + ACTIONS(3610), 3, + anon_sym_async, + anon_sym_def, + anon_sym_class, + [106950] = 7, + ACTIONS(3474), 1, + anon_sym_DOT, + ACTIONS(3478), 1, + anon_sym_COLON, + ACTIONS(3482), 1, + anon_sym_PIPE, + ACTIONS(3615), 1, + anon_sym_COMMA, + ACTIONS(3617), 1, + anon_sym_RBRACK, + STATE(2349), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [106973] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3476), 6, + ACTIONS(3578), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [107580] = 7, - ACTIONS(3140), 1, + [106986] = 4, + ACTIONS(3504), 1, + anon_sym_PIPE, + STATE(1937), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3619), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + [107003] = 6, + ACTIONS(3127), 1, + anon_sym_as, + ACTIONS(3129), 1, anon_sym_if, - ACTIONS(3142), 1, + ACTIONS(3133), 1, anon_sym_and, - ACTIONS(3144), 1, + ACTIONS(3135), 1, anon_sym_or, - ACTIONS(3588), 1, - anon_sym_as, - ACTIONS(3634), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3500), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [107024] = 4, + ACTIONS(3621), 1, anon_sym_COMMA, - ACTIONS(3636), 1, - anon_sym_COLON, + STATE(1933), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107603] = 3, + ACTIONS(3490), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [107041] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3638), 2, + ACTIONS(3623), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3412), 4, + ACTIONS(3202), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [107618] = 6, - ACTIONS(3134), 1, - anon_sym_and, - ACTIONS(3136), 1, - anon_sym_or, - ACTIONS(3146), 1, - anon_sym_as, - ACTIONS(3148), 1, - anon_sym_if, + [107056] = 4, + ACTIONS(3625), 1, + anon_sym_COMMA, + STATE(1941), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3504), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [107639] = 6, - ACTIONS(2973), 1, + ACTIONS(3496), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [107073] = 4, + ACTIONS(3141), 1, anon_sym_and, - ACTIONS(2975), 1, + ACTIONS(3143), 1, anon_sym_or, - ACTIONS(2981), 1, - anon_sym_as, - ACTIONS(2983), 1, - anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3640), 2, - sym__newline, - anon_sym_SEMI, - [107660] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3599), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(2955), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [107673] = 5, - ACTIONS(3642), 1, + [107090] = 5, + ACTIONS(3520), 1, anon_sym_DOT, - ACTIONS(3644), 1, + ACTIONS(3522), 1, anon_sym_COLON, - ACTIONS(3646), 1, + ACTIONS(3526), 1, anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3612), 3, + ACTIONS(3580), 3, sym__newline, anon_sym_SEMI, anon_sym_EQ, - [107692] = 6, - ACTIONS(3196), 1, + [107109] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3629), 1, + anon_sym_BSLASH, + ACTIONS(3627), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [107126] = 6, + ACTIONS(3158), 1, anon_sym_as, - ACTIONS(3198), 1, + ACTIONS(3160), 1, anon_sym_if, - ACTIONS(3200), 1, + ACTIONS(3162), 1, anon_sym_and, - ACTIONS(3202), 1, + ACTIONS(3164), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3504), 2, + ACTIONS(3185), 2, anon_sym_COMMA, anon_sym_RBRACK, - [107713] = 2, + [107147] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3624), 6, + ACTIONS(3492), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [107726] = 4, + [107160] = 6, + ACTIONS(3118), 1, + anon_sym_and, + ACTIONS(3123), 1, + anon_sym_or, + ACTIONS(3148), 1, + anon_sym_as, + ACTIONS(3150), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3194), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [107181] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3650), 1, + ACTIONS(3633), 1, anon_sym_BSLASH, - ACTIONS(3648), 5, + ACTIONS(3631), 5, sym__string_content, sym_escape_interpolation, sym_string_end, anon_sym_LBRACE, sym_escape_sequence, - [107743] = 4, + [107198] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3108), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [107211] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3654), 1, + ACTIONS(3637), 1, anon_sym_BSLASH, - ACTIONS(3652), 5, + ACTIONS(3635), 5, sym__string_content, sym_escape_interpolation, sym_string_end, anon_sym_LBRACE, sym_escape_sequence, - [107760] = 4, - ACTIONS(3656), 1, - anon_sym_COMMA, - STATE(1961), 1, - aux_sym_for_in_clause_repeat1, + [107228] = 6, + ACTIONS(3118), 1, + anon_sym_and, + ACTIONS(3123), 1, + anon_sym_or, + ACTIONS(3148), 1, + anon_sym_as, + ACTIONS(3150), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3562), 4, + ACTIONS(3535), 2, anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [107777] = 6, - ACTIONS(3155), 1, - anon_sym_as, - ACTIONS(3157), 1, - anon_sym_if, - ACTIONS(3161), 1, - anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, + anon_sym_COMMA, + [107249] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3641), 1, + anon_sym_BSLASH, + ACTIONS(3639), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [107266] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3256), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [107798] = 6, - ACTIONS(3642), 1, + ACTIONS(3492), 6, anon_sym_DOT, - ACTIONS(3644), 1, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, - ACTIONS(3646), 1, - anon_sym_PIPE, - ACTIONS(3660), 1, anon_sym_EQ, + anon_sym_PIPE, + [107279] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3658), 2, - sym__newline, - anon_sym_SEMI, - [107819] = 4, - ACTIONS(3662), 1, + ACTIONS(3555), 6, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - STATE(1928), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(3), 2, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [107292] = 4, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3562), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [107836] = 6, - ACTIONS(3610), 1, + ACTIONS(3645), 1, + anon_sym_BSLASH, + ACTIONS(3643), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [107309] = 4, + ACTIONS(3506), 1, anon_sym_DOT, - ACTIONS(3614), 1, - anon_sym_COLON, - ACTIONS(3616), 1, - anon_sym_PIPE, - ACTIONS(3666), 1, - anon_sym_EQ, + STATE(1967), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3664), 2, - anon_sym_RPAREN, + ACTIONS(3183), 4, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - [107857] = 6, - ACTIONS(3134), 1, - anon_sym_and, - ACTIONS(3136), 1, - anon_sym_or, - ACTIONS(3146), 1, anon_sym_as, - ACTIONS(3148), 1, - anon_sym_if, + [107326] = 4, + ACTIONS(3647), 1, + anon_sym_DOT, + STATE(1967), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3527), 2, - anon_sym_RPAREN, + ACTIONS(3169), 4, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - [107878] = 2, + anon_sym_as, + [107343] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3211), 6, + ACTIONS(3169), 6, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [107891] = 6, - ACTIONS(3138), 1, - anon_sym_as, - ACTIONS(3140), 1, - anon_sym_if, - ACTIONS(3142), 1, - anon_sym_and, - ACTIONS(3144), 1, - anon_sym_or, + [107356] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3592), 2, + ACTIONS(3555), 6, + anon_sym_DOT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - [107912] = 7, - ACTIONS(3494), 1, + anon_sym_EQ, + anon_sym_PIPE, + [107369] = 7, + ACTIONS(3474), 1, anon_sym_DOT, - ACTIONS(3498), 1, + ACTIONS(3478), 1, anon_sym_COLON, - ACTIONS(3502), 1, + ACTIONS(3482), 1, anon_sym_PIPE, - ACTIONS(3668), 1, + ACTIONS(3650), 1, anon_sym_COMMA, - ACTIONS(3670), 1, + ACTIONS(3652), 1, anon_sym_RBRACK, - STATE(2360), 1, + STATE(2427), 1, aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107935] = 4, - ACTIONS(3672), 1, - anon_sym_COMMA, - STATE(1980), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3480), 4, + [107392] = 6, + ACTIONS(3127), 1, + anon_sym_as, + ACTIONS(3129), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [107952] = 6, - ACTIONS(3134), 1, + ACTIONS(3133), 1, anon_sym_and, - ACTIONS(3136), 1, + ACTIONS(3135), 1, anon_sym_or, - ACTIONS(3146), 1, - anon_sym_as, - ACTIONS(3148), 1, - anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3552), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [107973] = 4, - ACTIONS(3674), 1, + ACTIONS(3453), 2, anon_sym_COMMA, - STATE(1935), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3480), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_RBRACE, - [107990] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3464), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [108003] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3594), 6, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [108016] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3594), 6, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [108029] = 6, - ACTIONS(3138), 1, + [107413] = 6, + ACTIONS(3158), 1, anon_sym_as, - ACTIONS(3140), 1, + ACTIONS(3160), 1, anon_sym_if, - ACTIONS(3142), 1, + ACTIONS(3162), 1, anon_sym_and, - ACTIONS(3144), 1, + ACTIONS(3164), 1, anon_sym_or, - ACTIONS(3676), 1, - anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108049] = 4, - ACTIONS(3678), 1, - anon_sym_PIPE, - STATE(2089), 1, - aux_sym_union_pattern_repeat1, + ACTIONS(3654), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [107434] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3520), 3, - anon_sym_RPAREN, + ACTIONS(3656), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3422), 4, anon_sym_COMMA, anon_sym_as, - [108065] = 5, - ACTIONS(3642), 1, - anon_sym_DOT, - ACTIONS(3644), 1, - anon_sym_COLON, - ACTIONS(3646), 1, anon_sym_PIPE, + anon_sym_RBRACE, + [107449] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3680), 2, + ACTIONS(3582), 6, sym__newline, anon_sym_SEMI, - [108083] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3624), 5, anon_sym_DOT, - anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [108095] = 2, + [107462] = 4, + ACTIONS(3658), 1, + anon_sym_COMMA, + STATE(1951), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3682), 5, - anon_sym_COMMA, + ACTIONS(3514), 4, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, - [108107] = 6, - ACTIONS(3684), 1, + [107479] = 6, + ACTIONS(3350), 1, + sym_identifier, + ACTIONS(3660), 1, + anon_sym_LPAREN, + STATE(2067), 1, + sym_dotted_name, + STATE(2147), 1, + sym_aliased_import, + STATE(2572), 1, + sym__import_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [107499] = 6, + ACTIONS(3662), 1, anon_sym_COLON, - ACTIONS(3686), 1, + ACTIONS(3664), 1, anon_sym_EQ, - ACTIONS(3688), 1, + ACTIONS(3666), 1, anon_sym_RBRACE, - ACTIONS(3690), 1, + ACTIONS(3668), 1, sym_type_conversion, - STATE(2616), 1, + STATE(2625), 1, sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108127] = 2, + [107519] = 5, + ACTIONS(3474), 1, + anon_sym_DOT, + ACTIONS(3478), 1, + anon_sym_COLON, + ACTIONS(3482), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3550), 5, + ACTIONS(3670), 2, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_RBRACK, - [108139] = 6, - ACTIONS(3138), 1, + [107537] = 6, + ACTIONS(3137), 1, anon_sym_as, - ACTIONS(3140), 1, + ACTIONS(3139), 1, anon_sym_if, - ACTIONS(3142), 1, + ACTIONS(3141), 1, anon_sym_and, - ACTIONS(3144), 1, + ACTIONS(3143), 1, anon_sym_or, - ACTIONS(3692), 1, + ACTIONS(3672), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108159] = 6, - ACTIONS(3140), 1, + [107557] = 6, + ACTIONS(3137), 1, + anon_sym_as, + ACTIONS(3139), 1, anon_sym_if, - ACTIONS(3142), 1, + ACTIONS(3141), 1, anon_sym_and, - ACTIONS(3144), 1, + ACTIONS(3143), 1, anon_sym_or, - ACTIONS(3694), 1, - anon_sym_as, - ACTIONS(3696), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [108179] = 2, + ACTIONS(3674), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3159), 5, - anon_sym_COMMA, + [107577] = 6, + ACTIONS(3139), 1, + anon_sym_if, + ACTIONS(3141), 1, + anon_sym_and, + ACTIONS(3143), 1, + anon_sym_or, + ACTIONS(3676), 1, + anon_sym_as, + ACTIONS(3678), 1, anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [108191] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3698), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [108203] = 2, + [107597] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3700), 5, + ACTIONS(3108), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PIPE, - [108215] = 4, - ACTIONS(3678), 1, - anon_sym_PIPE, - STATE(2089), 1, - aux_sym_union_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3472), 3, - anon_sym_RPAREN, + [107609] = 4, + ACTIONS(3680), 1, anon_sym_COMMA, - anon_sym_as, - [108231] = 5, - ACTIONS(3435), 1, - sym_identifier, - STATE(2135), 1, - sym_dotted_name, - STATE(2306), 1, - sym_aliased_import, + STATE(1984), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3702), 2, + ACTIONS(1267), 3, sym__newline, anon_sym_SEMI, - [108249] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3704), 5, + anon_sym_from, + [107625] = 4, + ACTIONS(3682), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [108261] = 2, + STATE(1984), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3706), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [108273] = 2, + ACTIONS(3194), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + [107641] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3708), 5, + ACTIONS(3685), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [108285] = 6, - ACTIONS(3684), 1, + [107653] = 6, + ACTIONS(3662), 1, anon_sym_COLON, - ACTIONS(3710), 1, + ACTIONS(3687), 1, anon_sym_EQ, - ACTIONS(3712), 1, + ACTIONS(3689), 1, anon_sym_RBRACE, - ACTIONS(3714), 1, + ACTIONS(3691), 1, sym_type_conversion, - STATE(2714), 1, + STATE(2743), 1, sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108305] = 2, + [107673] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3716), 5, + ACTIONS(3693), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [108317] = 6, - ACTIONS(3138), 1, - anon_sym_as, - ACTIONS(3140), 1, - anon_sym_if, - ACTIONS(3142), 1, - anon_sym_and, - ACTIONS(3144), 1, - anon_sym_or, - ACTIONS(3718), 1, - anon_sym_else, + [107685] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108337] = 5, - ACTIONS(3494), 1, - anon_sym_DOT, - ACTIONS(3498), 1, + ACTIONS(3695), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - ACTIONS(3502), 1, anon_sym_PIPE, + [107697] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3720), 2, + ACTIONS(3697), 5, anon_sym_COMMA, - anon_sym_RBRACK, - [108355] = 6, - ACTIONS(3138), 1, anon_sym_as, - ACTIONS(3140), 1, anon_sym_if, - ACTIONS(3142), 1, - anon_sym_and, - ACTIONS(3144), 1, - anon_sym_or, - ACTIONS(3722), 1, - anon_sym_else, + anon_sym_COLON, + anon_sym_PIPE, + [107709] = 5, + ACTIONS(3699), 1, + anon_sym_COMMA, + ACTIONS(3701), 1, + anon_sym_RBRACE, + STATE(2249), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108375] = 6, - ACTIONS(3138), 1, + ACTIONS(3202), 2, + anon_sym_COLON, + anon_sym_PIPE, + [107727] = 6, + ACTIONS(3137), 1, anon_sym_as, - ACTIONS(3140), 1, + ACTIONS(3139), 1, anon_sym_if, - ACTIONS(3142), 1, + ACTIONS(3141), 1, anon_sym_and, - ACTIONS(3144), 1, + ACTIONS(3143), 1, anon_sym_or, - ACTIONS(3724), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [108395] = 4, - ACTIONS(3726), 1, - anon_sym_COMMA, - STATE(2015), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(3703), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3204), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - [108411] = 2, + [107747] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3130), 5, + ACTIONS(3578), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [108423] = 2, + [107759] = 6, + ACTIONS(2564), 1, + anon_sym_COLON, + ACTIONS(3547), 1, + anon_sym_if, + ACTIONS(3705), 1, + anon_sym_COMMA, + STATE(2102), 1, + aux_sym_case_clause_repeat1, + STATE(2583), 1, + sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1650), 5, + [107779] = 5, + ACTIONS(3707), 1, anon_sym_DOT, - anon_sym_COMMA, + ACTIONS(3709), 1, anon_sym_COLON, - anon_sym_EQ, + ACTIONS(3711), 1, anon_sym_PIPE, - [108435] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3466), 5, - anon_sym_DOT, + ACTIONS(3580), 2, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - anon_sym_PIPE, - [108447] = 6, - ACTIONS(1561), 1, - anon_sym_LBRACK, - ACTIONS(3729), 1, - anon_sym_LPAREN, - ACTIONS(3731), 1, + [107797] = 5, + ACTIONS(3443), 1, + anon_sym_DOT, + ACTIONS(3447), 1, anon_sym_COLON, - STATE(2272), 1, - sym_type_parameter, - STATE(2636), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [108467] = 2, + ACTIONS(3451), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3733), 5, + ACTIONS(3445), 2, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [108479] = 2, + [107815] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3735), 5, + ACTIONS(1666), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PIPE, - [108491] = 3, - STATE(2089), 1, - aux_sym_union_pattern_repeat1, + [107827] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3578), 4, - anon_sym_RPAREN, + ACTIONS(3512), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PIPE, - [108505] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3737), 5, - anon_sym_COMMA, + [107839] = 6, + ACTIONS(3137), 1, anon_sym_as, + ACTIONS(3139), 1, anon_sym_if, + ACTIONS(3141), 1, + anon_sym_and, + ACTIONS(3143), 1, + anon_sym_or, + ACTIONS(3713), 1, anon_sym_COLON, - anon_sym_PIPE, - [108517] = 4, - ACTIONS(3739), 1, - anon_sym_PIPE, - STATE(2024), 1, - aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3578), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - [108533] = 2, + [107859] = 4, + ACTIONS(3141), 1, + anon_sym_and, + ACTIONS(3143), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3742), 5, - anon_sym_COMMA, + ACTIONS(2955), 3, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_PIPE, - [108545] = 2, - ACTIONS(3), 2, + [107875] = 6, + ACTIONS(3715), 1, + anon_sym_LBRACE, + ACTIONS(3717), 1, + anon_sym_RBRACE, + ACTIONS(3719), 1, + aux_sym_format_specifier_token1, + STATE(2012), 1, + aux_sym_format_specifier_repeat1, + STATE(2426), 1, + sym_interpolation, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3744), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [108557] = 2, + [107895] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3746), 5, + ACTIONS(3169), 5, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [108569] = 2, + [107907] = 5, + ACTIONS(3721), 1, + anon_sym_COMMA, + ACTIONS(3723), 1, + anon_sym_RBRACE, + STATE(2460), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3748), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, + ACTIONS(3202), 2, + anon_sym_COLON, + anon_sym_PIPE, + [107925] = 5, + ACTIONS(3520), 1, + anon_sym_DOT, + ACTIONS(3522), 1, anon_sym_COLON, + ACTIONS(3526), 1, anon_sym_PIPE, - [108581] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3750), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [108593] = 2, + ACTIONS(3725), 2, + sym__newline, + anon_sym_SEMI, + [107943] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3752), 5, + ACTIONS(3727), 5, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [108605] = 2, + anon_sym_async, + anon_sym_for, + [107955] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2880), 5, + ACTIONS(3578), 5, + anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [108617] = 2, + anon_sym_RBRACK, + anon_sym_PIPE, + [107967] = 5, + ACTIONS(3474), 1, + anon_sym_DOT, + ACTIONS(3478), 1, + anon_sym_COLON, + ACTIONS(3482), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1650), 5, - anon_sym_DOT, + ACTIONS(3580), 2, anon_sym_COMMA, - anon_sym_COLON, anon_sym_RBRACK, - anon_sym_PIPE, - [108629] = 2, + [107985] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3466), 5, + ACTIONS(3582), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - [108641] = 6, - ACTIONS(2973), 1, - anon_sym_and, - ACTIONS(2975), 1, - anon_sym_or, - ACTIONS(2981), 1, - anon_sym_as, - ACTIONS(2983), 1, - anon_sym_if, - ACTIONS(3754), 1, - sym__newline, + [107997] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108661] = 5, - ACTIONS(3756), 1, + ACTIONS(3463), 5, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3758), 1, - anon_sym_RBRACE, - STATE(2253), 1, - aux_sym_dict_pattern_repeat1, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [108009] = 5, + ACTIONS(3350), 1, + sym_identifier, + STATE(2095), 1, + sym_dotted_name, + STATE(2436), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3306), 2, - anon_sym_COLON, - anon_sym_PIPE, - [108679] = 6, - ACTIONS(3435), 1, + ACTIONS(3729), 2, + sym__newline, + anon_sym_SEMI, + [108027] = 5, + ACTIONS(3350), 1, sym_identifier, - ACTIONS(3760), 1, - anon_sym_LPAREN, - STATE(2077), 1, + STATE(2095), 1, sym_dotted_name, - STATE(2149), 1, + STATE(2436), 1, sym_aliased_import, - STATE(2513), 1, - sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108699] = 6, - ACTIONS(3762), 1, + ACTIONS(3729), 2, + sym__newline, + anon_sym_SEMI, + [108045] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3731), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [108057] = 6, + ACTIONS(3715), 1, anon_sym_LBRACE, - ACTIONS(3764), 1, + ACTIONS(3733), 1, anon_sym_RBRACE, - ACTIONS(3766), 1, + ACTIONS(3735), 1, aux_sym_format_specifier_token1, - STATE(2058), 1, + STATE(2045), 1, aux_sym_format_specifier_repeat1, STATE(2426), 1, sym_interpolation, ACTIONS(5), 2, sym_comment, sym_line_continuation, - [108719] = 2, + [108077] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3768), 5, + ACTIONS(3486), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PIPE, - [108731] = 2, + [108089] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3770), 5, + ACTIONS(3737), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [108743] = 2, + [108101] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3772), 5, + ACTIONS(3108), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - [108755] = 2, + [108113] = 3, + ACTIONS(3739), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2886), 5, + ACTIONS(3202), 4, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [108767] = 2, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [108127] = 4, + ACTIONS(3741), 1, + anon_sym_PIPE, + STATE(2023), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3774), 5, + ACTIONS(3563), 3, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [108779] = 2, + anon_sym_RBRACK, + [108143] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3776), 5, + ACTIONS(3492), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PIPE, - [108791] = 6, - ACTIONS(3762), 1, - anon_sym_LBRACE, - ACTIONS(3778), 1, - anon_sym_RBRACE, - ACTIONS(3780), 1, - aux_sym_format_specifier_token1, - STATE(2037), 1, - aux_sym_format_specifier_repeat1, - STATE(2426), 1, - sym_interpolation, - ACTIONS(5), 2, + [108155] = 6, + ACTIONS(3137), 1, + anon_sym_as, + ACTIONS(3139), 1, + anon_sym_if, + ACTIONS(3141), 1, + anon_sym_and, + ACTIONS(3143), 1, + anon_sym_or, + ACTIONS(3743), 1, + anon_sym_else, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108811] = 2, + [108175] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3782), 5, + ACTIONS(3745), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [108823] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2875), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [108835] = 2, + [108187] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3211), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(3747), 5, anon_sym_COMMA, anon_sym_as, - [108847] = 2, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [108199] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3733), 5, + ACTIONS(3749), 5, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [108859] = 6, - ACTIONS(3138), 1, anon_sym_as, - ACTIONS(3140), 1, anon_sym_if, - ACTIONS(3142), 1, - anon_sym_and, - ACTIONS(3144), 1, - anon_sym_or, - ACTIONS(3784), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [108879] = 5, - ACTIONS(3435), 1, - sym_identifier, - STATE(2135), 1, - sym_dotted_name, - STATE(2306), 1, - sym_aliased_import, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3786), 2, - sym__newline, - anon_sym_SEMI, - [108897] = 2, + anon_sym_COLON, + anon_sym_PIPE, + [108211] = 4, + ACTIONS(3741), 1, + anon_sym_PIPE, + STATE(2032), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3788), 5, + ACTIONS(3619), 3, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [108909] = 2, + anon_sym_RBRACK, + [108227] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1563), 5, + ACTIONS(3555), 5, + anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [108921] = 6, - ACTIONS(3664), 1, + anon_sym_RBRACK, + anon_sym_PIPE, + [108239] = 6, + ACTIONS(3445), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3707), 1, anon_sym_DOT, - ACTIONS(3792), 1, + ACTIONS(3709), 1, anon_sym_COLON, - ACTIONS(3794), 1, - anon_sym_EQ, - ACTIONS(3796), 1, + ACTIONS(3711), 1, anon_sym_PIPE, + ACTIONS(3751), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108941] = 2, + [108259] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3798), 5, + ACTIONS(3727), 5, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [108953] = 2, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [108271] = 5, + ACTIONS(3753), 1, + anon_sym_COMMA, + ACTIONS(3755), 1, + anon_sym_RBRACE, + STATE(2261), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3800), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, + ACTIONS(3202), 2, anon_sym_COLON, anon_sym_PIPE, - [108965] = 5, - ACTIONS(3435), 1, - sym_identifier, - STATE(2135), 1, - sym_dotted_name, - STATE(2306), 1, - sym_aliased_import, + [108289] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3786), 2, - sym__newline, - anon_sym_SEMI, - [108983] = 2, + ACTIONS(3463), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [108301] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3802), 5, + ACTIONS(3757), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [108995] = 6, - ACTIONS(3804), 1, - anon_sym_LBRACE, - ACTIONS(3807), 1, - anon_sym_RBRACE, - ACTIONS(3809), 1, - aux_sym_format_specifier_token1, - STATE(2058), 1, - aux_sym_format_specifier_repeat1, - STATE(2426), 1, - sym_interpolation, - ACTIONS(5), 2, + [108313] = 4, + ACTIONS(3741), 1, + anon_sym_PIPE, + STATE(2023), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109015] = 2, + ACTIONS(3502), 3, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + [108329] = 3, + STATE(2023), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3599), 5, - anon_sym_DOT, + ACTIONS(3596), 4, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [109027] = 5, - ACTIONS(3494), 1, - anon_sym_DOT, - ACTIONS(3498), 1, - anon_sym_COLON, - ACTIONS(3502), 1, + [108343] = 4, + ACTIONS(3759), 1, anon_sym_PIPE, + STATE(2032), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3612), 2, + ACTIONS(3596), 3, anon_sym_COMMA, + anon_sym_as, anon_sym_RBRACK, - [109045] = 2, + [108359] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3624), 5, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [109057] = 5, - ACTIONS(3812), 1, + ACTIONS(3762), 5, anon_sym_COMMA, - ACTIONS(3814), 1, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, - STATE(2297), 1, - aux_sym_dict_pattern_repeat1, + [108371] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3306), 2, + ACTIONS(3582), 5, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - [109075] = 6, - ACTIONS(3138), 1, + [108383] = 6, + ACTIONS(3137), 1, anon_sym_as, - ACTIONS(3140), 1, + ACTIONS(3139), 1, anon_sym_if, - ACTIONS(3142), 1, + ACTIONS(3141), 1, anon_sym_and, - ACTIONS(3144), 1, + ACTIONS(3143), 1, anon_sym_or, - ACTIONS(3816), 1, + ACTIONS(3764), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109095] = 6, - ACTIONS(3138), 1, - anon_sym_as, - ACTIONS(3140), 1, - anon_sym_if, - ACTIONS(3142), 1, - anon_sym_and, - ACTIONS(3144), 1, - anon_sym_or, - ACTIONS(3362), 1, - anon_sym_COLON, + [108403] = 4, + ACTIONS(3766), 1, + anon_sym_PIPE, + STATE(2036), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109115] = 6, - ACTIONS(2580), 1, - anon_sym_COLON, - ACTIONS(3516), 1, - anon_sym_if, - ACTIONS(3818), 1, + ACTIONS(3596), 3, anon_sym_COMMA, - STATE(2214), 1, - aux_sym_case_clause_repeat1, - STATE(2699), 1, - sym_if_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [109135] = 5, - ACTIONS(3820), 1, + anon_sym_as, + anon_sym_RBRACE, + [108419] = 5, + ACTIONS(3769), 1, anon_sym_COMMA, - ACTIONS(3822), 1, + ACTIONS(3771), 1, anon_sym_RBRACE, - STATE(2251), 1, + STATE(2311), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3306), 2, + ACTIONS(3202), 2, anon_sym_COLON, anon_sym_PIPE, - [109153] = 3, - ACTIONS(3824), 1, + [108437] = 6, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(3773), 1, + anon_sym_LPAREN, + ACTIONS(3775), 1, + anon_sym_COLON, + STATE(2390), 1, + sym_type_parameter, + STATE(2749), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [108457] = 3, + ACTIONS(3777), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3306), 4, + ACTIONS(3202), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [109167] = 4, - ACTIONS(3826), 1, + [108471] = 4, + ACTIONS(3779), 1, anon_sym_PIPE, - STATE(2072), 1, + STATE(2064), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3520), 3, + ACTIONS(3563), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACE, - [109183] = 2, + [108487] = 6, + ACTIONS(3137), 1, + anon_sym_as, + ACTIONS(3139), 1, + anon_sym_if, + ACTIONS(3141), 1, + anon_sym_and, + ACTIONS(3143), 1, + anon_sym_or, + ACTIONS(3781), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [108507] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3594), 5, + ACTIONS(1666), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PIPE, + [108519] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3512), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - [109195] = 6, - ACTIONS(3138), 1, + [108531] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3762), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [108543] = 6, + ACTIONS(3783), 1, + anon_sym_LBRACE, + ACTIONS(3786), 1, + anon_sym_RBRACE, + ACTIONS(3788), 1, + aux_sym_format_specifier_token1, + STATE(2045), 1, + aux_sym_format_specifier_repeat1, + STATE(2426), 1, + sym_interpolation, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + [108563] = 6, + ACTIONS(3137), 1, anon_sym_as, - ACTIONS(3140), 1, + ACTIONS(3139), 1, anon_sym_if, - ACTIONS(3142), 1, + ACTIONS(3141), 1, anon_sym_and, - ACTIONS(3144), 1, + ACTIONS(3143), 1, anon_sym_or, - ACTIONS(3828), 1, + ACTIONS(3791), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109215] = 2, + [108583] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3798), 5, + ACTIONS(3152), 5, anon_sym_COMMA, - anon_sym_as, anon_sym_COLON, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_RBRACE, - [109227] = 4, - ACTIONS(3826), 1, - anon_sym_PIPE, - STATE(2075), 1, - aux_sym_union_pattern_repeat1, + sym_type_conversion, + [108595] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3622), 3, + ACTIONS(3793), 5, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACE, - [109243] = 4, - ACTIONS(3826), 1, + anon_sym_if, + anon_sym_COLON, anon_sym_PIPE, - STATE(2072), 1, - aux_sym_union_pattern_repeat1, + [108607] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3472), 3, + ACTIONS(3795), 5, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACE, - [109259] = 3, - STATE(2072), 1, - aux_sym_union_pattern_repeat1, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [108619] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3578), 4, + ACTIONS(3797), 5, anon_sym_COMMA, anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_PIPE, - anon_sym_RBRACE, - [109273] = 4, - ACTIONS(3830), 1, - anon_sym_PIPE, - STATE(2075), 1, - aux_sym_union_pattern_repeat1, + [108631] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3578), 3, + ACTIONS(3799), 5, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACE, - [109289] = 6, - ACTIONS(3138), 1, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [108643] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3801), 5, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3140), 1, anon_sym_if, - ACTIONS(3142), 1, - anon_sym_and, - ACTIONS(3144), 1, - anon_sym_or, - ACTIONS(3833), 1, - anon_sym_else, + anon_sym_COLON, + anon_sym_PIPE, + [108655] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109309] = 5, - ACTIONS(3837), 1, + ACTIONS(3803), 5, anon_sym_COMMA, - ACTIONS(3839), 1, anon_sym_as, - STATE(2190), 1, - aux_sym__import_list_repeat1, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [108667] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3835), 2, - sym__newline, - anon_sym_SEMI, - [109327] = 2, + ACTIONS(3805), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [108679] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3599), 5, - anon_sym_DOT, + ACTIONS(3807), 5, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_EQ, anon_sym_PIPE, - [109339] = 6, - ACTIONS(3138), 1, + [108691] = 5, + ACTIONS(3350), 1, + sym_identifier, + STATE(2095), 1, + sym_dotted_name, + STATE(2436), 1, + sym_aliased_import, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3809), 2, + sym__newline, + anon_sym_SEMI, + [108709] = 6, + ACTIONS(3137), 1, anon_sym_as, - ACTIONS(3140), 1, + ACTIONS(3139), 1, anon_sym_if, - ACTIONS(3142), 1, + ACTIONS(3141), 1, anon_sym_and, - ACTIONS(3144), 1, + ACTIONS(3143), 1, anon_sym_or, - ACTIONS(3841), 1, - anon_sym_COLON, + ACTIONS(3811), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109359] = 3, - ACTIONS(3843), 1, - anon_sym_LPAREN, + [108729] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3306), 4, + ACTIONS(2864), 5, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [108741] = 6, + ACTIONS(3137), 1, anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [109373] = 4, - ACTIONS(3845), 1, - anon_sym_PIPE, - STATE(2086), 1, - aux_sym_union_pattern_repeat1, + ACTIONS(3139), 1, + anon_sym_if, + ACTIONS(3141), 1, + anon_sym_and, + ACTIONS(3143), 1, + anon_sym_or, + ACTIONS(3813), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3520), 3, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - [109389] = 2, + [108761] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3476), 5, - anon_sym_DOT, + ACTIONS(2866), 5, anon_sym_COMMA, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [109401] = 4, - ACTIONS(3142), 1, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [108773] = 6, + ACTIONS(2957), 1, anon_sym_and, - ACTIONS(3144), 1, + ACTIONS(2959), 1, anon_sym_or, + ACTIONS(2965), 1, + anon_sym_as, + ACTIONS(2967), 1, + anon_sym_if, + ACTIONS(3815), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2971), 3, + [108793] = 6, + ACTIONS(3137), 1, anon_sym_as, + ACTIONS(3139), 1, anon_sym_if, - anon_sym_COLON, - [109417] = 6, - ACTIONS(3138), 1, - anon_sym_as, - ACTIONS(3140), 1, - anon_sym_if, - ACTIONS(3142), 1, + ACTIONS(3141), 1, anon_sym_and, - ACTIONS(3144), 1, + ACTIONS(3143), 1, anon_sym_or, - ACTIONS(3847), 1, + ACTIONS(3817), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109437] = 5, - ACTIONS(3790), 1, - anon_sym_DOT, - ACTIONS(3792), 1, - anon_sym_COLON, - ACTIONS(3796), 1, - anon_sym_PIPE, + [108813] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3612), 2, + ACTIONS(2859), 5, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - [109455] = 4, - ACTIONS(3845), 1, + anon_sym_RBRACE, + sym_type_conversion, + [108825] = 4, + ACTIONS(3779), 1, anon_sym_PIPE, - STATE(2103), 1, + STATE(2085), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3622), 3, + ACTIONS(3619), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, - [109471] = 2, + [108841] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3464), 5, - anon_sym_DOT, + ACTIONS(3819), 5, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, anon_sym_PIPE, - [109483] = 6, - ACTIONS(3138), 1, + [108853] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3821), 5, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3140), 1, anon_sym_if, - ACTIONS(3142), 1, - anon_sym_and, - ACTIONS(3144), 1, - anon_sym_or, - ACTIONS(3849), 1, anon_sym_COLON, + anon_sym_PIPE, + [108865] = 5, + ACTIONS(3825), 1, + anon_sym_COMMA, + ACTIONS(3827), 1, + anon_sym_as, + STATE(2148), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109503] = 4, - ACTIONS(3678), 1, + ACTIONS(3823), 2, + sym__newline, + anon_sym_SEMI, + [108883] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3829), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_PIPE, - STATE(2024), 1, - aux_sym_union_pattern_repeat1, + [108895] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3622), 3, - anon_sym_RPAREN, + ACTIONS(3831), 5, anon_sym_COMMA, anon_sym_as, - [109519] = 2, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [108907] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3682), 5, + ACTIONS(3833), 5, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [109531] = 6, - ACTIONS(3138), 1, + anon_sym_COLON, + anon_sym_PIPE, + [108919] = 6, + ACTIONS(3137), 1, anon_sym_as, - ACTIONS(3140), 1, + ACTIONS(3139), 1, anon_sym_if, - ACTIONS(3142), 1, + ACTIONS(3141), 1, anon_sym_and, - ACTIONS(3144), 1, + ACTIONS(3143), 1, anon_sym_or, - ACTIONS(3851), 1, - anon_sym_COLON, + ACTIONS(3835), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109551] = 4, - ACTIONS(3853), 1, - anon_sym_COMMA, - STATE(2015), 1, - aux_sym_assert_statement_repeat1, + [108939] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1293), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - [109567] = 2, + ACTIONS(3727), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [108951] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3550), 5, + ACTIONS(3463), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, - [109579] = 6, - ACTIONS(3138), 1, + anon_sym_RBRACK, + [108963] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3837), 5, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3140), 1, anon_sym_if, - ACTIONS(3142), 1, + anon_sym_COLON, + anon_sym_PIPE, + [108975] = 6, + ACTIONS(3137), 1, + anon_sym_as, + ACTIONS(3139), 1, + anon_sym_if, + ACTIONS(3141), 1, anon_sym_and, - ACTIONS(3144), 1, + ACTIONS(3143), 1, anon_sym_or, - ACTIONS(3855), 1, + ACTIONS(3839), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109599] = 6, - ACTIONS(3138), 1, + [108995] = 6, + ACTIONS(3137), 1, anon_sym_as, - ACTIONS(3140), 1, + ACTIONS(3139), 1, anon_sym_if, - ACTIONS(3142), 1, + ACTIONS(3141), 1, anon_sym_and, - ACTIONS(3144), 1, + ACTIONS(3143), 1, anon_sym_or, - ACTIONS(3857), 1, + ACTIONS(3841), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109619] = 6, - ACTIONS(1561), 1, + [109015] = 6, + ACTIONS(1545), 1, anon_sym_LBRACK, - ACTIONS(3729), 1, + ACTIONS(3773), 1, anon_sym_LPAREN, - ACTIONS(3859), 1, + ACTIONS(3843), 1, anon_sym_COLON, STATE(2429), 1, sym_type_parameter, - STATE(2684), 1, + STATE(2664), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109639] = 3, - ACTIONS(3861), 1, - anon_sym_LPAREN, + [109035] = 6, + ACTIONS(3137), 1, + anon_sym_as, + ACTIONS(3139), 1, + anon_sym_if, + ACTIONS(3141), 1, + anon_sym_and, + ACTIONS(3143), 1, + anon_sym_or, + ACTIONS(3845), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3306), 4, - anon_sym_RPAREN, - anon_sym_COMMA, + [109055] = 6, + ACTIONS(3137), 1, anon_sym_as, + ACTIONS(3139), 1, + anon_sym_if, + ACTIONS(3141), 1, + anon_sym_and, + ACTIONS(3143), 1, + anon_sym_or, + ACTIONS(3313), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [109075] = 4, + ACTIONS(3779), 1, anon_sym_PIPE, - [109653] = 4, - ACTIONS(3845), 1, - anon_sym_PIPE, - STATE(2086), 1, + STATE(2064), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3472), 3, + ACTIONS(3502), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, - [109669] = 6, - ACTIONS(3140), 1, + [109091] = 6, + ACTIONS(3139), 1, anon_sym_if, - ACTIONS(3142), 1, + ACTIONS(3141), 1, anon_sym_and, - ACTIONS(3144), 1, + ACTIONS(3143), 1, anon_sym_or, - ACTIONS(3694), 1, + ACTIONS(3676), 1, anon_sym_as, - ACTIONS(3863), 1, + ACTIONS(3847), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109689] = 6, - ACTIONS(3138), 1, + [109111] = 6, + ACTIONS(3137), 1, anon_sym_as, - ACTIONS(3140), 1, + ACTIONS(3139), 1, anon_sym_if, - ACTIONS(3142), 1, + ACTIONS(3141), 1, anon_sym_and, - ACTIONS(3144), 1, + ACTIONS(3143), 1, anon_sym_or, - ACTIONS(3865), 1, + ACTIONS(3849), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109709] = 6, - ACTIONS(3138), 1, + [109131] = 6, + ACTIONS(3137), 1, anon_sym_as, - ACTIONS(3140), 1, + ACTIONS(3139), 1, anon_sym_if, - ACTIONS(3142), 1, + ACTIONS(3141), 1, anon_sym_and, - ACTIONS(3144), 1, + ACTIONS(3143), 1, anon_sym_or, - ACTIONS(3867), 1, + ACTIONS(3851), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109729] = 3, - STATE(2086), 1, + [109151] = 3, + STATE(2064), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3578), 4, + ACTIONS(3596), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [109743] = 4, - ACTIONS(3869), 1, + [109165] = 4, + ACTIONS(3853), 1, anon_sym_PIPE, - STATE(2103), 1, + STATE(2085), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3578), 3, + ACTIONS(3596), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, - [109759] = 2, + [109181] = 3, + ACTIONS(3856), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3733), 5, + ACTIONS(3202), 4, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_as, + anon_sym_PIPE, anon_sym_RBRACE, - [109771] = 2, + [109195] = 4, + ACTIONS(3858), 1, + anon_sym_PIPE, + STATE(2090), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3550), 5, - anon_sym_RPAREN, + ACTIONS(3563), 3, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [109783] = 2, + anon_sym_as, + anon_sym_RBRACE, + [109211] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3682), 5, - anon_sym_RPAREN, + ACTIONS(3762), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [109795] = 2, + anon_sym_RBRACK, + [109223] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3130), 5, - anon_sym_DOT, + ACTIONS(3693), 5, anon_sym_COMMA, + anon_sym_as, anon_sym_COLON, - anon_sym_RBRACK, anon_sym_PIPE, - [109807] = 5, - ACTIONS(3610), 1, - anon_sym_DOT, - ACTIONS(3614), 1, - anon_sym_COLON, - ACTIONS(3616), 1, + anon_sym_RBRACE, + [109235] = 4, + ACTIONS(3858), 1, anon_sym_PIPE, + STATE(2036), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3664), 2, - anon_sym_RPAREN, + ACTIONS(3619), 3, anon_sym_COMMA, - [109825] = 5, - ACTIONS(3872), 1, + anon_sym_as, + anon_sym_RBRACE, + [109251] = 4, + ACTIONS(3858), 1, + anon_sym_PIPE, + STATE(2090), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3502), 3, anon_sym_COMMA, - ACTIONS(3874), 1, + anon_sym_as, anon_sym_RBRACE, - STATE(2413), 1, - aux_sym_dict_pattern_repeat1, + [109267] = 3, + STATE(2090), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3306), 2, - anon_sym_COLON, + ACTIONS(3596), 4, + anon_sym_COMMA, + anon_sym_as, anon_sym_PIPE, - [109843] = 2, + anon_sym_RBRACE, + [109281] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1547), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [109293] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3735), 4, + ACTIONS(3807), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [109854] = 4, - ACTIONS(3878), 1, - anon_sym_COMMA, - STATE(2134), 1, - aux_sym_global_statement_repeat1, + [109304] = 3, + ACTIONS(3827), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3876), 2, + ACTIONS(3860), 3, sym__newline, anon_sym_SEMI, - [109869] = 2, + anon_sym_COMMA, + [109317] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3770), 4, - anon_sym_RPAREN, + ACTIONS(3831), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [109328] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3833), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [109339] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3837), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [109880] = 3, + [109350] = 3, + ACTIONS(3545), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3862), 3, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + [109363] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3306), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(3880), 2, + ACTIONS(3864), 4, anon_sym_COMMA, - anon_sym_RBRACE, - [109893] = 4, - ACTIONS(3884), 1, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - ACTIONS(3886), 1, - anon_sym_EQ, + [109374] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3882), 2, + ACTIONS(3831), 4, anon_sym_RPAREN, anon_sym_COMMA, - [109908] = 2, + anon_sym_as, + anon_sym_PIPE, + [109385] = 4, + ACTIONS(3866), 1, + anon_sym_COMMA, + STATE(2102), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3772), 4, - anon_sym_RPAREN, + ACTIONS(3862), 2, + anon_sym_if, + anon_sym_COLON, + [109400] = 4, + ACTIONS(3871), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [109919] = 2, + STATE(2186), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3774), 4, - anon_sym_RPAREN, + ACTIONS(3869), 2, + sym__newline, + anon_sym_SEMI, + [109415] = 4, + ACTIONS(3871), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [109930] = 5, - ACTIONS(1561), 1, - anon_sym_LBRACK, - ACTIONS(3888), 1, - anon_sym_LPAREN, - STATE(2512), 1, - sym_type_parameter, - STATE(2536), 1, - sym_parameters, + STATE(2186), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109947] = 5, - ACTIONS(3890), 1, + ACTIONS(3873), 2, + sym__newline, + anon_sym_SEMI, + [109430] = 5, + ACTIONS(3875), 1, anon_sym_RPAREN, - ACTIONS(3892), 1, + ACTIONS(3877), 1, anon_sym_COMMA, - ACTIONS(3894), 1, + ACTIONS(3879), 1, anon_sym_as, - STATE(2247), 1, + STATE(2306), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109964] = 5, - ACTIONS(3896), 1, + [109447] = 5, + ACTIONS(3881), 1, anon_sym_COMMA, - ACTIONS(3898), 1, + ACTIONS(3883), 1, anon_sym_as, - ACTIONS(3900), 1, + ACTIONS(3885), 1, anon_sym_RBRACK, - STATE(2248), 1, + STATE(2307), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109981] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3700), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [109992] = 2, + [109464] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3776), 4, + ACTIONS(3833), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [110003] = 4, - ACTIONS(3878), 1, + [109475] = 4, + ACTIONS(3225), 1, anon_sym_COMMA, - STATE(2225), 1, - aux_sym_global_statement_repeat1, + STATE(1984), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3902), 2, + ACTIONS(3887), 2, sym__newline, anon_sym_SEMI, - [110018] = 5, - ACTIONS(3894), 1, + [109490] = 5, + ACTIONS(3879), 1, anon_sym_as, - ACTIONS(3904), 1, + ACTIONS(3889), 1, anon_sym_RPAREN, - ACTIONS(3906), 1, + ACTIONS(3891), 1, anon_sym_COMMA, - STATE(2255), 1, + STATE(2315), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110035] = 2, + [109507] = 4, + ACTIONS(3895), 1, + anon_sym_COMMA, + STATE(2110), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3782), 4, - anon_sym_RPAREN, + ACTIONS(3893), 2, + sym__newline, + anon_sym_SEMI, + [109522] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3829), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [110046] = 5, - ACTIONS(3684), 1, + anon_sym_RBRACE, + [109533] = 5, + ACTIONS(3662), 1, anon_sym_COLON, - ACTIONS(3908), 1, + ACTIONS(3898), 1, anon_sym_RBRACE, - ACTIONS(3910), 1, + ACTIONS(3900), 1, sym_type_conversion, - STATE(2768), 1, + STATE(2699), 1, sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110063] = 2, + [109550] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3708), 4, - anon_sym_RPAREN, + ACTIONS(3831), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [110074] = 5, - ACTIONS(3664), 1, - anon_sym_COMMA, - ACTIONS(3790), 1, - anon_sym_DOT, - ACTIONS(3792), 1, - anon_sym_COLON, - ACTIONS(3796), 1, - anon_sym_PIPE, + anon_sym_RBRACE, + [109561] = 5, + ACTIONS(3902), 1, + anon_sym_case, + ACTIONS(3904), 1, + sym__dedent, + STATE(2127), 1, + aux_sym__match_block_repeat1, + STATE(2529), 1, + sym_case_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [109578] = 5, + ACTIONS(3906), 1, + sym_identifier, + STATE(2123), 1, + sym_dotted_name, + STATE(2292), 1, + sym_aliased_import, + STATE(2653), 1, + sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110091] = 4, - ACTIONS(3914), 1, + [109595] = 4, + ACTIONS(3910), 1, anon_sym_COMMA, - STATE(2150), 1, - aux_sym__import_list_repeat1, + STATE(2116), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3912), 2, + ACTIONS(3908), 2, sym__newline, anon_sym_SEMI, - [110106] = 2, + [109610] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3788), 4, + ACTIONS(3819), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [110117] = 5, - ACTIONS(3790), 1, - anon_sym_DOT, - ACTIONS(3792), 1, + [109621] = 4, + ACTIONS(3915), 1, anon_sym_COLON, - ACTIONS(3796), 1, - anon_sym_PIPE, - ACTIONS(3916), 1, + ACTIONS(3917), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110134] = 2, + ACTIONS(3913), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [109636] = 4, + ACTIONS(3225), 1, + anon_sym_COMMA, + STATE(1984), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3698), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [110145] = 2, + ACTIONS(3919), 2, + sym__newline, + anon_sym_SEMI, + [109651] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3800), 4, + ACTIONS(3833), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [110156] = 2, + [109662] = 5, + ACTIONS(3906), 1, + sym_identifier, + STATE(2123), 1, + sym_dotted_name, + STATE(2292), 1, + sym_aliased_import, + STATE(2628), 1, + sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3802), 4, - anon_sym_COMMA, - anon_sym_as, + [109679] = 5, + ACTIONS(3707), 1, + anon_sym_DOT, + ACTIONS(3709), 1, + anon_sym_COLON, + ACTIONS(3711), 1, anon_sym_PIPE, - anon_sym_RBRACE, - [110167] = 4, - ACTIONS(3920), 1, - anon_sym_COMMA, - STATE(2134), 1, - aux_sym_global_statement_repeat1, + ACTIONS(3921), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3918), 2, - sym__newline, - anon_sym_SEMI, - [110182] = 3, - ACTIONS(3839), 1, + [109696] = 5, + ACTIONS(3823), 1, + anon_sym_RPAREN, + ACTIONS(3923), 1, + anon_sym_COMMA, + ACTIONS(3925), 1, anon_sym_as, + STATE(2458), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3923), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - [110195] = 4, + [109713] = 5, + ACTIONS(1545), 1, + anon_sym_LBRACK, ACTIONS(3927), 1, + anon_sym_LPAREN, + STATE(2511), 1, + sym_type_parameter, + STATE(2536), 1, + sym_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [109730] = 5, + ACTIONS(3445), 1, anon_sym_COMMA, - STATE(2136), 1, - aux_sym_print_statement_repeat1, + ACTIONS(3707), 1, + anon_sym_DOT, + ACTIONS(3709), 1, + anon_sym_COLON, + ACTIONS(3711), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3925), 2, - sym__newline, - anon_sym_SEMI, - [110210] = 2, + [109747] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3698), 4, + ACTIONS(3837), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [110221] = 2, + [109758] = 5, + ACTIONS(3902), 1, + anon_sym_case, + ACTIONS(3929), 1, + sym__dedent, + STATE(2164), 1, + aux_sym__match_block_repeat1, + STATE(2529), 1, + sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3700), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [110232] = 2, + [109775] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3704), 4, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(3202), 2, + anon_sym_COLON, anon_sym_PIPE, + ACTIONS(3931), 2, + anon_sym_COMMA, anon_sym_RBRACE, - [110243] = 5, - ACTIONS(3702), 1, + [109788] = 5, + ACTIONS(3809), 1, anon_sym_RPAREN, - ACTIONS(3930), 1, + ACTIONS(3906), 1, sym_identifier, - STATE(2417), 1, + STATE(2223), 1, sym_dotted_name, - STATE(2599), 1, + STATE(2558), 1, sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110260] = 2, + [109805] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3706), 4, + ACTIONS(3821), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [110271] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3708), 4, + [109816] = 4, + ACTIONS(3871), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [110282] = 2, + STATE(2103), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3716), 4, - anon_sym_RPAREN, + ACTIONS(3933), 2, + sym__newline, + anon_sym_SEMI, + [109831] = 4, + ACTIONS(3871), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [110293] = 2, + STATE(2104), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3716), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [110304] = 2, + ACTIONS(3935), 2, + sym__newline, + anon_sym_SEMI, + [109846] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3735), 4, - anon_sym_RPAREN, + ACTIONS(3685), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [110315] = 5, - ACTIONS(3894), 1, - anon_sym_as, - ACTIONS(3932), 1, - anon_sym_RPAREN, - ACTIONS(3934), 1, - anon_sym_COMMA, - STATE(2439), 1, - aux_sym_case_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [110332] = 2, + [109857] = 5, + ACTIONS(3902), 1, + anon_sym_case, + ACTIONS(3937), 1, + sym__dedent, + STATE(2165), 1, + aux_sym__match_block_repeat1, + STATE(2529), 1, + sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3735), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [110343] = 2, + [109874] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3737), 4, + ACTIONS(3693), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [110354] = 4, - ACTIONS(3837), 1, + [109885] = 4, + ACTIONS(3941), 1, anon_sym_COMMA, - STATE(2128), 1, + STATE(2110), 1, aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3835), 2, + ACTIONS(3939), 2, sym__newline, anon_sym_SEMI, - [110369] = 4, - ACTIONS(3938), 1, + [109900] = 4, + ACTIONS(3943), 1, anon_sym_COMMA, - STATE(2150), 1, - aux_sym__import_list_repeat1, + STATE(1984), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3936), 2, + ACTIONS(1425), 2, sym__newline, anon_sym_SEMI, - [110384] = 2, + [109915] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3742), 4, + ACTIONS(3695), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [110395] = 2, + [109926] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3744), 4, + ACTIONS(3697), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [110406] = 2, + [109937] = 5, + ACTIONS(3350), 1, + sym_identifier, + STATE(2067), 1, + sym_dotted_name, + STATE(2147), 1, + sym_aliased_import, + STATE(2479), 1, + sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3746), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, + [109954] = 5, + ACTIONS(3662), 1, + anon_sym_COLON, + ACTIONS(3945), 1, anon_sym_RBRACE, - [110417] = 2, + ACTIONS(3947), 1, + sym_type_conversion, + STATE(2640), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3748), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [110428] = 2, + [109971] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3750), 4, + ACTIONS(3685), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [110439] = 2, + [109982] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3752), 4, + ACTIONS(3693), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [110450] = 2, + [109993] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3768), 4, + ACTIONS(3829), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [110461] = 2, + [110004] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3770), 4, + ACTIONS(3695), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [110472] = 2, + [110015] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3772), 4, + ACTIONS(3697), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [110483] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3774), 4, + [110026] = 4, + ACTIONS(3825), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [110494] = 2, + STATE(2136), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3776), 4, + ACTIONS(3823), 2, + sym__newline, + anon_sym_SEMI, + [110041] = 4, + ACTIONS(3949), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [110505] = 2, + STATE(2110), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3782), 4, - anon_sym_COMMA, + ACTIONS(3939), 2, + sym__newline, + anon_sym_SEMI, + [110056] = 5, + ACTIONS(3879), 1, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [110516] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3737), 4, + ACTIONS(3951), 1, anon_sym_RPAREN, + ACTIONS(3953), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [110527] = 5, - ACTIONS(3941), 1, - anon_sym_case, - ACTIONS(3943), 1, - sym__dedent, - STATE(2182), 1, - aux_sym__match_block_repeat1, - STATE(2589), 1, - sym_case_clause, + STATE(2441), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110544] = 2, + [110073] = 5, + ACTIONS(3883), 1, + anon_sym_as, + ACTIONS(3955), 1, + anon_sym_COMMA, + ACTIONS(3957), 1, + anon_sym_RBRACK, + STATE(2446), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3742), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [110555] = 2, + [110090] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3744), 4, - anon_sym_RPAREN, + ACTIONS(3819), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [110566] = 5, - ACTIONS(3835), 1, + anon_sym_RBRACE, + [110101] = 5, + ACTIONS(3879), 1, + anon_sym_as, + ACTIONS(3959), 1, anon_sym_RPAREN, - ACTIONS(3945), 1, + ACTIONS(3961), 1, anon_sym_COMMA, - ACTIONS(3947), 1, - anon_sym_as, - STATE(2296), 1, - aux_sym__import_list_repeat1, + STATE(2257), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110583] = 2, + [110118] = 5, + ACTIONS(3883), 1, + anon_sym_as, + ACTIONS(3963), 1, + anon_sym_COMMA, + ACTIONS(3965), 1, + anon_sym_RBRACK, + STATE(2258), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3746), 4, + [110135] = 5, + ACTIONS(3879), 1, + anon_sym_as, + ACTIONS(3967), 1, anon_sym_RPAREN, + ACTIONS(3969), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [110594] = 2, + STATE(2469), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3748), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [110605] = 2, + [110152] = 5, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(3927), 1, + anon_sym_LPAREN, + STATE(2494), 1, + sym_parameters, + STATE(2496), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3788), 4, - anon_sym_RPAREN, + [110169] = 4, + ACTIONS(3973), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [110616] = 2, + STATE(2172), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3798), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [110627] = 2, + ACTIONS(3971), 2, + sym__newline, + anon_sym_SEMI, + [110184] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3800), 4, - anon_sym_RPAREN, + ACTIONS(3837), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [110638] = 2, + anon_sym_RBRACE, + [110195] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3788), 4, + ACTIONS(3731), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [110649] = 2, + [110206] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3798), 4, + ACTIONS(3737), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [110660] = 2, + [110217] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3800), 4, + ACTIONS(3563), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [110671] = 2, + anon_sym_if, + anon_sym_COLON, + [110228] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3802), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [110682] = 2, + ACTIONS(3975), 4, + anon_sym_async, + anon_sym_def, + anon_sym_class, + anon_sym_AT, + [110239] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3802), 4, + ACTIONS(3745), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [110693] = 2, + [110250] = 5, + ACTIONS(3879), 1, + anon_sym_as, + ACTIONS(3977), 1, + anon_sym_RPAREN, + ACTIONS(3979), 1, + anon_sym_COMMA, + STATE(2266), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3949), 4, - anon_sym_async, - anon_sym_def, - anon_sym_class, - anon_sym_AT, - [110704] = 4, - ACTIONS(3878), 1, - anon_sym_COMMA, - STATE(2111), 1, - aux_sym_global_statement_repeat1, + [110267] = 5, + ACTIONS(3981), 1, + anon_sym_case, + ACTIONS(3984), 1, + sym__dedent, + STATE(2164), 1, + aux_sym__match_block_repeat1, + STATE(2529), 1, + sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3951), 2, - sym__newline, - anon_sym_SEMI, - [110719] = 2, + [110284] = 5, + ACTIONS(3902), 1, + anon_sym_case, + ACTIONS(3986), 1, + sym__dedent, + STATE(2164), 1, + aux_sym__match_block_repeat1, + STATE(2529), 1, + sym_case_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [110301] = 5, + ACTIONS(3729), 1, + anon_sym_RPAREN, + ACTIONS(3906), 1, + sym_identifier, + STATE(2223), 1, + sym_dotted_name, + STATE(2558), 1, + sym_aliased_import, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [110318] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3750), 4, + ACTIONS(3731), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [110730] = 2, + [110329] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3752), 4, - anon_sym_RPAREN, + ACTIONS(3749), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [110741] = 5, - ACTIONS(3941), 1, - anon_sym_case, - ACTIONS(3953), 1, - sym__dedent, - STATE(2217), 1, - aux_sym__match_block_repeat1, - STATE(2589), 1, - sym_case_clause, + [110340] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110758] = 5, - ACTIONS(3894), 1, - anon_sym_as, - ACTIONS(3955), 1, + ACTIONS(3737), 4, anon_sym_RPAREN, - ACTIONS(3957), 1, anon_sym_COMMA, - STATE(2402), 1, - aux_sym_case_clause_repeat1, + anon_sym_as, + anon_sym_PIPE, + [110351] = 4, + ACTIONS(3990), 1, + anon_sym_DOT, + STATE(2170), 1, + aux_sym_import_prefix_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110775] = 5, - ACTIONS(3898), 1, - anon_sym_as, - ACTIONS(3959), 1, - anon_sym_COMMA, - ACTIONS(3961), 1, - anon_sym_RBRACK, - STATE(2404), 1, - aux_sym_case_clause_repeat1, + ACTIONS(3988), 2, + anon_sym_import, + sym_identifier, + [110366] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110792] = 4, - ACTIONS(3965), 1, + ACTIONS(3757), 4, anon_sym_COMMA, - STATE(2136), 1, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [110377] = 4, + ACTIONS(3995), 1, + anon_sym_COMMA, + STATE(2116), 1, aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3963), 2, + ACTIONS(3993), 2, sym__newline, anon_sym_SEMI, - [110807] = 4, - ACTIONS(3969), 1, + [110392] = 5, + ACTIONS(3879), 1, + anon_sym_as, + ACTIONS(3997), 1, + anon_sym_RPAREN, + ACTIONS(3999), 1, anon_sym_COMMA, - STATE(2197), 1, - aux_sym_print_statement_repeat1, + STATE(2465), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3967), 2, - sym__newline, - anon_sym_SEMI, - [110822] = 2, + [110409] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3971), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [110833] = 5, - ACTIONS(3894), 1, - anon_sym_as, - ACTIONS(3973), 1, + ACTIONS(3745), 4, anon_sym_RPAREN, - ACTIONS(3975), 1, anon_sym_COMMA, - STATE(2418), 1, - aux_sym_case_clause_repeat1, + anon_sym_as, + anon_sym_PIPE, + [110420] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110850] = 4, - ACTIONS(3228), 1, + ACTIONS(3747), 4, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2015), 1, - aux_sym_assert_statement_repeat1, + anon_sym_as, + anon_sym_PIPE, + [110431] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3977), 2, - sym__newline, - anon_sym_SEMI, - [110865] = 4, - ACTIONS(3979), 1, + ACTIONS(3749), 4, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2150), 1, - aux_sym__import_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3912), 2, - sym__newline, - anon_sym_SEMI, - [110880] = 5, - ACTIONS(3894), 1, anon_sym_as, - ACTIONS(3981), 1, + anon_sym_PIPE, + [110442] = 5, + ACTIONS(3879), 1, + anon_sym_as, + ACTIONS(4001), 1, anon_sym_RPAREN, - ACTIONS(3983), 1, + ACTIONS(4003), 1, anon_sym_COMMA, - STATE(2244), 1, + STATE(2355), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110897] = 5, - ACTIONS(3894), 1, + [110459] = 5, + ACTIONS(3883), 1, anon_sym_as, - ACTIONS(3985), 1, - anon_sym_RPAREN, - ACTIONS(3987), 1, + ACTIONS(4005), 1, anon_sym_COMMA, - STATE(2422), 1, + ACTIONS(4007), 1, + anon_sym_RBRACK, + STATE(2470), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110914] = 5, - ACTIONS(3786), 1, - anon_sym_RPAREN, - ACTIONS(3930), 1, - sym_identifier, - STATE(2417), 1, - sym_dotted_name, - STATE(2599), 1, - sym_aliased_import, + [110476] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110931] = 5, - ACTIONS(3786), 1, + ACTIONS(3757), 4, anon_sym_RPAREN, - ACTIONS(3930), 1, - sym_identifier, - STATE(2417), 1, - sym_dotted_name, - STATE(2599), 1, - sym_aliased_import, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [110487] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110948] = 5, - ACTIONS(3898), 1, - anon_sym_as, - ACTIONS(3989), 1, + ACTIONS(3793), 4, anon_sym_COMMA, - ACTIONS(3991), 1, + anon_sym_as, anon_sym_RBRACK, - STATE(2246), 1, - aux_sym_case_clause_repeat1, + anon_sym_PIPE, + [110498] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110965] = 2, + ACTIONS(3795), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [110509] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3698), 4, + ACTIONS(3797), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [110976] = 4, - ACTIONS(3995), 1, + [110520] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3799), 4, anon_sym_COMMA, - STATE(2136), 1, - aux_sym_print_statement_repeat1, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [110531] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3993), 2, - sym__newline, - anon_sym_SEMI, - [110991] = 5, - ACTIONS(3898), 1, + ACTIONS(3801), 4, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3997), 1, + anon_sym_RBRACK, + anon_sym_PIPE, + [110542] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3803), 4, anon_sym_COMMA, - ACTIONS(3999), 1, + anon_sym_as, anon_sym_RBRACK, - STATE(2496), 1, - aux_sym_case_clause_repeat1, + anon_sym_PIPE, + [110553] = 4, + ACTIONS(4011), 1, + anon_sym_COMMA, + STATE(2186), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111008] = 2, + ACTIONS(4009), 2, + sym__newline, + anon_sym_SEMI, + [110568] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3700), 4, + ACTIONS(3805), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [111019] = 2, + [110579] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3704), 4, + ACTIONS(3821), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111030] = 2, + anon_sym_RBRACE, + [110590] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3706), 4, + ACTIONS(3793), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111041] = 2, + [110601] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3520), 4, + ACTIONS(3795), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [111052] = 5, - ACTIONS(3941), 1, - anon_sym_case, - ACTIONS(4001), 1, - sym__dedent, - STATE(2217), 1, - aux_sym__match_block_repeat1, - STATE(2589), 1, - sym_case_clause, + anon_sym_PIPE, + [110612] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111069] = 2, + ACTIONS(3797), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [110623] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3708), 4, + ACTIONS(3799), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111080] = 4, - ACTIONS(4005), 1, - anon_sym_DOT, - STATE(2206), 1, - aux_sym_import_prefix_repeat1, + [110634] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4003), 2, - anon_sym_import, - sym_identifier, - [111095] = 4, - ACTIONS(4009), 1, - anon_sym_DOT, - STATE(2206), 1, - aux_sym_import_prefix_repeat1, + ACTIONS(3801), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [110645] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4007), 2, - anon_sym_import, - sym_identifier, - [111110] = 2, + ACTIONS(3803), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [110656] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3716), 4, + ACTIONS(3685), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111121] = 5, - ACTIONS(3930), 1, - sym_identifier, - STATE(2167), 1, - sym_dotted_name, - STATE(2356), 1, - sym_aliased_import, - STATE(2610), 1, - sym__import_list, + anon_sym_RBRACE, + [110667] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111138] = 2, + ACTIONS(3805), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [110678] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3704), 4, - anon_sym_RPAREN, + ACTIONS(3807), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [111149] = 2, + [110689] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3706), 4, - anon_sym_RPAREN, + ACTIONS(3807), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111160] = 5, - ACTIONS(3684), 1, - anon_sym_COLON, - ACTIONS(4012), 1, anon_sym_RBRACE, - ACTIONS(4014), 1, - sym_type_conversion, - STATE(2762), 1, - sym_format_specifier, + [110700] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111177] = 5, - ACTIONS(3930), 1, + ACTIONS(3695), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [110711] = 5, + ACTIONS(3729), 1, + anon_sym_RPAREN, + ACTIONS(3906), 1, sym_identifier, - STATE(2167), 1, + STATE(2223), 1, sym_dotted_name, - STATE(2356), 1, + STATE(2558), 1, sym_aliased_import, - STATE(2701), 1, - sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111194] = 4, + [110728] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3697), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [110739] = 4, ACTIONS(4016), 1, + anon_sym_DOT, + STATE(2170), 1, + aux_sym_import_prefix_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4014), 2, + anon_sym_import, + sym_identifier, + [110754] = 4, + ACTIONS(4020), 1, anon_sym_COMMA, - STATE(2015), 1, - aux_sym_assert_statement_repeat1, + STATE(2116), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1429), 2, + ACTIONS(4018), 2, sym__newline, anon_sym_SEMI, - [111209] = 4, - ACTIONS(4018), 1, - anon_sym_COMMA, - STATE(2214), 1, - aux_sym_case_clause_repeat1, + [110769] = 5, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(3927), 1, + anon_sym_LPAREN, + STATE(2545), 1, + sym_parameters, + STATE(2568), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4021), 2, - anon_sym_if, - anon_sym_COLON, - [111224] = 2, + [110786] = 5, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(3927), 1, + anon_sym_LPAREN, + STATE(2546), 1, + sym_parameters, + STATE(2571), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3737), 4, + [110803] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3731), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111235] = 2, + anon_sym_RBRACE, + [110814] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3742), 4, + ACTIONS(3737), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111246] = 5, - ACTIONS(4023), 1, - anon_sym_case, - ACTIONS(4026), 1, - sym__dedent, - STATE(2217), 1, - aux_sym__match_block_repeat1, - STATE(2589), 1, - sym_case_clause, + anon_sym_RBRACE, + [110825] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111263] = 4, - ACTIONS(3228), 1, + ACTIONS(3745), 4, anon_sym_COMMA, - STATE(2015), 1, - aux_sym_assert_statement_repeat1, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [110836] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4028), 2, - sym__newline, - anon_sym_SEMI, - [111278] = 2, + ACTIONS(3747), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [110847] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3744), 4, + ACTIONS(3749), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111289] = 2, + anon_sym_RBRACE, + [110858] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3746), 4, + ACTIONS(3819), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [111300] = 2, + [110869] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3748), 4, + ACTIONS(3757), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111311] = 2, + anon_sym_RBRACE, + [110880] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3750), 4, + ACTIONS(3821), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [111322] = 5, - ACTIONS(3941), 1, - anon_sym_case, - ACTIONS(4030), 1, - sym__dedent, - STATE(2203), 1, - aux_sym__match_block_repeat1, - STATE(2589), 1, - sym_case_clause, + [110891] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111339] = 2, + ACTIONS(3829), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [110902] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3752), 4, + ACTIONS(3793), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111350] = 4, - ACTIONS(3878), 1, - anon_sym_COMMA, - STATE(2134), 1, - aux_sym_global_statement_repeat1, + anon_sym_RBRACE, + [110913] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4032), 2, - sym__newline, - anon_sym_SEMI, - [111365] = 2, + ACTIONS(3795), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [110924] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3768), 4, + ACTIONS(3797), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111376] = 2, + anon_sym_RBRACE, + [110935] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3770), 4, + ACTIONS(3799), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111387] = 2, + anon_sym_RBRACE, + [110946] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3772), 4, + ACTIONS(3801), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111398] = 2, + anon_sym_RBRACE, + [110957] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3774), 4, + ACTIONS(3803), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111409] = 2, + anon_sym_RBRACE, + [110968] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3776), 4, + ACTIONS(3805), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111420] = 2, + anon_sym_RBRACE, + [110979] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3782), 4, + ACTIONS(3747), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [111431] = 5, - ACTIONS(3435), 1, - sym_identifier, - STATE(2077), 1, - sym_dotted_name, - STATE(2149), 1, - sym_aliased_import, - STATE(2571), 1, - sym__import_list, + [110990] = 3, + ACTIONS(3925), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111448] = 5, - ACTIONS(1561), 1, - anon_sym_LBRACK, - ACTIONS(3888), 1, - anon_sym_LPAREN, - STATE(2563), 1, - sym_parameters, - STATE(2591), 1, - sym_type_parameter, + ACTIONS(3860), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [111002] = 4, + ACTIONS(2994), 1, + anon_sym_RPAREN, + ACTIONS(2996), 1, + anon_sym_COMMA, + STATE(2350), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111465] = 5, - ACTIONS(1561), 1, - anon_sym_LBRACK, - ACTIONS(3888), 1, - anon_sym_LPAREN, - STATE(2564), 1, - sym_parameters, - STATE(2594), 1, - sym_type_parameter, + [111016] = 4, + ACTIONS(3662), 1, + anon_sym_COLON, + ACTIONS(4022), 1, + anon_sym_RBRACE, + STATE(2716), 1, + sym_format_specifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [111030] = 4, + ACTIONS(4024), 1, + anon_sym_RPAREN, + ACTIONS(4026), 1, + anon_sym_COMMA, + STATE(2352), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111482] = 2, + [111044] = 4, + ACTIONS(3326), 1, + anon_sym_COMMA, + ACTIONS(3328), 1, + anon_sym_RBRACE, + STATE(2233), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3768), 4, + [111058] = 4, + ACTIONS(2996), 1, + anon_sym_COMMA, + ACTIONS(4028), 1, anon_sym_RPAREN, + STATE(2350), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [111072] = 4, + ACTIONS(613), 1, + sym__newline, + ACTIONS(4030), 1, + anon_sym_SEMI, + STATE(2337), 1, + aux_sym__simple_statements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [111086] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3563), 3, anon_sym_COMMA, anon_sym_as, - anon_sym_PIPE, - [111493] = 5, - ACTIONS(1561), 1, - anon_sym_LBRACK, - ACTIONS(3888), 1, - anon_sym_LPAREN, - STATE(2561), 1, - sym_parameters, - STATE(2565), 1, - sym_type_parameter, + anon_sym_RBRACK, + [111096] = 4, + ACTIONS(2996), 1, + anon_sym_COMMA, + ACTIONS(4032), 1, + anon_sym_RPAREN, + STATE(2350), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111510] = 5, - ACTIONS(3894), 1, - anon_sym_as, + [111110] = 4, + ACTIONS(2996), 1, + anon_sym_COMMA, ACTIONS(4034), 1, anon_sym_RPAREN, - ACTIONS(4036), 1, - anon_sym_COMMA, - STATE(2276), 1, - aux_sym_case_clause_repeat1, + STATE(2350), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111527] = 3, - ACTIONS(3514), 1, - anon_sym_as, + [111124] = 4, + ACTIONS(1299), 1, + anon_sym_RBRACE, + ACTIONS(4036), 1, + anon_sym_COMMA, + STATE(2401), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4021), 3, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - [111540] = 4, - ACTIONS(1293), 1, - anon_sym_COLON, + [111138] = 4, + ACTIONS(3453), 1, + anon_sym_RBRACK, ACTIONS(4038), 1, anon_sym_COMMA, - STATE(2478), 1, - aux_sym_assert_statement_repeat1, + STATE(2234), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111554] = 4, - ACTIONS(3720), 1, - anon_sym_RBRACK, - ACTIONS(4040), 1, + [111152] = 4, + ACTIONS(3010), 1, + anon_sym_RPAREN, + ACTIONS(3012), 1, anon_sym_COMMA, - STATE(2240), 1, - aux_sym_type_parameter_repeat1, + STATE(2241), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111568] = 4, + [111166] = 4, + ACTIONS(4041), 1, + anon_sym_RPAREN, ACTIONS(4043), 1, anon_sym_COMMA, - ACTIONS(4045), 1, + STATE(2243), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [111180] = 3, + ACTIONS(3917), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3913), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [111192] = 4, + ACTIONS(3253), 1, + anon_sym_COMMA, + ACTIONS(3255), 1, anon_sym_RBRACK, - STATE(2407), 1, + STATE(2246), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111582] = 4, - ACTIONS(3024), 1, - anon_sym_COMMA, - ACTIONS(3066), 1, - anon_sym_RPAREN, - STATE(2254), 1, - aux_sym__collection_elements_repeat1, + [111206] = 4, + ACTIONS(615), 1, + sym__newline, + ACTIONS(4045), 1, + anon_sym_SEMI, + STATE(2337), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111596] = 4, + [111220] = 4, ACTIONS(4047), 1, anon_sym_COMMA, ACTIONS(4049), 1, anon_sym_RBRACE, - STATE(2250), 1, + STATE(2348), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111610] = 4, - ACTIONS(2630), 1, + [111234] = 4, + ACTIONS(1151), 1, anon_sym_RPAREN, ACTIONS(4051), 1, anon_sym_COMMA, - STATE(2375), 1, - aux_sym_case_clause_repeat1, + STATE(2256), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111624] = 4, - ACTIONS(1341), 1, - anon_sym_RBRACE, + [111248] = 4, + ACTIONS(957), 1, + anon_sym_in, ACTIONS(4053), 1, anon_sym_COMMA, - STATE(2256), 1, - aux_sym_dictionary_repeat1, + STATE(2269), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111638] = 4, - ACTIONS(2632), 1, - anon_sym_RBRACK, + [111262] = 4, + ACTIONS(1153), 1, + anon_sym_RPAREN, ACTIONS(4055), 1, anon_sym_COMMA, - STATE(2446), 1, - aux_sym_case_clause_repeat1, + STATE(2256), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111652] = 4, - ACTIONS(2672), 1, - anon_sym_RPAREN, + [111276] = 3, ACTIONS(4057), 1, - anon_sym_COMMA, - STATE(2375), 1, - aux_sym_case_clause_repeat1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111666] = 4, - ACTIONS(2674), 1, - anon_sym_RBRACK, + ACTIONS(3913), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [111288] = 4, ACTIONS(4059), 1, anon_sym_COMMA, - STATE(2446), 1, - aux_sym_case_clause_repeat1, + ACTIONS(4061), 1, + anon_sym_RBRACK, + STATE(2328), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111680] = 4, - ACTIONS(1447), 1, - anon_sym_COLON, - ACTIONS(4061), 1, + [111302] = 4, + ACTIONS(4063), 1, anon_sym_COMMA, - STATE(2275), 1, - aux_sym_with_clause_repeat1, + ACTIONS(4065), 1, + anon_sym_RBRACK, + STATE(2328), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111694] = 4, - ACTIONS(4063), 1, + [111316] = 4, + ACTIONS(2937), 1, anon_sym_COMMA, - ACTIONS(4065), 1, + ACTIONS(2949), 1, anon_sym_RBRACE, - STATE(2420), 1, - aux_sym_dict_pattern_repeat1, + STATE(2312), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111708] = 4, + [111330] = 4, + ACTIONS(1005), 1, + anon_sym_RBRACK, ACTIONS(4067), 1, anon_sym_COMMA, + STATE(2375), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [111344] = 4, ACTIONS(4069), 1, + anon_sym_COMMA, + ACTIONS(4071), 1, anon_sym_RBRACE, - STATE(2420), 1, + STATE(2348), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111722] = 4, - ACTIONS(4071), 1, + [111358] = 4, + ACTIONS(2996), 1, anon_sym_COMMA, ACTIONS(4073), 1, - anon_sym_RBRACE, - STATE(2420), 1, - aux_sym_dict_pattern_repeat1, + anon_sym_RPAREN, + STATE(2350), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111736] = 4, - ACTIONS(4075), 1, + [111372] = 4, + ACTIONS(2996), 1, anon_sym_COMMA, + ACTIONS(4075), 1, + anon_sym_RPAREN, + STATE(2350), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [111386] = 4, + ACTIONS(3707), 1, + anon_sym_DOT, + ACTIONS(3711), 1, + anon_sym_PIPE, ACTIONS(4077), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [111400] = 4, + ACTIONS(4079), 1, + sym__newline, + ACTIONS(4081), 1, + sym__indent, + STATE(728), 1, + sym__match_block, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [111414] = 4, + ACTIONS(4083), 1, + anon_sym_COMMA, + ACTIONS(4085), 1, + anon_sym_COLON, + STATE(2371), 1, + aux_sym_match_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [111428] = 4, + ACTIONS(4087), 1, + anon_sym_COMMA, + ACTIONS(4089), 1, anon_sym_RBRACE, - STATE(2420), 1, + STATE(2260), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111750] = 4, - ACTIONS(1291), 1, + [111442] = 4, + ACTIONS(3553), 1, anon_sym_RPAREN, - ACTIONS(4079), 1, + ACTIONS(4091), 1, anon_sym_COMMA, - STATE(2266), 1, - aux_sym__collection_elements_repeat1, + STATE(2256), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111764] = 4, - ACTIONS(2680), 1, + [111456] = 4, + ACTIONS(2662), 1, anon_sym_RPAREN, - ACTIONS(4081), 1, + ACTIONS(4094), 1, anon_sym_COMMA, - STATE(2375), 1, + STATE(2444), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [111470] = 4, + ACTIONS(2664), 1, + anon_sym_RBRACK, + ACTIONS(4096), 1, + anon_sym_COMMA, + STATE(2267), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [111484] = 4, + ACTIONS(4098), 1, + sym__newline, + ACTIONS(4100), 1, + sym__indent, + STATE(756), 1, + sym__match_block, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [111498] = 4, + ACTIONS(4102), 1, + anon_sym_COMMA, + ACTIONS(4104), 1, + anon_sym_RBRACE, + STATE(2348), 1, + aux_sym_dict_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [111512] = 4, + ACTIONS(4106), 1, + anon_sym_COMMA, + ACTIONS(4108), 1, + anon_sym_RBRACE, + STATE(2348), 1, + aux_sym_dict_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [111526] = 4, + ACTIONS(1329), 1, + anon_sym_RBRACE, + ACTIONS(4110), 1, + anon_sym_COMMA, + STATE(2401), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [111540] = 4, + ACTIONS(3504), 1, + anon_sym_PIPE, + ACTIONS(4112), 1, + anon_sym_COLON, + STATE(1947), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [111554] = 3, + ACTIONS(3883), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3862), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [111566] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3864), 3, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + [111576] = 4, + ACTIONS(2612), 1, + anon_sym_RPAREN, + ACTIONS(4114), 1, + anon_sym_COMMA, + STATE(2444), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [111590] = 4, + ACTIONS(3862), 1, + anon_sym_RBRACK, + ACTIONS(4116), 1, + anon_sym_COMMA, + STATE(2267), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111778] = 4, - ACTIONS(4083), 1, + [111604] = 4, + ACTIONS(4119), 1, + anon_sym_COMMA, + ACTIONS(4121), 1, + anon_sym_RBRACE, + STATE(2240), 1, + aux_sym_dict_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [111618] = 4, + ACTIONS(2859), 1, + anon_sym_in, + ACTIONS(4123), 1, + anon_sym_COMMA, + STATE(2269), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [111632] = 4, + ACTIONS(1207), 1, + anon_sym_RPAREN, + ACTIONS(4126), 1, anon_sym_COMMA, - ACTIONS(4086), 1, - anon_sym_RBRACE, STATE(2256), 1, - aux_sym_dictionary_repeat1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111792] = 2, - ACTIONS(3), 2, + [111646] = 3, + ACTIONS(3627), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3520), 3, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(3629), 2, + anon_sym_LBRACE, anon_sym_RBRACE, - [111802] = 4, - ACTIONS(4088), 1, + [111658] = 4, + ACTIONS(3096), 1, + anon_sym_RPAREN, + ACTIONS(3098), 1, anon_sym_COMMA, - ACTIONS(4091), 1, - anon_sym_COLON, - STATE(2258), 1, - aux_sym__parameters_repeat1, + STATE(2316), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111816] = 3, - ACTIONS(1682), 1, - anon_sym_except, + [111672] = 4, + ACTIONS(3350), 1, + sym_identifier, + STATE(2095), 1, + sym_dotted_name, + STATE(2436), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1684), 2, - anon_sym_except_STAR, - anon_sym_finally, - [111828] = 4, - ACTIONS(4093), 1, + [111686] = 4, + ACTIONS(4128), 1, anon_sym_SEMI, - ACTIONS(4095), 1, + ACTIONS(4130), 1, sym__newline, - STATE(2268), 1, + STATE(2282), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111842] = 3, - ACTIONS(3894), 1, - anon_sym_as, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4021), 2, + [111700] = 4, + ACTIONS(4132), 1, anon_sym_RPAREN, + ACTIONS(4134), 1, anon_sym_COMMA, - [111854] = 4, - ACTIONS(3790), 1, - anon_sym_DOT, - ACTIONS(3796), 1, - anon_sym_PIPE, - ACTIONS(4097), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [111868] = 2, + STATE(2321), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3918), 3, - sym__newline, - anon_sym_SEMI, + [111714] = 4, + ACTIONS(2996), 1, anon_sym_COMMA, - [111878] = 4, ACTIONS(3024), 1, - anon_sym_COMMA, - ACTIONS(3060), 1, anon_sym_RPAREN, - STATE(2254), 1, + STATE(2350), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111892] = 3, - ACTIONS(3541), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + [111728] = 3, + ACTIONS(1629), 1, + anon_sym_except, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3543), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [111904] = 4, - ACTIONS(3490), 1, - anon_sym_RPAREN, - ACTIONS(4099), 1, + ACTIONS(1627), 2, + anon_sym_except_STAR, + anon_sym_finally, + [111740] = 4, + ACTIONS(3269), 1, anon_sym_COMMA, - STATE(2266), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(3271), 1, + anon_sym_RBRACK, + STATE(2325), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111918] = 4, - ACTIONS(3393), 1, + [111754] = 4, + ACTIONS(4136), 1, anon_sym_COMMA, - ACTIONS(3395), 1, - anon_sym_RBRACE, - STATE(2271), 1, - aux_sym_dictionary_repeat1, + ACTIONS(4138), 1, + anon_sym_COLON, + STATE(2475), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111932] = 4, - ACTIONS(629), 1, - sym__newline, - ACTIONS(4102), 1, - anon_sym_SEMI, - STATE(2400), 1, - aux_sym__simple_statements_repeat1, + [111768] = 4, + ACTIONS(3338), 1, + anon_sym_COMMA, + ACTIONS(3340), 1, + anon_sym_RBRACE, + STATE(2283), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111946] = 4, - ACTIONS(4104), 1, - anon_sym_COMMA, - ACTIONS(4106), 1, + [111782] = 4, + ACTIONS(3662), 1, anon_sym_COLON, - STATE(2249), 1, - aux_sym_with_clause_repeat1, + ACTIONS(4140), 1, + anon_sym_RBRACE, + STATE(2701), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111960] = 4, - ACTIONS(4108), 1, - anon_sym_COMMA, - ACTIONS(4110), 1, - anon_sym_in, - STATE(2346), 1, - aux_sym__patterns_repeat1, + [111796] = 4, + ACTIONS(623), 1, + sym__newline, + ACTIONS(4142), 1, + anon_sym_SEMI, + STATE(2337), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111974] = 4, + [111810] = 4, ACTIONS(1307), 1, anon_sym_RBRACE, - ACTIONS(4112), 1, + ACTIONS(4144), 1, anon_sym_COMMA, - STATE(2256), 1, + STATE(2401), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111988] = 4, - ACTIONS(3729), 1, - anon_sym_LPAREN, - ACTIONS(4114), 1, - anon_sym_COLON, - STATE(2770), 1, - sym_argument_list, + [111824] = 3, + ACTIONS(4146), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112002] = 4, - ACTIONS(3062), 1, - anon_sym_RPAREN, - ACTIONS(3064), 1, + ACTIONS(3913), 2, anon_sym_COMMA, - STATE(2282), 1, - aux_sym_argument_list_repeat1, + anon_sym_COLON, + [111836] = 4, + ACTIONS(4079), 1, + sym__newline, + ACTIONS(4081), 1, + sym__indent, + STATE(749), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112016] = 4, - ACTIONS(4116), 1, + [111850] = 4, + ACTIONS(3026), 1, anon_sym_RPAREN, - ACTIONS(4118), 1, + ACTIONS(3028), 1, anon_sym_COMMA, - STATE(2284), 1, + STATE(2294), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112030] = 4, - ACTIONS(4120), 1, - anon_sym_COMMA, - ACTIONS(4123), 1, - anon_sym_COLON, - STATE(2275), 1, - aux_sym_with_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112044] = 4, - ACTIONS(2640), 1, + [111864] = 4, + ACTIONS(4148), 1, anon_sym_RPAREN, - ACTIONS(4125), 1, + ACTIONS(4150), 1, anon_sym_COMMA, - STATE(2375), 1, - aux_sym_case_clause_repeat1, + STATE(2296), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112058] = 4, - ACTIONS(3246), 1, - anon_sym_COMMA, - ACTIONS(3248), 1, - anon_sym_RBRACK, - STATE(2287), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, + [111878] = 3, + ACTIONS(3631), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [112072] = 3, - ACTIONS(3556), 1, + ACTIONS(3633), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [111890] = 3, + ACTIONS(3635), 1, aux_sym_format_specifier_token1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3558), 2, + ACTIONS(3637), 2, anon_sym_LBRACE, anon_sym_RBRACE, - [112084] = 4, - ACTIONS(3374), 1, + [111902] = 4, + ACTIONS(3210), 1, anon_sym_COMMA, - ACTIONS(3376), 1, - anon_sym_RBRACE, - STATE(2245), 1, - aux_sym_dictionary_repeat1, + ACTIONS(3212), 1, + anon_sym_RBRACK, + STATE(2298), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112098] = 3, - ACTIONS(1698), 1, - anon_sym_except, + [111916] = 4, + ACTIONS(3100), 1, + anon_sym_RPAREN, + ACTIONS(3102), 1, + anon_sym_COMMA, + STATE(2459), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1700), 2, - anon_sym_except_STAR, - anon_sym_finally, - [112110] = 3, - ACTIONS(3648), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + [111930] = 4, + ACTIONS(3823), 1, + anon_sym_RPAREN, + ACTIONS(3923), 1, + anon_sym_COMMA, + STATE(2452), 1, + aux_sym__import_list_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3650), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [112122] = 4, - ACTIONS(1201), 1, + [111944] = 4, + ACTIONS(4152), 1, anon_sym_RPAREN, - ACTIONS(4127), 1, + ACTIONS(4154), 1, anon_sym_COMMA, - STATE(2438), 1, + STATE(2270), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [111958] = 4, + ACTIONS(1165), 1, + anon_sym_RPAREN, + ACTIONS(4156), 1, + anon_sym_COMMA, + STATE(2256), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112136] = 4, - ACTIONS(4129), 1, + [111972] = 4, + ACTIONS(2996), 1, anon_sym_COMMA, - ACTIONS(4131), 1, - anon_sym_RBRACE, - STATE(2420), 1, - aux_sym_dict_pattern_repeat1, + ACTIONS(4158), 1, + anon_sym_RPAREN, + STATE(2350), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112150] = 4, - ACTIONS(1203), 1, + [111986] = 4, + ACTIONS(1167), 1, anon_sym_RPAREN, - ACTIONS(4133), 1, + ACTIONS(4160), 1, anon_sym_COMMA, - STATE(2438), 1, + STATE(2256), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112164] = 4, - ACTIONS(2875), 1, - anon_sym_RBRACK, - ACTIONS(4135), 1, + [112000] = 4, + ACTIONS(4162), 1, anon_sym_COMMA, - STATE(2285), 1, - aux_sym__patterns_repeat1, + ACTIONS(4164), 1, + anon_sym_RBRACK, + STATE(2328), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112178] = 4, - ACTIONS(4138), 1, + [112014] = 4, + ACTIONS(4166), 1, anon_sym_COMMA, - ACTIONS(4140), 1, + ACTIONS(4168), 1, anon_sym_RBRACK, - STATE(2407), 1, + STATE(2328), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112192] = 4, - ACTIONS(4142), 1, + [112028] = 4, + ACTIONS(997), 1, + anon_sym_RBRACK, + ACTIONS(4170), 1, anon_sym_COMMA, - ACTIONS(4144), 1, + STATE(2375), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112042] = 4, + ACTIONS(4172), 1, + anon_sym_COMMA, + ACTIONS(4174), 1, anon_sym_RBRACK, - STATE(2407), 1, + STATE(2328), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112206] = 3, - ACTIONS(3566), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + [112056] = 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3568), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [112218] = 4, - ACTIONS(3364), 1, - anon_sym_COMMA, - ACTIONS(3366), 1, - anon_sym_RBRACE, - STATE(2421), 1, - aux_sym_dictionary_repeat1, + ACTIONS(2439), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_in, + [112066] = 4, + ACTIONS(4079), 1, + sym__newline, + ACTIONS(4081), 1, + sym__indent, + STATE(752), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112232] = 4, - ACTIONS(3435), 1, - sym_identifier, - STATE(2135), 1, - sym_dotted_name, - STATE(2306), 1, - sym_aliased_import, + [112080] = 4, + ACTIONS(4176), 1, + anon_sym_RPAREN, + ACTIONS(4178), 1, + anon_sym_COMMA, + STATE(2303), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112246] = 4, - ACTIONS(3684), 1, - anon_sym_COLON, - ACTIONS(4146), 1, + [112094] = 4, + ACTIONS(4181), 1, + anon_sym_COMMA, + ACTIONS(4183), 1, anon_sym_RBRACE, - STATE(2603), 1, - sym_format_specifier, + STATE(2309), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112260] = 4, - ACTIONS(1996), 1, + [112108] = 3, + ACTIONS(1621), 1, + anon_sym_except, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1619), 2, + anon_sym_except_STAR, + anon_sym_finally, + [112120] = 4, + ACTIONS(2676), 1, anon_sym_RPAREN, - ACTIONS(4148), 1, + ACTIONS(4185), 1, anon_sym_COMMA, - STATE(2373), 1, - aux_sym__patterns_repeat1, + STATE(2444), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112274] = 4, - ACTIONS(3790), 1, - anon_sym_DOT, - ACTIONS(3796), 1, - anon_sym_PIPE, - ACTIONS(4150), 1, - anon_sym_COLON, + [112134] = 4, + ACTIONS(2640), 1, + anon_sym_RBRACK, + ACTIONS(4187), 1, + anon_sym_COMMA, + STATE(2267), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112288] = 4, - ACTIONS(4152), 1, - anon_sym_SEMI, - ACTIONS(4154), 1, - sym__newline, - STATE(2308), 1, - aux_sym__simple_statements_repeat1, + [112148] = 4, + ACTIONS(2996), 1, + anon_sym_COMMA, + ACTIONS(3104), 1, + anon_sym_RPAREN, + STATE(2350), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112302] = 4, - ACTIONS(3912), 1, - anon_sym_RPAREN, - ACTIONS(4156), 1, + [112162] = 4, + ACTIONS(4189), 1, anon_sym_COMMA, - STATE(2419), 1, - aux_sym__import_list_repeat1, + ACTIONS(4191), 1, + anon_sym_RBRACE, + STATE(2348), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112316] = 4, - ACTIONS(3912), 1, + [112176] = 4, + ACTIONS(3453), 1, anon_sym_RPAREN, - ACTIONS(4158), 1, + ACTIONS(4193), 1, anon_sym_COMMA, - STATE(2419), 1, - aux_sym__import_list_repeat1, + STATE(2310), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112330] = 4, - ACTIONS(4160), 1, + [112190] = 4, + ACTIONS(4196), 1, anon_sym_COMMA, - ACTIONS(4162), 1, + ACTIONS(4198), 1, anon_sym_RBRACE, - STATE(2420), 1, + STATE(2348), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112344] = 4, - ACTIONS(3022), 1, - anon_sym_RPAREN, - ACTIONS(3024), 1, + [112204] = 4, + ACTIONS(1265), 1, + anon_sym_RBRACE, + ACTIONS(4200), 1, anon_sym_COMMA, - STATE(2254), 1, + STATE(2434), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112358] = 4, - ACTIONS(4164), 1, + [112218] = 4, + ACTIONS(4202), 1, + anon_sym_COMMA, + ACTIONS(4204), 1, + anon_sym_in, + STATE(2242), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112232] = 4, + ACTIONS(4206), 1, anon_sym_SEMI, - ACTIONS(4166), 1, + ACTIONS(4208), 1, sym__newline, - STATE(2310), 1, + STATE(2398), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112372] = 2, + [112246] = 4, + ACTIONS(2646), 1, + anon_sym_RPAREN, + ACTIONS(4210), 1, + anon_sym_COMMA, + STATE(2444), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2445), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_in, - [112382] = 4, - ACTIONS(1173), 1, + [112260] = 4, + ACTIONS(1159), 1, anon_sym_RPAREN, - ACTIONS(4168), 1, + ACTIONS(4212), 1, anon_sym_COMMA, - STATE(2438), 1, + STATE(2256), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112396] = 2, + [112274] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3971), 3, + ACTIONS(3563), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACE, - [112406] = 4, - ACTIONS(3024), 1, + [112284] = 4, + ACTIONS(4202), 1, anon_sym_COMMA, - ACTIONS(3072), 1, - anon_sym_RPAREN, - STATE(2254), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(4214), 1, + anon_sym_in, + STATE(2242), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112420] = 2, + [112298] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1630), 3, + ACTIONS(1596), 3, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [112430] = 4, - ACTIONS(3450), 1, - anon_sym_COMMA, - ACTIONS(3452), 1, - anon_sym_RBRACE, - STATE(2319), 1, - aux_sym_dictionary_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112444] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3923), 3, - sym__newline, + [112308] = 4, + ACTIONS(4216), 1, anon_sym_SEMI, - anon_sym_COMMA, - [112454] = 4, - ACTIONS(3347), 1, - anon_sym_COMMA, - ACTIONS(3349), 1, - anon_sym_RBRACE, - STATE(2313), 1, - aux_sym_dictionary_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112468] = 4, - ACTIONS(627), 1, + ACTIONS(4218), 1, sym__newline, - ACTIONS(4170), 1, - anon_sym_SEMI, - STATE(2400), 1, + STATE(2329), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112482] = 4, - ACTIONS(1187), 1, + [112322] = 4, + ACTIONS(1161), 1, anon_sym_RPAREN, - ACTIONS(4172), 1, + ACTIONS(4220), 1, anon_sym_COMMA, - STATE(2438), 1, + STATE(2256), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112496] = 4, - ACTIONS(633), 1, - sym__newline, - ACTIONS(4174), 1, - anon_sym_SEMI, - STATE(2400), 1, - aux_sym__simple_statements_repeat1, + [112336] = 4, + ACTIONS(4222), 1, + anon_sym_COMMA, + ACTIONS(4224), 1, + anon_sym_RBRACK, + STATE(2462), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112510] = 4, - ACTIONS(1291), 1, + [112350] = 4, + ACTIONS(4226), 1, + anon_sym_COMMA, + ACTIONS(4228), 1, anon_sym_RBRACK, - ACTIONS(4176), 1, + STATE(2328), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112364] = 4, + ACTIONS(2996), 1, anon_sym_COMMA, - STATE(2428), 1, + ACTIONS(3048), 1, + anon_sym_RPAREN, + STATE(2350), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112524] = 2, + [112378] = 4, + ACTIONS(4230), 1, + anon_sym_COMMA, + ACTIONS(4232), 1, + anon_sym_RBRACK, + STATE(2328), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2880), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [112534] = 4, - ACTIONS(1319), 1, + [112392] = 4, + ACTIONS(3662), 1, + anon_sym_COLON, + ACTIONS(4234), 1, anon_sym_RBRACE, - ACTIONS(4178), 1, - anon_sym_COMMA, - STATE(2256), 1, - aux_sym_dictionary_repeat1, + STATE(2637), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112548] = 4, - ACTIONS(3024), 1, + [112406] = 4, + ACTIONS(3346), 1, anon_sym_COMMA, - ACTIONS(4180), 1, - anon_sym_RPAREN, - STATE(2254), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(3348), 1, + anon_sym_RBRACE, + STATE(2330), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112562] = 4, - ACTIONS(3024), 1, + [112420] = 4, + ACTIONS(4236), 1, anon_sym_COMMA, - ACTIONS(4182), 1, - anon_sym_RPAREN, - STATE(2254), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(4239), 1, + anon_sym_RBRACK, + STATE(2328), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112576] = 4, - ACTIONS(3078), 1, - anon_sym_RPAREN, - ACTIONS(3080), 1, - anon_sym_COMMA, - STATE(2324), 1, - aux_sym_argument_list_repeat1, + [112434] = 4, + ACTIONS(629), 1, + sym__newline, + ACTIONS(4241), 1, + anon_sym_SEMI, + STATE(2337), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112590] = 4, - ACTIONS(4184), 1, - anon_sym_RPAREN, - ACTIONS(4186), 1, + [112448] = 4, + ACTIONS(1305), 1, + anon_sym_RBRACE, + ACTIONS(4243), 1, anon_sym_COMMA, - STATE(2326), 1, - aux_sym_argument_list_repeat1, + STATE(2401), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112604] = 4, - ACTIONS(3204), 1, + [112462] = 4, + ACTIONS(3052), 1, anon_sym_RPAREN, - ACTIONS(4188), 1, + ACTIONS(3054), 1, anon_sym_COMMA, - STATE(2318), 1, - aux_sym_assert_statement_repeat1, + STATE(2338), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112618] = 4, - ACTIONS(1305), 1, - anon_sym_RBRACE, - ACTIONS(4191), 1, + [112476] = 4, + ACTIONS(4245), 1, + anon_sym_RPAREN, + ACTIONS(4247), 1, anon_sym_COMMA, - STATE(2256), 1, - aux_sym_dictionary_repeat1, + STATE(2340), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112632] = 4, - ACTIONS(3268), 1, + [112490] = 4, + ACTIONS(4024), 1, + anon_sym_COLON, + ACTIONS(4249), 1, anon_sym_COMMA, - ACTIONS(3270), 1, - anon_sym_RBRACK, - STATE(2329), 1, - aux_sym_subscript_repeat1, + STATE(2463), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112646] = 4, - ACTIONS(1996), 1, - anon_sym_RBRACK, - ACTIONS(4193), 1, + [112504] = 4, + ACTIONS(4176), 1, + anon_sym_COLON, + ACTIONS(4251), 1, anon_sym_COMMA, - STATE(2285), 1, - aux_sym__patterns_repeat1, + STATE(2334), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112660] = 4, - ACTIONS(4195), 1, + [112518] = 4, + ACTIONS(3217), 1, anon_sym_COMMA, - ACTIONS(4197), 1, + ACTIONS(3219), 1, anon_sym_RBRACK, - STATE(2407), 1, + STATE(2343), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112674] = 4, - ACTIONS(3038), 1, - anon_sym_RPAREN, - ACTIONS(3040), 1, - anon_sym_COMMA, - STATE(2335), 1, - aux_sym_argument_list_repeat1, + [112532] = 3, + ACTIONS(4146), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112688] = 4, - ACTIONS(1213), 1, - anon_sym_RPAREN, - ACTIONS(4199), 1, + ACTIONS(3913), 2, anon_sym_COMMA, - STATE(2438), 1, - aux_sym_argument_list_repeat1, + anon_sym_COLON, + [112544] = 4, + ACTIONS(4254), 1, + anon_sym_SEMI, + ACTIONS(4257), 1, + sym__newline, + STATE(2337), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112702] = 4, - ACTIONS(4201), 1, + [112558] = 4, + ACTIONS(1183), 1, anon_sym_RPAREN, - ACTIONS(4203), 1, + ACTIONS(4259), 1, anon_sym_COMMA, - STATE(2338), 1, + STATE(2256), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112716] = 4, - ACTIONS(1215), 1, - anon_sym_RPAREN, - ACTIONS(4205), 1, - anon_sym_COMMA, - STATE(2438), 1, - aux_sym_argument_list_repeat1, + [112572] = 3, + ACTIONS(1625), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112730] = 4, - ACTIONS(4207), 1, + ACTIONS(1623), 2, + anon_sym_except_STAR, + anon_sym_finally, + [112584] = 4, + ACTIONS(1185), 1, + anon_sym_RPAREN, + ACTIONS(4261), 1, anon_sym_COMMA, - ACTIONS(4209), 1, - anon_sym_RBRACK, - STATE(2407), 1, - aux_sym_subscript_repeat1, + STATE(2256), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112744] = 4, - ACTIONS(4211), 1, - anon_sym_COMMA, - ACTIONS(4213), 1, - anon_sym_RBRACK, - STATE(2407), 1, - aux_sym_subscript_repeat1, + [112598] = 4, + ACTIONS(3707), 1, + anon_sym_DOT, + ACTIONS(3711), 1, + anon_sym_PIPE, + ACTIONS(4263), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112758] = 4, - ACTIONS(4215), 1, + [112612] = 4, + ACTIONS(4265), 1, anon_sym_COMMA, - ACTIONS(4217), 1, + ACTIONS(4267), 1, anon_sym_RBRACK, - STATE(2407), 1, + STATE(2328), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112772] = 4, - ACTIONS(3278), 1, + [112626] = 4, + ACTIONS(4269), 1, anon_sym_COMMA, - ACTIONS(3280), 1, + ACTIONS(4271), 1, anon_sym_RBRACK, - STATE(2343), 1, + STATE(2328), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112786] = 4, - ACTIONS(4219), 1, - sym__newline, - ACTIONS(4221), 1, - sym__indent, - STATE(804), 1, - sym__match_block, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112800] = 4, - ACTIONS(3684), 1, - anon_sym_COLON, - ACTIONS(4223), 1, - anon_sym_RBRACE, - STATE(2653), 1, - sym_format_specifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112814] = 4, - ACTIONS(3204), 1, - anon_sym_RBRACK, - ACTIONS(4225), 1, + [112640] = 4, + ACTIONS(1267), 1, + anon_sym_RPAREN, + ACTIONS(4273), 1, anon_sym_COMMA, - STATE(2333), 1, + STATE(2394), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112828] = 4, - ACTIONS(617), 1, - sym__newline, - ACTIONS(4228), 1, - anon_sym_SEMI, - STATE(2400), 1, - aux_sym__simple_statements_repeat1, + [112654] = 3, + ACTIONS(4277), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112842] = 4, - ACTIONS(1175), 1, - anon_sym_RPAREN, - ACTIONS(4230), 1, + ACTIONS(4275), 2, anon_sym_COMMA, - STATE(2438), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112856] = 4, - ACTIONS(3120), 1, - anon_sym_RPAREN, - ACTIONS(3122), 1, + anon_sym_RBRACE, + [112666] = 4, + ACTIONS(3275), 1, anon_sym_COMMA, - STATE(2479), 1, - aux_sym_argument_list_repeat1, + ACTIONS(3277), 1, + anon_sym_RBRACK, + STATE(2389), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112870] = 4, - ACTIONS(1439), 1, - anon_sym_RPAREN, - ACTIONS(4232), 1, - anon_sym_COMMA, - STATE(2468), 1, - aux_sym_with_clause_repeat1, + [112680] = 4, + ACTIONS(4098), 1, + sym__newline, + ACTIONS(4100), 1, + sym__indent, + STATE(733), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112884] = 4, - ACTIONS(1177), 1, - anon_sym_RPAREN, - ACTIONS(4234), 1, + [112694] = 4, + ACTIONS(4279), 1, anon_sym_COMMA, - STATE(2438), 1, - aux_sym_argument_list_repeat1, + ACTIONS(4282), 1, + anon_sym_RBRACE, + STATE(2348), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112898] = 2, + [112708] = 4, + ACTIONS(995), 1, + anon_sym_RBRACK, + ACTIONS(4284), 1, + anon_sym_COMMA, + STATE(2375), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4236), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - [112908] = 4, - ACTIONS(4238), 1, + [112722] = 4, + ACTIONS(1265), 1, anon_sym_RPAREN, - ACTIONS(4240), 1, + ACTIONS(4286), 1, anon_sym_COMMA, - STATE(2292), 1, - aux_sym__patterns_repeat1, + STATE(2310), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112922] = 4, - ACTIONS(4242), 1, + [112736] = 4, + ACTIONS(4288), 1, anon_sym_SEMI, - ACTIONS(4244), 1, + ACTIONS(4290), 1, sym__newline, - STATE(2350), 1, + STATE(2357), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112936] = 4, - ACTIONS(4246), 1, - anon_sym_COMMA, - ACTIONS(4248), 1, - anon_sym_RBRACK, - STATE(2407), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112950] = 4, - ACTIONS(4250), 1, + [112750] = 4, + ACTIONS(2933), 1, + anon_sym_RPAREN, + ACTIONS(4292), 1, anon_sym_COMMA, - ACTIONS(4252), 1, - anon_sym_RBRACK, - STATE(2407), 1, - aux_sym_subscript_repeat1, + STATE(2303), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112964] = 4, - ACTIONS(3024), 1, + [112764] = 4, + ACTIONS(2996), 1, anon_sym_COMMA, - ACTIONS(3089), 1, + ACTIONS(3060), 1, anon_sym_RPAREN, - STATE(2254), 1, + STATE(2350), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112978] = 4, - ACTIONS(2965), 1, + [112778] = 4, + ACTIONS(2949), 1, anon_sym_RPAREN, - ACTIONS(3024), 1, + ACTIONS(2996), 1, anon_sym_COMMA, - STATE(2254), 1, + STATE(2350), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112992] = 4, - ACTIONS(959), 1, - anon_sym_in, - ACTIONS(4254), 1, + [112792] = 4, + ACTIONS(2624), 1, + anon_sym_RPAREN, + ACTIONS(4294), 1, anon_sym_COMMA, - STATE(2424), 1, - aux_sym__patterns_repeat1, + STATE(2444), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113006] = 4, - ACTIONS(3382), 1, + [112806] = 4, + ACTIONS(3375), 1, anon_sym_COMMA, - ACTIONS(3384), 1, + ACTIONS(3377), 1, anon_sym_RBRACE, - STATE(2352), 1, + STATE(2359), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113020] = 4, - ACTIONS(1291), 1, - anon_sym_RBRACE, - ACTIONS(4256), 1, - anon_sym_COMMA, - STATE(2427), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [113034] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3520), 3, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - [113044] = 4, - ACTIONS(639), 1, + [112820] = 4, + ACTIONS(609), 1, sym__newline, - ACTIONS(4258), 1, + ACTIONS(4296), 1, anon_sym_SEMI, - STATE(2400), 1, + STATE(2337), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113058] = 2, + [112834] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1630), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [113068] = 4, + ACTIONS(2432), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_in, + [112844] = 4, ACTIONS(1327), 1, anon_sym_RBRACE, - ACTIONS(4260), 1, + ACTIONS(4298), 1, anon_sym_COMMA, - STATE(2256), 1, + STATE(2401), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113082] = 4, - ACTIONS(3024), 1, - anon_sym_COMMA, - ACTIONS(3048), 1, - anon_sym_RPAREN, - STATE(2254), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [113096] = 4, - ACTIONS(3091), 1, + [112858] = 4, + ACTIONS(3062), 1, anon_sym_RPAREN, - ACTIONS(3093), 1, + ACTIONS(3064), 1, anon_sym_COMMA, - STATE(2361), 1, + STATE(2366), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113110] = 4, - ACTIONS(4262), 1, + [112872] = 4, + ACTIONS(4300), 1, anon_sym_RPAREN, - ACTIONS(4264), 1, + ACTIONS(4302), 1, anon_sym_COMMA, - STATE(2362), 1, + STATE(2367), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113124] = 4, - ACTIONS(3835), 1, - anon_sym_RPAREN, - ACTIONS(3945), 1, - anon_sym_COMMA, - STATE(2295), 1, - aux_sym__import_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [113138] = 4, - ACTIONS(2953), 1, - anon_sym_COMMA, - ACTIONS(2965), 1, - anon_sym_RBRACE, - STATE(2348), 1, - aux_sym__collection_elements_repeat1, + [112886] = 3, + ACTIONS(1642), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113152] = 4, - ACTIONS(3274), 1, + ACTIONS(1644), 2, + anon_sym_except_STAR, + anon_sym_finally, + [112898] = 4, + ACTIONS(3302), 1, anon_sym_COMMA, - ACTIONS(3276), 1, + ACTIONS(3304), 1, anon_sym_RBRACK, - STATE(2365), 1, + STATE(2369), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113166] = 3, - ACTIONS(3177), 1, - anon_sym_from, + [112912] = 4, + ACTIONS(4304), 1, + anon_sym_COMMA, + ACTIONS(4306), 1, + anon_sym_COLON, + STATE(2371), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3175), 2, - sym__newline, - anon_sym_SEMI, - [113178] = 4, - ACTIONS(985), 1, - anon_sym_RBRACK, - ACTIONS(4266), 1, + [112926] = 4, + ACTIONS(4202), 1, anon_sym_COMMA, - STATE(2240), 1, - aux_sym_type_parameter_repeat1, + ACTIONS(4308), 1, + anon_sym_in, + STATE(2242), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113192] = 4, - ACTIONS(1225), 1, + [112940] = 4, + ACTIONS(1197), 1, anon_sym_RPAREN, - ACTIONS(4268), 1, + ACTIONS(4310), 1, anon_sym_COMMA, - STATE(2438), 1, + STATE(2256), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113206] = 4, - ACTIONS(1227), 1, + [112954] = 4, + ACTIONS(1199), 1, anon_sym_RPAREN, - ACTIONS(4270), 1, + ACTIONS(4312), 1, anon_sym_COMMA, - STATE(2438), 1, + STATE(2256), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113220] = 4, - ACTIONS(2714), 1, - sym_identifier, - ACTIONS(4272), 1, - anon_sym_import, - STATE(2732), 1, - sym_dotted_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [113234] = 4, - ACTIONS(4274), 1, + [112968] = 4, + ACTIONS(4314), 1, anon_sym_COMMA, - ACTIONS(4276), 1, + ACTIONS(4316), 1, anon_sym_RBRACK, - STATE(2407), 1, + STATE(2328), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113248] = 4, - ACTIONS(4278), 1, + [112982] = 4, + ACTIONS(4318), 1, anon_sym_COMMA, - ACTIONS(4280), 1, + ACTIONS(4320), 1, anon_sym_RBRACK, - STATE(2407), 1, + STATE(2328), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113262] = 4, - ACTIONS(4219), 1, + [112996] = 4, + ACTIONS(4098), 1, sym__newline, - ACTIONS(4221), 1, + ACTIONS(4100), 1, sym__indent, - STATE(730), 1, + STATE(735), 1, sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113276] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3971), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - [113286] = 4, - ACTIONS(2951), 1, - anon_sym_RPAREN, - ACTIONS(4282), 1, - anon_sym_COMMA, - STATE(2486), 1, - aux_sym__parameters_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [113300] = 4, - ACTIONS(4284), 1, + [113010] = 4, + ACTIONS(4322), 1, anon_sym_COMMA, - ACTIONS(4287), 1, + ACTIONS(4325), 1, anon_sym_COLON, - STATE(2369), 1, + STATE(2371), 1, aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113314] = 4, - ACTIONS(4289), 1, - anon_sym_RPAREN, - ACTIONS(4291), 1, + [113024] = 4, + ACTIONS(1267), 1, + anon_sym_RBRACK, + ACTIONS(4327), 1, anon_sym_COMMA, - STATE(2383), 1, - aux_sym_argument_list_repeat1, + STATE(2393), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113328] = 3, - ACTIONS(1702), 1, - anon_sym_except, + [113038] = 3, + ACTIONS(3557), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3559), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [113050] = 4, + ACTIONS(1267), 1, + anon_sym_COLON, + ACTIONS(4329), 1, + anon_sym_COMMA, + STATE(2416), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1704), 2, - anon_sym_except_STAR, - anon_sym_finally, - [113340] = 4, - ACTIONS(1023), 1, + [113064] = 4, + ACTIONS(3670), 1, anon_sym_RBRACK, - ACTIONS(4293), 1, + ACTIONS(4331), 1, anon_sym_COMMA, - STATE(2240), 1, + STATE(2375), 1, aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113354] = 4, - ACTIONS(2875), 1, - anon_sym_RPAREN, - ACTIONS(4295), 1, + [113078] = 4, + ACTIONS(2996), 1, anon_sym_COMMA, - STATE(2373), 1, - aux_sym__patterns_repeat1, + ACTIONS(3072), 1, + anon_sym_RPAREN, + STATE(2350), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113368] = 4, - ACTIONS(4298), 1, - anon_sym_SEMI, - ACTIONS(4300), 1, - sym__newline, - STATE(2498), 1, - aux_sym__simple_statements_repeat1, + [113092] = 4, + ACTIONS(3390), 1, + anon_sym_COMMA, + ACTIONS(3392), 1, + anon_sym_RBRACE, + STATE(2379), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113382] = 4, - ACTIONS(4021), 1, + [113106] = 4, + ACTIONS(2859), 1, anon_sym_RPAREN, - ACTIONS(4302), 1, + ACTIONS(4334), 1, anon_sym_COMMA, - STATE(2375), 1, - aux_sym_case_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [113396] = 4, - ACTIONS(4305), 1, - anon_sym_SEMI, - ACTIONS(4307), 1, - sym__newline, - STATE(2431), 1, - aux_sym__simple_statements_repeat1, + STATE(2378), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113410] = 4, - ACTIONS(3024), 1, + [113120] = 4, + ACTIONS(1301), 1, + anon_sym_RBRACE, + ACTIONS(4337), 1, anon_sym_COMMA, - ACTIONS(3099), 1, - anon_sym_RPAREN, - STATE(2254), 1, - aux_sym__collection_elements_repeat1, + STATE(2401), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113424] = 4, - ACTIONS(2965), 1, - anon_sym_RBRACK, - ACTIONS(3004), 1, + [113134] = 4, + ACTIONS(3114), 1, + anon_sym_RPAREN, + ACTIONS(3116), 1, anon_sym_COMMA, - STATE(2311), 1, - aux_sym__collection_elements_repeat1, + STATE(2384), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113438] = 4, - ACTIONS(3024), 1, - anon_sym_COMMA, - ACTIONS(4309), 1, + [113148] = 4, + ACTIONS(4339), 1, anon_sym_RPAREN, - STATE(2254), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [113452] = 4, - ACTIONS(3330), 1, + ACTIONS(4341), 1, anon_sym_COMMA, - ACTIONS(3332), 1, - anon_sym_RBRACE, - STATE(2386), 1, - aux_sym_dictionary_repeat1, + STATE(2385), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113466] = 4, - ACTIONS(3024), 1, + [113162] = 4, + ACTIONS(3204), 1, anon_sym_COMMA, - ACTIONS(4311), 1, - anon_sym_RPAREN, - STATE(2254), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(3208), 1, + anon_sym_RBRACK, + STATE(2388), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113480] = 4, - ACTIONS(4238), 1, + [113176] = 4, + ACTIONS(2859), 1, anon_sym_RBRACK, - ACTIONS(4313), 1, + ACTIONS(4343), 1, anon_sym_COMMA, - STATE(2321), 1, + STATE(2383), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113494] = 4, - ACTIONS(1155), 1, + [113190] = 4, + ACTIONS(1211), 1, anon_sym_RPAREN, - ACTIONS(4315), 1, + ACTIONS(4346), 1, anon_sym_COMMA, - STATE(2438), 1, + STATE(2256), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113508] = 4, - ACTIONS(997), 1, - anon_sym_RBRACK, - ACTIONS(4317), 1, + [113204] = 4, + ACTIONS(1213), 1, + anon_sym_RPAREN, + ACTIONS(4348), 1, anon_sym_COMMA, - STATE(2240), 1, - aux_sym_type_parameter_repeat1, + STATE(2256), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113522] = 3, - ACTIONS(4321), 1, - anon_sym_in, - ACTIONS(3), 2, + [113218] = 3, + ACTIONS(3639), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(4319), 2, - sym__newline, - anon_sym_SEMI, - [113534] = 4, - ACTIONS(1337), 1, + ACTIONS(3641), 2, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(4323), 1, + [113230] = 4, + ACTIONS(4350), 1, anon_sym_COMMA, - STATE(2256), 1, - aux_sym_dictionary_repeat1, + ACTIONS(4352), 1, + anon_sym_RBRACK, + STATE(2328), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113548] = 4, - ACTIONS(4219), 1, - sym__newline, - ACTIONS(4221), 1, - sym__indent, - STATE(735), 1, - sym__match_block, + [113244] = 4, + ACTIONS(4354), 1, + anon_sym_COMMA, + ACTIONS(4356), 1, + anon_sym_RBRACK, + STATE(2328), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113562] = 4, - ACTIONS(3101), 1, - anon_sym_RPAREN, - ACTIONS(3103), 1, + [113258] = 4, + ACTIONS(4358), 1, anon_sym_COMMA, - STATE(2394), 1, - aux_sym_argument_list_repeat1, + ACTIONS(4360), 1, + anon_sym_RBRACK, + STATE(2328), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113576] = 4, - ACTIONS(4325), 1, - anon_sym_RPAREN, - ACTIONS(4327), 1, - anon_sym_COMMA, - STATE(2395), 1, - aux_sym_argument_list_repeat1, + [113272] = 4, + ACTIONS(3773), 1, + anon_sym_LPAREN, + ACTIONS(4362), 1, + anon_sym_COLON, + STATE(2753), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113590] = 4, - ACTIONS(4329), 1, - sym__newline, - ACTIONS(4331), 1, - sym__indent, - STATE(802), 1, - sym__match_block, - ACTIONS(3), 2, + [113286] = 3, + ACTIONS(3571), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [113604] = 4, - ACTIONS(3282), 1, - anon_sym_COMMA, - ACTIONS(3284), 1, + ACTIONS(3573), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [113298] = 3, + ACTIONS(3470), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3472), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [113310] = 4, + ACTIONS(3194), 1, anon_sym_RBRACK, - STATE(2398), 1, - aux_sym_subscript_repeat1, + ACTIONS(4364), 1, + anon_sym_COMMA, + STATE(2393), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113618] = 4, - ACTIONS(2951), 1, - anon_sym_COLON, - ACTIONS(4333), 1, + [113324] = 4, + ACTIONS(3194), 1, + anon_sym_RPAREN, + ACTIONS(4367), 1, anon_sym_COMMA, - STATE(2258), 1, - aux_sym__parameters_repeat1, + STATE(2394), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113632] = 4, - ACTIONS(4335), 1, + [113338] = 4, + ACTIONS(4224), 1, + anon_sym_RPAREN, + ACTIONS(4370), 1, anon_sym_COMMA, - ACTIONS(4337), 1, - anon_sym_RBRACE, STATE(2406), 1, - aux_sym_dict_pattern_repeat1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113646] = 4, - ACTIONS(1235), 1, - anon_sym_RPAREN, - ACTIONS(4339), 1, - anon_sym_COMMA, - STATE(2438), 1, - aux_sym_argument_list_repeat1, + [113352] = 4, + ACTIONS(3906), 1, + sym_identifier, + STATE(2223), 1, + sym_dotted_name, + STATE(2558), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113660] = 4, - ACTIONS(1237), 1, - anon_sym_RPAREN, - ACTIONS(4341), 1, + [113366] = 4, + ACTIONS(2996), 1, anon_sym_COMMA, - STATE(2438), 1, - aux_sym_argument_list_repeat1, + ACTIONS(3082), 1, + anon_sym_RPAREN, + STATE(2350), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113674] = 3, - ACTIONS(4345), 1, - anon_sym_as, + [113380] = 4, + ACTIONS(619), 1, + sym__newline, + ACTIONS(4372), 1, + anon_sym_SEMI, + STATE(2337), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4343), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [113686] = 4, - ACTIONS(4347), 1, - anon_sym_COMMA, - ACTIONS(4349), 1, + [113394] = 4, + ACTIONS(1265), 1, anon_sym_RBRACK, - STATE(2407), 1, - aux_sym_subscript_repeat1, + ACTIONS(4374), 1, + anon_sym_COMMA, + STATE(2234), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113700] = 4, - ACTIONS(4351), 1, + [113408] = 4, + ACTIONS(3402), 1, anon_sym_COMMA, - ACTIONS(4353), 1, - anon_sym_RBRACK, - STATE(2407), 1, - aux_sym_subscript_repeat1, + ACTIONS(3404), 1, + anon_sym_RBRACE, + STATE(2402), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113714] = 4, - ACTIONS(4355), 1, + [113422] = 4, + ACTIONS(4376), 1, anon_sym_COMMA, - ACTIONS(4357), 1, - anon_sym_COLON, - STATE(2369), 1, - aux_sym_match_statement_repeat1, + ACTIONS(4379), 1, + anon_sym_RBRACE, + STATE(2401), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113728] = 4, - ACTIONS(4359), 1, - anon_sym_SEMI, - ACTIONS(4362), 1, - sym__newline, - STATE(2400), 1, - aux_sym__simple_statements_repeat1, + [113436] = 4, + ACTIONS(1313), 1, + anon_sym_RBRACE, + ACTIONS(4381), 1, + anon_sym_COMMA, + STATE(2401), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113742] = 4, - ACTIONS(4329), 1, - sym__newline, - ACTIONS(4331), 1, - sym__indent, - STATE(828), 1, - sym__match_block, + [113450] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113756] = 4, - ACTIONS(2652), 1, + ACTIONS(2864), 3, anon_sym_RPAREN, - ACTIONS(4364), 1, anon_sym_COMMA, - STATE(2375), 1, - aux_sym_case_clause_repeat1, + anon_sym_EQ, + [113460] = 4, + ACTIONS(3084), 1, + anon_sym_RPAREN, + ACTIONS(3086), 1, + anon_sym_COMMA, + STATE(2409), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113770] = 4, - ACTIONS(4108), 1, + [113474] = 4, + ACTIONS(4383), 1, + anon_sym_RPAREN, + ACTIONS(4385), 1, anon_sym_COMMA, - ACTIONS(4366), 1, - anon_sym_in, - STATE(2346), 1, - aux_sym__patterns_repeat1, + STATE(2410), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113784] = 4, - ACTIONS(2692), 1, - anon_sym_RBRACK, - ACTIONS(4368), 1, - anon_sym_COMMA, - STATE(2446), 1, - aux_sym_case_clause_repeat1, + [113488] = 4, + ACTIONS(2016), 1, + anon_sym_RPAREN, + ACTIONS(4387), 1, + anon_sym_COMMA, + STATE(2378), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113798] = 2, + [113502] = 4, + ACTIONS(4202), 1, + anon_sym_COMMA, + ACTIONS(4389), 1, + anon_sym_in, + STATE(2242), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2458), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_in, - [113808] = 4, - ACTIONS(4370), 1, + [113516] = 4, + ACTIONS(3233), 1, anon_sym_COMMA, - ACTIONS(4372), 1, - anon_sym_RBRACE, - STATE(2420), 1, - aux_sym_dict_pattern_repeat1, + ACTIONS(3235), 1, + anon_sym_RBRACK, + STATE(2412), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113822] = 4, - ACTIONS(4374), 1, + [113530] = 4, + ACTIONS(1223), 1, + anon_sym_RPAREN, + ACTIONS(4391), 1, anon_sym_COMMA, - ACTIONS(4377), 1, - anon_sym_RBRACK, - STATE(2407), 1, - aux_sym_subscript_repeat1, + STATE(2256), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113836] = 4, - ACTIONS(3302), 1, + [113544] = 4, + ACTIONS(1225), 1, + anon_sym_RPAREN, + ACTIONS(4393), 1, anon_sym_COMMA, - ACTIONS(3304), 1, - anon_sym_RBRACK, - STATE(2410), 1, - aux_sym_subscript_repeat1, + STATE(2256), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113850] = 4, - ACTIONS(4379), 1, + [113558] = 4, + ACTIONS(4395), 1, anon_sym_COMMA, - ACTIONS(4381), 1, + ACTIONS(4397), 1, anon_sym_RBRACK, - STATE(2407), 1, + STATE(2328), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113864] = 4, - ACTIONS(4383), 1, + [113572] = 4, + ACTIONS(4399), 1, anon_sym_COMMA, - ACTIONS(4385), 1, + ACTIONS(4401), 1, anon_sym_RBRACK, - STATE(2407), 1, + STATE(2328), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113878] = 3, - ACTIONS(4387), 1, - anon_sym_EQ, + [113586] = 4, + ACTIONS(3662), 1, + anon_sym_COLON, + ACTIONS(4403), 1, + anon_sym_RBRACE, + STATE(2610), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3882), 2, - anon_sym_COMMA, - anon_sym_COLON, - [113890] = 3, - ACTIONS(3537), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + [113600] = 3, + ACTIONS(1600), 1, + anon_sym_except, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3539), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [113902] = 4, - ACTIONS(4389), 1, + ACTIONS(1602), 2, + anon_sym_except_STAR, + anon_sym_finally, + [113612] = 4, + ACTIONS(3243), 1, anon_sym_COMMA, - ACTIONS(4391), 1, - anon_sym_RBRACE, - STATE(2420), 1, - aux_sym_dict_pattern_repeat1, + ACTIONS(3245), 1, + anon_sym_RBRACK, + STATE(2418), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113916] = 4, - ACTIONS(3308), 1, + [113626] = 4, + ACTIONS(3194), 1, + anon_sym_COLON, + ACTIONS(4405), 1, anon_sym_COMMA, - ACTIONS(3310), 1, - anon_sym_RBRACK, STATE(2416), 1, - aux_sym_subscript_repeat1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113930] = 4, - ACTIONS(4393), 1, + [113640] = 4, + ACTIONS(4408), 1, anon_sym_COMMA, - ACTIONS(4395), 1, + ACTIONS(4410), 1, anon_sym_RBRACK, - STATE(2407), 1, + STATE(2328), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113944] = 4, - ACTIONS(4397), 1, + [113654] = 4, + ACTIONS(4412), 1, anon_sym_COMMA, - ACTIONS(4399), 1, + ACTIONS(4414), 1, anon_sym_RBRACK, - STATE(2407), 1, + STATE(2328), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113958] = 3, - ACTIONS(3947), 1, - anon_sym_as, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3923), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [113970] = 4, - ACTIONS(2678), 1, - anon_sym_RPAREN, - ACTIONS(4401), 1, - anon_sym_COMMA, - STATE(2375), 1, - aux_sym_case_clause_repeat1, + [113668] = 4, + ACTIONS(4098), 1, + sym__newline, + ACTIONS(4100), 1, + sym__indent, + STATE(764), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113984] = 4, - ACTIONS(3936), 1, - anon_sym_RPAREN, - ACTIONS(4403), 1, + [113682] = 4, + ACTIONS(3249), 1, anon_sym_COMMA, - STATE(2419), 1, - aux_sym__import_list_repeat1, + ACTIONS(3251), 1, + anon_sym_RBRACK, + STATE(2423), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113998] = 4, - ACTIONS(4406), 1, + [113696] = 4, + ACTIONS(4416), 1, anon_sym_COMMA, - ACTIONS(4409), 1, + ACTIONS(4418), 1, anon_sym_RBRACE, - STATE(2420), 1, + STATE(2453), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114012] = 4, - ACTIONS(1335), 1, - anon_sym_RBRACE, - ACTIONS(4411), 1, + [113710] = 4, + ACTIONS(4420), 1, anon_sym_COMMA, - STATE(2256), 1, - aux_sym_dictionary_repeat1, + ACTIONS(4422), 1, + anon_sym_RBRACK, + STATE(2328), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114026] = 4, - ACTIONS(2660), 1, - anon_sym_RPAREN, - ACTIONS(4413), 1, + [113724] = 4, + ACTIONS(4424), 1, anon_sym_COMMA, - STATE(2375), 1, - aux_sym_case_clause_repeat1, + ACTIONS(4426), 1, + anon_sym_RBRACK, + STATE(2328), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114040] = 4, - ACTIONS(4415), 1, - anon_sym_RPAREN, - ACTIONS(4417), 1, - anon_sym_COMMA, - STATE(2337), 1, - aux_sym_with_clause_repeat1, + [113738] = 4, + ACTIONS(4428), 1, + anon_sym_SEMI, + ACTIONS(4430), 1, + sym__newline, + STATE(2239), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114054] = 4, - ACTIONS(2875), 1, - anon_sym_in, - ACTIONS(4419), 1, - anon_sym_COMMA, - STATE(2424), 1, - aux_sym__patterns_repeat1, + [113752] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114068] = 4, - ACTIONS(1293), 1, - anon_sym_RPAREN, - ACTIONS(4422), 1, + ACTIONS(4009), 3, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - STATE(2318), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [114082] = 3, - ACTIONS(4426), 1, + [113762] = 3, + ACTIONS(4434), 1, aux_sym_format_specifier_token1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(4424), 2, + ACTIONS(4432), 2, anon_sym_LBRACE, anon_sym_RBRACE, - [114094] = 4, - ACTIONS(3490), 1, - anon_sym_RBRACE, - ACTIONS(4428), 1, + [113774] = 4, + ACTIONS(999), 1, + anon_sym_RBRACK, + ACTIONS(4436), 1, anon_sym_COMMA, - STATE(2427), 1, - aux_sym__collection_elements_repeat1, + STATE(2375), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114108] = 4, - ACTIONS(3490), 1, - anon_sym_RBRACK, - ACTIONS(4431), 1, + [113788] = 4, + ACTIONS(1419), 1, + anon_sym_RPAREN, + ACTIONS(4438), 1, anon_sym_COMMA, - STATE(2428), 1, - aux_sym__collection_elements_repeat1, + STATE(2432), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114122] = 4, - ACTIONS(3729), 1, + [113802] = 4, + ACTIONS(3773), 1, anon_sym_LPAREN, - ACTIONS(4434), 1, + ACTIONS(4440), 1, anon_sym_COLON, - STATE(2693), 1, + STATE(2673), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114136] = 4, - ACTIONS(4108), 1, + [113816] = 4, + ACTIONS(4202), 1, anon_sym_COMMA, - ACTIONS(4436), 1, + ACTIONS(4442), 1, anon_sym_in, - STATE(2346), 1, + STATE(2242), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114150] = 4, - ACTIONS(619), 1, - sym__newline, - ACTIONS(4438), 1, - anon_sym_SEMI, - STATE(2400), 1, - aux_sym__simple_statements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [114164] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3520), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - [114174] = 4, - ACTIONS(4108), 1, + [113830] = 4, + ACTIONS(4202), 1, anon_sym_COMMA, - ACTIONS(4440), 1, + ACTIONS(4444), 1, anon_sym_in, - STATE(2346), 1, + STATE(2242), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114188] = 4, - ACTIONS(3024), 1, - anon_sym_COMMA, - ACTIONS(4442), 1, + [113844] = 4, + ACTIONS(4446), 1, anon_sym_RPAREN, - STATE(2254), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(4448), 1, + anon_sym_COMMA, + STATE(2432), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114202] = 4, - ACTIONS(3024), 1, - anon_sym_COMMA, - ACTIONS(4444), 1, - anon_sym_RPAREN, - STATE(2254), 1, - aux_sym__collection_elements_repeat1, + [113858] = 4, + ACTIONS(3707), 1, + anon_sym_DOT, + ACTIONS(3711), 1, + anon_sym_PIPE, + ACTIONS(4451), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114216] = 4, - ACTIONS(4446), 1, - anon_sym_SEMI, - ACTIONS(4448), 1, - sym__newline, - STATE(2460), 1, - aux_sym__simple_statements_repeat1, + [113872] = 4, + ACTIONS(3453), 1, + anon_sym_RBRACE, + ACTIONS(4453), 1, + anon_sym_COMMA, + STATE(2434), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114230] = 4, - ACTIONS(3790), 1, + [113886] = 4, + ACTIONS(3707), 1, anon_sym_DOT, - ACTIONS(3796), 1, + ACTIONS(3711), 1, anon_sym_PIPE, - ACTIONS(4450), 1, + ACTIONS(4456), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114244] = 4, - ACTIONS(3531), 1, - anon_sym_RPAREN, - ACTIONS(4452), 1, - anon_sym_COMMA, - STATE(2438), 1, - aux_sym_argument_list_repeat1, + [113900] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114258] = 4, - ACTIONS(2610), 1, - anon_sym_RPAREN, - ACTIONS(4455), 1, + ACTIONS(3860), 3, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - STATE(2375), 1, - aux_sym_case_clause_repeat1, + [113910] = 4, + ACTIONS(4079), 1, + sym__newline, + ACTIONS(4081), 1, + sym__indent, + STATE(786), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114272] = 4, - ACTIONS(3790), 1, + [113924] = 4, + ACTIONS(3707), 1, anon_sym_DOT, - ACTIONS(3796), 1, + ACTIONS(3711), 1, anon_sym_PIPE, - ACTIONS(4457), 1, + ACTIONS(4458), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114286] = 4, - ACTIONS(3790), 1, + [113938] = 4, + ACTIONS(3707), 1, anon_sym_DOT, - ACTIONS(3796), 1, + ACTIONS(3711), 1, anon_sym_PIPE, - ACTIONS(4459), 1, + ACTIONS(4460), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114300] = 4, - ACTIONS(3790), 1, + [113952] = 4, + ACTIONS(3707), 1, anon_sym_DOT, - ACTIONS(3796), 1, + ACTIONS(3711), 1, anon_sym_PIPE, - ACTIONS(4461), 1, + ACTIONS(4462), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114314] = 4, - ACTIONS(3024), 1, - anon_sym_COMMA, - ACTIONS(3046), 1, + [113966] = 4, + ACTIONS(2670), 1, anon_sym_RPAREN, - STATE(2254), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(4464), 1, + anon_sym_COMMA, + STATE(2444), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114328] = 3, - ACTIONS(3898), 1, + [113980] = 3, + ACTIONS(3879), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4021), 2, + ACTIONS(3862), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [114340] = 2, + [113992] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3971), 3, + ACTIONS(3864), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, - [114350] = 4, - ACTIONS(4021), 1, - anon_sym_RBRACK, - ACTIONS(4463), 1, + [114002] = 4, + ACTIONS(3862), 1, + anon_sym_RPAREN, + ACTIONS(4466), 1, anon_sym_COMMA, - STATE(2446), 1, + STATE(2444), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114364] = 4, - ACTIONS(3074), 1, - anon_sym_RPAREN, - ACTIONS(3076), 1, + [114016] = 4, + ACTIONS(4446), 1, + anon_sym_COLON, + ACTIONS(4469), 1, anon_sym_COMMA, - STATE(2301), 1, - aux_sym_argument_list_repeat1, + STATE(2445), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114378] = 4, - ACTIONS(4466), 1, - anon_sym_RPAREN, - ACTIONS(4468), 1, + [114030] = 4, + ACTIONS(2674), 1, + anon_sym_RBRACK, + ACTIONS(4472), 1, anon_sym_COMMA, - STATE(2309), 1, - aux_sym_argument_list_repeat1, + STATE(2267), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114392] = 4, - ACTIONS(3790), 1, - anon_sym_DOT, - ACTIONS(3796), 1, - anon_sym_PIPE, - ACTIONS(4470), 1, - anon_sym_COLON, + [114044] = 4, + ACTIONS(2698), 1, + sym_identifier, + ACTIONS(4474), 1, + anon_sym_import, + STATE(2582), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114406] = 4, - ACTIONS(4108), 1, + [114058] = 4, + ACTIONS(4202), 1, anon_sym_COMMA, - ACTIONS(4472), 1, + ACTIONS(4476), 1, anon_sym_in, - STATE(2346), 1, + STATE(2242), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114420] = 4, - ACTIONS(4108), 1, + [114072] = 4, + ACTIONS(4202), 1, anon_sym_COMMA, - ACTIONS(4474), 1, + ACTIONS(4478), 1, anon_sym_in, - STATE(2346), 1, + STATE(2242), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114434] = 4, - ACTIONS(4476), 1, - anon_sym_SEMI, - ACTIONS(4478), 1, - sym__newline, - STATE(2334), 1, - aux_sym__simple_statements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [114448] = 4, - ACTIONS(3474), 1, - anon_sym_PIPE, + [114086] = 4, + ACTIONS(1295), 1, + anon_sym_RBRACE, ACTIONS(4480), 1, - anon_sym_COLON, - STATE(1959), 1, - aux_sym_union_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [114462] = 4, - ACTIONS(3431), 1, anon_sym_COMMA, - ACTIONS(3433), 1, - anon_sym_RBRACE, - STATE(2462), 1, + STATE(2401), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114476] = 4, - ACTIONS(3296), 1, - anon_sym_COMMA, - ACTIONS(3298), 1, - anon_sym_RBRACK, - STATE(2327), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [114490] = 4, - ACTIONS(4329), 1, - sym__newline, - ACTIONS(4331), 1, - sym__indent, - STATE(814), 1, - sym__match_block, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [114504] = 4, + [114100] = 4, + ACTIONS(3707), 1, + anon_sym_DOT, + ACTIONS(3711), 1, + anon_sym_PIPE, ACTIONS(4482), 1, - anon_sym_COMMA, - ACTIONS(4484), 1, anon_sym_COLON, - STATE(2392), 1, - aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114518] = 3, - ACTIONS(4387), 1, - anon_sym_EQ, + [114114] = 4, + ACTIONS(3939), 1, + anon_sym_RPAREN, + ACTIONS(4484), 1, + anon_sym_COMMA, + STATE(2468), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3882), 2, - anon_sym_COMMA, - anon_sym_COLON, - [114530] = 4, + [114128] = 4, ACTIONS(4486), 1, anon_sym_COMMA, ACTIONS(4488), 1, anon_sym_RBRACE, - STATE(2283), 1, + STATE(2348), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114544] = 4, - ACTIONS(621), 1, - sym__newline, - ACTIONS(4490), 1, - anon_sym_SEMI, - STATE(2400), 1, - aux_sym__simple_statements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [114558] = 4, - ACTIONS(3258), 1, - anon_sym_COMMA, - ACTIONS(3260), 1, - anon_sym_RBRACK, - STATE(2241), 1, - aux_sym_subscript_repeat1, + [114142] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114572] = 4, - ACTIONS(1343), 1, - anon_sym_RBRACE, - ACTIONS(4492), 1, + ACTIONS(1596), 3, anon_sym_COMMA, - STATE(2256), 1, - aux_sym_dictionary_repeat1, + anon_sym_COLON, + anon_sym_EQ, + [114152] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114586] = 4, - ACTIONS(4494), 1, + ACTIONS(3563), 3, anon_sym_COMMA, - ACTIONS(4496), 1, - anon_sym_RBRACK, - STATE(2407), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, + anon_sym_as, + anon_sym_RBRACE, + [114162] = 3, + ACTIONS(3643), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [114600] = 4, - ACTIONS(3684), 1, - anon_sym_COLON, - ACTIONS(4498), 1, + ACTIONS(3645), 2, + anon_sym_LBRACE, anon_sym_RBRACE, - STATE(2766), 1, - sym_format_specifier, + [114174] = 4, + ACTIONS(2949), 1, + anon_sym_RBRACK, + ACTIONS(2980), 1, + anon_sym_COMMA, + STATE(2399), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114614] = 4, - ACTIONS(3050), 1, + [114188] = 4, + ACTIONS(3939), 1, anon_sym_RPAREN, - ACTIONS(3052), 1, + ACTIONS(4490), 1, anon_sym_COMMA, - STATE(2472), 1, - aux_sym_argument_list_repeat1, + STATE(2468), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114628] = 4, - ACTIONS(4500), 1, + [114202] = 4, + ACTIONS(1205), 1, anon_sym_RPAREN, - ACTIONS(4502), 1, + ACTIONS(4492), 1, anon_sym_COMMA, - STATE(2473), 1, + STATE(2256), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114642] = 4, - ACTIONS(4504), 1, + [114216] = 4, + ACTIONS(4494), 1, anon_sym_COMMA, - ACTIONS(4506), 1, + ACTIONS(4496), 1, anon_sym_RBRACE, - STATE(2252), 1, + STATE(2348), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114656] = 4, - ACTIONS(4123), 1, - anon_sym_RPAREN, - ACTIONS(4508), 1, + [114230] = 4, + ACTIONS(2996), 1, anon_sym_COMMA, - STATE(2468), 1, - aux_sym_with_clause_repeat1, + ACTIONS(3094), 1, + anon_sym_RPAREN, + STATE(2350), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114670] = 4, - ACTIONS(3234), 1, - anon_sym_COMMA, - ACTIONS(3238), 1, + [114244] = 4, + ACTIONS(2016), 1, anon_sym_RBRACK, - STATE(2475), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [114684] = 4, - ACTIONS(4108), 1, + ACTIONS(4498), 1, anon_sym_COMMA, - ACTIONS(4511), 1, - anon_sym_in, - STATE(2346), 1, + STATE(2383), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114698] = 4, - ACTIONS(4329), 1, - sym__newline, - ACTIONS(4331), 1, - sym__indent, - STATE(811), 1, - sym__match_block, + [114258] = 4, + ACTIONS(2933), 1, + anon_sym_COLON, + ACTIONS(4500), 1, + anon_sym_COMMA, + STATE(2334), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114712] = 4, - ACTIONS(1189), 1, - anon_sym_RPAREN, - ACTIONS(4513), 1, - anon_sym_COMMA, - STATE(2438), 1, - aux_sym_argument_list_repeat1, + [114272] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114726] = 4, - ACTIONS(1191), 1, + ACTIONS(4502), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + [114282] = 4, + ACTIONS(2620), 1, anon_sym_RPAREN, - ACTIONS(4515), 1, + ACTIONS(4504), 1, anon_sym_COMMA, - STATE(2438), 1, - aux_sym_argument_list_repeat1, + STATE(2444), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114740] = 4, - ACTIONS(4517), 1, - anon_sym_COMMA, - ACTIONS(4519), 1, - anon_sym_RBRACK, - STATE(2407), 1, - aux_sym_subscript_repeat1, + [114296] = 3, + ACTIONS(3179), 1, + anon_sym_from, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114754] = 4, - ACTIONS(4521), 1, + ACTIONS(3177), 2, + sym__newline, + anon_sym_SEMI, + [114308] = 4, + ACTIONS(4506), 1, + anon_sym_RPAREN, + ACTIONS(4508), 1, anon_sym_COMMA, - ACTIONS(4523), 1, - anon_sym_RBRACK, - STATE(2407), 1, - aux_sym_subscript_repeat1, + STATE(2428), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114768] = 3, - ACTIONS(1690), 1, - anon_sym_except, + [114322] = 4, + ACTIONS(3893), 1, + anon_sym_RPAREN, + ACTIONS(4510), 1, + anon_sym_COMMA, + STATE(2468), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1692), 2, - anon_sym_except_STAR, - anon_sym_finally, - [114780] = 4, - ACTIONS(1293), 1, - anon_sym_RBRACK, - ACTIONS(4525), 1, + [114336] = 4, + ACTIONS(2628), 1, + anon_sym_RPAREN, + ACTIONS(4513), 1, anon_sym_COMMA, - STATE(2333), 1, - aux_sym_assert_statement_repeat1, + STATE(2444), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114794] = 4, - ACTIONS(3204), 1, - anon_sym_COLON, - ACTIONS(4527), 1, - anon_sym_COMMA, - STATE(2478), 1, - aux_sym_assert_statement_repeat1, + [114350] = 4, + ACTIONS(2634), 1, + anon_sym_RBRACK, + ACTIONS(4515), 1, + anon_sym_COMMA, + STATE(2267), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114808] = 4, - ACTIONS(1145), 1, - anon_sym_RPAREN, - ACTIONS(4530), 1, - anon_sym_COMMA, - STATE(2438), 1, - aux_sym_argument_list_repeat1, + [114364] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114822] = 4, - ACTIONS(1021), 1, - anon_sym_RBRACK, - ACTIONS(4532), 1, + ACTIONS(3864), 3, anon_sym_COMMA, - STATE(2240), 1, - aux_sym_type_parameter_repeat1, + anon_sym_as, + anon_sym_RBRACE, + [114374] = 4, + ACTIONS(3414), 1, + anon_sym_COMMA, + ACTIONS(3416), 1, + anon_sym_RBRACE, + STATE(2262), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114836] = 4, - ACTIONS(4219), 1, - sym__newline, - ACTIONS(4221), 1, - sym__indent, - STATE(776), 1, - sym__match_block, + [114388] = 3, + ACTIONS(4519), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114850] = 4, - ACTIONS(4484), 1, - anon_sym_RPAREN, - ACTIONS(4534), 1, - anon_sym_COMMA, - STATE(2368), 1, - aux_sym__parameters_repeat1, + ACTIONS(4517), 2, + sym__newline, + anon_sym_SEMI, + [114400] = 4, + ACTIONS(4521), 1, + anon_sym_SEMI, + ACTIONS(4523), 1, + sym__newline, + STATE(2229), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114864] = 4, - ACTIONS(4536), 1, - anon_sym_COMMA, - ACTIONS(4538), 1, + [114414] = 4, + ACTIONS(1435), 1, anon_sym_COLON, - STATE(2369), 1, - aux_sym_match_statement_repeat1, + ACTIONS(4525), 1, + anon_sym_COMMA, + STATE(2445), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114878] = 4, - ACTIONS(3790), 1, - anon_sym_DOT, - ACTIONS(3796), 1, - anon_sym_PIPE, - ACTIONS(4540), 1, - anon_sym_COLON, + [114428] = 4, + ACTIONS(4202), 1, + anon_sym_COMMA, + ACTIONS(4527), 1, + anon_sym_in, + STATE(2242), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114892] = 4, - ACTIONS(4108), 1, + [114442] = 4, + ACTIONS(4202), 1, anon_sym_COMMA, - ACTIONS(4542), 1, + ACTIONS(4529), 1, anon_sym_in, - STATE(2346), 1, + STATE(2242), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114906] = 4, - ACTIONS(4091), 1, - anon_sym_RPAREN, - ACTIONS(4544), 1, + [114456] = 4, + ACTIONS(3371), 1, anon_sym_COMMA, - STATE(2486), 1, - aux_sym__parameters_repeat1, + ACTIONS(3373), 1, + anon_sym_RBRACE, + STATE(2450), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114920] = 3, - ACTIONS(3886), 1, - anon_sym_EQ, + [114470] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3882), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [114932] = 3, - ACTIONS(1694), 1, - anon_sym_except, + ACTIONS(4531), 2, + sym__newline, + anon_sym_SEMI, + [114479] = 3, + ACTIONS(4533), 1, + sym_integer, + ACTIONS(4535), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1696), 2, - anon_sym_except_STAR, - anon_sym_finally, - [114944] = 3, - ACTIONS(4547), 1, - anon_sym_COLON, + [114490] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3882), 2, - anon_sym_RPAREN, + ACTIONS(4537), 2, + sym__newline, + anon_sym_SEMI, + [114499] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4539), 2, + sym__dedent, + anon_sym_case, + [114508] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2866), 2, anon_sym_COMMA, - [114956] = 3, - ACTIONS(3572), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + anon_sym_RBRACK, + [114517] = 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3574), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [114968] = 3, - ACTIONS(3652), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + ACTIONS(4257), 2, + sym__newline, + anon_sym_SEMI, + [114526] = 3, + ACTIONS(4541), 1, + anon_sym_COLON, + ACTIONS(4543), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3654), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [114980] = 3, - ACTIONS(3454), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + [114537] = 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3456), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [114992] = 4, - ACTIONS(3930), 1, - sym_identifier, - STATE(2417), 1, - sym_dotted_name, - STATE(2599), 1, - sym_aliased_import, + ACTIONS(3152), 2, + sym__newline, + anon_sym_SEMI, + [114546] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115006] = 4, - ACTIONS(4108), 1, + ACTIONS(4545), 2, anon_sym_COMMA, + anon_sym_RBRACK, + [114555] = 3, + ACTIONS(4547), 1, + sym_integer, ACTIONS(4549), 1, - anon_sym_in, - STATE(2346), 1, - aux_sym__patterns_repeat1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115020] = 4, - ACTIONS(4108), 1, - anon_sym_COMMA, - ACTIONS(4551), 1, - anon_sym_in, - STATE(2346), 1, - aux_sym__patterns_repeat1, + [114566] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115034] = 4, - ACTIONS(2644), 1, - anon_sym_RBRACK, - ACTIONS(4553), 1, - anon_sym_COMMA, - STATE(2446), 1, - aux_sym_case_clause_repeat1, + ACTIONS(4551), 2, + sym__dedent, + anon_sym_case, + [114575] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115048] = 4, - ACTIONS(3684), 1, - anon_sym_COLON, - ACTIONS(4555), 1, - anon_sym_RBRACE, - STATE(2759), 1, - sym_format_specifier, + ACTIONS(4553), 2, + sym__dedent, + anon_sym_case, + [114584] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115062] = 4, - ACTIONS(645), 1, + ACTIONS(4555), 2, sym__newline, - ACTIONS(4557), 1, anon_sym_SEMI, - STATE(2400), 1, - aux_sym__simple_statements_repeat1, + [114593] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4557), 2, + sym__dedent, + anon_sym_case, + [114602] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115076] = 3, + ACTIONS(2859), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [114611] = 3, ACTIONS(4559), 1, anon_sym_COLON, ACTIONS(4561), 1, @@ -122339,4509 +121607,4387 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115087] = 3, + [114622] = 3, ACTIONS(4563), 1, - anon_sym_COMMA, - STATE(1933), 1, - aux_sym__patterns_repeat1, + sym_integer, + ACTIONS(4565), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115098] = 3, - ACTIONS(4565), 1, - sym_integer, - ACTIONS(4567), 1, - sym_float, + [114633] = 3, + ACTIONS(3927), 1, + anon_sym_LPAREN, + STATE(2485), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115109] = 2, + [114644] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3159), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [115118] = 2, + ACTIONS(4567), 2, + sym__newline, + anon_sym_SEMI, + [114653] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3345), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [115127] = 3, - ACTIONS(4569), 1, - sym_integer, - ACTIONS(4571), 1, - sym_float, + ACTIONS(4569), 2, + anon_sym_COLON, + anon_sym_DASH_GT, + [114662] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115138] = 2, + ACTIONS(4571), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [114671] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4573), 2, + ACTIONS(2859), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [115147] = 2, + anon_sym_RBRACK, + [114680] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4575), 2, + ACTIONS(4545), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACE, - [115156] = 2, + [114689] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3128), 2, - sym__newline, - anon_sym_SEMI, - [115165] = 2, + ACTIONS(3453), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [114698] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4577), 2, - sym__newline, - anon_sym_SEMI, - [115174] = 2, + ACTIONS(4573), 2, + anon_sym__, + sym_identifier, + [114707] = 3, + ACTIONS(4575), 1, + anon_sym_COLON, + ACTIONS(4577), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3490), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [115183] = 3, - ACTIONS(4579), 1, - sym_integer, - ACTIONS(4581), 1, - sym_float, + [114718] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115194] = 2, + ACTIONS(4579), 2, + anon_sym__, + sym_identifier, + [114727] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4583), 2, - sym__dedent, - anon_sym_case, - [115203] = 3, - ACTIONS(3888), 1, - anon_sym_LPAREN, - STATE(2551), 1, - sym_parameters, + ACTIONS(3106), 2, + sym__newline, + anon_sym_SEMI, + [114736] = 3, + ACTIONS(4581), 1, + sym_integer, + ACTIONS(4583), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115214] = 2, + [114747] = 3, + ACTIONS(4585), 1, + sym_integer, + ACTIONS(4587), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4585), 2, - sym__newline, - anon_sym_SEMI, - [115223] = 2, + [114758] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2875), 2, + ACTIONS(4176), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [115232] = 2, + [114767] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2886), 2, + ACTIONS(4502), 2, anon_sym_RPAREN, anon_sym_COMMA, - [115241] = 2, + [114776] = 3, + ACTIONS(3927), 1, + anon_sym_LPAREN, + STATE(2504), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4587), 2, - sym__dedent, - anon_sym_case, - [115250] = 2, + [114787] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(4589), 2, - sym__dedent, - anon_sym_case, - [115259] = 2, + sym__newline, + anon_sym_SEMI, + [114796] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4591), 2, + ACTIONS(1602), 2, sym__dedent, anon_sym_case, - [115268] = 2, + [114805] = 3, + ACTIONS(4591), 1, + sym_integer, + ACTIONS(4593), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4593), 2, - sym__newline, - anon_sym_SEMI, - [115277] = 3, - ACTIONS(4595), 1, - anon_sym_COLON, + [114816] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4595), 2, + anon_sym__, + sym_identifier, + [114825] = 3, ACTIONS(4597), 1, - anon_sym_DASH_GT, + sym_integer, + ACTIONS(4599), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115288] = 2, + [114836] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4599), 2, + ACTIONS(4601), 2, sym__newline, anon_sym_SEMI, - [115297] = 3, - ACTIONS(4601), 1, - sym_integer, + [114845] = 3, ACTIONS(4603), 1, + anon_sym_COMMA, + STATE(1913), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114856] = 3, + ACTIONS(4605), 1, + sym_integer, + ACTIONS(4607), 1, sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115308] = 2, + [114867] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4605), 2, - sym__dedent, - anon_sym_case, - [115317] = 2, + ACTIONS(3913), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [114876] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4607), 2, - sym__dedent, - anon_sym_case, - [115326] = 2, + ACTIONS(4571), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [114885] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1692), 2, + ACTIONS(4609), 2, sym__dedent, anon_sym_case, - [115335] = 2, + [114894] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4609), 2, + ACTIONS(3152), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [114903] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4611), 2, sym__dedent, anon_sym_case, - [115344] = 2, + [114912] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4611), 2, - sym__newline, - anon_sym_SEMI, - [115353] = 2, + ACTIONS(4176), 2, + anon_sym_COMMA, + anon_sym_COLON, + [114921] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2875), 2, - anon_sym_RPAREN, + ACTIONS(2864), 2, anon_sym_COMMA, - [115362] = 2, + anon_sym_RBRACK, + [114930] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(4613), 2, - anon_sym_COMMA, - anon_sym_COLON, - [115371] = 2, + sym__dedent, + anon_sym_case, + [114939] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(4615), 2, - sym__newline, - anon_sym_SEMI, - [115380] = 2, + sym__dedent, + anon_sym_case, + [114948] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(4617), 2, sym__dedent, anon_sym_case, - [115389] = 2, + [114957] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(4619), 2, - sym__newline, - anon_sym_SEMI, - [115398] = 2, + anon_sym_COMMA, + anon_sym_COLON, + [114966] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4613), 2, + ACTIONS(3913), 2, + anon_sym_COMMA, + anon_sym_COLON, + [114975] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4446), 2, anon_sym_RPAREN, anon_sym_COMMA, - [115407] = 2, + [114984] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4621), 2, + ACTIONS(3267), 2, sym__newline, anon_sym_SEMI, - [115416] = 2, + [114993] = 3, + ACTIONS(4621), 1, + sym_integer, + ACTIONS(4623), 1, + sym_float, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [115004] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4623), 2, + ACTIONS(4625), 2, sym__dedent, anon_sym_case, - [115425] = 3, - ACTIONS(4625), 1, - anon_sym_COLON, + [115013] = 3, ACTIONS(4627), 1, + anon_sym_COLON, + ACTIONS(4629), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115436] = 2, + [115024] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3882), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [115445] = 2, + ACTIONS(4631), 2, + sym__dedent, + anon_sym_case, + [115033] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4629), 2, - anon_sym__, - sym_identifier, - [115454] = 3, - ACTIONS(4631), 1, + ACTIONS(4633), 2, + sym__dedent, + anon_sym_case, + [115042] = 3, + ACTIONS(4635), 1, sym_integer, - ACTIONS(4633), 1, + ACTIONS(4637), 1, sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115465] = 2, + [115053] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4635), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [115474] = 2, + ACTIONS(4639), 2, + sym__dedent, + anon_sym_case, + [115062] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4362), 2, - sym__newline, - anon_sym_SEMI, - [115483] = 2, + ACTIONS(1644), 2, + sym__dedent, + anon_sym_case, + [115071] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4573), 2, - anon_sym_RPAREN, + ACTIONS(4571), 2, anon_sym_COMMA, - [115492] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4637), 2, - anon_sym_COLON, - anon_sym_DASH_GT, - [115501] = 3, - ACTIONS(4639), 1, - sym_integer, - ACTIONS(4641), 1, - sym_float, + anon_sym_RBRACE, + [115080] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115512] = 2, + ACTIONS(4641), 2, + sym__newline, + anon_sym_SEMI, + [115089] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4643), 2, + ACTIONS(3273), 2, + sym__newline, + anon_sym_SEMI, + [115098] = 3, + ACTIONS(4643), 1, anon_sym_COLON, - anon_sym_DASH_GT, - [115521] = 3, ACTIONS(4645), 1, - sym_integer, - ACTIONS(4647), 1, - sym_float, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115532] = 2, + [115109] = 3, + ACTIONS(4647), 1, + anon_sym_COLON, + ACTIONS(4649), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4649), 2, - anon_sym__, - sym_identifier, - [115541] = 2, + [115120] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2880), 2, + ACTIONS(4545), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [115550] = 2, + anon_sym_RBRACE, + [115129] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4091), 2, + ACTIONS(3453), 2, anon_sym_COMMA, - anon_sym_COLON, - [115559] = 3, + anon_sym_RBRACE, + [115138] = 3, ACTIONS(4651), 1, - sym_integer, - ACTIONS(4653), 1, - sym_float, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [115570] = 3, - ACTIONS(4655), 1, anon_sym_COLON, - ACTIONS(4657), 1, + ACTIONS(4653), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115581] = 2, + [115149] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4236), 2, + ACTIONS(3553), 2, anon_sym_RPAREN, anon_sym_COMMA, - [115590] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4659), 2, - sym__newline, - anon_sym_SEMI, - [115599] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4123), 2, - anon_sym_COMMA, + [115158] = 3, + ACTIONS(4655), 1, anon_sym_COLON, - [115608] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3159), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [115617] = 2, + ACTIONS(4657), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4573), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [115626] = 2, + [115169] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4575), 2, + ACTIONS(2866), 2, anon_sym_RPAREN, anon_sym_COMMA, - [115635] = 2, + [115178] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3490), 2, - anon_sym_RPAREN, + ACTIONS(4446), 2, anon_sym_COMMA, - [115644] = 2, + anon_sym_COLON, + [115187] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4575), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [115653] = 2, + ACTIONS(4659), 2, + sym__newline, + anon_sym_SEMI, + [115196] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3490), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [115662] = 3, + ACTIONS(1623), 2, + sym__dedent, + anon_sym_case, + [115205] = 3, ACTIONS(4661), 1, - anon_sym_COLON, + sym_integer, ACTIONS(4663), 1, - anon_sym_DASH_GT, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115673] = 2, + [115216] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1696), 2, - sym__dedent, - anon_sym_case, - [115682] = 3, - ACTIONS(4665), 1, + ACTIONS(3913), 2, + anon_sym_COMMA, anon_sym_COLON, - ACTIONS(4667), 1, - anon_sym_DASH_GT, + [115225] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115693] = 3, - ACTIONS(4669), 1, - anon_sym_COLON, - ACTIONS(4671), 1, - anon_sym_DASH_GT, + ACTIONS(3860), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [115234] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115704] = 3, - ACTIONS(3888), 1, - anon_sym_LPAREN, - STATE(2520), 1, - sym_parameters, + ACTIONS(1547), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [115243] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115715] = 2, + ACTIONS(4665), 2, + sym__newline, + anon_sym_SEMI, + [115252] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4673), 2, - anon_sym__, - sym_identifier, - [115724] = 3, - ACTIONS(4675), 1, + ACTIONS(4667), 2, anon_sym_COLON, - ACTIONS(4677), 1, anon_sym_DASH_GT, + [115261] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115735] = 3, - ACTIONS(4679), 1, - sym_integer, - ACTIONS(4681), 1, - sym_float, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [115746] = 2, + ACTIONS(3453), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [115270] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3531), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [115755] = 2, + ACTIONS(4669), 2, + anon_sym__, + sym_identifier, + [115279] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1563), 2, + ACTIONS(3152), 2, anon_sym_COMMA, anon_sym_RBRACK, - [115764] = 2, + [115288] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4683), 2, + ACTIONS(4671), 2, sym__newline, anon_sym_SEMI, - [115773] = 2, + [115297] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1684), 2, + ACTIONS(1619), 2, sym__dedent, anon_sym_case, - [115782] = 2, + [115306] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1563), 2, + ACTIONS(4673), 2, anon_sym_RPAREN, anon_sym_COMMA, - [115791] = 2, + [115315] = 3, + ACTIONS(3927), 1, + anon_sym_LPAREN, + STATE(2549), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1700), 2, - sym__dedent, - anon_sym_case, - [115800] = 2, + [115326] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4086), 2, + ACTIONS(4675), 2, anon_sym_COMMA, anon_sym_RBRACE, - [115809] = 2, + [115335] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4685), 2, - sym__dedent, - anon_sym_case, - [115818] = 2, + ACTIONS(4619), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [115344] = 3, + ACTIONS(3927), 1, + anon_sym_LPAREN, + STATE(2551), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3882), 2, - anon_sym_COMMA, - anon_sym_COLON, - [115827] = 2, + [115355] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4687), 2, + ACTIONS(4677), 2, sym__newline, anon_sym_SEMI, - [115836] = 2, + [115364] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4689), 2, - sym__dedent, - anon_sym_case, - [115845] = 2, + ACTIONS(4679), 2, + sym__newline, + anon_sym_SEMI, + [115373] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3882), 2, + ACTIONS(4379), 2, anon_sym_COMMA, - anon_sym_COLON, - [115854] = 2, + anon_sym_RBRACE, + [115382] = 3, + ACTIONS(4681), 1, + sym_integer, + ACTIONS(4683), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4691), 2, - sym__dedent, - anon_sym_case, - [115863] = 2, + [115393] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4693), 2, - anon_sym_RPAREN, + ACTIONS(1547), 2, anon_sym_COMMA, - [115872] = 2, + anon_sym_RBRACK, + [115402] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4123), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [115881] = 2, + ACTIONS(1627), 2, + sym__dedent, + anon_sym_case, + [115411] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4695), 2, + ACTIONS(4685), 2, sym__newline, anon_sym_SEMI, - [115890] = 2, + [115420] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3300), 2, - sym__newline, - anon_sym_SEMI, - [115899] = 2, + ACTIONS(3430), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [115429] = 2, + ACTIONS(4687), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4697), 2, - sym__newline, - anon_sym_SEMI, - [115908] = 2, + [115437] = 2, + ACTIONS(4689), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4699), 2, - anon_sym__, - sym_identifier, - [115917] = 3, - ACTIONS(4701), 1, - sym_integer, - ACTIONS(4703), 1, - sym_float, + [115445] = 2, + ACTIONS(4691), 1, + anon_sym_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115928] = 2, + [115453] = 2, + ACTIONS(4693), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4705), 2, - sym__dedent, - anon_sym_case, - [115937] = 3, - ACTIONS(4707), 1, - sym_integer, - ACTIONS(4709), 1, - sym_float, + [115461] = 2, + ACTIONS(4695), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115948] = 3, - ACTIONS(3888), 1, - anon_sym_LPAREN, - STATE(2499), 1, - sym_parameters, + [115469] = 2, + ACTIONS(4697), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115959] = 2, + [115477] = 2, + ACTIONS(4699), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2886), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [115968] = 2, + [115485] = 2, + ACTIONS(4701), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4091), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [115977] = 3, - ACTIONS(3888), 1, - anon_sym_LPAREN, - STATE(2567), 1, - sym_parameters, + [115493] = 2, + ACTIONS(4703), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115988] = 2, + [115501] = 2, + ACTIONS(3404), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3230), 2, - sym__newline, - anon_sym_SEMI, - [115997] = 2, + [115509] = 2, + ACTIONS(4705), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3159), 2, - sym__newline, - anon_sym_SEMI, - [116006] = 3, - ACTIONS(4711), 1, - sym_integer, - ACTIONS(4713), 1, - sym_float, + [115517] = 2, + ACTIONS(4707), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116017] = 2, + [115525] = 2, + ACTIONS(4709), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1704), 2, - sym__dedent, - anon_sym_case, - [116026] = 2, + [115533] = 2, + ACTIONS(4711), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3923), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [116035] = 2, + [115541] = 2, + ACTIONS(4713), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [115549] = 2, ACTIONS(4715), 1, - anon_sym_COLON, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116043] = 2, + [115557] = 2, ACTIONS(4717), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116051] = 2, + [115565] = 2, ACTIONS(4719), 1, - anon_sym_RPAREN, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116059] = 2, + [115573] = 2, ACTIONS(4721), 1, - anon_sym_RBRACE, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116067] = 2, + [115581] = 2, ACTIONS(4723), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116075] = 2, - ACTIONS(3332), 1, + [115589] = 2, + ACTIONS(4725), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116083] = 2, - ACTIONS(4725), 1, - anon_sym_RPAREN, + [115597] = 2, + ACTIONS(4727), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116091] = 2, - ACTIONS(4727), 1, + [115605] = 2, + ACTIONS(3328), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116099] = 2, + [115613] = 2, + ACTIONS(3084), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [115621] = 2, ACTIONS(4729), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116107] = 2, + [115629] = 2, ACTIONS(4731), 1, - anon_sym_COLON, + ts_builtin_sym_end, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116115] = 2, + [115637] = 2, ACTIONS(4733), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116123] = 2, + [115645] = 2, + ACTIONS(4204), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [115653] = 2, ACTIONS(4735), 1, - anon_sym_COLON_EQ, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116131] = 2, + [115661] = 2, ACTIONS(4737), 1, - sym_identifier, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116139] = 2, + [115669] = 2, ACTIONS(4739), 1, - anon_sym_RPAREN, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116147] = 2, + [115677] = 2, ACTIONS(4741), 1, - anon_sym_RPAREN, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116155] = 2, + [115685] = 2, ACTIONS(4743), 1, - anon_sym_RBRACK, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116163] = 2, + [115693] = 2, ACTIONS(4745), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116171] = 2, + [115701] = 2, ACTIONS(4747), 1, - anon_sym_COLON, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116179] = 2, + [115709] = 2, ACTIONS(4749), 1, - anon_sym_RBRACE, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116187] = 2, + [115717] = 2, ACTIONS(4751), 1, - anon_sym_RBRACE, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [115725] = 2, + ACTIONS(4308), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116195] = 2, + [115733] = 2, ACTIONS(4753), 1, - anon_sym_COLON, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116203] = 2, + [115741] = 2, ACTIONS(4755), 1, - anon_sym_RBRACE, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116211] = 2, - ACTIONS(3101), 1, - anon_sym_RPAREN, + [115749] = 2, + ACTIONS(4389), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116219] = 2, + [115757] = 2, ACTIONS(4757), 1, - anon_sym_RPAREN, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116227] = 2, + [115765] = 2, ACTIONS(4759), 1, - sym_identifier, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116235] = 2, + [115773] = 2, ACTIONS(4761), 1, - anon_sym_RPAREN, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116243] = 2, + [115781] = 2, ACTIONS(4763), 1, - anon_sym_RBRACK, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116251] = 2, + [115789] = 2, ACTIONS(4765), 1, - anon_sym_RPAREN, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116259] = 2, + [115797] = 2, ACTIONS(4767), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [116267] = 2, - ACTIONS(4769), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [116275] = 2, - ACTIONS(4771), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116283] = 2, - ACTIONS(4773), 1, + [115805] = 2, + ACTIONS(3026), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116291] = 2, - ACTIONS(4366), 1, - anon_sym_in, + [115813] = 2, + ACTIONS(4769), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116299] = 2, - ACTIONS(3078), 1, - anon_sym_RPAREN, + [115821] = 2, + ACTIONS(4771), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116307] = 2, - ACTIONS(3452), 1, - anon_sym_RBRACE, + [115829] = 2, + ACTIONS(4773), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116315] = 2, - ACTIONS(3074), 1, + [115837] = 2, + ACTIONS(3096), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116323] = 2, + [115845] = 2, ACTIONS(4775), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116331] = 2, + [115853] = 2, ACTIONS(4777), 1, - anon_sym_RBRACE, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116339] = 2, + [115861] = 2, ACTIONS(4779), 1, - anon_sym_COLON_EQ, + anon_sym_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116347] = 2, + [115869] = 2, ACTIONS(4781), 1, - anon_sym_COLON, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116355] = 2, + [115877] = 2, ACTIONS(4783), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116363] = 2, - ACTIONS(3336), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [116371] = 2, + [115885] = 2, ACTIONS(4785), 1, - sym_identifier, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116379] = 2, + [115893] = 2, ACTIONS(4787), 1, - anon_sym_RBRACE, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116387] = 2, + [115901] = 2, ACTIONS(4789), 1, - sym_identifier, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116395] = 2, + [115909] = 2, ACTIONS(4791), 1, - sym_identifier, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116403] = 2, + [115917] = 2, ACTIONS(4793), 1, - sym_identifier, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116411] = 2, + [115925] = 2, ACTIONS(4795), 1, - anon_sym_RPAREN, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116419] = 2, + [115933] = 2, ACTIONS(4797), 1, - anon_sym_RBRACK, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116427] = 2, + [115941] = 2, ACTIONS(4799), 1, - anon_sym_RBRACK, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [115949] = 2, + ACTIONS(3396), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [115957] = 2, + ACTIONS(1421), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116435] = 2, + [115965] = 2, ACTIONS(4801), 1, - sym_identifier, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116443] = 2, + [115973] = 2, ACTIONS(4803), 1, - anon_sym_in, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116451] = 2, + [115981] = 2, ACTIONS(4805), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116459] = 2, + [115989] = 2, ACTIONS(4807), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [115997] = 2, + ACTIONS(3392), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116467] = 2, + [116005] = 2, ACTIONS(4809), 1, - anon_sym_RBRACK, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116475] = 2, + [116013] = 2, ACTIONS(4811), 1, - anon_sym_COLON, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116483] = 2, + [116021] = 2, ACTIONS(4813), 1, - sym_identifier, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116491] = 2, - ACTIONS(4815), 1, - sym_identifier, + [116029] = 2, + ACTIONS(3434), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116499] = 2, - ACTIONS(4817), 1, - anon_sym_COLON, + [116037] = 2, + ACTIONS(4815), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116507] = 2, - ACTIONS(3349), 1, - anon_sym_RBRACE, + [116045] = 2, + ACTIONS(4817), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116515] = 2, + [116053] = 2, ACTIONS(4819), 1, - anon_sym_RPAREN, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116523] = 2, + [116061] = 2, ACTIONS(4821), 1, - anon_sym_RBRACK, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116531] = 2, + [116069] = 2, ACTIONS(4823), 1, - sym_identifier, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116539] = 2, + [116077] = 2, ACTIONS(4825), 1, - anon_sym_RBRACK, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116547] = 2, + [116085] = 2, ACTIONS(4827), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116555] = 2, - ACTIONS(3384), 1, - anon_sym_RBRACE, + [116093] = 2, + ACTIONS(4829), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116563] = 2, - ACTIONS(3433), 1, - anon_sym_RBRACE, + [116101] = 2, + ACTIONS(4831), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116571] = 2, - ACTIONS(4829), 1, - sym_identifier, + [116109] = 2, + ACTIONS(4833), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116579] = 2, - ACTIONS(4831), 1, - anon_sym_RBRACE, + [116117] = 2, + ACTIONS(4442), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116587] = 2, - ACTIONS(4833), 1, - anon_sym_RBRACE, + [116125] = 2, + ACTIONS(4835), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116595] = 2, - ACTIONS(4835), 1, - anon_sym_RBRACE, + [116133] = 2, + ACTIONS(3428), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116603] = 2, + [116141] = 2, ACTIONS(4837), 1, - anon_sym_COLON, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116611] = 2, + [116149] = 2, ACTIONS(4839), 1, - anon_sym_COLON, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116619] = 2, + [116157] = 2, ACTIONS(4841), 1, - anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [116165] = 2, + ACTIONS(3010), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116627] = 2, + [116173] = 2, ACTIONS(4843), 1, - anon_sym_for, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116635] = 2, + [116181] = 2, ACTIONS(4845), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116643] = 2, - ACTIONS(4847), 1, - sym_identifier, + [116189] = 2, + ACTIONS(4444), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116651] = 2, - ACTIONS(4849), 1, + [116197] = 2, + ACTIONS(4847), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116659] = 2, - ACTIONS(4851), 1, - anon_sym_RBRACE, + [116205] = 2, + ACTIONS(3432), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116667] = 2, - ACTIONS(4853), 1, - anon_sym_COLON, + [116213] = 2, + ACTIONS(3348), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116675] = 2, - ACTIONS(4855), 1, - anon_sym_RPAREN, + [116221] = 2, + ACTIONS(4849), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116683] = 2, - ACTIONS(4857), 1, - anon_sym_RBRACK, + [116229] = 2, + ACTIONS(4851), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116691] = 2, - ACTIONS(4859), 1, - anon_sym_COLON, + [116237] = 2, + ACTIONS(4853), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116699] = 2, - ACTIONS(4861), 1, - anon_sym_COLON_EQ, + [116245] = 2, + ACTIONS(4855), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116707] = 2, - ACTIONS(4863), 1, + [116253] = 2, + ACTIONS(4857), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116715] = 2, - ACTIONS(4865), 1, + [116261] = 2, + ACTIONS(4859), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116723] = 2, - ACTIONS(4436), 1, - anon_sym_in, + [116269] = 2, + ACTIONS(4861), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116731] = 2, - ACTIONS(4867), 1, - anon_sym_RBRACK, + [116277] = 2, + ACTIONS(4863), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116739] = 2, - ACTIONS(3372), 1, + [116285] = 2, + ACTIONS(4865), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116747] = 2, - ACTIONS(3038), 1, - anon_sym_RPAREN, + [116293] = 2, + ACTIONS(4867), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116755] = 2, + [116301] = 2, ACTIONS(4869), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116763] = 2, + [116309] = 2, ACTIONS(4871), 1, - anon_sym_COLON, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116771] = 2, + [116317] = 2, ACTIONS(4873), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116779] = 2, - ACTIONS(4875), 1, - anon_sym_COLON, + [116325] = 2, + ACTIONS(3114), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116787] = 2, - ACTIONS(4877), 1, - anon_sym_RBRACE, + [116333] = 2, + ACTIONS(4875), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116795] = 2, - ACTIONS(4440), 1, - anon_sym_in, + [116341] = 2, + ACTIONS(4877), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116803] = 2, + [116349] = 2, ACTIONS(4879), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [116811] = 2, - ACTIONS(3328), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [116819] = 2, - ACTIONS(3366), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116827] = 2, + [116357] = 2, ACTIONS(4881), 1, - anon_sym_COLON, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116835] = 2, + [116365] = 2, ACTIONS(4883), 1, - anon_sym_RPAREN, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116843] = 2, + [116373] = 2, ACTIONS(4885), 1, - anon_sym_RPAREN, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116851] = 2, - ACTIONS(3376), 1, + [116381] = 2, + ACTIONS(4887), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116859] = 2, - ACTIONS(4887), 1, - anon_sym_RBRACK, + [116389] = 2, + ACTIONS(4476), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116867] = 2, + [116397] = 2, ACTIONS(4889), 1, - anon_sym_RBRACK, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116875] = 2, - ACTIONS(1451), 1, - anon_sym_COLON, + [116405] = 2, + ACTIONS(4478), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116883] = 2, - ACTIONS(3395), 1, - anon_sym_RBRACE, + [116413] = 2, + ACTIONS(3052), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116891] = 2, + [116421] = 2, ACTIONS(4891), 1, - anon_sym_RPAREN, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116899] = 2, + [116429] = 2, ACTIONS(4893), 1, - sym_identifier, + anon_sym_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116907] = 2, + [116437] = 2, ACTIONS(4895), 1, - sym_identifier, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116915] = 2, + [116445] = 2, ACTIONS(4897), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116923] = 2, + [116453] = 2, ACTIONS(4899), 1, - anon_sym_COLON, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116931] = 2, - ACTIONS(3386), 1, + [116461] = 2, + ACTIONS(4901), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116939] = 2, - ACTIONS(4901), 1, - anon_sym_RPAREN, + [116469] = 2, + ACTIONS(4903), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116947] = 2, - ACTIONS(4903), 1, + [116477] = 2, + ACTIONS(3373), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116955] = 2, + [116485] = 2, ACTIONS(4905), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116963] = 2, + [116493] = 2, ACTIONS(4907), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116971] = 2, + [116501] = 2, ACTIONS(4909), 1, - anon_sym_COLON, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116979] = 2, + [116509] = 2, ACTIONS(4911), 1, - anon_sym_COLON, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116987] = 2, + [116517] = 2, ACTIONS(4913), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [116995] = 2, - ACTIONS(4472), 1, - anon_sym_in, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117003] = 2, + [116525] = 2, ACTIONS(4915), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [117011] = 2, - ACTIONS(4474), 1, - anon_sym_in, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117019] = 2, + [116533] = 2, ACTIONS(4917), 1, - anon_sym_RBRACK, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117027] = 2, + [116541] = 2, ACTIONS(4919), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117035] = 2, - ACTIONS(4921), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [117043] = 2, - ACTIONS(4923), 1, + [116549] = 2, + ACTIONS(3062), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117051] = 2, - ACTIONS(4925), 1, + [116557] = 2, + ACTIONS(3340), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117059] = 2, - ACTIONS(4927), 1, + [116565] = 2, + ACTIONS(4921), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117067] = 2, - ACTIONS(4110), 1, - anon_sym_in, + [116573] = 2, + ACTIONS(4923), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117075] = 2, - ACTIONS(4929), 1, + [116581] = 2, + ACTIONS(4925), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117083] = 2, - ACTIONS(3062), 1, + [116589] = 2, + ACTIONS(4927), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117091] = 2, - ACTIONS(4931), 1, - anon_sym_import, + [116597] = 2, + ACTIONS(4929), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117099] = 2, - ACTIONS(4933), 1, - anon_sym_RBRACK, + [116605] = 2, + ACTIONS(4931), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117107] = 2, - ACTIONS(4935), 1, + [116613] = 2, + ACTIONS(4933), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117115] = 2, - ACTIONS(4511), 1, - anon_sym_in, + [116621] = 2, + ACTIONS(4935), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117123] = 2, + [116629] = 2, ACTIONS(4937), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117131] = 2, + [116637] = 2, ACTIONS(4939), 1, - anon_sym_RBRACK, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117139] = 2, + [116645] = 2, ACTIONS(4941), 1, - anon_sym_import, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117147] = 2, + [116653] = 2, ACTIONS(4943), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117155] = 2, + [116661] = 2, ACTIONS(4945), 1, - anon_sym_import, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117163] = 2, + [116669] = 2, ACTIONS(4947), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117171] = 2, + [116677] = 2, ACTIONS(4949), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [116685] = 2, + ACTIONS(3377), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117179] = 2, + [116693] = 2, ACTIONS(4951), 1, - anon_sym_RBRACK, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117187] = 2, + [116701] = 2, ACTIONS(4953), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117195] = 2, + [116709] = 2, ACTIONS(4955), 1, - anon_sym_COLON, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117203] = 2, + [116717] = 2, ACTIONS(4957), 1, - anon_sym_RBRACE, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117211] = 2, + [116725] = 2, ACTIONS(4959), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117219] = 2, + [116733] = 2, ACTIONS(4961), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [117227] = 2, - ACTIONS(3050), 1, - anon_sym_RPAREN, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117235] = 2, + [116741] = 2, ACTIONS(4963), 1, - anon_sym_COLON, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117243] = 2, + [116749] = 2, ACTIONS(4965), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [117251] = 2, - ACTIONS(1467), 1, - anon_sym_def, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117259] = 2, + [116757] = 2, ACTIONS(4967), 1, - ts_builtin_sym_end, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117267] = 2, + [116765] = 2, ACTIONS(4969), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117275] = 2, + [116773] = 2, ACTIONS(4971), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117283] = 2, + [116781] = 2, ACTIONS(4973), 1, - sym_identifier, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117291] = 2, - ACTIONS(4975), 1, + [116789] = 2, + ACTIONS(3416), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117299] = 2, + [116797] = 2, + ACTIONS(4975), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [116805] = 2, + ACTIONS(3100), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [116813] = 2, ACTIONS(4977), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117307] = 2, + [116821] = 2, ACTIONS(4979), 1, - anon_sym_RBRACE, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117315] = 2, + [116829] = 2, ACTIONS(4981), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117323] = 2, + [116837] = 2, ACTIONS(4983), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117331] = 2, + [116845] = 2, ACTIONS(4985), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117339] = 2, + [116853] = 2, ACTIONS(4987), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117347] = 2, + [116861] = 2, ACTIONS(4989), 1, - sym_identifier, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117355] = 2, + [116869] = 2, ACTIONS(4991), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117363] = 2, + [116877] = 2, ACTIONS(4993), 1, - anon_sym_RBRACE, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117371] = 2, + [116885] = 2, ACTIONS(4995), 1, - anon_sym_COLON, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117379] = 2, + [116893] = 2, ACTIONS(4997), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117387] = 2, + [116901] = 2, ACTIONS(4999), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117395] = 2, + [116909] = 2, ACTIONS(5001), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [117403] = 2, - ACTIONS(5003), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [117411] = 2, - ACTIONS(5005), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [117419] = 2, - ACTIONS(5007), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [117427] = 2, - ACTIONS(4542), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [117435] = 2, - ACTIONS(5009), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [117443] = 2, - ACTIONS(5011), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [117451] = 2, - ACTIONS(5013), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [117459] = 2, - ACTIONS(5015), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [117467] = 2, - ACTIONS(5017), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [117475] = 2, - ACTIONS(5019), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [117483] = 2, - ACTIONS(5021), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [117491] = 2, - ACTIONS(5023), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [117499] = 2, - ACTIONS(5025), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [117507] = 2, - ACTIONS(5027), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117515] = 2, - ACTIONS(5029), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [117523] = 2, - ACTIONS(4549), 1, + [116917] = 2, + ACTIONS(4527), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117531] = 2, - ACTIONS(1461), 1, + [116925] = 2, + ACTIONS(1453), 1, anon_sym_def, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117539] = 2, - ACTIONS(5031), 1, + [116933] = 2, + ACTIONS(5003), 1, anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117547] = 2, - ACTIONS(5033), 1, - sym_identifier, + [116941] = 2, + ACTIONS(5005), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117555] = 2, - ACTIONS(4551), 1, + [116949] = 2, + ACTIONS(4529), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117563] = 2, - ACTIONS(5035), 1, + [116957] = 2, + ACTIONS(5007), 1, anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117571] = 2, - ACTIONS(5037), 1, - anon_sym_RBRACK, + [116965] = 2, + ACTIONS(5009), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117579] = 2, - ACTIONS(3120), 1, - anon_sym_RPAREN, + [116973] = 2, + ACTIONS(1463), 1, + anon_sym_def, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117587] = 2, - ACTIONS(3091), 1, - anon_sym_RPAREN, + [116981] = 2, + ACTIONS(4214), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(189)] = 0, - [SMALL_STATE(190)] = 126, - [SMALL_STATE(191)] = 250, - [SMALL_STATE(192)] = 376, - [SMALL_STATE(193)] = 500, - [SMALL_STATE(194)] = 624, - [SMALL_STATE(195)] = 744, - [SMALL_STATE(196)] = 870, - [SMALL_STATE(197)] = 994, - [SMALL_STATE(198)] = 1118, - [SMALL_STATE(199)] = 1238, - [SMALL_STATE(200)] = 1358, - [SMALL_STATE(201)] = 1484, - [SMALL_STATE(202)] = 1610, - [SMALL_STATE(203)] = 1734, - [SMALL_STATE(204)] = 1860, - [SMALL_STATE(205)] = 1984, - [SMALL_STATE(206)] = 2110, - [SMALL_STATE(207)] = 2234, - [SMALL_STATE(208)] = 2358, - [SMALL_STATE(209)] = 2482, - [SMALL_STATE(210)] = 2610, - [SMALL_STATE(211)] = 2738, - [SMALL_STATE(212)] = 2864, - [SMALL_STATE(213)] = 2988, - [SMALL_STATE(214)] = 3112, - [SMALL_STATE(215)] = 3236, - [SMALL_STATE(216)] = 3360, - [SMALL_STATE(217)] = 3484, - [SMALL_STATE(218)] = 3610, - [SMALL_STATE(219)] = 3734, - [SMALL_STATE(220)] = 3858, - [SMALL_STATE(221)] = 3982, - [SMALL_STATE(222)] = 4106, - [SMALL_STATE(223)] = 4213, - [SMALL_STATE(224)] = 4320, - [SMALL_STATE(225)] = 4434, - [SMALL_STATE(226)] = 4548, - [SMALL_STATE(227)] = 4662, - [SMALL_STATE(228)] = 4776, - [SMALL_STATE(229)] = 4890, - [SMALL_STATE(230)] = 5004, - [SMALL_STATE(231)] = 5120, - [SMALL_STATE(232)] = 5234, - [SMALL_STATE(233)] = 5348, - [SMALL_STATE(234)] = 5464, - [SMALL_STATE(235)] = 5579, - [SMALL_STATE(236)] = 5690, - [SMALL_STATE(237)] = 5801, - [SMALL_STATE(238)] = 5912, - [SMALL_STATE(239)] = 6029, - [SMALL_STATE(240)] = 6140, - [SMALL_STATE(241)] = 6251, - [SMALL_STATE(242)] = 6362, - [SMALL_STATE(243)] = 6473, - [SMALL_STATE(244)] = 6584, - [SMALL_STATE(245)] = 6695, - [SMALL_STATE(246)] = 6806, - [SMALL_STATE(247)] = 6917, - [SMALL_STATE(248)] = 7028, - [SMALL_STATE(249)] = 7143, - [SMALL_STATE(250)] = 7254, - [SMALL_STATE(251)] = 7365, - [SMALL_STATE(252)] = 7480, - [SMALL_STATE(253)] = 7591, - [SMALL_STATE(254)] = 7696, - [SMALL_STATE(255)] = 7801, - [SMALL_STATE(256)] = 7912, - [SMALL_STATE(257)] = 8027, - [SMALL_STATE(258)] = 8138, - [SMALL_STATE(259)] = 8249, - [SMALL_STATE(260)] = 8360, - [SMALL_STATE(261)] = 8475, - [SMALL_STATE(262)] = 8590, - [SMALL_STATE(263)] = 8705, - [SMALL_STATE(264)] = 8820, - [SMALL_STATE(265)] = 8931, - [SMALL_STATE(266)] = 9042, - [SMALL_STATE(267)] = 9153, - [SMALL_STATE(268)] = 9268, - [SMALL_STATE(269)] = 9379, - [SMALL_STATE(270)] = 9490, - [SMALL_STATE(271)] = 9601, - [SMALL_STATE(272)] = 9712, - [SMALL_STATE(273)] = 9824, - [SMALL_STATE(274)] = 9936, - [SMALL_STATE(275)] = 10052, - [SMALL_STATE(276)] = 10166, - [SMALL_STATE(277)] = 10278, - [SMALL_STATE(278)] = 10390, - [SMALL_STATE(279)] = 10502, - [SMALL_STATE(280)] = 10616, - [SMALL_STATE(281)] = 10728, - [SMALL_STATE(282)] = 10844, - [SMALL_STATE(283)] = 10956, - [SMALL_STATE(284)] = 11068, - [SMALL_STATE(285)] = 11180, - [SMALL_STATE(286)] = 11292, - [SMALL_STATE(287)] = 11404, - [SMALL_STATE(288)] = 11518, - [SMALL_STATE(289)] = 11630, - [SMALL_STATE(290)] = 11746, - [SMALL_STATE(291)] = 11858, - [SMALL_STATE(292)] = 11970, - [SMALL_STATE(293)] = 12082, - [SMALL_STATE(294)] = 12194, - [SMALL_STATE(295)] = 12306, - [SMALL_STATE(296)] = 12420, - [SMALL_STATE(297)] = 12532, - [SMALL_STATE(298)] = 12644, - [SMALL_STATE(299)] = 12756, - [SMALL_STATE(300)] = 12868, - [SMALL_STATE(301)] = 12980, - [SMALL_STATE(302)] = 13094, - [SMALL_STATE(303)] = 13206, - [SMALL_STATE(304)] = 13322, - [SMALL_STATE(305)] = 13434, - [SMALL_STATE(306)] = 13546, - [SMALL_STATE(307)] = 13658, - [SMALL_STATE(308)] = 13770, - [SMALL_STATE(309)] = 13882, - [SMALL_STATE(310)] = 13996, - [SMALL_STATE(311)] = 14108, - [SMALL_STATE(312)] = 14220, - [SMALL_STATE(313)] = 14332, - [SMALL_STATE(314)] = 14444, - [SMALL_STATE(315)] = 14556, - [SMALL_STATE(316)] = 14670, - [SMALL_STATE(317)] = 14782, - [SMALL_STATE(318)] = 14894, - [SMALL_STATE(319)] = 15006, - [SMALL_STATE(320)] = 15118, - [SMALL_STATE(321)] = 15230, - [SMALL_STATE(322)] = 15344, - [SMALL_STATE(323)] = 15456, - [SMALL_STATE(324)] = 15572, - [SMALL_STATE(325)] = 15684, - [SMALL_STATE(326)] = 15800, - [SMALL_STATE(327)] = 15909, - [SMALL_STATE(328)] = 16018, - [SMALL_STATE(329)] = 16123, - [SMALL_STATE(330)] = 16232, - [SMALL_STATE(331)] = 16341, - [SMALL_STATE(332)] = 16450, - [SMALL_STATE(333)] = 16559, - [SMALL_STATE(334)] = 16668, - [SMALL_STATE(335)] = 16777, - [SMALL_STATE(336)] = 16886, - [SMALL_STATE(337)] = 16995, - [SMALL_STATE(338)] = 17104, - [SMALL_STATE(339)] = 17213, - [SMALL_STATE(340)] = 17322, - [SMALL_STATE(341)] = 17431, - [SMALL_STATE(342)] = 17540, - [SMALL_STATE(343)] = 17645, - [SMALL_STATE(344)] = 17754, - [SMALL_STATE(345)] = 17851, - [SMALL_STATE(346)] = 17960, - [SMALL_STATE(347)] = 18069, - [SMALL_STATE(348)] = 18178, - [SMALL_STATE(349)] = 18284, - [SMALL_STATE(350)] = 18392, - [SMALL_STATE(351)] = 18500, - [SMALL_STATE(352)] = 18608, - [SMALL_STATE(353)] = 18716, - [SMALL_STATE(354)] = 18824, - [SMALL_STATE(355)] = 18932, - [SMALL_STATE(356)] = 19040, - [SMALL_STATE(357)] = 19146, - [SMALL_STATE(358)] = 19254, - [SMALL_STATE(359)] = 19362, - [SMALL_STATE(360)] = 19470, - [SMALL_STATE(361)] = 19578, - [SMALL_STATE(362)] = 19686, - [SMALL_STATE(363)] = 19794, - [SMALL_STATE(364)] = 19902, - [SMALL_STATE(365)] = 20010, - [SMALL_STATE(366)] = 20118, - [SMALL_STATE(367)] = 20226, - [SMALL_STATE(368)] = 20334, - [SMALL_STATE(369)] = 20442, - [SMALL_STATE(370)] = 20548, - [SMALL_STATE(371)] = 20656, - [SMALL_STATE(372)] = 20763, - [SMALL_STATE(373)] = 20868, - [SMALL_STATE(374)] = 20975, - [SMALL_STATE(375)] = 21082, - [SMALL_STATE(376)] = 21189, - [SMALL_STATE(377)] = 21296, - [SMALL_STATE(378)] = 21403, - [SMALL_STATE(379)] = 21510, - [SMALL_STATE(380)] = 21617, - [SMALL_STATE(381)] = 21722, - [SMALL_STATE(382)] = 21827, - [SMALL_STATE(383)] = 21934, - [SMALL_STATE(384)] = 22039, - [SMALL_STATE(385)] = 22146, - [SMALL_STATE(386)] = 22253, - [SMALL_STATE(387)] = 22360, - [SMALL_STATE(388)] = 22467, - [SMALL_STATE(389)] = 22574, - [SMALL_STATE(390)] = 22669, - [SMALL_STATE(391)] = 22776, - [SMALL_STATE(392)] = 22883, - [SMALL_STATE(393)] = 22990, - [SMALL_STATE(394)] = 23097, - [SMALL_STATE(395)] = 23204, - [SMALL_STATE(396)] = 23311, - [SMALL_STATE(397)] = 23418, - [SMALL_STATE(398)] = 23525, - [SMALL_STATE(399)] = 23632, - [SMALL_STATE(400)] = 23739, - [SMALL_STATE(401)] = 23846, - [SMALL_STATE(402)] = 23951, - [SMALL_STATE(403)] = 24058, - [SMALL_STATE(404)] = 24163, - [SMALL_STATE(405)] = 24258, - [SMALL_STATE(406)] = 24365, - [SMALL_STATE(407)] = 24472, - [SMALL_STATE(408)] = 24579, - [SMALL_STATE(409)] = 24686, - [SMALL_STATE(410)] = 24790, - [SMALL_STATE(411)] = 24894, - [SMALL_STATE(412)] = 24996, - [SMALL_STATE(413)] = 25098, - [SMALL_STATE(414)] = 25200, - [SMALL_STATE(415)] = 25302, - [SMALL_STATE(416)] = 25404, - [SMALL_STATE(417)] = 25508, - [SMALL_STATE(418)] = 25602, - [SMALL_STATE(419)] = 25704, - [SMALL_STATE(420)] = 25806, - [SMALL_STATE(421)] = 25908, - [SMALL_STATE(422)] = 26010, - [SMALL_STATE(423)] = 26104, - [SMALL_STATE(424)] = 26200, - [SMALL_STATE(425)] = 26302, - [SMALL_STATE(426)] = 26404, - [SMALL_STATE(427)] = 26506, - [SMALL_STATE(428)] = 26608, - [SMALL_STATE(429)] = 26712, - [SMALL_STATE(430)] = 26816, - [SMALL_STATE(431)] = 26918, - [SMALL_STATE(432)] = 27022, - [SMALL_STATE(433)] = 27124, - [SMALL_STATE(434)] = 27226, - [SMALL_STATE(435)] = 27328, - [SMALL_STATE(436)] = 27430, - [SMALL_STATE(437)] = 27532, - [SMALL_STATE(438)] = 27634, - [SMALL_STATE(439)] = 27736, - [SMALL_STATE(440)] = 27830, - [SMALL_STATE(441)] = 27934, - [SMALL_STATE(442)] = 28036, - [SMALL_STATE(443)] = 28138, - [SMALL_STATE(444)] = 28242, - [SMALL_STATE(445)] = 28346, - [SMALL_STATE(446)] = 28450, - [SMALL_STATE(447)] = 28544, - [SMALL_STATE(448)] = 28648, - [SMALL_STATE(449)] = 28752, - [SMALL_STATE(450)] = 28856, - [SMALL_STATE(451)] = 28960, - [SMALL_STATE(452)] = 29064, - [SMALL_STATE(453)] = 29166, - [SMALL_STATE(454)] = 29268, - [SMALL_STATE(455)] = 29372, - [SMALL_STATE(456)] = 29476, - [SMALL_STATE(457)] = 29578, - [SMALL_STATE(458)] = 29680, - [SMALL_STATE(459)] = 29782, - [SMALL_STATE(460)] = 29886, - [SMALL_STATE(461)] = 29990, - [SMALL_STATE(462)] = 30065, - [SMALL_STATE(463)] = 30166, - [SMALL_STATE(464)] = 30241, - [SMALL_STATE(465)] = 30342, - [SMALL_STATE(466)] = 30443, - [SMALL_STATE(467)] = 30544, - [SMALL_STATE(468)] = 30619, - [SMALL_STATE(469)] = 30720, - [SMALL_STATE(470)] = 30821, - [SMALL_STATE(471)] = 30922, - [SMALL_STATE(472)] = 31023, - [SMALL_STATE(473)] = 31124, - [SMALL_STATE(474)] = 31225, - [SMALL_STATE(475)] = 31326, - [SMALL_STATE(476)] = 31427, - [SMALL_STATE(477)] = 31504, - [SMALL_STATE(478)] = 31605, - [SMALL_STATE(479)] = 31706, - [SMALL_STATE(480)] = 31807, - [SMALL_STATE(481)] = 31905, - [SMALL_STATE(482)] = 32003, - [SMALL_STATE(483)] = 32101, - [SMALL_STATE(484)] = 32199, - [SMALL_STATE(485)] = 32297, - [SMALL_STATE(486)] = 32369, - [SMALL_STATE(487)] = 32441, - [SMALL_STATE(488)] = 32539, - [SMALL_STATE(489)] = 32637, - [SMALL_STATE(490)] = 32735, - [SMALL_STATE(491)] = 32833, - [SMALL_STATE(492)] = 32931, - [SMALL_STATE(493)] = 33029, - [SMALL_STATE(494)] = 33127, - [SMALL_STATE(495)] = 33225, - [SMALL_STATE(496)] = 33323, - [SMALL_STATE(497)] = 33421, - [SMALL_STATE(498)] = 33519, - [SMALL_STATE(499)] = 33617, - [SMALL_STATE(500)] = 33715, - [SMALL_STATE(501)] = 33813, - [SMALL_STATE(502)] = 33911, - [SMALL_STATE(503)] = 34009, - [SMALL_STATE(504)] = 34107, - [SMALL_STATE(505)] = 34205, - [SMALL_STATE(506)] = 34303, - [SMALL_STATE(507)] = 34401, - [SMALL_STATE(508)] = 34499, - [SMALL_STATE(509)] = 34597, - [SMALL_STATE(510)] = 34695, - [SMALL_STATE(511)] = 34793, - [SMALL_STATE(512)] = 34891, - [SMALL_STATE(513)] = 34989, - [SMALL_STATE(514)] = 35087, - [SMALL_STATE(515)] = 35185, - [SMALL_STATE(516)] = 35283, - [SMALL_STATE(517)] = 35381, - [SMALL_STATE(518)] = 35479, - [SMALL_STATE(519)] = 35577, - [SMALL_STATE(520)] = 35675, - [SMALL_STATE(521)] = 35773, - [SMALL_STATE(522)] = 35871, - [SMALL_STATE(523)] = 35969, - [SMALL_STATE(524)] = 36067, - [SMALL_STATE(525)] = 36165, - [SMALL_STATE(526)] = 36263, - [SMALL_STATE(527)] = 36363, - [SMALL_STATE(528)] = 36461, - [SMALL_STATE(529)] = 36559, - [SMALL_STATE(530)] = 36657, - [SMALL_STATE(531)] = 36755, - [SMALL_STATE(532)] = 36853, - [SMALL_STATE(533)] = 36951, - [SMALL_STATE(534)] = 37049, - [SMALL_STATE(535)] = 37147, - [SMALL_STATE(536)] = 37245, - [SMALL_STATE(537)] = 37343, - [SMALL_STATE(538)] = 37441, - [SMALL_STATE(539)] = 37539, - [SMALL_STATE(540)] = 37637, - [SMALL_STATE(541)] = 37735, - [SMALL_STATE(542)] = 37833, - [SMALL_STATE(543)] = 37931, - [SMALL_STATE(544)] = 38029, - [SMALL_STATE(545)] = 38127, - [SMALL_STATE(546)] = 38225, - [SMALL_STATE(547)] = 38323, - [SMALL_STATE(548)] = 38421, - [SMALL_STATE(549)] = 38519, - [SMALL_STATE(550)] = 38617, - [SMALL_STATE(551)] = 38715, - [SMALL_STATE(552)] = 38815, - [SMALL_STATE(553)] = 38913, - [SMALL_STATE(554)] = 39011, - [SMALL_STATE(555)] = 39109, - [SMALL_STATE(556)] = 39207, - [SMALL_STATE(557)] = 39305, - [SMALL_STATE(558)] = 39403, - [SMALL_STATE(559)] = 39501, - [SMALL_STATE(560)] = 39599, - [SMALL_STATE(561)] = 39697, - [SMALL_STATE(562)] = 39797, - [SMALL_STATE(563)] = 39869, - [SMALL_STATE(564)] = 39941, - [SMALL_STATE(565)] = 40039, - [SMALL_STATE(566)] = 40137, - [SMALL_STATE(567)] = 40235, - [SMALL_STATE(568)] = 40333, - [SMALL_STATE(569)] = 40431, - [SMALL_STATE(570)] = 40529, - [SMALL_STATE(571)] = 40627, - [SMALL_STATE(572)] = 40725, - [SMALL_STATE(573)] = 40825, - [SMALL_STATE(574)] = 40923, - [SMALL_STATE(575)] = 41021, - [SMALL_STATE(576)] = 41119, - [SMALL_STATE(577)] = 41217, - [SMALL_STATE(578)] = 41315, - [SMALL_STATE(579)] = 41413, - [SMALL_STATE(580)] = 41511, - [SMALL_STATE(581)] = 41609, - [SMALL_STATE(582)] = 41707, - [SMALL_STATE(583)] = 41807, - [SMALL_STATE(584)] = 41905, - [SMALL_STATE(585)] = 42003, - [SMALL_STATE(586)] = 42101, - [SMALL_STATE(587)] = 42199, - [SMALL_STATE(588)] = 42297, - [SMALL_STATE(589)] = 42395, - [SMALL_STATE(590)] = 42495, - [SMALL_STATE(591)] = 42567, - [SMALL_STATE(592)] = 42639, - [SMALL_STATE(593)] = 42737, - [SMALL_STATE(594)] = 42835, - [SMALL_STATE(595)] = 42907, - [SMALL_STATE(596)] = 42979, - [SMALL_STATE(597)] = 43077, - [SMALL_STATE(598)] = 43175, - [SMALL_STATE(599)] = 43273, - [SMALL_STATE(600)] = 43371, - [SMALL_STATE(601)] = 43469, - [SMALL_STATE(602)] = 43567, - [SMALL_STATE(603)] = 43665, - [SMALL_STATE(604)] = 43763, - [SMALL_STATE(605)] = 43861, - [SMALL_STATE(606)] = 43959, - [SMALL_STATE(607)] = 44057, - [SMALL_STATE(608)] = 44155, - [SMALL_STATE(609)] = 44253, - [SMALL_STATE(610)] = 44326, - [SMALL_STATE(611)] = 44394, - [SMALL_STATE(612)] = 44462, - [SMALL_STATE(613)] = 44528, - [SMALL_STATE(614)] = 44596, - [SMALL_STATE(615)] = 44664, - [SMALL_STATE(616)] = 44732, - [SMALL_STATE(617)] = 44800, - [SMALL_STATE(618)] = 44866, - [SMALL_STATE(619)] = 44934, - [SMALL_STATE(620)] = 45002, - [SMALL_STATE(621)] = 45070, - [SMALL_STATE(622)] = 45138, - [SMALL_STATE(623)] = 45200, - [SMALL_STATE(624)] = 45262, - [SMALL_STATE(625)] = 45324, - [SMALL_STATE(626)] = 45386, - [SMALL_STATE(627)] = 45452, - [SMALL_STATE(628)] = 45509, - [SMALL_STATE(629)] = 45572, - [SMALL_STATE(630)] = 45635, - [SMALL_STATE(631)] = 45698, - [SMALL_STATE(632)] = 45761, - [SMALL_STATE(633)] = 45824, - [SMALL_STATE(634)] = 45887, - [SMALL_STATE(635)] = 45950, - [SMALL_STATE(636)] = 46013, - [SMALL_STATE(637)] = 46078, - [SMALL_STATE(638)] = 46135, - [SMALL_STATE(639)] = 46196, - [SMALL_STATE(640)] = 46257, - [SMALL_STATE(641)] = 46320, - [SMALL_STATE(642)] = 46383, - [SMALL_STATE(643)] = 46440, - [SMALL_STATE(644)] = 46497, - [SMALL_STATE(645)] = 46554, - [SMALL_STATE(646)] = 46611, - [SMALL_STATE(647)] = 46672, - [SMALL_STATE(648)] = 46729, - [SMALL_STATE(649)] = 46785, - [SMALL_STATE(650)] = 46841, - [SMALL_STATE(651)] = 46897, - [SMALL_STATE(652)] = 46953, - [SMALL_STATE(653)] = 47009, - [SMALL_STATE(654)] = 47065, - [SMALL_STATE(655)] = 47121, - [SMALL_STATE(656)] = 47177, - [SMALL_STATE(657)] = 47269, - [SMALL_STATE(658)] = 47325, - [SMALL_STATE(659)] = 47381, - [SMALL_STATE(660)] = 47437, - [SMALL_STATE(661)] = 47493, - [SMALL_STATE(662)] = 47549, - [SMALL_STATE(663)] = 47605, - [SMALL_STATE(664)] = 47661, - [SMALL_STATE(665)] = 47717, - [SMALL_STATE(666)] = 47773, - [SMALL_STATE(667)] = 47829, - [SMALL_STATE(668)] = 47885, - [SMALL_STATE(669)] = 47941, - [SMALL_STATE(670)] = 47997, - [SMALL_STATE(671)] = 48053, - [SMALL_STATE(672)] = 48109, - [SMALL_STATE(673)] = 48165, - [SMALL_STATE(674)] = 48221, - [SMALL_STATE(675)] = 48277, - [SMALL_STATE(676)] = 48333, - [SMALL_STATE(677)] = 48389, - [SMALL_STATE(678)] = 48445, - [SMALL_STATE(679)] = 48501, - [SMALL_STATE(680)] = 48557, - [SMALL_STATE(681)] = 48613, - [SMALL_STATE(682)] = 48669, - [SMALL_STATE(683)] = 48725, - [SMALL_STATE(684)] = 48781, - [SMALL_STATE(685)] = 48837, - [SMALL_STATE(686)] = 48893, - [SMALL_STATE(687)] = 48949, - [SMALL_STATE(688)] = 49005, - [SMALL_STATE(689)] = 49061, - [SMALL_STATE(690)] = 49117, - [SMALL_STATE(691)] = 49209, - [SMALL_STATE(692)] = 49265, - [SMALL_STATE(693)] = 49321, - [SMALL_STATE(694)] = 49377, - [SMALL_STATE(695)] = 49433, - [SMALL_STATE(696)] = 49489, - [SMALL_STATE(697)] = 49545, - [SMALL_STATE(698)] = 49601, - [SMALL_STATE(699)] = 49657, - [SMALL_STATE(700)] = 49713, - [SMALL_STATE(701)] = 49772, - [SMALL_STATE(702)] = 49827, - [SMALL_STATE(703)] = 49886, - [SMALL_STATE(704)] = 49945, - [SMALL_STATE(705)] = 50004, - [SMALL_STATE(706)] = 50063, - [SMALL_STATE(707)] = 50122, - [SMALL_STATE(708)] = 50177, - [SMALL_STATE(709)] = 50236, - [SMALL_STATE(710)] = 50291, - [SMALL_STATE(711)] = 50346, - [SMALL_STATE(712)] = 50405, - [SMALL_STATE(713)] = 50464, - [SMALL_STATE(714)] = 50523, - [SMALL_STATE(715)] = 50578, - [SMALL_STATE(716)] = 50637, - [SMALL_STATE(717)] = 50692, - [SMALL_STATE(718)] = 50751, - [SMALL_STATE(719)] = 50810, - [SMALL_STATE(720)] = 50869, - [SMALL_STATE(721)] = 50928, - [SMALL_STATE(722)] = 50987, - [SMALL_STATE(723)] = 51079, - [SMALL_STATE(724)] = 51133, - [SMALL_STATE(725)] = 51225, - [SMALL_STATE(726)] = 51279, - [SMALL_STATE(727)] = 51333, - [SMALL_STATE(728)] = 51387, - [SMALL_STATE(729)] = 51440, - [SMALL_STATE(730)] = 51493, - [SMALL_STATE(731)] = 51546, - [SMALL_STATE(732)] = 51599, - [SMALL_STATE(733)] = 51652, - [SMALL_STATE(734)] = 51705, - [SMALL_STATE(735)] = 51758, - [SMALL_STATE(736)] = 51811, - [SMALL_STATE(737)] = 51864, - [SMALL_STATE(738)] = 51917, - [SMALL_STATE(739)] = 51970, - [SMALL_STATE(740)] = 52023, - [SMALL_STATE(741)] = 52076, - [SMALL_STATE(742)] = 52129, - [SMALL_STATE(743)] = 52218, - [SMALL_STATE(744)] = 52307, - [SMALL_STATE(745)] = 52360, - [SMALL_STATE(746)] = 52413, - [SMALL_STATE(747)] = 52466, - [SMALL_STATE(748)] = 52519, - [SMALL_STATE(749)] = 52572, - [SMALL_STATE(750)] = 52625, - [SMALL_STATE(751)] = 52678, - [SMALL_STATE(752)] = 52731, - [SMALL_STATE(753)] = 52784, - [SMALL_STATE(754)] = 52837, - [SMALL_STATE(755)] = 52890, - [SMALL_STATE(756)] = 52943, - [SMALL_STATE(757)] = 52996, - [SMALL_STATE(758)] = 53049, - [SMALL_STATE(759)] = 53102, - [SMALL_STATE(760)] = 53155, - [SMALL_STATE(761)] = 53208, - [SMALL_STATE(762)] = 53261, - [SMALL_STATE(763)] = 53314, - [SMALL_STATE(764)] = 53367, - [SMALL_STATE(765)] = 53420, - [SMALL_STATE(766)] = 53473, - [SMALL_STATE(767)] = 53526, - [SMALL_STATE(768)] = 53615, - [SMALL_STATE(769)] = 53704, - [SMALL_STATE(770)] = 53757, - [SMALL_STATE(771)] = 53810, - [SMALL_STATE(772)] = 53863, - [SMALL_STATE(773)] = 53916, - [SMALL_STATE(774)] = 53969, - [SMALL_STATE(775)] = 54022, - [SMALL_STATE(776)] = 54075, - [SMALL_STATE(777)] = 54128, - [SMALL_STATE(778)] = 54181, - [SMALL_STATE(779)] = 54234, - [SMALL_STATE(780)] = 54287, - [SMALL_STATE(781)] = 54376, - [SMALL_STATE(782)] = 54465, - [SMALL_STATE(783)] = 54518, - [SMALL_STATE(784)] = 54571, - [SMALL_STATE(785)] = 54624, - [SMALL_STATE(786)] = 54677, - [SMALL_STATE(787)] = 54730, - [SMALL_STATE(788)] = 54783, - [SMALL_STATE(789)] = 54836, - [SMALL_STATE(790)] = 54889, - [SMALL_STATE(791)] = 54942, - [SMALL_STATE(792)] = 54995, - [SMALL_STATE(793)] = 55048, - [SMALL_STATE(794)] = 55101, - [SMALL_STATE(795)] = 55190, - [SMALL_STATE(796)] = 55243, - [SMALL_STATE(797)] = 55332, - [SMALL_STATE(798)] = 55385, - [SMALL_STATE(799)] = 55474, - [SMALL_STATE(800)] = 55563, - [SMALL_STATE(801)] = 55616, - [SMALL_STATE(802)] = 55669, - [SMALL_STATE(803)] = 55722, - [SMALL_STATE(804)] = 55775, - [SMALL_STATE(805)] = 55828, - [SMALL_STATE(806)] = 55881, - [SMALL_STATE(807)] = 55934, - [SMALL_STATE(808)] = 55987, - [SMALL_STATE(809)] = 56040, - [SMALL_STATE(810)] = 56093, - [SMALL_STATE(811)] = 56146, - [SMALL_STATE(812)] = 56199, - [SMALL_STATE(813)] = 56252, - [SMALL_STATE(814)] = 56305, - [SMALL_STATE(815)] = 56358, - [SMALL_STATE(816)] = 56411, - [SMALL_STATE(817)] = 56464, - [SMALL_STATE(818)] = 56517, - [SMALL_STATE(819)] = 56570, - [SMALL_STATE(820)] = 56623, - [SMALL_STATE(821)] = 56676, - [SMALL_STATE(822)] = 56729, - [SMALL_STATE(823)] = 56782, - [SMALL_STATE(824)] = 56835, - [SMALL_STATE(825)] = 56888, - [SMALL_STATE(826)] = 56941, - [SMALL_STATE(827)] = 56994, - [SMALL_STATE(828)] = 57047, - [SMALL_STATE(829)] = 57100, - [SMALL_STATE(830)] = 57153, - [SMALL_STATE(831)] = 57206, - [SMALL_STATE(832)] = 57259, - [SMALL_STATE(833)] = 57312, - [SMALL_STATE(834)] = 57365, - [SMALL_STATE(835)] = 57418, - [SMALL_STATE(836)] = 57471, - [SMALL_STATE(837)] = 57524, - [SMALL_STATE(838)] = 57577, - [SMALL_STATE(839)] = 57630, - [SMALL_STATE(840)] = 57683, - [SMALL_STATE(841)] = 57736, - [SMALL_STATE(842)] = 57789, - [SMALL_STATE(843)] = 57842, - [SMALL_STATE(844)] = 57895, - [SMALL_STATE(845)] = 57984, - [SMALL_STATE(846)] = 58073, - [SMALL_STATE(847)] = 58126, - [SMALL_STATE(848)] = 58179, - [SMALL_STATE(849)] = 58268, - [SMALL_STATE(850)] = 58357, - [SMALL_STATE(851)] = 58446, - [SMALL_STATE(852)] = 58535, - [SMALL_STATE(853)] = 58621, - [SMALL_STATE(854)] = 58707, - [SMALL_STATE(855)] = 58793, - [SMALL_STATE(856)] = 58879, - [SMALL_STATE(857)] = 58965, - [SMALL_STATE(858)] = 59051, - [SMALL_STATE(859)] = 59134, - [SMALL_STATE(860)] = 59217, - [SMALL_STATE(861)] = 59295, - [SMALL_STATE(862)] = 59373, - [SMALL_STATE(863)] = 59451, - [SMALL_STATE(864)] = 59529, - [SMALL_STATE(865)] = 59607, - [SMALL_STATE(866)] = 59693, - [SMALL_STATE(867)] = 59771, - [SMALL_STATE(868)] = 59849, - [SMALL_STATE(869)] = 59927, - [SMALL_STATE(870)] = 60002, - [SMALL_STATE(871)] = 60077, - [SMALL_STATE(872)] = 60152, - [SMALL_STATE(873)] = 60227, - [SMALL_STATE(874)] = 60302, - [SMALL_STATE(875)] = 60377, - [SMALL_STATE(876)] = 60456, - [SMALL_STATE(877)] = 60531, - [SMALL_STATE(878)] = 60610, - [SMALL_STATE(879)] = 60685, - [SMALL_STATE(880)] = 60760, - [SMALL_STATE(881)] = 60835, - [SMALL_STATE(882)] = 60910, - [SMALL_STATE(883)] = 60985, - [SMALL_STATE(884)] = 61064, - [SMALL_STATE(885)] = 61139, - [SMALL_STATE(886)] = 61214, - [SMALL_STATE(887)] = 61293, - [SMALL_STATE(888)] = 61368, - [SMALL_STATE(889)] = 61443, - [SMALL_STATE(890)] = 61518, - [SMALL_STATE(891)] = 61593, - [SMALL_STATE(892)] = 61668, - [SMALL_STATE(893)] = 61743, - [SMALL_STATE(894)] = 61822, - [SMALL_STATE(895)] = 61897, - [SMALL_STATE(896)] = 61972, - [SMALL_STATE(897)] = 62047, - [SMALL_STATE(898)] = 62122, - [SMALL_STATE(899)] = 62197, - [SMALL_STATE(900)] = 62272, - [SMALL_STATE(901)] = 62347, - [SMALL_STATE(902)] = 62422, - [SMALL_STATE(903)] = 62497, - [SMALL_STATE(904)] = 62576, - [SMALL_STATE(905)] = 62651, - [SMALL_STATE(906)] = 62726, - [SMALL_STATE(907)] = 62801, - [SMALL_STATE(908)] = 62876, - [SMALL_STATE(909)] = 62955, - [SMALL_STATE(910)] = 63040, - [SMALL_STATE(911)] = 63115, - [SMALL_STATE(912)] = 63190, - [SMALL_STATE(913)] = 63275, - [SMALL_STATE(914)] = 63354, - [SMALL_STATE(915)] = 63429, - [SMALL_STATE(916)] = 63508, - [SMALL_STATE(917)] = 63587, - [SMALL_STATE(918)] = 63662, - [SMALL_STATE(919)] = 63737, - [SMALL_STATE(920)] = 63812, - [SMALL_STATE(921)] = 63891, - [SMALL_STATE(922)] = 63966, - [SMALL_STATE(923)] = 64041, - [SMALL_STATE(924)] = 64116, - [SMALL_STATE(925)] = 64191, - [SMALL_STATE(926)] = 64266, - [SMALL_STATE(927)] = 64345, - [SMALL_STATE(928)] = 64420, - [SMALL_STATE(929)] = 64495, - [SMALL_STATE(930)] = 64574, - [SMALL_STATE(931)] = 64649, - [SMALL_STATE(932)] = 64724, - [SMALL_STATE(933)] = 64799, - [SMALL_STATE(934)] = 64874, - [SMALL_STATE(935)] = 64949, - [SMALL_STATE(936)] = 65024, - [SMALL_STATE(937)] = 65099, - [SMALL_STATE(938)] = 65174, - [SMALL_STATE(939)] = 65249, - [SMALL_STATE(940)] = 65324, - [SMALL_STATE(941)] = 65399, - [SMALL_STATE(942)] = 65474, - [SMALL_STATE(943)] = 65549, - [SMALL_STATE(944)] = 65628, - [SMALL_STATE(945)] = 65703, - [SMALL_STATE(946)] = 65782, - [SMALL_STATE(947)] = 65857, - [SMALL_STATE(948)] = 65932, - [SMALL_STATE(949)] = 66007, - [SMALL_STATE(950)] = 66082, - [SMALL_STATE(951)] = 66157, - [SMALL_STATE(952)] = 66232, - [SMALL_STATE(953)] = 66307, - [SMALL_STATE(954)] = 66382, - [SMALL_STATE(955)] = 66461, - [SMALL_STATE(956)] = 66536, - [SMALL_STATE(957)] = 66611, - [SMALL_STATE(958)] = 66686, - [SMALL_STATE(959)] = 66765, - [SMALL_STATE(960)] = 66844, - [SMALL_STATE(961)] = 66923, - [SMALL_STATE(962)] = 66998, - [SMALL_STATE(963)] = 67077, - [SMALL_STATE(964)] = 67161, - [SMALL_STATE(965)] = 67213, - [SMALL_STATE(966)] = 67297, - [SMALL_STATE(967)] = 67379, - [SMALL_STATE(968)] = 67463, - [SMALL_STATE(969)] = 67515, - [SMALL_STATE(970)] = 67567, - [SMALL_STATE(971)] = 67651, - [SMALL_STATE(972)] = 67702, - [SMALL_STATE(973)] = 67753, - [SMALL_STATE(974)] = 67810, - [SMALL_STATE(975)] = 67873, - [SMALL_STATE(976)] = 67924, - [SMALL_STATE(977)] = 68005, - [SMALL_STATE(978)] = 68076, - [SMALL_STATE(979)] = 68127, - [SMALL_STATE(980)] = 68178, - [SMALL_STATE(981)] = 68235, - [SMALL_STATE(982)] = 68292, - [SMALL_STATE(983)] = 68361, - [SMALL_STATE(984)] = 68418, - [SMALL_STATE(985)] = 68469, - [SMALL_STATE(986)] = 68530, - [SMALL_STATE(987)] = 68595, - [SMALL_STATE(988)] = 68662, - [SMALL_STATE(989)] = 68718, - [SMALL_STATE(990)] = 68774, - [SMALL_STATE(991)] = 68834, - [SMALL_STATE(992)] = 68914, - [SMALL_STATE(993)] = 68960, - [SMALL_STATE(994)] = 69010, - [SMALL_STATE(995)] = 69070, - [SMALL_STATE(996)] = 69120, - [SMALL_STATE(997)] = 69170, - [SMALL_STATE(998)] = 69216, - [SMALL_STATE(999)] = 69286, - [SMALL_STATE(1000)] = 69342, - [SMALL_STATE(1001)] = 69410, - [SMALL_STATE(1002)] = 69460, - [SMALL_STATE(1003)] = 69526, - [SMALL_STATE(1004)] = 69590, - [SMALL_STATE(1005)] = 69640, - [SMALL_STATE(1006)] = 69686, - [SMALL_STATE(1007)] = 69736, - [SMALL_STATE(1008)] = 69792, - [SMALL_STATE(1009)] = 69872, - [SMALL_STATE(1010)] = 69920, - [SMALL_STATE(1011)] = 69970, - [SMALL_STATE(1012)] = 70036, - [SMALL_STATE(1013)] = 70100, - [SMALL_STATE(1014)] = 70156, - [SMALL_STATE(1015)] = 70218, - [SMALL_STATE(1016)] = 70268, - [SMALL_STATE(1017)] = 70314, - [SMALL_STATE(1018)] = 70370, - [SMALL_STATE(1019)] = 70416, - [SMALL_STATE(1020)] = 70462, - [SMALL_STATE(1021)] = 70512, - [SMALL_STATE(1022)] = 70568, - [SMALL_STATE(1023)] = 70618, - [SMALL_STATE(1024)] = 70666, - [SMALL_STATE(1025)] = 70734, - [SMALL_STATE(1026)] = 70796, - [SMALL_STATE(1027)] = 70852, - [SMALL_STATE(1028)] = 70898, - [SMALL_STATE(1029)] = 70948, - [SMALL_STATE(1030)] = 70998, - [SMALL_STATE(1031)] = 71078, - [SMALL_STATE(1032)] = 71148, - [SMALL_STATE(1033)] = 71194, - [SMALL_STATE(1034)] = 71240, - [SMALL_STATE(1035)] = 71288, - [SMALL_STATE(1036)] = 71333, - [SMALL_STATE(1037)] = 71396, - [SMALL_STATE(1038)] = 71441, - [SMALL_STATE(1039)] = 71486, - [SMALL_STATE(1040)] = 71531, - [SMALL_STATE(1041)] = 71576, - [SMALL_STATE(1042)] = 71621, - [SMALL_STATE(1043)] = 71666, - [SMALL_STATE(1044)] = 71711, - [SMALL_STATE(1045)] = 71760, - [SMALL_STATE(1046)] = 71809, - [SMALL_STATE(1047)] = 71858, - [SMALL_STATE(1048)] = 71905, - [SMALL_STATE(1049)] = 71952, - [SMALL_STATE(1050)] = 71999, - [SMALL_STATE(1051)] = 72054, - [SMALL_STATE(1052)] = 72109, - [SMALL_STATE(1053)] = 72160, - [SMALL_STATE(1054)] = 72211, - [SMALL_STATE(1055)] = 72262, - [SMALL_STATE(1056)] = 72307, - [SMALL_STATE(1057)] = 72362, - [SMALL_STATE(1058)] = 72423, - [SMALL_STATE(1059)] = 72492, - [SMALL_STATE(1060)] = 72547, - [SMALL_STATE(1061)] = 72606, - [SMALL_STATE(1062)] = 72673, - [SMALL_STATE(1063)] = 72738, - [SMALL_STATE(1064)] = 72801, - [SMALL_STATE(1065)] = 72846, - [SMALL_STATE(1066)] = 72891, - [SMALL_STATE(1067)] = 72936, - [SMALL_STATE(1068)] = 72981, - [SMALL_STATE(1069)] = 73026, - [SMALL_STATE(1070)] = 73071, - [SMALL_STATE(1071)] = 73120, - [SMALL_STATE(1072)] = 73169, - [SMALL_STATE(1073)] = 73214, - [SMALL_STATE(1074)] = 73265, - [SMALL_STATE(1075)] = 73310, - [SMALL_STATE(1076)] = 73365, - [SMALL_STATE(1077)] = 73420, - [SMALL_STATE(1078)] = 73465, - [SMALL_STATE(1079)] = 73510, - [SMALL_STATE(1080)] = 73555, - [SMALL_STATE(1081)] = 73610, - [SMALL_STATE(1082)] = 73671, - [SMALL_STATE(1083)] = 73740, - [SMALL_STATE(1084)] = 73795, - [SMALL_STATE(1085)] = 73854, - [SMALL_STATE(1086)] = 73921, - [SMALL_STATE(1087)] = 73986, - [SMALL_STATE(1088)] = 74049, - [SMALL_STATE(1089)] = 74094, - [SMALL_STATE(1090)] = 74139, - [SMALL_STATE(1091)] = 74184, - [SMALL_STATE(1092)] = 74229, - [SMALL_STATE(1093)] = 74274, - [SMALL_STATE(1094)] = 74319, - [SMALL_STATE(1095)] = 74364, - [SMALL_STATE(1096)] = 74419, - [SMALL_STATE(1097)] = 74474, - [SMALL_STATE(1098)] = 74519, - [SMALL_STATE(1099)] = 74574, - [SMALL_STATE(1100)] = 74635, - [SMALL_STATE(1101)] = 74704, - [SMALL_STATE(1102)] = 74759, - [SMALL_STATE(1103)] = 74818, - [SMALL_STATE(1104)] = 74885, - [SMALL_STATE(1105)] = 74950, - [SMALL_STATE(1106)] = 75013, - [SMALL_STATE(1107)] = 75058, - [SMALL_STATE(1108)] = 75107, - [SMALL_STATE(1109)] = 75154, - [SMALL_STATE(1110)] = 75201, - [SMALL_STATE(1111)] = 75248, - [SMALL_STATE(1112)] = 75297, - [SMALL_STATE(1113)] = 75346, - [SMALL_STATE(1114)] = 75391, - [SMALL_STATE(1115)] = 75440, - [SMALL_STATE(1116)] = 75489, - [SMALL_STATE(1117)] = 75538, - [SMALL_STATE(1118)] = 75583, - [SMALL_STATE(1119)] = 75628, - [SMALL_STATE(1120)] = 75673, - [SMALL_STATE(1121)] = 75724, - [SMALL_STATE(1122)] = 75779, - [SMALL_STATE(1123)] = 75834, - [SMALL_STATE(1124)] = 75879, - [SMALL_STATE(1125)] = 75924, - [SMALL_STATE(1126)] = 75969, - [SMALL_STATE(1127)] = 76014, - [SMALL_STATE(1128)] = 76069, - [SMALL_STATE(1129)] = 76130, - [SMALL_STATE(1130)] = 76199, - [SMALL_STATE(1131)] = 76254, - [SMALL_STATE(1132)] = 76313, - [SMALL_STATE(1133)] = 76380, - [SMALL_STATE(1134)] = 76445, - [SMALL_STATE(1135)] = 76494, - [SMALL_STATE(1136)] = 76538, - [SMALL_STATE(1137)] = 76582, - [SMALL_STATE(1138)] = 76630, - [SMALL_STATE(1139)] = 76674, - [SMALL_STATE(1140)] = 76720, - [SMALL_STATE(1141)] = 76766, - [SMALL_STATE(1142)] = 76810, - [SMALL_STATE(1143)] = 76856, - [SMALL_STATE(1144)] = 76904, - [SMALL_STATE(1145)] = 76952, - [SMALL_STATE(1146)] = 76998, - [SMALL_STATE(1147)] = 77044, - [SMALL_STATE(1148)] = 77090, - [SMALL_STATE(1149)] = 77136, - [SMALL_STATE(1150)] = 77180, - [SMALL_STATE(1151)] = 77224, - [SMALL_STATE(1152)] = 77268, - [SMALL_STATE(1153)] = 77312, - [SMALL_STATE(1154)] = 77356, - [SMALL_STATE(1155)] = 77400, - [SMALL_STATE(1156)] = 77444, - [SMALL_STATE(1157)] = 77488, - [SMALL_STATE(1158)] = 77532, - [SMALL_STATE(1159)] = 77576, - [SMALL_STATE(1160)] = 77620, - [SMALL_STATE(1161)] = 77664, - [SMALL_STATE(1162)] = 77708, - [SMALL_STATE(1163)] = 77752, - [SMALL_STATE(1164)] = 77796, - [SMALL_STATE(1165)] = 77840, - [SMALL_STATE(1166)] = 77884, - [SMALL_STATE(1167)] = 77928, - [SMALL_STATE(1168)] = 77972, - [SMALL_STATE(1169)] = 78016, - [SMALL_STATE(1170)] = 78060, - [SMALL_STATE(1171)] = 78104, - [SMALL_STATE(1172)] = 78148, - [SMALL_STATE(1173)] = 78192, - [SMALL_STATE(1174)] = 78238, - [SMALL_STATE(1175)] = 78284, - [SMALL_STATE(1176)] = 78330, - [SMALL_STATE(1177)] = 78376, - [SMALL_STATE(1178)] = 78420, - [SMALL_STATE(1179)] = 78464, - [SMALL_STATE(1180)] = 78508, - [SMALL_STATE(1181)] = 78552, - [SMALL_STATE(1182)] = 78596, - [SMALL_STATE(1183)] = 78640, - [SMALL_STATE(1184)] = 78684, - [SMALL_STATE(1185)] = 78728, - [SMALL_STATE(1186)] = 78772, - [SMALL_STATE(1187)] = 78816, - [SMALL_STATE(1188)] = 78864, - [SMALL_STATE(1189)] = 78908, - [SMALL_STATE(1190)] = 78952, - [SMALL_STATE(1191)] = 78996, - [SMALL_STATE(1192)] = 79040, - [SMALL_STATE(1193)] = 79084, - [SMALL_STATE(1194)] = 79128, - [SMALL_STATE(1195)] = 79172, - [SMALL_STATE(1196)] = 79216, - [SMALL_STATE(1197)] = 79260, - [SMALL_STATE(1198)] = 79304, - [SMALL_STATE(1199)] = 79348, - [SMALL_STATE(1200)] = 79392, - [SMALL_STATE(1201)] = 79436, - [SMALL_STATE(1202)] = 79480, - [SMALL_STATE(1203)] = 79524, - [SMALL_STATE(1204)] = 79568, - [SMALL_STATE(1205)] = 79612, - [SMALL_STATE(1206)] = 79660, - [SMALL_STATE(1207)] = 79704, - [SMALL_STATE(1208)] = 79748, - [SMALL_STATE(1209)] = 79792, - [SMALL_STATE(1210)] = 79836, - [SMALL_STATE(1211)] = 79880, - [SMALL_STATE(1212)] = 79924, - [SMALL_STATE(1213)] = 79968, - [SMALL_STATE(1214)] = 80016, - [SMALL_STATE(1215)] = 80060, - [SMALL_STATE(1216)] = 80104, - [SMALL_STATE(1217)] = 80154, - [SMALL_STATE(1218)] = 80208, - [SMALL_STATE(1219)] = 80262, - [SMALL_STATE(1220)] = 80312, - [SMALL_STATE(1221)] = 80356, - [SMALL_STATE(1222)] = 80400, - [SMALL_STATE(1223)] = 80444, - [SMALL_STATE(1224)] = 80498, - [SMALL_STATE(1225)] = 80558, - [SMALL_STATE(1226)] = 80626, - [SMALL_STATE(1227)] = 80680, - [SMALL_STATE(1228)] = 80738, - [SMALL_STATE(1229)] = 80804, - [SMALL_STATE(1230)] = 80868, - [SMALL_STATE(1231)] = 80930, - [SMALL_STATE(1232)] = 80978, - [SMALL_STATE(1233)] = 81026, - [SMALL_STATE(1234)] = 81074, - [SMALL_STATE(1235)] = 81122, - [SMALL_STATE(1236)] = 81170, - [SMALL_STATE(1237)] = 81214, - [SMALL_STATE(1238)] = 81262, - [SMALL_STATE(1239)] = 81306, - [SMALL_STATE(1240)] = 81354, - [SMALL_STATE(1241)] = 81402, - [SMALL_STATE(1242)] = 81448, - [SMALL_STATE(1243)] = 81494, - [SMALL_STATE(1244)] = 81540, - [SMALL_STATE(1245)] = 81586, - [SMALL_STATE(1246)] = 81630, - [SMALL_STATE(1247)] = 81678, - [SMALL_STATE(1248)] = 81726, - [SMALL_STATE(1249)] = 81774, - [SMALL_STATE(1250)] = 81820, - [SMALL_STATE(1251)] = 81866, - [SMALL_STATE(1252)] = 81910, - [SMALL_STATE(1253)] = 81954, - [SMALL_STATE(1254)] = 81998, - [SMALL_STATE(1255)] = 82046, - [SMALL_STATE(1256)] = 82090, - [SMALL_STATE(1257)] = 82133, - [SMALL_STATE(1258)] = 82178, - [SMALL_STATE(1259)] = 82221, - [SMALL_STATE(1260)] = 82264, - [SMALL_STATE(1261)] = 82307, - [SMALL_STATE(1262)] = 82358, - [SMALL_STATE(1263)] = 82401, - [SMALL_STATE(1264)] = 82444, - [SMALL_STATE(1265)] = 82487, - [SMALL_STATE(1266)] = 82530, - [SMALL_STATE(1267)] = 82573, - [SMALL_STATE(1268)] = 82616, - [SMALL_STATE(1269)] = 82659, - [SMALL_STATE(1270)] = 82702, - [SMALL_STATE(1271)] = 82745, - [SMALL_STATE(1272)] = 82792, - [SMALL_STATE(1273)] = 82839, - [SMALL_STATE(1274)] = 82886, - [SMALL_STATE(1275)] = 82931, - [SMALL_STATE(1276)] = 82976, - [SMALL_STATE(1277)] = 83021, - [SMALL_STATE(1278)] = 83064, - [SMALL_STATE(1279)] = 83107, - [SMALL_STATE(1280)] = 83150, - [SMALL_STATE(1281)] = 83193, - [SMALL_STATE(1282)] = 83236, - [SMALL_STATE(1283)] = 83279, - [SMALL_STATE(1284)] = 83322, - [SMALL_STATE(1285)] = 83365, - [SMALL_STATE(1286)] = 83408, - [SMALL_STATE(1287)] = 83451, - [SMALL_STATE(1288)] = 83494, - [SMALL_STATE(1289)] = 83537, - [SMALL_STATE(1290)] = 83580, - [SMALL_STATE(1291)] = 83623, - [SMALL_STATE(1292)] = 83666, - [SMALL_STATE(1293)] = 83709, - [SMALL_STATE(1294)] = 83752, - [SMALL_STATE(1295)] = 83795, - [SMALL_STATE(1296)] = 83838, - [SMALL_STATE(1297)] = 83881, - [SMALL_STATE(1298)] = 83924, - [SMALL_STATE(1299)] = 83967, - [SMALL_STATE(1300)] = 84010, - [SMALL_STATE(1301)] = 84053, - [SMALL_STATE(1302)] = 84096, - [SMALL_STATE(1303)] = 84139, - [SMALL_STATE(1304)] = 84182, - [SMALL_STATE(1305)] = 84225, - [SMALL_STATE(1306)] = 84268, - [SMALL_STATE(1307)] = 84311, - [SMALL_STATE(1308)] = 84354, - [SMALL_STATE(1309)] = 84397, - [SMALL_STATE(1310)] = 84440, - [SMALL_STATE(1311)] = 84483, - [SMALL_STATE(1312)] = 84526, - [SMALL_STATE(1313)] = 84569, - [SMALL_STATE(1314)] = 84612, - [SMALL_STATE(1315)] = 84655, - [SMALL_STATE(1316)] = 84698, - [SMALL_STATE(1317)] = 84741, - [SMALL_STATE(1318)] = 84784, - [SMALL_STATE(1319)] = 84827, - [SMALL_STATE(1320)] = 84870, - [SMALL_STATE(1321)] = 84913, - [SMALL_STATE(1322)] = 84956, - [SMALL_STATE(1323)] = 84999, - [SMALL_STATE(1324)] = 85042, - [SMALL_STATE(1325)] = 85085, - [SMALL_STATE(1326)] = 85128, - [SMALL_STATE(1327)] = 85171, - [SMALL_STATE(1328)] = 85214, - [SMALL_STATE(1329)] = 85257, - [SMALL_STATE(1330)] = 85300, - [SMALL_STATE(1331)] = 85343, - [SMALL_STATE(1332)] = 85386, - [SMALL_STATE(1333)] = 85429, - [SMALL_STATE(1334)] = 85472, - [SMALL_STATE(1335)] = 85515, - [SMALL_STATE(1336)] = 85558, - [SMALL_STATE(1337)] = 85601, - [SMALL_STATE(1338)] = 85644, - [SMALL_STATE(1339)] = 85687, - [SMALL_STATE(1340)] = 85734, - [SMALL_STATE(1341)] = 85777, - [SMALL_STATE(1342)] = 85820, - [SMALL_STATE(1343)] = 85863, - [SMALL_STATE(1344)] = 85906, - [SMALL_STATE(1345)] = 85949, - [SMALL_STATE(1346)] = 85992, - [SMALL_STATE(1347)] = 86035, - [SMALL_STATE(1348)] = 86078, - [SMALL_STATE(1349)] = 86125, - [SMALL_STATE(1350)] = 86172, - [SMALL_STATE(1351)] = 86219, - [SMALL_STATE(1352)] = 86262, - [SMALL_STATE(1353)] = 86307, - [SMALL_STATE(1354)] = 86352, - [SMALL_STATE(1355)] = 86397, - [SMALL_STATE(1356)] = 86444, - [SMALL_STATE(1357)] = 86487, - [SMALL_STATE(1358)] = 86534, - [SMALL_STATE(1359)] = 86579, - [SMALL_STATE(1360)] = 86626, - [SMALL_STATE(1361)] = 86669, - [SMALL_STATE(1362)] = 86712, - [SMALL_STATE(1363)] = 86755, - [SMALL_STATE(1364)] = 86798, - [SMALL_STATE(1365)] = 86841, - [SMALL_STATE(1366)] = 86884, - [SMALL_STATE(1367)] = 86927, - [SMALL_STATE(1368)] = 86970, - [SMALL_STATE(1369)] = 87015, - [SMALL_STATE(1370)] = 87060, - [SMALL_STATE(1371)] = 87105, - [SMALL_STATE(1372)] = 87150, - [SMALL_STATE(1373)] = 87195, - [SMALL_STATE(1374)] = 87238, - [SMALL_STATE(1375)] = 87281, - [SMALL_STATE(1376)] = 87328, - [SMALL_STATE(1377)] = 87375, - [SMALL_STATE(1378)] = 87420, - [SMALL_STATE(1379)] = 87465, - [SMALL_STATE(1380)] = 87508, - [SMALL_STATE(1381)] = 87551, - [SMALL_STATE(1382)] = 87596, - [SMALL_STATE(1383)] = 87641, - [SMALL_STATE(1384)] = 87684, - [SMALL_STATE(1385)] = 87727, - [SMALL_STATE(1386)] = 87772, - [SMALL_STATE(1387)] = 87815, - [SMALL_STATE(1388)] = 87858, - [SMALL_STATE(1389)] = 87901, - [SMALL_STATE(1390)] = 87944, - [SMALL_STATE(1391)] = 87987, - [SMALL_STATE(1392)] = 88030, - [SMALL_STATE(1393)] = 88073, - [SMALL_STATE(1394)] = 88124, - [SMALL_STATE(1395)] = 88167, - [SMALL_STATE(1396)] = 88210, - [SMALL_STATE(1397)] = 88253, - [SMALL_STATE(1398)] = 88296, - [SMALL_STATE(1399)] = 88339, - [SMALL_STATE(1400)] = 88386, - [SMALL_STATE(1401)] = 88433, - [SMALL_STATE(1402)] = 88480, - [SMALL_STATE(1403)] = 88523, - [SMALL_STATE(1404)] = 88566, - [SMALL_STATE(1405)] = 88611, - [SMALL_STATE(1406)] = 88654, - [SMALL_STATE(1407)] = 88697, - [SMALL_STATE(1408)] = 88740, - [SMALL_STATE(1409)] = 88783, - [SMALL_STATE(1410)] = 88826, - [SMALL_STATE(1411)] = 88869, - [SMALL_STATE(1412)] = 88912, - [SMALL_STATE(1413)] = 88955, - [SMALL_STATE(1414)] = 88998, - [SMALL_STATE(1415)] = 89041, - [SMALL_STATE(1416)] = 89084, - [SMALL_STATE(1417)] = 89127, - [SMALL_STATE(1418)] = 89170, - [SMALL_STATE(1419)] = 89213, - [SMALL_STATE(1420)] = 89257, - [SMALL_STATE(1421)] = 89307, - [SMALL_STATE(1422)] = 89349, - [SMALL_STATE(1423)] = 89391, - [SMALL_STATE(1424)] = 89439, - [SMALL_STATE(1425)] = 89481, - [SMALL_STATE(1426)] = 89523, - [SMALL_STATE(1427)] = 89565, - [SMALL_STATE(1428)] = 89607, - [SMALL_STATE(1429)] = 89649, - [SMALL_STATE(1430)] = 89691, - [SMALL_STATE(1431)] = 89735, - [SMALL_STATE(1432)] = 89777, - [SMALL_STATE(1433)] = 89819, - [SMALL_STATE(1434)] = 89863, - [SMALL_STATE(1435)] = 89907, - [SMALL_STATE(1436)] = 89951, - [SMALL_STATE(1437)] = 89995, - [SMALL_STATE(1438)] = 90037, - [SMALL_STATE(1439)] = 90081, - [SMALL_STATE(1440)] = 90123, - [SMALL_STATE(1441)] = 90165, - [SMALL_STATE(1442)] = 90207, - [SMALL_STATE(1443)] = 90249, - [SMALL_STATE(1444)] = 90291, - [SMALL_STATE(1445)] = 90333, - [SMALL_STATE(1446)] = 90379, - [SMALL_STATE(1447)] = 90421, - [SMALL_STATE(1448)] = 90463, - [SMALL_STATE(1449)] = 90505, - [SMALL_STATE(1450)] = 90547, - [SMALL_STATE(1451)] = 90589, - [SMALL_STATE(1452)] = 90631, - [SMALL_STATE(1453)] = 90673, - [SMALL_STATE(1454)] = 90715, - [SMALL_STATE(1455)] = 90757, - [SMALL_STATE(1456)] = 90803, - [SMALL_STATE(1457)] = 90845, - [SMALL_STATE(1458)] = 90887, - [SMALL_STATE(1459)] = 90929, - [SMALL_STATE(1460)] = 90975, - [SMALL_STATE(1461)] = 91017, - [SMALL_STATE(1462)] = 91059, - [SMALL_STATE(1463)] = 91101, - [SMALL_STATE(1464)] = 91143, - [SMALL_STATE(1465)] = 91187, - [SMALL_STATE(1466)] = 91231, - [SMALL_STATE(1467)] = 91274, - [SMALL_STATE(1468)] = 91315, - [SMALL_STATE(1469)] = 91356, - [SMALL_STATE(1470)] = 91397, - [SMALL_STATE(1471)] = 91438, - [SMALL_STATE(1472)] = 91479, - [SMALL_STATE(1473)] = 91520, - [SMALL_STATE(1474)] = 91561, - [SMALL_STATE(1475)] = 91604, - [SMALL_STATE(1476)] = 91647, - [SMALL_STATE(1477)] = 91690, - [SMALL_STATE(1478)] = 91731, - [SMALL_STATE(1479)] = 91772, - [SMALL_STATE(1480)] = 91813, - [SMALL_STATE(1481)] = 91856, - [SMALL_STATE(1482)] = 91899, - [SMALL_STATE(1483)] = 91942, - [SMALL_STATE(1484)] = 91985, - [SMALL_STATE(1485)] = 92028, - [SMALL_STATE(1486)] = 92102, - [SMALL_STATE(1487)] = 92176, - [SMALL_STATE(1488)] = 92244, - [SMALL_STATE(1489)] = 92312, - [SMALL_STATE(1490)] = 92380, - [SMALL_STATE(1491)] = 92448, - [SMALL_STATE(1492)] = 92516, - [SMALL_STATE(1493)] = 92584, - [SMALL_STATE(1494)] = 92652, - [SMALL_STATE(1495)] = 92720, - [SMALL_STATE(1496)] = 92788, - [SMALL_STATE(1497)] = 92856, - [SMALL_STATE(1498)] = 92924, - [SMALL_STATE(1499)] = 92992, - [SMALL_STATE(1500)] = 93060, - [SMALL_STATE(1501)] = 93128, - [SMALL_STATE(1502)] = 93196, - [SMALL_STATE(1503)] = 93264, - [SMALL_STATE(1504)] = 93332, - [SMALL_STATE(1505)] = 93400, - [SMALL_STATE(1506)] = 93468, - [SMALL_STATE(1507)] = 93536, - [SMALL_STATE(1508)] = 93604, - [SMALL_STATE(1509)] = 93672, - [SMALL_STATE(1510)] = 93740, - [SMALL_STATE(1511)] = 93808, - [SMALL_STATE(1512)] = 93876, - [SMALL_STATE(1513)] = 93944, - [SMALL_STATE(1514)] = 94012, - [SMALL_STATE(1515)] = 94080, - [SMALL_STATE(1516)] = 94148, - [SMALL_STATE(1517)] = 94216, - [SMALL_STATE(1518)] = 94284, - [SMALL_STATE(1519)] = 94352, - [SMALL_STATE(1520)] = 94420, - [SMALL_STATE(1521)] = 94488, - [SMALL_STATE(1522)] = 94556, - [SMALL_STATE(1523)] = 94624, - [SMALL_STATE(1524)] = 94689, - [SMALL_STATE(1525)] = 94754, - [SMALL_STATE(1526)] = 94819, - [SMALL_STATE(1527)] = 94884, - [SMALL_STATE(1528)] = 94949, - [SMALL_STATE(1529)] = 95015, - [SMALL_STATE(1530)] = 95081, - [SMALL_STATE(1531)] = 95147, - [SMALL_STATE(1532)] = 95213, - [SMALL_STATE(1533)] = 95279, - [SMALL_STATE(1534)] = 95345, - [SMALL_STATE(1535)] = 95411, - [SMALL_STATE(1536)] = 95477, - [SMALL_STATE(1537)] = 95543, - [SMALL_STATE(1538)] = 95609, - [SMALL_STATE(1539)] = 95675, - [SMALL_STATE(1540)] = 95741, - [SMALL_STATE(1541)] = 95807, - [SMALL_STATE(1542)] = 95873, - [SMALL_STATE(1543)] = 95939, - [SMALL_STATE(1544)] = 96005, - [SMALL_STATE(1545)] = 96071, - [SMALL_STATE(1546)] = 96137, - [SMALL_STATE(1547)] = 96203, - [SMALL_STATE(1548)] = 96269, - [SMALL_STATE(1549)] = 96332, - [SMALL_STATE(1550)] = 96390, - [SMALL_STATE(1551)] = 96448, - [SMALL_STATE(1552)] = 96506, - [SMALL_STATE(1553)] = 96564, - [SMALL_STATE(1554)] = 96622, - [SMALL_STATE(1555)] = 96668, - [SMALL_STATE(1556)] = 96714, - [SMALL_STATE(1557)] = 96772, - [SMALL_STATE(1558)] = 96830, - [SMALL_STATE(1559)] = 96888, - [SMALL_STATE(1560)] = 96932, - [SMALL_STATE(1561)] = 96976, - [SMALL_STATE(1562)] = 97020, - [SMALL_STATE(1563)] = 97064, - [SMALL_STATE(1564)] = 97105, - [SMALL_STATE(1565)] = 97148, - [SMALL_STATE(1566)] = 97191, - [SMALL_STATE(1567)] = 97232, - [SMALL_STATE(1568)] = 97275, - [SMALL_STATE(1569)] = 97318, - [SMALL_STATE(1570)] = 97348, - [SMALL_STATE(1571)] = 97380, - [SMALL_STATE(1572)] = 97422, - [SMALL_STATE(1573)] = 97464, - [SMALL_STATE(1574)] = 97494, - [SMALL_STATE(1575)] = 97526, - [SMALL_STATE(1576)] = 97568, - [SMALL_STATE(1577)] = 97600, - [SMALL_STATE(1578)] = 97632, - [SMALL_STATE(1579)] = 97664, - [SMALL_STATE(1580)] = 97706, - [SMALL_STATE(1581)] = 97738, - [SMALL_STATE(1582)] = 97768, - [SMALL_STATE(1583)] = 97798, - [SMALL_STATE(1584)] = 97828, - [SMALL_STATE(1585)] = 97858, - [SMALL_STATE(1586)] = 97888, - [SMALL_STATE(1587)] = 97918, - [SMALL_STATE(1588)] = 97948, - [SMALL_STATE(1589)] = 97978, - [SMALL_STATE(1590)] = 98025, - [SMALL_STATE(1591)] = 98054, - [SMALL_STATE(1592)] = 98101, - [SMALL_STATE(1593)] = 98126, - [SMALL_STATE(1594)] = 98155, - [SMALL_STATE(1595)] = 98184, - [SMALL_STATE(1596)] = 98213, - [SMALL_STATE(1597)] = 98242, - [SMALL_STATE(1598)] = 98271, - [SMALL_STATE(1599)] = 98300, - [SMALL_STATE(1600)] = 98329, - [SMALL_STATE(1601)] = 98358, - [SMALL_STATE(1602)] = 98387, - [SMALL_STATE(1603)] = 98416, - [SMALL_STATE(1604)] = 98445, - [SMALL_STATE(1605)] = 98470, - [SMALL_STATE(1606)] = 98499, + [SMALL_STATE(183)] = 0, + [SMALL_STATE(184)] = 124, + [SMALL_STATE(185)] = 250, + [SMALL_STATE(186)] = 374, + [SMALL_STATE(187)] = 502, + [SMALL_STATE(188)] = 628, + [SMALL_STATE(189)] = 748, + [SMALL_STATE(190)] = 874, + [SMALL_STATE(191)] = 998, + [SMALL_STATE(192)] = 1122, + [SMALL_STATE(193)] = 1242, + [SMALL_STATE(194)] = 1368, + [SMALL_STATE(195)] = 1492, + [SMALL_STATE(196)] = 1616, + [SMALL_STATE(197)] = 1744, + [SMALL_STATE(198)] = 1868, + [SMALL_STATE(199)] = 1992, + [SMALL_STATE(200)] = 2116, + [SMALL_STATE(201)] = 2236, + [SMALL_STATE(202)] = 2362, + [SMALL_STATE(203)] = 2486, + [SMALL_STATE(204)] = 2610, + [SMALL_STATE(205)] = 2734, + [SMALL_STATE(206)] = 2860, + [SMALL_STATE(207)] = 2984, + [SMALL_STATE(208)] = 3108, + [SMALL_STATE(209)] = 3234, + [SMALL_STATE(210)] = 3358, + [SMALL_STATE(211)] = 3482, + [SMALL_STATE(212)] = 3608, + [SMALL_STATE(213)] = 3732, + [SMALL_STATE(214)] = 3856, + [SMALL_STATE(215)] = 3980, + [SMALL_STATE(216)] = 4106, + [SMALL_STATE(217)] = 4213, + [SMALL_STATE(218)] = 4320, + [SMALL_STATE(219)] = 4434, + [SMALL_STATE(220)] = 4550, + [SMALL_STATE(221)] = 4664, + [SMALL_STATE(222)] = 4778, + [SMALL_STATE(223)] = 4892, + [SMALL_STATE(224)] = 5006, + [SMALL_STATE(225)] = 5120, + [SMALL_STATE(226)] = 5234, + [SMALL_STATE(227)] = 5350, + [SMALL_STATE(228)] = 5464, + [SMALL_STATE(229)] = 5575, + [SMALL_STATE(230)] = 5686, + [SMALL_STATE(231)] = 5797, + [SMALL_STATE(232)] = 5902, + [SMALL_STATE(233)] = 6017, + [SMALL_STATE(234)] = 6132, + [SMALL_STATE(235)] = 6243, + [SMALL_STATE(236)] = 6354, + [SMALL_STATE(237)] = 6465, + [SMALL_STATE(238)] = 6576, + [SMALL_STATE(239)] = 6691, + [SMALL_STATE(240)] = 6806, + [SMALL_STATE(241)] = 6921, + [SMALL_STATE(242)] = 7032, + [SMALL_STATE(243)] = 7143, + [SMALL_STATE(244)] = 7254, + [SMALL_STATE(245)] = 7365, + [SMALL_STATE(246)] = 7480, + [SMALL_STATE(247)] = 7585, + [SMALL_STATE(248)] = 7696, + [SMALL_STATE(249)] = 7807, + [SMALL_STATE(250)] = 7922, + [SMALL_STATE(251)] = 8037, + [SMALL_STATE(252)] = 8152, + [SMALL_STATE(253)] = 8263, + [SMALL_STATE(254)] = 8374, + [SMALL_STATE(255)] = 8485, + [SMALL_STATE(256)] = 8596, + [SMALL_STATE(257)] = 8713, + [SMALL_STATE(258)] = 8824, + [SMALL_STATE(259)] = 8935, + [SMALL_STATE(260)] = 9046, + [SMALL_STATE(261)] = 9157, + [SMALL_STATE(262)] = 9268, + [SMALL_STATE(263)] = 9379, + [SMALL_STATE(264)] = 9490, + [SMALL_STATE(265)] = 9601, + [SMALL_STATE(266)] = 9712, + [SMALL_STATE(267)] = 9824, + [SMALL_STATE(268)] = 9940, + [SMALL_STATE(269)] = 10052, + [SMALL_STATE(270)] = 10166, + [SMALL_STATE(271)] = 10280, + [SMALL_STATE(272)] = 10392, + [SMALL_STATE(273)] = 10508, + [SMALL_STATE(274)] = 10620, + [SMALL_STATE(275)] = 10732, + [SMALL_STATE(276)] = 10844, + [SMALL_STATE(277)] = 10956, + [SMALL_STATE(278)] = 11068, + [SMALL_STATE(279)] = 11180, + [SMALL_STATE(280)] = 11294, + [SMALL_STATE(281)] = 11406, + [SMALL_STATE(282)] = 11522, + [SMALL_STATE(283)] = 11634, + [SMALL_STATE(284)] = 11746, + [SMALL_STATE(285)] = 11858, + [SMALL_STATE(286)] = 11970, + [SMALL_STATE(287)] = 12084, + [SMALL_STATE(288)] = 12196, + [SMALL_STATE(289)] = 12312, + [SMALL_STATE(290)] = 12424, + [SMALL_STATE(291)] = 12536, + [SMALL_STATE(292)] = 12648, + [SMALL_STATE(293)] = 12760, + [SMALL_STATE(294)] = 12872, + [SMALL_STATE(295)] = 12984, + [SMALL_STATE(296)] = 13096, + [SMALL_STATE(297)] = 13208, + [SMALL_STATE(298)] = 13322, + [SMALL_STATE(299)] = 13434, + [SMALL_STATE(300)] = 13550, + [SMALL_STATE(301)] = 13662, + [SMALL_STATE(302)] = 13774, + [SMALL_STATE(303)] = 13886, + [SMALL_STATE(304)] = 13998, + [SMALL_STATE(305)] = 14110, + [SMALL_STATE(306)] = 14222, + [SMALL_STATE(307)] = 14336, + [SMALL_STATE(308)] = 14448, + [SMALL_STATE(309)] = 14560, + [SMALL_STATE(310)] = 14672, + [SMALL_STATE(311)] = 14784, + [SMALL_STATE(312)] = 14896, + [SMALL_STATE(313)] = 15010, + [SMALL_STATE(314)] = 15122, + [SMALL_STATE(315)] = 15234, + [SMALL_STATE(316)] = 15346, + [SMALL_STATE(317)] = 15458, + [SMALL_STATE(318)] = 15570, + [SMALL_STATE(319)] = 15684, + [SMALL_STATE(320)] = 15800, + [SMALL_STATE(321)] = 15909, + [SMALL_STATE(322)] = 16018, + [SMALL_STATE(323)] = 16115, + [SMALL_STATE(324)] = 16224, + [SMALL_STATE(325)] = 16333, + [SMALL_STATE(326)] = 16442, + [SMALL_STATE(327)] = 16547, + [SMALL_STATE(328)] = 16656, + [SMALL_STATE(329)] = 16765, + [SMALL_STATE(330)] = 16874, + [SMALL_STATE(331)] = 16983, + [SMALL_STATE(332)] = 17092, + [SMALL_STATE(333)] = 17201, + [SMALL_STATE(334)] = 17310, + [SMALL_STATE(335)] = 17419, + [SMALL_STATE(336)] = 17524, + [SMALL_STATE(337)] = 17633, + [SMALL_STATE(338)] = 17742, + [SMALL_STATE(339)] = 17851, + [SMALL_STATE(340)] = 17960, + [SMALL_STATE(341)] = 18069, + [SMALL_STATE(342)] = 18178, + [SMALL_STATE(343)] = 18286, + [SMALL_STATE(344)] = 18394, + [SMALL_STATE(345)] = 18500, + [SMALL_STATE(346)] = 18608, + [SMALL_STATE(347)] = 18716, + [SMALL_STATE(348)] = 18824, + [SMALL_STATE(349)] = 18932, + [SMALL_STATE(350)] = 19038, + [SMALL_STATE(351)] = 19146, + [SMALL_STATE(352)] = 19254, + [SMALL_STATE(353)] = 19362, + [SMALL_STATE(354)] = 19470, + [SMALL_STATE(355)] = 19578, + [SMALL_STATE(356)] = 19686, + [SMALL_STATE(357)] = 19794, + [SMALL_STATE(358)] = 19902, + [SMALL_STATE(359)] = 20010, + [SMALL_STATE(360)] = 20118, + [SMALL_STATE(361)] = 20224, + [SMALL_STATE(362)] = 20332, + [SMALL_STATE(363)] = 20440, + [SMALL_STATE(364)] = 20548, + [SMALL_STATE(365)] = 20656, + [SMALL_STATE(366)] = 20763, + [SMALL_STATE(367)] = 20870, + [SMALL_STATE(368)] = 20977, + [SMALL_STATE(369)] = 21084, + [SMALL_STATE(370)] = 21191, + [SMALL_STATE(371)] = 21298, + [SMALL_STATE(372)] = 21403, + [SMALL_STATE(373)] = 21508, + [SMALL_STATE(374)] = 21615, + [SMALL_STATE(375)] = 21722, + [SMALL_STATE(376)] = 21829, + [SMALL_STATE(377)] = 21936, + [SMALL_STATE(378)] = 22043, + [SMALL_STATE(379)] = 22150, + [SMALL_STATE(380)] = 22257, + [SMALL_STATE(381)] = 22364, + [SMALL_STATE(382)] = 22471, + [SMALL_STATE(383)] = 22566, + [SMALL_STATE(384)] = 22673, + [SMALL_STATE(385)] = 22780, + [SMALL_STATE(386)] = 22887, + [SMALL_STATE(387)] = 22994, + [SMALL_STATE(388)] = 23101, + [SMALL_STATE(389)] = 23208, + [SMALL_STATE(390)] = 23315, + [SMALL_STATE(391)] = 23422, + [SMALL_STATE(392)] = 23529, + [SMALL_STATE(393)] = 23636, + [SMALL_STATE(394)] = 23743, + [SMALL_STATE(395)] = 23850, + [SMALL_STATE(396)] = 23955, + [SMALL_STATE(397)] = 24062, + [SMALL_STATE(398)] = 24167, + [SMALL_STATE(399)] = 24274, + [SMALL_STATE(400)] = 24381, + [SMALL_STATE(401)] = 24486, + [SMALL_STATE(402)] = 24591, + [SMALL_STATE(403)] = 24686, + [SMALL_STATE(404)] = 24788, + [SMALL_STATE(405)] = 24892, + [SMALL_STATE(406)] = 24986, + [SMALL_STATE(407)] = 25080, + [SMALL_STATE(408)] = 25182, + [SMALL_STATE(409)] = 25284, + [SMALL_STATE(410)] = 25386, + [SMALL_STATE(411)] = 25488, + [SMALL_STATE(412)] = 25582, + [SMALL_STATE(413)] = 25676, + [SMALL_STATE(414)] = 25780, + [SMALL_STATE(415)] = 25882, + [SMALL_STATE(416)] = 25978, + [SMALL_STATE(417)] = 26080, + [SMALL_STATE(418)] = 26184, + [SMALL_STATE(419)] = 26288, + [SMALL_STATE(420)] = 26390, + [SMALL_STATE(421)] = 26492, + [SMALL_STATE(422)] = 26594, + [SMALL_STATE(423)] = 26696, + [SMALL_STATE(424)] = 26800, + [SMALL_STATE(425)] = 26902, + [SMALL_STATE(426)] = 27004, + [SMALL_STATE(427)] = 27106, + [SMALL_STATE(428)] = 27208, + [SMALL_STATE(429)] = 27310, + [SMALL_STATE(430)] = 27412, + [SMALL_STATE(431)] = 27514, + [SMALL_STATE(432)] = 27616, + [SMALL_STATE(433)] = 27718, + [SMALL_STATE(434)] = 27820, + [SMALL_STATE(435)] = 27922, + [SMALL_STATE(436)] = 28024, + [SMALL_STATE(437)] = 28128, + [SMALL_STATE(438)] = 28230, + [SMALL_STATE(439)] = 28332, + [SMALL_STATE(440)] = 28434, + [SMALL_STATE(441)] = 28536, + [SMALL_STATE(442)] = 28640, + [SMALL_STATE(443)] = 28744, + [SMALL_STATE(444)] = 28846, + [SMALL_STATE(445)] = 28950, + [SMALL_STATE(446)] = 29054, + [SMALL_STATE(447)] = 29158, + [SMALL_STATE(448)] = 29262, + [SMALL_STATE(449)] = 29366, + [SMALL_STATE(450)] = 29470, + [SMALL_STATE(451)] = 29574, + [SMALL_STATE(452)] = 29678, + [SMALL_STATE(453)] = 29782, + [SMALL_STATE(454)] = 29886, + [SMALL_STATE(455)] = 29990, + [SMALL_STATE(456)] = 30067, + [SMALL_STATE(457)] = 30168, + [SMALL_STATE(458)] = 30243, + [SMALL_STATE(459)] = 30344, + [SMALL_STATE(460)] = 30445, + [SMALL_STATE(461)] = 30546, + [SMALL_STATE(462)] = 30647, + [SMALL_STATE(463)] = 30748, + [SMALL_STATE(464)] = 30849, + [SMALL_STATE(465)] = 30950, + [SMALL_STATE(466)] = 31051, + [SMALL_STATE(467)] = 31126, + [SMALL_STATE(468)] = 31227, + [SMALL_STATE(469)] = 31328, + [SMALL_STATE(470)] = 31429, + [SMALL_STATE(471)] = 31530, + [SMALL_STATE(472)] = 31605, + [SMALL_STATE(473)] = 31706, + [SMALL_STATE(474)] = 31807, + [SMALL_STATE(475)] = 31905, + [SMALL_STATE(476)] = 32003, + [SMALL_STATE(477)] = 32101, + [SMALL_STATE(478)] = 32199, + [SMALL_STATE(479)] = 32297, + [SMALL_STATE(480)] = 32395, + [SMALL_STATE(481)] = 32493, + [SMALL_STATE(482)] = 32591, + [SMALL_STATE(483)] = 32689, + [SMALL_STATE(484)] = 32787, + [SMALL_STATE(485)] = 32885, + [SMALL_STATE(486)] = 32983, + [SMALL_STATE(487)] = 33081, + [SMALL_STATE(488)] = 33179, + [SMALL_STATE(489)] = 33251, + [SMALL_STATE(490)] = 33323, + [SMALL_STATE(491)] = 33421, + [SMALL_STATE(492)] = 33519, + [SMALL_STATE(493)] = 33617, + [SMALL_STATE(494)] = 33715, + [SMALL_STATE(495)] = 33813, + [SMALL_STATE(496)] = 33911, + [SMALL_STATE(497)] = 34009, + [SMALL_STATE(498)] = 34107, + [SMALL_STATE(499)] = 34205, + [SMALL_STATE(500)] = 34303, + [SMALL_STATE(501)] = 34401, + [SMALL_STATE(502)] = 34499, + [SMALL_STATE(503)] = 34597, + [SMALL_STATE(504)] = 34695, + [SMALL_STATE(505)] = 34793, + [SMALL_STATE(506)] = 34891, + [SMALL_STATE(507)] = 34989, + [SMALL_STATE(508)] = 35087, + [SMALL_STATE(509)] = 35185, + [SMALL_STATE(510)] = 35283, + [SMALL_STATE(511)] = 35381, + [SMALL_STATE(512)] = 35479, + [SMALL_STATE(513)] = 35577, + [SMALL_STATE(514)] = 35675, + [SMALL_STATE(515)] = 35773, + [SMALL_STATE(516)] = 35871, + [SMALL_STATE(517)] = 35969, + [SMALL_STATE(518)] = 36067, + [SMALL_STATE(519)] = 36165, + [SMALL_STATE(520)] = 36263, + [SMALL_STATE(521)] = 36361, + [SMALL_STATE(522)] = 36459, + [SMALL_STATE(523)] = 36557, + [SMALL_STATE(524)] = 36655, + [SMALL_STATE(525)] = 36755, + [SMALL_STATE(526)] = 36853, + [SMALL_STATE(527)] = 36951, + [SMALL_STATE(528)] = 37049, + [SMALL_STATE(529)] = 37147, + [SMALL_STATE(530)] = 37245, + [SMALL_STATE(531)] = 37343, + [SMALL_STATE(532)] = 37441, + [SMALL_STATE(533)] = 37513, + [SMALL_STATE(534)] = 37611, + [SMALL_STATE(535)] = 37683, + [SMALL_STATE(536)] = 37781, + [SMALL_STATE(537)] = 37879, + [SMALL_STATE(538)] = 37977, + [SMALL_STATE(539)] = 38075, + [SMALL_STATE(540)] = 38173, + [SMALL_STATE(541)] = 38271, + [SMALL_STATE(542)] = 38369, + [SMALL_STATE(543)] = 38467, + [SMALL_STATE(544)] = 38539, + [SMALL_STATE(545)] = 38611, + [SMALL_STATE(546)] = 38683, + [SMALL_STATE(547)] = 38781, + [SMALL_STATE(548)] = 38879, + [SMALL_STATE(549)] = 38977, + [SMALL_STATE(550)] = 39075, + [SMALL_STATE(551)] = 39173, + [SMALL_STATE(552)] = 39271, + [SMALL_STATE(553)] = 39369, + [SMALL_STATE(554)] = 39467, + [SMALL_STATE(555)] = 39567, + [SMALL_STATE(556)] = 39665, + [SMALL_STATE(557)] = 39763, + [SMALL_STATE(558)] = 39861, + [SMALL_STATE(559)] = 39959, + [SMALL_STATE(560)] = 40057, + [SMALL_STATE(561)] = 40155, + [SMALL_STATE(562)] = 40253, + [SMALL_STATE(563)] = 40353, + [SMALL_STATE(564)] = 40451, + [SMALL_STATE(565)] = 40549, + [SMALL_STATE(566)] = 40649, + [SMALL_STATE(567)] = 40747, + [SMALL_STATE(568)] = 40845, + [SMALL_STATE(569)] = 40945, + [SMALL_STATE(570)] = 41043, + [SMALL_STATE(571)] = 41141, + [SMALL_STATE(572)] = 41239, + [SMALL_STATE(573)] = 41337, + [SMALL_STATE(574)] = 41435, + [SMALL_STATE(575)] = 41533, + [SMALL_STATE(576)] = 41631, + [SMALL_STATE(577)] = 41729, + [SMALL_STATE(578)] = 41827, + [SMALL_STATE(579)] = 41927, + [SMALL_STATE(580)] = 42025, + [SMALL_STATE(581)] = 42123, + [SMALL_STATE(582)] = 42221, + [SMALL_STATE(583)] = 42319, + [SMALL_STATE(584)] = 42417, + [SMALL_STATE(585)] = 42515, + [SMALL_STATE(586)] = 42613, + [SMALL_STATE(587)] = 42711, + [SMALL_STATE(588)] = 42809, + [SMALL_STATE(589)] = 42907, + [SMALL_STATE(590)] = 43005, + [SMALL_STATE(591)] = 43103, + [SMALL_STATE(592)] = 43201, + [SMALL_STATE(593)] = 43299, + [SMALL_STATE(594)] = 43397, + [SMALL_STATE(595)] = 43495, + [SMALL_STATE(596)] = 43593, + [SMALL_STATE(597)] = 43691, + [SMALL_STATE(598)] = 43789, + [SMALL_STATE(599)] = 43887, + [SMALL_STATE(600)] = 43985, + [SMALL_STATE(601)] = 44083, + [SMALL_STATE(602)] = 44181, + [SMALL_STATE(603)] = 44253, + [SMALL_STATE(604)] = 44326, + [SMALL_STATE(605)] = 44394, + [SMALL_STATE(606)] = 44460, + [SMALL_STATE(607)] = 44528, + [SMALL_STATE(608)] = 44596, + [SMALL_STATE(609)] = 44664, + [SMALL_STATE(610)] = 44726, + [SMALL_STATE(611)] = 44788, + [SMALL_STATE(612)] = 44856, + [SMALL_STATE(613)] = 44918, + [SMALL_STATE(614)] = 44980, + [SMALL_STATE(615)] = 45046, + [SMALL_STATE(616)] = 45114, + [SMALL_STATE(617)] = 45182, + [SMALL_STATE(618)] = 45250, + [SMALL_STATE(619)] = 45318, + [SMALL_STATE(620)] = 45386, + [SMALL_STATE(621)] = 45452, + [SMALL_STATE(622)] = 45515, + [SMALL_STATE(623)] = 45572, + [SMALL_STATE(624)] = 45629, + [SMALL_STATE(625)] = 45692, + [SMALL_STATE(626)] = 45749, + [SMALL_STATE(627)] = 45806, + [SMALL_STATE(628)] = 45869, + [SMALL_STATE(629)] = 45926, + [SMALL_STATE(630)] = 45983, + [SMALL_STATE(631)] = 46044, + [SMALL_STATE(632)] = 46107, + [SMALL_STATE(633)] = 46164, + [SMALL_STATE(634)] = 46221, + [SMALL_STATE(635)] = 46282, + [SMALL_STATE(636)] = 46339, + [SMALL_STATE(637)] = 46402, + [SMALL_STATE(638)] = 46459, + [SMALL_STATE(639)] = 46522, + [SMALL_STATE(640)] = 46579, + [SMALL_STATE(641)] = 46636, + [SMALL_STATE(642)] = 46693, + [SMALL_STATE(643)] = 46750, + [SMALL_STATE(644)] = 46807, + [SMALL_STATE(645)] = 46864, + [SMALL_STATE(646)] = 46927, + [SMALL_STATE(647)] = 46990, + [SMALL_STATE(648)] = 47053, + [SMALL_STATE(649)] = 47116, + [SMALL_STATE(650)] = 47181, + [SMALL_STATE(651)] = 47242, + [SMALL_STATE(652)] = 47299, + [SMALL_STATE(653)] = 47355, + [SMALL_STATE(654)] = 47411, + [SMALL_STATE(655)] = 47467, + [SMALL_STATE(656)] = 47559, + [SMALL_STATE(657)] = 47615, + [SMALL_STATE(658)] = 47671, + [SMALL_STATE(659)] = 47727, + [SMALL_STATE(660)] = 47783, + [SMALL_STATE(661)] = 47839, + [SMALL_STATE(662)] = 47895, + [SMALL_STATE(663)] = 47951, + [SMALL_STATE(664)] = 48007, + [SMALL_STATE(665)] = 48063, + [SMALL_STATE(666)] = 48119, + [SMALL_STATE(667)] = 48175, + [SMALL_STATE(668)] = 48231, + [SMALL_STATE(669)] = 48287, + [SMALL_STATE(670)] = 48343, + [SMALL_STATE(671)] = 48399, + [SMALL_STATE(672)] = 48455, + [SMALL_STATE(673)] = 48511, + [SMALL_STATE(674)] = 48567, + [SMALL_STATE(675)] = 48623, + [SMALL_STATE(676)] = 48679, + [SMALL_STATE(677)] = 48735, + [SMALL_STATE(678)] = 48791, + [SMALL_STATE(679)] = 48847, + [SMALL_STATE(680)] = 48903, + [SMALL_STATE(681)] = 48959, + [SMALL_STATE(682)] = 49015, + [SMALL_STATE(683)] = 49107, + [SMALL_STATE(684)] = 49163, + [SMALL_STATE(685)] = 49222, + [SMALL_STATE(686)] = 49281, + [SMALL_STATE(687)] = 49336, + [SMALL_STATE(688)] = 49395, + [SMALL_STATE(689)] = 49454, + [SMALL_STATE(690)] = 49509, + [SMALL_STATE(691)] = 49564, + [SMALL_STATE(692)] = 49619, + [SMALL_STATE(693)] = 49678, + [SMALL_STATE(694)] = 49737, + [SMALL_STATE(695)] = 49796, + [SMALL_STATE(696)] = 49855, + [SMALL_STATE(697)] = 49914, + [SMALL_STATE(698)] = 49973, + [SMALL_STATE(699)] = 50032, + [SMALL_STATE(700)] = 50091, + [SMALL_STATE(701)] = 50150, + [SMALL_STATE(702)] = 50209, + [SMALL_STATE(703)] = 50264, + [SMALL_STATE(704)] = 50319, + [SMALL_STATE(705)] = 50378, + [SMALL_STATE(706)] = 50437, + [SMALL_STATE(707)] = 50491, + [SMALL_STATE(708)] = 50583, + [SMALL_STATE(709)] = 50675, + [SMALL_STATE(710)] = 50729, + [SMALL_STATE(711)] = 50783, + [SMALL_STATE(712)] = 50837, + [SMALL_STATE(713)] = 50890, + [SMALL_STATE(714)] = 50943, + [SMALL_STATE(715)] = 50996, + [SMALL_STATE(716)] = 51049, + [SMALL_STATE(717)] = 51102, + [SMALL_STATE(718)] = 51155, + [SMALL_STATE(719)] = 51208, + [SMALL_STATE(720)] = 51261, + [SMALL_STATE(721)] = 51314, + [SMALL_STATE(722)] = 51367, + [SMALL_STATE(723)] = 51420, + [SMALL_STATE(724)] = 51509, + [SMALL_STATE(725)] = 51562, + [SMALL_STATE(726)] = 51615, + [SMALL_STATE(727)] = 51704, + [SMALL_STATE(728)] = 51757, + [SMALL_STATE(729)] = 51810, + [SMALL_STATE(730)] = 51863, + [SMALL_STATE(731)] = 51916, + [SMALL_STATE(732)] = 51969, + [SMALL_STATE(733)] = 52022, + [SMALL_STATE(734)] = 52075, + [SMALL_STATE(735)] = 52128, + [SMALL_STATE(736)] = 52181, + [SMALL_STATE(737)] = 52234, + [SMALL_STATE(738)] = 52323, + [SMALL_STATE(739)] = 52376, + [SMALL_STATE(740)] = 52465, + [SMALL_STATE(741)] = 52518, + [SMALL_STATE(742)] = 52571, + [SMALL_STATE(743)] = 52624, + [SMALL_STATE(744)] = 52677, + [SMALL_STATE(745)] = 52730, + [SMALL_STATE(746)] = 52783, + [SMALL_STATE(747)] = 52836, + [SMALL_STATE(748)] = 52889, + [SMALL_STATE(749)] = 52942, + [SMALL_STATE(750)] = 52995, + [SMALL_STATE(751)] = 53048, + [SMALL_STATE(752)] = 53101, + [SMALL_STATE(753)] = 53154, + [SMALL_STATE(754)] = 53207, + [SMALL_STATE(755)] = 53296, + [SMALL_STATE(756)] = 53349, + [SMALL_STATE(757)] = 53402, + [SMALL_STATE(758)] = 53455, + [SMALL_STATE(759)] = 53544, + [SMALL_STATE(760)] = 53597, + [SMALL_STATE(761)] = 53650, + [SMALL_STATE(762)] = 53703, + [SMALL_STATE(763)] = 53756, + [SMALL_STATE(764)] = 53809, + [SMALL_STATE(765)] = 53862, + [SMALL_STATE(766)] = 53915, + [SMALL_STATE(767)] = 53968, + [SMALL_STATE(768)] = 54021, + [SMALL_STATE(769)] = 54074, + [SMALL_STATE(770)] = 54127, + [SMALL_STATE(771)] = 54180, + [SMALL_STATE(772)] = 54233, + [SMALL_STATE(773)] = 54286, + [SMALL_STATE(774)] = 54339, + [SMALL_STATE(775)] = 54392, + [SMALL_STATE(776)] = 54481, + [SMALL_STATE(777)] = 54534, + [SMALL_STATE(778)] = 54587, + [SMALL_STATE(779)] = 54640, + [SMALL_STATE(780)] = 54693, + [SMALL_STATE(781)] = 54746, + [SMALL_STATE(782)] = 54799, + [SMALL_STATE(783)] = 54852, + [SMALL_STATE(784)] = 54905, + [SMALL_STATE(785)] = 54958, + [SMALL_STATE(786)] = 55011, + [SMALL_STATE(787)] = 55064, + [SMALL_STATE(788)] = 55117, + [SMALL_STATE(789)] = 55206, + [SMALL_STATE(790)] = 55259, + [SMALL_STATE(791)] = 55348, + [SMALL_STATE(792)] = 55401, + [SMALL_STATE(793)] = 55454, + [SMALL_STATE(794)] = 55543, + [SMALL_STATE(795)] = 55596, + [SMALL_STATE(796)] = 55649, + [SMALL_STATE(797)] = 55702, + [SMALL_STATE(798)] = 55755, + [SMALL_STATE(799)] = 55808, + [SMALL_STATE(800)] = 55861, + [SMALL_STATE(801)] = 55914, + [SMALL_STATE(802)] = 55967, + [SMALL_STATE(803)] = 56020, + [SMALL_STATE(804)] = 56073, + [SMALL_STATE(805)] = 56126, + [SMALL_STATE(806)] = 56179, + [SMALL_STATE(807)] = 56232, + [SMALL_STATE(808)] = 56285, + [SMALL_STATE(809)] = 56338, + [SMALL_STATE(810)] = 56391, + [SMALL_STATE(811)] = 56444, + [SMALL_STATE(812)] = 56497, + [SMALL_STATE(813)] = 56550, + [SMALL_STATE(814)] = 56603, + [SMALL_STATE(815)] = 56656, + [SMALL_STATE(816)] = 56709, + [SMALL_STATE(817)] = 56762, + [SMALL_STATE(818)] = 56815, + [SMALL_STATE(819)] = 56868, + [SMALL_STATE(820)] = 56921, + [SMALL_STATE(821)] = 56974, + [SMALL_STATE(822)] = 57027, + [SMALL_STATE(823)] = 57080, + [SMALL_STATE(824)] = 57133, + [SMALL_STATE(825)] = 57186, + [SMALL_STATE(826)] = 57239, + [SMALL_STATE(827)] = 57292, + [SMALL_STATE(828)] = 57381, + [SMALL_STATE(829)] = 57470, + [SMALL_STATE(830)] = 57559, + [SMALL_STATE(831)] = 57648, + [SMALL_STATE(832)] = 57701, + [SMALL_STATE(833)] = 57754, + [SMALL_STATE(834)] = 57843, + [SMALL_STATE(835)] = 57932, + [SMALL_STATE(836)] = 57985, + [SMALL_STATE(837)] = 58071, + [SMALL_STATE(838)] = 58157, + [SMALL_STATE(839)] = 58243, + [SMALL_STATE(840)] = 58329, + [SMALL_STATE(841)] = 58415, + [SMALL_STATE(842)] = 58501, + [SMALL_STATE(843)] = 58584, + [SMALL_STATE(844)] = 58667, + [SMALL_STATE(845)] = 58745, + [SMALL_STATE(846)] = 58823, + [SMALL_STATE(847)] = 58901, + [SMALL_STATE(848)] = 58979, + [SMALL_STATE(849)] = 59057, + [SMALL_STATE(850)] = 59135, + [SMALL_STATE(851)] = 59213, + [SMALL_STATE(852)] = 59299, + [SMALL_STATE(853)] = 59377, + [SMALL_STATE(854)] = 59452, + [SMALL_STATE(855)] = 59527, + [SMALL_STATE(856)] = 59606, + [SMALL_STATE(857)] = 59681, + [SMALL_STATE(858)] = 59756, + [SMALL_STATE(859)] = 59831, + [SMALL_STATE(860)] = 59906, + [SMALL_STATE(861)] = 59981, + [SMALL_STATE(862)] = 60056, + [SMALL_STATE(863)] = 60131, + [SMALL_STATE(864)] = 60206, + [SMALL_STATE(865)] = 60281, + [SMALL_STATE(866)] = 60356, + [SMALL_STATE(867)] = 60431, + [SMALL_STATE(868)] = 60506, + [SMALL_STATE(869)] = 60581, + [SMALL_STATE(870)] = 60656, + [SMALL_STATE(871)] = 60731, + [SMALL_STATE(872)] = 60806, + [SMALL_STATE(873)] = 60885, + [SMALL_STATE(874)] = 60960, + [SMALL_STATE(875)] = 61035, + [SMALL_STATE(876)] = 61110, + [SMALL_STATE(877)] = 61185, + [SMALL_STATE(878)] = 61264, + [SMALL_STATE(879)] = 61339, + [SMALL_STATE(880)] = 61414, + [SMALL_STATE(881)] = 61489, + [SMALL_STATE(882)] = 61564, + [SMALL_STATE(883)] = 61639, + [SMALL_STATE(884)] = 61714, + [SMALL_STATE(885)] = 61789, + [SMALL_STATE(886)] = 61864, + [SMALL_STATE(887)] = 61943, + [SMALL_STATE(888)] = 62018, + [SMALL_STATE(889)] = 62097, + [SMALL_STATE(890)] = 62172, + [SMALL_STATE(891)] = 62247, + [SMALL_STATE(892)] = 62322, + [SMALL_STATE(893)] = 62397, + [SMALL_STATE(894)] = 62472, + [SMALL_STATE(895)] = 62547, + [SMALL_STATE(896)] = 62622, + [SMALL_STATE(897)] = 62697, + [SMALL_STATE(898)] = 62776, + [SMALL_STATE(899)] = 62851, + [SMALL_STATE(900)] = 62926, + [SMALL_STATE(901)] = 63001, + [SMALL_STATE(902)] = 63076, + [SMALL_STATE(903)] = 63151, + [SMALL_STATE(904)] = 63226, + [SMALL_STATE(905)] = 63301, + [SMALL_STATE(906)] = 63376, + [SMALL_STATE(907)] = 63451, + [SMALL_STATE(908)] = 63530, + [SMALL_STATE(909)] = 63605, + [SMALL_STATE(910)] = 63680, + [SMALL_STATE(911)] = 63755, + [SMALL_STATE(912)] = 63834, + [SMALL_STATE(913)] = 63909, + [SMALL_STATE(914)] = 63984, + [SMALL_STATE(915)] = 64063, + [SMALL_STATE(916)] = 64138, + [SMALL_STATE(917)] = 64217, + [SMALL_STATE(918)] = 64296, + [SMALL_STATE(919)] = 64371, + [SMALL_STATE(920)] = 64446, + [SMALL_STATE(921)] = 64521, + [SMALL_STATE(922)] = 64596, + [SMALL_STATE(923)] = 64671, + [SMALL_STATE(924)] = 64750, + [SMALL_STATE(925)] = 64829, + [SMALL_STATE(926)] = 64904, + [SMALL_STATE(927)] = 64979, + [SMALL_STATE(928)] = 65054, + [SMALL_STATE(929)] = 65133, + [SMALL_STATE(930)] = 65208, + [SMALL_STATE(931)] = 65283, + [SMALL_STATE(932)] = 65358, + [SMALL_STATE(933)] = 65443, + [SMALL_STATE(934)] = 65518, + [SMALL_STATE(935)] = 65593, + [SMALL_STATE(936)] = 65672, + [SMALL_STATE(937)] = 65751, + [SMALL_STATE(938)] = 65826, + [SMALL_STATE(939)] = 65901, + [SMALL_STATE(940)] = 65976, + [SMALL_STATE(941)] = 66051, + [SMALL_STATE(942)] = 66130, + [SMALL_STATE(943)] = 66209, + [SMALL_STATE(944)] = 66288, + [SMALL_STATE(945)] = 66367, + [SMALL_STATE(946)] = 66442, + [SMALL_STATE(947)] = 66527, + [SMALL_STATE(948)] = 66611, + [SMALL_STATE(949)] = 66663, + [SMALL_STATE(950)] = 66715, + [SMALL_STATE(951)] = 66797, + [SMALL_STATE(952)] = 66881, + [SMALL_STATE(953)] = 66965, + [SMALL_STATE(954)] = 67049, + [SMALL_STATE(955)] = 67101, + [SMALL_STATE(956)] = 67166, + [SMALL_STATE(957)] = 67217, + [SMALL_STATE(958)] = 67268, + [SMALL_STATE(959)] = 67319, + [SMALL_STATE(960)] = 67370, + [SMALL_STATE(961)] = 67451, + [SMALL_STATE(962)] = 67502, + [SMALL_STATE(963)] = 67563, + [SMALL_STATE(964)] = 67614, + [SMALL_STATE(965)] = 67683, + [SMALL_STATE(966)] = 67754, + [SMALL_STATE(967)] = 67821, + [SMALL_STATE(968)] = 67878, + [SMALL_STATE(969)] = 67935, + [SMALL_STATE(970)] = 67992, + [SMALL_STATE(971)] = 68049, + [SMALL_STATE(972)] = 68112, + [SMALL_STATE(973)] = 68182, + [SMALL_STATE(974)] = 68232, + [SMALL_STATE(975)] = 68278, + [SMALL_STATE(976)] = 68328, + [SMALL_STATE(977)] = 68376, + [SMALL_STATE(978)] = 68422, + [SMALL_STATE(979)] = 68502, + [SMALL_STATE(980)] = 68582, + [SMALL_STATE(981)] = 68632, + [SMALL_STATE(982)] = 68688, + [SMALL_STATE(983)] = 68750, + [SMALL_STATE(984)] = 68816, + [SMALL_STATE(985)] = 68872, + [SMALL_STATE(986)] = 68932, + [SMALL_STATE(987)] = 69000, + [SMALL_STATE(988)] = 69066, + [SMALL_STATE(989)] = 69130, + [SMALL_STATE(990)] = 69186, + [SMALL_STATE(991)] = 69250, + [SMALL_STATE(992)] = 69296, + [SMALL_STATE(993)] = 69346, + [SMALL_STATE(994)] = 69392, + [SMALL_STATE(995)] = 69438, + [SMALL_STATE(996)] = 69494, + [SMALL_STATE(997)] = 69544, + [SMALL_STATE(998)] = 69614, + [SMALL_STATE(999)] = 69670, + [SMALL_STATE(1000)] = 69726, + [SMALL_STATE(1001)] = 69782, + [SMALL_STATE(1002)] = 69828, + [SMALL_STATE(1003)] = 69876, + [SMALL_STATE(1004)] = 69922, + [SMALL_STATE(1005)] = 69990, + [SMALL_STATE(1006)] = 70070, + [SMALL_STATE(1007)] = 70120, + [SMALL_STATE(1008)] = 70170, + [SMALL_STATE(1009)] = 70216, + [SMALL_STATE(1010)] = 70278, + [SMALL_STATE(1011)] = 70328, + [SMALL_STATE(1012)] = 70374, + [SMALL_STATE(1013)] = 70424, + [SMALL_STATE(1014)] = 70474, + [SMALL_STATE(1015)] = 70534, + [SMALL_STATE(1016)] = 70590, + [SMALL_STATE(1017)] = 70640, + [SMALL_STATE(1018)] = 70688, + [SMALL_STATE(1019)] = 70738, + [SMALL_STATE(1020)] = 70793, + [SMALL_STATE(1021)] = 70838, + [SMALL_STATE(1022)] = 70893, + [SMALL_STATE(1023)] = 70948, + [SMALL_STATE(1024)] = 70993, + [SMALL_STATE(1025)] = 71038, + [SMALL_STATE(1026)] = 71083, + [SMALL_STATE(1027)] = 71128, + [SMALL_STATE(1028)] = 71173, + [SMALL_STATE(1029)] = 71218, + [SMALL_STATE(1030)] = 71263, + [SMALL_STATE(1031)] = 71318, + [SMALL_STATE(1032)] = 71379, + [SMALL_STATE(1033)] = 71448, + [SMALL_STATE(1034)] = 71493, + [SMALL_STATE(1035)] = 71552, + [SMALL_STATE(1036)] = 71619, + [SMALL_STATE(1037)] = 71684, + [SMALL_STATE(1038)] = 71747, + [SMALL_STATE(1039)] = 71796, + [SMALL_STATE(1040)] = 71841, + [SMALL_STATE(1041)] = 71888, + [SMALL_STATE(1042)] = 71935, + [SMALL_STATE(1043)] = 71982, + [SMALL_STATE(1044)] = 72027, + [SMALL_STATE(1045)] = 72076, + [SMALL_STATE(1046)] = 72121, + [SMALL_STATE(1047)] = 72166, + [SMALL_STATE(1048)] = 72215, + [SMALL_STATE(1049)] = 72264, + [SMALL_STATE(1050)] = 72313, + [SMALL_STATE(1051)] = 72358, + [SMALL_STATE(1052)] = 72403, + [SMALL_STATE(1053)] = 72454, + [SMALL_STATE(1054)] = 72499, + [SMALL_STATE(1055)] = 72544, + [SMALL_STATE(1056)] = 72599, + [SMALL_STATE(1057)] = 72650, + [SMALL_STATE(1058)] = 72705, + [SMALL_STATE(1059)] = 72750, + [SMALL_STATE(1060)] = 72795, + [SMALL_STATE(1061)] = 72840, + [SMALL_STATE(1062)] = 72885, + [SMALL_STATE(1063)] = 72940, + [SMALL_STATE(1064)] = 72985, + [SMALL_STATE(1065)] = 73040, + [SMALL_STATE(1066)] = 73101, + [SMALL_STATE(1067)] = 73170, + [SMALL_STATE(1068)] = 73225, + [SMALL_STATE(1069)] = 73284, + [SMALL_STATE(1070)] = 73351, + [SMALL_STATE(1071)] = 73416, + [SMALL_STATE(1072)] = 73479, + [SMALL_STATE(1073)] = 73524, + [SMALL_STATE(1074)] = 73569, + [SMALL_STATE(1075)] = 73618, + [SMALL_STATE(1076)] = 73663, + [SMALL_STATE(1077)] = 73708, + [SMALL_STATE(1078)] = 73753, + [SMALL_STATE(1079)] = 73798, + [SMALL_STATE(1080)] = 73847, + [SMALL_STATE(1081)] = 73896, + [SMALL_STATE(1082)] = 73945, + [SMALL_STATE(1083)] = 73994, + [SMALL_STATE(1084)] = 74043, + [SMALL_STATE(1085)] = 74092, + [SMALL_STATE(1086)] = 74139, + [SMALL_STATE(1087)] = 74186, + [SMALL_STATE(1088)] = 74233, + [SMALL_STATE(1089)] = 74288, + [SMALL_STATE(1090)] = 74333, + [SMALL_STATE(1091)] = 74388, + [SMALL_STATE(1092)] = 74433, + [SMALL_STATE(1093)] = 74478, + [SMALL_STATE(1094)] = 74523, + [SMALL_STATE(1095)] = 74568, + [SMALL_STATE(1096)] = 74623, + [SMALL_STATE(1097)] = 74668, + [SMALL_STATE(1098)] = 74719, + [SMALL_STATE(1099)] = 74770, + [SMALL_STATE(1100)] = 74821, + [SMALL_STATE(1101)] = 74876, + [SMALL_STATE(1102)] = 74937, + [SMALL_STATE(1103)] = 74982, + [SMALL_STATE(1104)] = 75051, + [SMALL_STATE(1105)] = 75096, + [SMALL_STATE(1106)] = 75151, + [SMALL_STATE(1107)] = 75210, + [SMALL_STATE(1108)] = 75277, + [SMALL_STATE(1109)] = 75322, + [SMALL_STATE(1110)] = 75377, + [SMALL_STATE(1111)] = 75438, + [SMALL_STATE(1112)] = 75507, + [SMALL_STATE(1113)] = 75562, + [SMALL_STATE(1114)] = 75621, + [SMALL_STATE(1115)] = 75688, + [SMALL_STATE(1116)] = 75753, + [SMALL_STATE(1117)] = 75816, + [SMALL_STATE(1118)] = 75881, + [SMALL_STATE(1119)] = 75944, + [SMALL_STATE(1120)] = 75990, + [SMALL_STATE(1121)] = 76036, + [SMALL_STATE(1122)] = 76082, + [SMALL_STATE(1123)] = 76126, + [SMALL_STATE(1124)] = 76170, + [SMALL_STATE(1125)] = 76214, + [SMALL_STATE(1126)] = 76268, + [SMALL_STATE(1127)] = 76328, + [SMALL_STATE(1128)] = 76396, + [SMALL_STATE(1129)] = 76450, + [SMALL_STATE(1130)] = 76508, + [SMALL_STATE(1131)] = 76574, + [SMALL_STATE(1132)] = 76638, + [SMALL_STATE(1133)] = 76700, + [SMALL_STATE(1134)] = 76746, + [SMALL_STATE(1135)] = 76794, + [SMALL_STATE(1136)] = 76842, + [SMALL_STATE(1137)] = 76888, + [SMALL_STATE(1138)] = 76934, + [SMALL_STATE(1139)] = 76980, + [SMALL_STATE(1140)] = 77028, + [SMALL_STATE(1141)] = 77078, + [SMALL_STATE(1142)] = 77126, + [SMALL_STATE(1143)] = 77170, + [SMALL_STATE(1144)] = 77214, + [SMALL_STATE(1145)] = 77262, + [SMALL_STATE(1146)] = 77310, + [SMALL_STATE(1147)] = 77358, + [SMALL_STATE(1148)] = 77402, + [SMALL_STATE(1149)] = 77446, + [SMALL_STATE(1150)] = 77490, + [SMALL_STATE(1151)] = 77538, + [SMALL_STATE(1152)] = 77584, + [SMALL_STATE(1153)] = 77628, + [SMALL_STATE(1154)] = 77674, + [SMALL_STATE(1155)] = 77722, + [SMALL_STATE(1156)] = 77770, + [SMALL_STATE(1157)] = 77814, + [SMALL_STATE(1158)] = 77860, + [SMALL_STATE(1159)] = 77906, + [SMALL_STATE(1160)] = 77952, + [SMALL_STATE(1161)] = 77998, + [SMALL_STATE(1162)] = 78042, + [SMALL_STATE(1163)] = 78086, + [SMALL_STATE(1164)] = 78130, + [SMALL_STATE(1165)] = 78174, + [SMALL_STATE(1166)] = 78218, + [SMALL_STATE(1167)] = 78268, + [SMALL_STATE(1168)] = 78312, + [SMALL_STATE(1169)] = 78356, + [SMALL_STATE(1170)] = 78400, + [SMALL_STATE(1171)] = 78444, + [SMALL_STATE(1172)] = 78488, + [SMALL_STATE(1173)] = 78532, + [SMALL_STATE(1174)] = 78576, + [SMALL_STATE(1175)] = 78620, + [SMALL_STATE(1176)] = 78668, + [SMALL_STATE(1177)] = 78712, + [SMALL_STATE(1178)] = 78756, + [SMALL_STATE(1179)] = 78800, + [SMALL_STATE(1180)] = 78844, + [SMALL_STATE(1181)] = 78892, + [SMALL_STATE(1182)] = 78940, + [SMALL_STATE(1183)] = 78984, + [SMALL_STATE(1184)] = 79028, + [SMALL_STATE(1185)] = 79072, + [SMALL_STATE(1186)] = 79116, + [SMALL_STATE(1187)] = 79160, + [SMALL_STATE(1188)] = 79204, + [SMALL_STATE(1189)] = 79248, + [SMALL_STATE(1190)] = 79292, + [SMALL_STATE(1191)] = 79336, + [SMALL_STATE(1192)] = 79380, + [SMALL_STATE(1193)] = 79424, + [SMALL_STATE(1194)] = 79468, + [SMALL_STATE(1195)] = 79512, + [SMALL_STATE(1196)] = 79556, + [SMALL_STATE(1197)] = 79600, + [SMALL_STATE(1198)] = 79644, + [SMALL_STATE(1199)] = 79688, + [SMALL_STATE(1200)] = 79736, + [SMALL_STATE(1201)] = 79780, + [SMALL_STATE(1202)] = 79826, + [SMALL_STATE(1203)] = 79870, + [SMALL_STATE(1204)] = 79916, + [SMALL_STATE(1205)] = 79962, + [SMALL_STATE(1206)] = 80008, + [SMALL_STATE(1207)] = 80052, + [SMALL_STATE(1208)] = 80096, + [SMALL_STATE(1209)] = 80140, + [SMALL_STATE(1210)] = 80184, + [SMALL_STATE(1211)] = 80228, + [SMALL_STATE(1212)] = 80276, + [SMALL_STATE(1213)] = 80320, + [SMALL_STATE(1214)] = 80368, + [SMALL_STATE(1215)] = 80412, + [SMALL_STATE(1216)] = 80456, + [SMALL_STATE(1217)] = 80500, + [SMALL_STATE(1218)] = 80548, + [SMALL_STATE(1219)] = 80592, + [SMALL_STATE(1220)] = 80636, + [SMALL_STATE(1221)] = 80680, + [SMALL_STATE(1222)] = 80724, + [SMALL_STATE(1223)] = 80768, + [SMALL_STATE(1224)] = 80812, + [SMALL_STATE(1225)] = 80856, + [SMALL_STATE(1226)] = 80910, + [SMALL_STATE(1227)] = 80954, + [SMALL_STATE(1228)] = 80998, + [SMALL_STATE(1229)] = 81042, + [SMALL_STATE(1230)] = 81086, + [SMALL_STATE(1231)] = 81130, + [SMALL_STATE(1232)] = 81184, + [SMALL_STATE(1233)] = 81228, + [SMALL_STATE(1234)] = 81272, + [SMALL_STATE(1235)] = 81316, + [SMALL_STATE(1236)] = 81360, + [SMALL_STATE(1237)] = 81404, + [SMALL_STATE(1238)] = 81448, + [SMALL_STATE(1239)] = 81492, + [SMALL_STATE(1240)] = 81540, + [SMALL_STATE(1241)] = 81587, + [SMALL_STATE(1242)] = 81630, + [SMALL_STATE(1243)] = 81673, + [SMALL_STATE(1244)] = 81716, + [SMALL_STATE(1245)] = 81759, + [SMALL_STATE(1246)] = 81802, + [SMALL_STATE(1247)] = 81845, + [SMALL_STATE(1248)] = 81888, + [SMALL_STATE(1249)] = 81933, + [SMALL_STATE(1250)] = 81976, + [SMALL_STATE(1251)] = 82021, + [SMALL_STATE(1252)] = 82066, + [SMALL_STATE(1253)] = 82109, + [SMALL_STATE(1254)] = 82152, + [SMALL_STATE(1255)] = 82195, + [SMALL_STATE(1256)] = 82238, + [SMALL_STATE(1257)] = 82281, + [SMALL_STATE(1258)] = 82324, + [SMALL_STATE(1259)] = 82367, + [SMALL_STATE(1260)] = 82410, + [SMALL_STATE(1261)] = 82453, + [SMALL_STATE(1262)] = 82496, + [SMALL_STATE(1263)] = 82539, + [SMALL_STATE(1264)] = 82582, + [SMALL_STATE(1265)] = 82633, + [SMALL_STATE(1266)] = 82676, + [SMALL_STATE(1267)] = 82719, + [SMALL_STATE(1268)] = 82762, + [SMALL_STATE(1269)] = 82805, + [SMALL_STATE(1270)] = 82848, + [SMALL_STATE(1271)] = 82891, + [SMALL_STATE(1272)] = 82934, + [SMALL_STATE(1273)] = 82977, + [SMALL_STATE(1274)] = 83020, + [SMALL_STATE(1275)] = 83063, + [SMALL_STATE(1276)] = 83106, + [SMALL_STATE(1277)] = 83149, + [SMALL_STATE(1278)] = 83192, + [SMALL_STATE(1279)] = 83235, + [SMALL_STATE(1280)] = 83278, + [SMALL_STATE(1281)] = 83323, + [SMALL_STATE(1282)] = 83366, + [SMALL_STATE(1283)] = 83409, + [SMALL_STATE(1284)] = 83452, + [SMALL_STATE(1285)] = 83495, + [SMALL_STATE(1286)] = 83538, + [SMALL_STATE(1287)] = 83581, + [SMALL_STATE(1288)] = 83624, + [SMALL_STATE(1289)] = 83671, + [SMALL_STATE(1290)] = 83714, + [SMALL_STATE(1291)] = 83757, + [SMALL_STATE(1292)] = 83800, + [SMALL_STATE(1293)] = 83843, + [SMALL_STATE(1294)] = 83886, + [SMALL_STATE(1295)] = 83929, + [SMALL_STATE(1296)] = 83972, + [SMALL_STATE(1297)] = 84015, + [SMALL_STATE(1298)] = 84058, + [SMALL_STATE(1299)] = 84101, + [SMALL_STATE(1300)] = 84144, + [SMALL_STATE(1301)] = 84187, + [SMALL_STATE(1302)] = 84230, + [SMALL_STATE(1303)] = 84273, + [SMALL_STATE(1304)] = 84320, + [SMALL_STATE(1305)] = 84367, + [SMALL_STATE(1306)] = 84410, + [SMALL_STATE(1307)] = 84453, + [SMALL_STATE(1308)] = 84496, + [SMALL_STATE(1309)] = 84543, + [SMALL_STATE(1310)] = 84590, + [SMALL_STATE(1311)] = 84633, + [SMALL_STATE(1312)] = 84676, + [SMALL_STATE(1313)] = 84719, + [SMALL_STATE(1314)] = 84762, + [SMALL_STATE(1315)] = 84805, + [SMALL_STATE(1316)] = 84850, + [SMALL_STATE(1317)] = 84895, + [SMALL_STATE(1318)] = 84940, + [SMALL_STATE(1319)] = 84985, + [SMALL_STATE(1320)] = 85028, + [SMALL_STATE(1321)] = 85075, + [SMALL_STATE(1322)] = 85120, + [SMALL_STATE(1323)] = 85163, + [SMALL_STATE(1324)] = 85208, + [SMALL_STATE(1325)] = 85251, + [SMALL_STATE(1326)] = 85298, + [SMALL_STATE(1327)] = 85341, + [SMALL_STATE(1328)] = 85384, + [SMALL_STATE(1329)] = 85427, + [SMALL_STATE(1330)] = 85470, + [SMALL_STATE(1331)] = 85513, + [SMALL_STATE(1332)] = 85556, + [SMALL_STATE(1333)] = 85599, + [SMALL_STATE(1334)] = 85642, + [SMALL_STATE(1335)] = 85685, + [SMALL_STATE(1336)] = 85730, + [SMALL_STATE(1337)] = 85773, + [SMALL_STATE(1338)] = 85816, + [SMALL_STATE(1339)] = 85859, + [SMALL_STATE(1340)] = 85902, + [SMALL_STATE(1341)] = 85949, + [SMALL_STATE(1342)] = 85994, + [SMALL_STATE(1343)] = 86041, + [SMALL_STATE(1344)] = 86088, + [SMALL_STATE(1345)] = 86131, + [SMALL_STATE(1346)] = 86174, + [SMALL_STATE(1347)] = 86217, + [SMALL_STATE(1348)] = 86260, + [SMALL_STATE(1349)] = 86303, + [SMALL_STATE(1350)] = 86346, + [SMALL_STATE(1351)] = 86391, + [SMALL_STATE(1352)] = 86436, + [SMALL_STATE(1353)] = 86479, + [SMALL_STATE(1354)] = 86522, + [SMALL_STATE(1355)] = 86567, + [SMALL_STATE(1356)] = 86614, + [SMALL_STATE(1357)] = 86657, + [SMALL_STATE(1358)] = 86700, + [SMALL_STATE(1359)] = 86743, + [SMALL_STATE(1360)] = 86790, + [SMALL_STATE(1361)] = 86837, + [SMALL_STATE(1362)] = 86884, + [SMALL_STATE(1363)] = 86927, + [SMALL_STATE(1364)] = 86970, + [SMALL_STATE(1365)] = 87013, + [SMALL_STATE(1366)] = 87056, + [SMALL_STATE(1367)] = 87099, + [SMALL_STATE(1368)] = 87142, + [SMALL_STATE(1369)] = 87187, + [SMALL_STATE(1370)] = 87230, + [SMALL_STATE(1371)] = 87273, + [SMALL_STATE(1372)] = 87316, + [SMALL_STATE(1373)] = 87359, + [SMALL_STATE(1374)] = 87402, + [SMALL_STATE(1375)] = 87445, + [SMALL_STATE(1376)] = 87488, + [SMALL_STATE(1377)] = 87531, + [SMALL_STATE(1378)] = 87574, + [SMALL_STATE(1379)] = 87617, + [SMALL_STATE(1380)] = 87660, + [SMALL_STATE(1381)] = 87703, + [SMALL_STATE(1382)] = 87746, + [SMALL_STATE(1383)] = 87791, + [SMALL_STATE(1384)] = 87834, + [SMALL_STATE(1385)] = 87877, + [SMALL_STATE(1386)] = 87920, + [SMALL_STATE(1387)] = 87963, + [SMALL_STATE(1388)] = 88006, + [SMALL_STATE(1389)] = 88049, + [SMALL_STATE(1390)] = 88092, + [SMALL_STATE(1391)] = 88135, + [SMALL_STATE(1392)] = 88178, + [SMALL_STATE(1393)] = 88221, + [SMALL_STATE(1394)] = 88264, + [SMALL_STATE(1395)] = 88315, + [SMALL_STATE(1396)] = 88360, + [SMALL_STATE(1397)] = 88403, + [SMALL_STATE(1398)] = 88446, + [SMALL_STATE(1399)] = 88489, + [SMALL_STATE(1400)] = 88532, + [SMALL_STATE(1401)] = 88575, + [SMALL_STATE(1402)] = 88618, + [SMALL_STATE(1403)] = 88663, + [SMALL_STATE(1404)] = 88705, + [SMALL_STATE(1405)] = 88751, + [SMALL_STATE(1406)] = 88793, + [SMALL_STATE(1407)] = 88835, + [SMALL_STATE(1408)] = 88877, + [SMALL_STATE(1409)] = 88921, + [SMALL_STATE(1410)] = 88965, + [SMALL_STATE(1411)] = 89009, + [SMALL_STATE(1412)] = 89053, + [SMALL_STATE(1413)] = 89095, + [SMALL_STATE(1414)] = 89139, + [SMALL_STATE(1415)] = 89183, + [SMALL_STATE(1416)] = 89225, + [SMALL_STATE(1417)] = 89267, + [SMALL_STATE(1418)] = 89309, + [SMALL_STATE(1419)] = 89351, + [SMALL_STATE(1420)] = 89393, + [SMALL_STATE(1421)] = 89439, + [SMALL_STATE(1422)] = 89481, + [SMALL_STATE(1423)] = 89523, + [SMALL_STATE(1424)] = 89573, + [SMALL_STATE(1425)] = 89615, + [SMALL_STATE(1426)] = 89657, + [SMALL_STATE(1427)] = 89699, + [SMALL_STATE(1428)] = 89741, + [SMALL_STATE(1429)] = 89783, + [SMALL_STATE(1430)] = 89825, + [SMALL_STATE(1431)] = 89867, + [SMALL_STATE(1432)] = 89909, + [SMALL_STATE(1433)] = 89953, + [SMALL_STATE(1434)] = 89997, + [SMALL_STATE(1435)] = 90041, + [SMALL_STATE(1436)] = 90083, + [SMALL_STATE(1437)] = 90125, + [SMALL_STATE(1438)] = 90167, + [SMALL_STATE(1439)] = 90209, + [SMALL_STATE(1440)] = 90251, + [SMALL_STATE(1441)] = 90293, + [SMALL_STATE(1442)] = 90335, + [SMALL_STATE(1443)] = 90377, + [SMALL_STATE(1444)] = 90419, + [SMALL_STATE(1445)] = 90461, + [SMALL_STATE(1446)] = 90503, + [SMALL_STATE(1447)] = 90545, + [SMALL_STATE(1448)] = 90593, + [SMALL_STATE(1449)] = 90639, + [SMALL_STATE(1450)] = 90681, + [SMALL_STATE(1451)] = 90724, + [SMALL_STATE(1452)] = 90767, + [SMALL_STATE(1453)] = 90810, + [SMALL_STATE(1454)] = 90853, + [SMALL_STATE(1455)] = 90896, + [SMALL_STATE(1456)] = 90939, + [SMALL_STATE(1457)] = 90982, + [SMALL_STATE(1458)] = 91023, + [SMALL_STATE(1459)] = 91064, + [SMALL_STATE(1460)] = 91105, + [SMALL_STATE(1461)] = 91146, + [SMALL_STATE(1462)] = 91187, + [SMALL_STATE(1463)] = 91228, + [SMALL_STATE(1464)] = 91269, + [SMALL_STATE(1465)] = 91310, + [SMALL_STATE(1466)] = 91351, + [SMALL_STATE(1467)] = 91392, + [SMALL_STATE(1468)] = 91435, + [SMALL_STATE(1469)] = 91478, + [SMALL_STATE(1470)] = 91552, + [SMALL_STATE(1471)] = 91626, + [SMALL_STATE(1472)] = 91694, + [SMALL_STATE(1473)] = 91762, + [SMALL_STATE(1474)] = 91830, + [SMALL_STATE(1475)] = 91898, + [SMALL_STATE(1476)] = 91966, + [SMALL_STATE(1477)] = 92034, + [SMALL_STATE(1478)] = 92102, + [SMALL_STATE(1479)] = 92170, + [SMALL_STATE(1480)] = 92238, + [SMALL_STATE(1481)] = 92306, + [SMALL_STATE(1482)] = 92374, + [SMALL_STATE(1483)] = 92442, + [SMALL_STATE(1484)] = 92510, + [SMALL_STATE(1485)] = 92578, + [SMALL_STATE(1486)] = 92646, + [SMALL_STATE(1487)] = 92714, + [SMALL_STATE(1488)] = 92782, + [SMALL_STATE(1489)] = 92850, + [SMALL_STATE(1490)] = 92918, + [SMALL_STATE(1491)] = 92986, + [SMALL_STATE(1492)] = 93054, + [SMALL_STATE(1493)] = 93122, + [SMALL_STATE(1494)] = 93190, + [SMALL_STATE(1495)] = 93258, + [SMALL_STATE(1496)] = 93326, + [SMALL_STATE(1497)] = 93394, + [SMALL_STATE(1498)] = 93462, + [SMALL_STATE(1499)] = 93530, + [SMALL_STATE(1500)] = 93598, + [SMALL_STATE(1501)] = 93666, + [SMALL_STATE(1502)] = 93734, + [SMALL_STATE(1503)] = 93802, + [SMALL_STATE(1504)] = 93870, + [SMALL_STATE(1505)] = 93938, + [SMALL_STATE(1506)] = 94006, + [SMALL_STATE(1507)] = 94074, + [SMALL_STATE(1508)] = 94139, + [SMALL_STATE(1509)] = 94204, + [SMALL_STATE(1510)] = 94269, + [SMALL_STATE(1511)] = 94334, + [SMALL_STATE(1512)] = 94399, + [SMALL_STATE(1513)] = 94465, + [SMALL_STATE(1514)] = 94531, + [SMALL_STATE(1515)] = 94597, + [SMALL_STATE(1516)] = 94663, + [SMALL_STATE(1517)] = 94729, + [SMALL_STATE(1518)] = 94795, + [SMALL_STATE(1519)] = 94861, + [SMALL_STATE(1520)] = 94927, + [SMALL_STATE(1521)] = 94993, + [SMALL_STATE(1522)] = 95059, + [SMALL_STATE(1523)] = 95125, + [SMALL_STATE(1524)] = 95191, + [SMALL_STATE(1525)] = 95257, + [SMALL_STATE(1526)] = 95323, + [SMALL_STATE(1527)] = 95389, + [SMALL_STATE(1528)] = 95455, + [SMALL_STATE(1529)] = 95521, + [SMALL_STATE(1530)] = 95587, + [SMALL_STATE(1531)] = 95653, + [SMALL_STATE(1532)] = 95719, + [SMALL_STATE(1533)] = 95782, + [SMALL_STATE(1534)] = 95840, + [SMALL_STATE(1535)] = 95898, + [SMALL_STATE(1536)] = 95944, + [SMALL_STATE(1537)] = 96002, + [SMALL_STATE(1538)] = 96060, + [SMALL_STATE(1539)] = 96118, + [SMALL_STATE(1540)] = 96164, + [SMALL_STATE(1541)] = 96222, + [SMALL_STATE(1542)] = 96280, + [SMALL_STATE(1543)] = 96338, + [SMALL_STATE(1544)] = 96382, + [SMALL_STATE(1545)] = 96426, + [SMALL_STATE(1546)] = 96470, + [SMALL_STATE(1547)] = 96514, + [SMALL_STATE(1548)] = 96557, + [SMALL_STATE(1549)] = 96600, + [SMALL_STATE(1550)] = 96643, + [SMALL_STATE(1551)] = 96684, + [SMALL_STATE(1552)] = 96725, + [SMALL_STATE(1553)] = 96768, + [SMALL_STATE(1554)] = 96800, + [SMALL_STATE(1555)] = 96842, + [SMALL_STATE(1556)] = 96874, + [SMALL_STATE(1557)] = 96916, + [SMALL_STATE(1558)] = 96946, + [SMALL_STATE(1559)] = 96988, + [SMALL_STATE(1560)] = 97018, + [SMALL_STATE(1561)] = 97060, + [SMALL_STATE(1562)] = 97092, + [SMALL_STATE(1563)] = 97124, + [SMALL_STATE(1564)] = 97156, + [SMALL_STATE(1565)] = 97188, + [SMALL_STATE(1566)] = 97218, + [SMALL_STATE(1567)] = 97248, + [SMALL_STATE(1568)] = 97278, + [SMALL_STATE(1569)] = 97308, + [SMALL_STATE(1570)] = 97338, + [SMALL_STATE(1571)] = 97368, + [SMALL_STATE(1572)] = 97398, + [SMALL_STATE(1573)] = 97428, + [SMALL_STATE(1574)] = 97457, + [SMALL_STATE(1575)] = 97486, + [SMALL_STATE(1576)] = 97515, + [SMALL_STATE(1577)] = 97540, + [SMALL_STATE(1578)] = 97565, + [SMALL_STATE(1579)] = 97590, + [SMALL_STATE(1580)] = 97619, + [SMALL_STATE(1581)] = 97648, + [SMALL_STATE(1582)] = 97677, + [SMALL_STATE(1583)] = 97706, + [SMALL_STATE(1584)] = 97735, + [SMALL_STATE(1585)] = 97764, + [SMALL_STATE(1586)] = 97793, + [SMALL_STATE(1587)] = 97822, + [SMALL_STATE(1588)] = 97851, + [SMALL_STATE(1589)] = 97880, + [SMALL_STATE(1590)] = 97909, + [SMALL_STATE(1591)] = 97938, + [SMALL_STATE(1592)] = 97967, + [SMALL_STATE(1593)] = 97996, + [SMALL_STATE(1594)] = 98025, + [SMALL_STATE(1595)] = 98054, + [SMALL_STATE(1596)] = 98083, + [SMALL_STATE(1597)] = 98112, + [SMALL_STATE(1598)] = 98141, + [SMALL_STATE(1599)] = 98170, + [SMALL_STATE(1600)] = 98199, + [SMALL_STATE(1601)] = 98246, + [SMALL_STATE(1602)] = 98293, + [SMALL_STATE(1603)] = 98340, + [SMALL_STATE(1604)] = 98387, + [SMALL_STATE(1605)] = 98434, + [SMALL_STATE(1606)] = 98481, [SMALL_STATE(1607)] = 98528, - [SMALL_STATE(1608)] = 98557, - [SMALL_STATE(1609)] = 98586, - [SMALL_STATE(1610)] = 98615, - [SMALL_STATE(1611)] = 98640, - [SMALL_STATE(1612)] = 98669, - [SMALL_STATE(1613)] = 98716, - [SMALL_STATE(1614)] = 98745, - [SMALL_STATE(1615)] = 98792, - [SMALL_STATE(1616)] = 98839, - [SMALL_STATE(1617)] = 98886, - [SMALL_STATE(1618)] = 98933, - [SMALL_STATE(1619)] = 98980, - [SMALL_STATE(1620)] = 99027, - [SMALL_STATE(1621)] = 99074, - [SMALL_STATE(1622)] = 99103, - [SMALL_STATE(1623)] = 99132, - [SMALL_STATE(1624)] = 99161, - [SMALL_STATE(1625)] = 99190, - [SMALL_STATE(1626)] = 99219, - [SMALL_STATE(1627)] = 99244, - [SMALL_STATE(1628)] = 99268, - [SMALL_STATE(1629)] = 99314, - [SMALL_STATE(1630)] = 99360, - [SMALL_STATE(1631)] = 99390, - [SMALL_STATE(1632)] = 99436, - [SMALL_STATE(1633)] = 99468, - [SMALL_STATE(1634)] = 99514, - [SMALL_STATE(1635)] = 99546, - [SMALL_STATE(1636)] = 99592, - [SMALL_STATE(1637)] = 99638, - [SMALL_STATE(1638)] = 99684, - [SMALL_STATE(1639)] = 99730, - [SMALL_STATE(1640)] = 99754, - [SMALL_STATE(1641)] = 99778, - [SMALL_STATE(1642)] = 99806, - [SMALL_STATE(1643)] = 99830, - [SMALL_STATE(1644)] = 99876, - [SMALL_STATE(1645)] = 99904, - [SMALL_STATE(1646)] = 99950, - [SMALL_STATE(1647)] = 99996, - [SMALL_STATE(1648)] = 100039, - [SMALL_STATE(1649)] = 100065, - [SMALL_STATE(1650)] = 100105, - [SMALL_STATE(1651)] = 100145, - [SMALL_STATE(1652)] = 100185, - [SMALL_STATE(1653)] = 100225, - [SMALL_STATE(1654)] = 100262, - [SMALL_STATE(1655)] = 100299, - [SMALL_STATE(1656)] = 100340, - [SMALL_STATE(1657)] = 100381, - [SMALL_STATE(1658)] = 100404, - [SMALL_STATE(1659)] = 100423, - [SMALL_STATE(1660)] = 100444, - [SMALL_STATE(1661)] = 100471, - [SMALL_STATE(1662)] = 100498, - [SMALL_STATE(1663)] = 100525, - [SMALL_STATE(1664)] = 100566, - [SMALL_STATE(1665)] = 100585, - [SMALL_STATE(1666)] = 100610, - [SMALL_STATE(1667)] = 100629, - [SMALL_STATE(1668)] = 100670, - [SMALL_STATE(1669)] = 100711, - [SMALL_STATE(1670)] = 100752, - [SMALL_STATE(1671)] = 100793, - [SMALL_STATE(1672)] = 100834, - [SMALL_STATE(1673)] = 100864, - [SMALL_STATE(1674)] = 100902, - [SMALL_STATE(1675)] = 100932, - [SMALL_STATE(1676)] = 100962, - [SMALL_STATE(1677)] = 101000, - [SMALL_STATE(1678)] = 101038, - [SMALL_STATE(1679)] = 101068, - [SMALL_STATE(1680)] = 101098, - [SMALL_STATE(1681)] = 101136, - [SMALL_STATE(1682)] = 101174, - [SMALL_STATE(1683)] = 101212, - [SMALL_STATE(1684)] = 101242, - [SMALL_STATE(1685)] = 101272, - [SMALL_STATE(1686)] = 101302, - [SMALL_STATE(1687)] = 101340, - [SMALL_STATE(1688)] = 101378, - [SMALL_STATE(1689)] = 101416, - [SMALL_STATE(1690)] = 101446, - [SMALL_STATE(1691)] = 101476, - [SMALL_STATE(1692)] = 101514, - [SMALL_STATE(1693)] = 101552, - [SMALL_STATE(1694)] = 101590, - [SMALL_STATE(1695)] = 101628, - [SMALL_STATE(1696)] = 101658, - [SMALL_STATE(1697)] = 101688, - [SMALL_STATE(1698)] = 101726, - [SMALL_STATE(1699)] = 101764, - [SMALL_STATE(1700)] = 101794, - [SMALL_STATE(1701)] = 101824, - [SMALL_STATE(1702)] = 101862, - [SMALL_STATE(1703)] = 101900, - [SMALL_STATE(1704)] = 101930, - [SMALL_STATE(1705)] = 101960, - [SMALL_STATE(1706)] = 101998, - [SMALL_STATE(1707)] = 102028, - [SMALL_STATE(1708)] = 102066, - [SMALL_STATE(1709)] = 102104, - [SMALL_STATE(1710)] = 102142, - [SMALL_STATE(1711)] = 102172, - [SMALL_STATE(1712)] = 102210, - [SMALL_STATE(1713)] = 102248, - [SMALL_STATE(1714)] = 102286, - [SMALL_STATE(1715)] = 102324, - [SMALL_STATE(1716)] = 102354, - [SMALL_STATE(1717)] = 102386, - [SMALL_STATE(1718)] = 102403, - [SMALL_STATE(1719)] = 102424, - [SMALL_STATE(1720)] = 102441, - [SMALL_STATE(1721)] = 102466, - [SMALL_STATE(1722)] = 102491, - [SMALL_STATE(1723)] = 102516, - [SMALL_STATE(1724)] = 102533, - [SMALL_STATE(1725)] = 102558, - [SMALL_STATE(1726)] = 102581, - [SMALL_STATE(1727)] = 102606, - [SMALL_STATE(1728)] = 102627, - [SMALL_STATE(1729)] = 102652, - [SMALL_STATE(1730)] = 102669, - [SMALL_STATE(1731)] = 102686, - [SMALL_STATE(1732)] = 102705, - [SMALL_STATE(1733)] = 102734, - [SMALL_STATE(1734)] = 102751, - [SMALL_STATE(1735)] = 102776, - [SMALL_STATE(1736)] = 102795, - [SMALL_STATE(1737)] = 102818, - [SMALL_STATE(1738)] = 102847, - [SMALL_STATE(1739)] = 102872, - [SMALL_STATE(1740)] = 102896, - [SMALL_STATE(1741)] = 102920, - [SMALL_STATE(1742)] = 102942, - [SMALL_STATE(1743)] = 102962, - [SMALL_STATE(1744)] = 102978, - [SMALL_STATE(1745)] = 102996, - [SMALL_STATE(1746)] = 103014, - [SMALL_STATE(1747)] = 103044, - [SMALL_STATE(1748)] = 103064, - [SMALL_STATE(1749)] = 103086, - [SMALL_STATE(1750)] = 103110, - [SMALL_STATE(1751)] = 103134, - [SMALL_STATE(1752)] = 103150, - [SMALL_STATE(1753)] = 103172, - [SMALL_STATE(1754)] = 103194, - [SMALL_STATE(1755)] = 103212, - [SMALL_STATE(1756)] = 103228, - [SMALL_STATE(1757)] = 103244, - [SMALL_STATE(1758)] = 103264, - [SMALL_STATE(1759)] = 103288, - [SMALL_STATE(1760)] = 103312, - [SMALL_STATE(1761)] = 103336, - [SMALL_STATE(1762)] = 103360, - [SMALL_STATE(1763)] = 103384, - [SMALL_STATE(1764)] = 103406, - [SMALL_STATE(1765)] = 103426, - [SMALL_STATE(1766)] = 103442, - [SMALL_STATE(1767)] = 103460, - [SMALL_STATE(1768)] = 103476, - [SMALL_STATE(1769)] = 103500, - [SMALL_STATE(1770)] = 103524, - [SMALL_STATE(1771)] = 103544, - [SMALL_STATE(1772)] = 103562, - [SMALL_STATE(1773)] = 103586, - [SMALL_STATE(1774)] = 103610, - [SMALL_STATE(1775)] = 103630, - [SMALL_STATE(1776)] = 103653, - [SMALL_STATE(1777)] = 103678, - [SMALL_STATE(1778)] = 103701, - [SMALL_STATE(1779)] = 103728, - [SMALL_STATE(1780)] = 103745, - [SMALL_STATE(1781)] = 103772, - [SMALL_STATE(1782)] = 103799, - [SMALL_STATE(1783)] = 103826, - [SMALL_STATE(1784)] = 103847, - [SMALL_STATE(1785)] = 103876, - [SMALL_STATE(1786)] = 103893, - [SMALL_STATE(1787)] = 103914, - [SMALL_STATE(1788)] = 103937, - [SMALL_STATE(1789)] = 103962, - [SMALL_STATE(1790)] = 103989, - [SMALL_STATE(1791)] = 104018, - [SMALL_STATE(1792)] = 104043, - [SMALL_STATE(1793)] = 104066, - [SMALL_STATE(1794)] = 104083, - [SMALL_STATE(1795)] = 104104, - [SMALL_STATE(1796)] = 104133, - [SMALL_STATE(1797)] = 104158, - [SMALL_STATE(1798)] = 104187, - [SMALL_STATE(1799)] = 104210, - [SMALL_STATE(1800)] = 104235, - [SMALL_STATE(1801)] = 104264, - [SMALL_STATE(1802)] = 104285, - [SMALL_STATE(1803)] = 104306, - [SMALL_STATE(1804)] = 104335, - [SMALL_STATE(1805)] = 104356, - [SMALL_STATE(1806)] = 104379, - [SMALL_STATE(1807)] = 104396, - [SMALL_STATE(1808)] = 104417, - [SMALL_STATE(1809)] = 104434, - [SMALL_STATE(1810)] = 104453, - [SMALL_STATE(1811)] = 104482, - [SMALL_STATE(1812)] = 104503, - [SMALL_STATE(1813)] = 104526, - [SMALL_STATE(1814)] = 104549, - [SMALL_STATE(1815)] = 104578, - [SMALL_STATE(1816)] = 104605, - [SMALL_STATE(1817)] = 104628, - [SMALL_STATE(1818)] = 104657, - [SMALL_STATE(1819)] = 104676, - [SMALL_STATE(1820)] = 104691, - [SMALL_STATE(1821)] = 104720, - [SMALL_STATE(1822)] = 104741, - [SMALL_STATE(1823)] = 104766, - [SMALL_STATE(1824)] = 104787, - [SMALL_STATE(1825)] = 104808, - [SMALL_STATE(1826)] = 104825, - [SMALL_STATE(1827)] = 104844, - [SMALL_STATE(1828)] = 104865, - [SMALL_STATE(1829)] = 104892, - [SMALL_STATE(1830)] = 104919, - [SMALL_STATE(1831)] = 104940, - [SMALL_STATE(1832)] = 104961, - [SMALL_STATE(1833)] = 104984, - [SMALL_STATE(1834)] = 105005, - [SMALL_STATE(1835)] = 105026, - [SMALL_STATE(1836)] = 105052, - [SMALL_STATE(1837)] = 105078, - [SMALL_STATE(1838)] = 105104, - [SMALL_STATE(1839)] = 105122, - [SMALL_STATE(1840)] = 105148, - [SMALL_STATE(1841)] = 105166, - [SMALL_STATE(1842)] = 105184, - [SMALL_STATE(1843)] = 105202, - [SMALL_STATE(1844)] = 105224, - [SMALL_STATE(1845)] = 105248, - [SMALL_STATE(1846)] = 105274, - [SMALL_STATE(1847)] = 105290, - [SMALL_STATE(1848)] = 105308, - [SMALL_STATE(1849)] = 105334, - [SMALL_STATE(1850)] = 105352, - [SMALL_STATE(1851)] = 105376, - [SMALL_STATE(1852)] = 105398, - [SMALL_STATE(1853)] = 105418, - [SMALL_STATE(1854)] = 105442, - [SMALL_STATE(1855)] = 105460, - [SMALL_STATE(1856)] = 105486, - [SMALL_STATE(1857)] = 105512, - [SMALL_STATE(1858)] = 105538, - [SMALL_STATE(1859)] = 105556, - [SMALL_STATE(1860)] = 105582, - [SMALL_STATE(1861)] = 105604, - [SMALL_STATE(1862)] = 105626, - [SMALL_STATE(1863)] = 105652, - [SMALL_STATE(1864)] = 105678, - [SMALL_STATE(1865)] = 105696, - [SMALL_STATE(1866)] = 105718, - [SMALL_STATE(1867)] = 105744, - [SMALL_STATE(1868)] = 105766, - [SMALL_STATE(1869)] = 105792, - [SMALL_STATE(1870)] = 105808, - [SMALL_STATE(1871)] = 105826, - [SMALL_STATE(1872)] = 105844, - [SMALL_STATE(1873)] = 105866, - [SMALL_STATE(1874)] = 105890, - [SMALL_STATE(1875)] = 105912, - [SMALL_STATE(1876)] = 105934, - [SMALL_STATE(1877)] = 105952, - [SMALL_STATE(1878)] = 105974, - [SMALL_STATE(1879)] = 106000, - [SMALL_STATE(1880)] = 106026, - [SMALL_STATE(1881)] = 106046, - [SMALL_STATE(1882)] = 106072, - [SMALL_STATE(1883)] = 106092, - [SMALL_STATE(1884)] = 106114, - [SMALL_STATE(1885)] = 106140, - [SMALL_STATE(1886)] = 106157, - [SMALL_STATE(1887)] = 106174, - [SMALL_STATE(1888)] = 106191, - [SMALL_STATE(1889)] = 106204, - [SMALL_STATE(1890)] = 106217, - [SMALL_STATE(1891)] = 106230, - [SMALL_STATE(1892)] = 106247, - [SMALL_STATE(1893)] = 106268, - [SMALL_STATE(1894)] = 106285, - [SMALL_STATE(1895)] = 106298, - [SMALL_STATE(1896)] = 106311, - [SMALL_STATE(1897)] = 106324, - [SMALL_STATE(1898)] = 106345, - [SMALL_STATE(1899)] = 106362, - [SMALL_STATE(1900)] = 106379, - [SMALL_STATE(1901)] = 106396, - [SMALL_STATE(1902)] = 106413, - [SMALL_STATE(1903)] = 106434, - [SMALL_STATE(1904)] = 106449, - [SMALL_STATE(1905)] = 106472, - [SMALL_STATE(1906)] = 106493, - [SMALL_STATE(1907)] = 106510, - [SMALL_STATE(1908)] = 106531, - [SMALL_STATE(1909)] = 106546, - [SMALL_STATE(1910)] = 106567, - [SMALL_STATE(1911)] = 106588, - [SMALL_STATE(1912)] = 106609, - [SMALL_STATE(1913)] = 106632, - [SMALL_STATE(1914)] = 106649, - [SMALL_STATE(1915)] = 106670, - [SMALL_STATE(1916)] = 106687, - [SMALL_STATE(1917)] = 106708, - [SMALL_STATE(1918)] = 106725, - [SMALL_STATE(1919)] = 106738, - [SMALL_STATE(1920)] = 106759, - [SMALL_STATE(1921)] = 106774, - [SMALL_STATE(1922)] = 106795, - [SMALL_STATE(1923)] = 106818, - [SMALL_STATE(1924)] = 106831, - [SMALL_STATE(1925)] = 106848, - [SMALL_STATE(1926)] = 106861, - [SMALL_STATE(1927)] = 106878, - [SMALL_STATE(1928)] = 106899, - [SMALL_STATE(1929)] = 106916, - [SMALL_STATE(1930)] = 106937, - [SMALL_STATE(1931)] = 106958, - [SMALL_STATE(1932)] = 106979, - [SMALL_STATE(1933)] = 106992, - [SMALL_STATE(1934)] = 107009, - [SMALL_STATE(1935)] = 107026, - [SMALL_STATE(1936)] = 107043, - [SMALL_STATE(1937)] = 107064, - [SMALL_STATE(1938)] = 107079, - [SMALL_STATE(1939)] = 107096, - [SMALL_STATE(1940)] = 107111, - [SMALL_STATE(1941)] = 107128, - [SMALL_STATE(1942)] = 107149, - [SMALL_STATE(1943)] = 107164, - [SMALL_STATE(1944)] = 107181, - [SMALL_STATE(1945)] = 107202, - [SMALL_STATE(1946)] = 107215, - [SMALL_STATE(1947)] = 107232, - [SMALL_STATE(1948)] = 107255, - [SMALL_STATE(1949)] = 107276, - [SMALL_STATE(1950)] = 107297, - [SMALL_STATE(1951)] = 107310, - [SMALL_STATE(1952)] = 107327, - [SMALL_STATE(1953)] = 107340, - [SMALL_STATE(1954)] = 107355, - [SMALL_STATE(1955)] = 107372, - [SMALL_STATE(1956)] = 107389, - [SMALL_STATE(1957)] = 107410, - [SMALL_STATE(1958)] = 107429, - [SMALL_STATE(1959)] = 107452, - [SMALL_STATE(1960)] = 107469, - [SMALL_STATE(1961)] = 107482, - [SMALL_STATE(1962)] = 107499, - [SMALL_STATE(1963)] = 107516, - [SMALL_STATE(1964)] = 107529, - [SMALL_STATE(1965)] = 107546, - [SMALL_STATE(1966)] = 107567, - [SMALL_STATE(1967)] = 107580, - [SMALL_STATE(1968)] = 107603, - [SMALL_STATE(1969)] = 107618, - [SMALL_STATE(1970)] = 107639, - [SMALL_STATE(1971)] = 107660, - [SMALL_STATE(1972)] = 107673, - [SMALL_STATE(1973)] = 107692, - [SMALL_STATE(1974)] = 107713, - [SMALL_STATE(1975)] = 107726, - [SMALL_STATE(1976)] = 107743, - [SMALL_STATE(1977)] = 107760, - [SMALL_STATE(1978)] = 107777, - [SMALL_STATE(1979)] = 107798, - [SMALL_STATE(1980)] = 107819, - [SMALL_STATE(1981)] = 107836, - [SMALL_STATE(1982)] = 107857, - [SMALL_STATE(1983)] = 107878, - [SMALL_STATE(1984)] = 107891, - [SMALL_STATE(1985)] = 107912, - [SMALL_STATE(1986)] = 107935, - [SMALL_STATE(1987)] = 107952, - [SMALL_STATE(1988)] = 107973, - [SMALL_STATE(1989)] = 107990, - [SMALL_STATE(1990)] = 108003, - [SMALL_STATE(1991)] = 108016, - [SMALL_STATE(1992)] = 108029, - [SMALL_STATE(1993)] = 108049, - [SMALL_STATE(1994)] = 108065, - [SMALL_STATE(1995)] = 108083, - [SMALL_STATE(1996)] = 108095, - [SMALL_STATE(1997)] = 108107, - [SMALL_STATE(1998)] = 108127, - [SMALL_STATE(1999)] = 108139, - [SMALL_STATE(2000)] = 108159, - [SMALL_STATE(2001)] = 108179, - [SMALL_STATE(2002)] = 108191, - [SMALL_STATE(2003)] = 108203, - [SMALL_STATE(2004)] = 108215, - [SMALL_STATE(2005)] = 108231, - [SMALL_STATE(2006)] = 108249, - [SMALL_STATE(2007)] = 108261, - [SMALL_STATE(2008)] = 108273, - [SMALL_STATE(2009)] = 108285, - [SMALL_STATE(2010)] = 108305, - [SMALL_STATE(2011)] = 108317, - [SMALL_STATE(2012)] = 108337, - [SMALL_STATE(2013)] = 108355, - [SMALL_STATE(2014)] = 108375, - [SMALL_STATE(2015)] = 108395, - [SMALL_STATE(2016)] = 108411, - [SMALL_STATE(2017)] = 108423, - [SMALL_STATE(2018)] = 108435, - [SMALL_STATE(2019)] = 108447, - [SMALL_STATE(2020)] = 108467, - [SMALL_STATE(2021)] = 108479, - [SMALL_STATE(2022)] = 108491, - [SMALL_STATE(2023)] = 108505, - [SMALL_STATE(2024)] = 108517, - [SMALL_STATE(2025)] = 108533, - [SMALL_STATE(2026)] = 108545, - [SMALL_STATE(2027)] = 108557, - [SMALL_STATE(2028)] = 108569, - [SMALL_STATE(2029)] = 108581, - [SMALL_STATE(2030)] = 108593, - [SMALL_STATE(2031)] = 108605, - [SMALL_STATE(2032)] = 108617, - [SMALL_STATE(2033)] = 108629, - [SMALL_STATE(2034)] = 108641, - [SMALL_STATE(2035)] = 108661, - [SMALL_STATE(2036)] = 108679, - [SMALL_STATE(2037)] = 108699, - [SMALL_STATE(2038)] = 108719, - [SMALL_STATE(2039)] = 108731, - [SMALL_STATE(2040)] = 108743, - [SMALL_STATE(2041)] = 108755, - [SMALL_STATE(2042)] = 108767, - [SMALL_STATE(2043)] = 108779, - [SMALL_STATE(2044)] = 108791, - [SMALL_STATE(2045)] = 108811, - [SMALL_STATE(2046)] = 108823, - [SMALL_STATE(2047)] = 108835, - [SMALL_STATE(2048)] = 108847, - [SMALL_STATE(2049)] = 108859, - [SMALL_STATE(2050)] = 108879, - [SMALL_STATE(2051)] = 108897, - [SMALL_STATE(2052)] = 108909, - [SMALL_STATE(2053)] = 108921, - [SMALL_STATE(2054)] = 108941, - [SMALL_STATE(2055)] = 108953, - [SMALL_STATE(2056)] = 108965, - [SMALL_STATE(2057)] = 108983, - [SMALL_STATE(2058)] = 108995, - [SMALL_STATE(2059)] = 109015, - [SMALL_STATE(2060)] = 109027, - [SMALL_STATE(2061)] = 109045, - [SMALL_STATE(2062)] = 109057, - [SMALL_STATE(2063)] = 109075, - [SMALL_STATE(2064)] = 109095, - [SMALL_STATE(2065)] = 109115, - [SMALL_STATE(2066)] = 109135, - [SMALL_STATE(2067)] = 109153, - [SMALL_STATE(2068)] = 109167, - [SMALL_STATE(2069)] = 109183, - [SMALL_STATE(2070)] = 109195, - [SMALL_STATE(2071)] = 109215, - [SMALL_STATE(2072)] = 109227, - [SMALL_STATE(2073)] = 109243, - [SMALL_STATE(2074)] = 109259, - [SMALL_STATE(2075)] = 109273, - [SMALL_STATE(2076)] = 109289, - [SMALL_STATE(2077)] = 109309, - [SMALL_STATE(2078)] = 109327, - [SMALL_STATE(2079)] = 109339, - [SMALL_STATE(2080)] = 109359, - [SMALL_STATE(2081)] = 109373, - [SMALL_STATE(2082)] = 109389, - [SMALL_STATE(2083)] = 109401, - [SMALL_STATE(2084)] = 109417, - [SMALL_STATE(2085)] = 109437, - [SMALL_STATE(2086)] = 109455, - [SMALL_STATE(2087)] = 109471, - [SMALL_STATE(2088)] = 109483, - [SMALL_STATE(2089)] = 109503, - [SMALL_STATE(2090)] = 109519, - [SMALL_STATE(2091)] = 109531, - [SMALL_STATE(2092)] = 109551, - [SMALL_STATE(2093)] = 109567, - [SMALL_STATE(2094)] = 109579, - [SMALL_STATE(2095)] = 109599, - [SMALL_STATE(2096)] = 109619, - [SMALL_STATE(2097)] = 109639, - [SMALL_STATE(2098)] = 109653, - [SMALL_STATE(2099)] = 109669, - [SMALL_STATE(2100)] = 109689, - [SMALL_STATE(2101)] = 109709, - [SMALL_STATE(2102)] = 109729, - [SMALL_STATE(2103)] = 109743, - [SMALL_STATE(2104)] = 109759, - [SMALL_STATE(2105)] = 109771, - [SMALL_STATE(2106)] = 109783, - [SMALL_STATE(2107)] = 109795, - [SMALL_STATE(2108)] = 109807, - [SMALL_STATE(2109)] = 109825, - [SMALL_STATE(2110)] = 109843, - [SMALL_STATE(2111)] = 109854, - [SMALL_STATE(2112)] = 109869, - [SMALL_STATE(2113)] = 109880, - [SMALL_STATE(2114)] = 109893, - [SMALL_STATE(2115)] = 109908, - [SMALL_STATE(2116)] = 109919, - [SMALL_STATE(2117)] = 109930, - [SMALL_STATE(2118)] = 109947, - [SMALL_STATE(2119)] = 109964, - [SMALL_STATE(2120)] = 109981, - [SMALL_STATE(2121)] = 109992, - [SMALL_STATE(2122)] = 110003, - [SMALL_STATE(2123)] = 110018, - [SMALL_STATE(2124)] = 110035, - [SMALL_STATE(2125)] = 110046, - [SMALL_STATE(2126)] = 110063, - [SMALL_STATE(2127)] = 110074, - [SMALL_STATE(2128)] = 110091, - [SMALL_STATE(2129)] = 110106, - [SMALL_STATE(2130)] = 110117, - [SMALL_STATE(2131)] = 110134, - [SMALL_STATE(2132)] = 110145, - [SMALL_STATE(2133)] = 110156, - [SMALL_STATE(2134)] = 110167, - [SMALL_STATE(2135)] = 110182, - [SMALL_STATE(2136)] = 110195, - [SMALL_STATE(2137)] = 110210, - [SMALL_STATE(2138)] = 110221, - [SMALL_STATE(2139)] = 110232, - [SMALL_STATE(2140)] = 110243, - [SMALL_STATE(2141)] = 110260, - [SMALL_STATE(2142)] = 110271, - [SMALL_STATE(2143)] = 110282, - [SMALL_STATE(2144)] = 110293, - [SMALL_STATE(2145)] = 110304, - [SMALL_STATE(2146)] = 110315, - [SMALL_STATE(2147)] = 110332, - [SMALL_STATE(2148)] = 110343, - [SMALL_STATE(2149)] = 110354, - [SMALL_STATE(2150)] = 110369, - [SMALL_STATE(2151)] = 110384, - [SMALL_STATE(2152)] = 110395, - [SMALL_STATE(2153)] = 110406, - [SMALL_STATE(2154)] = 110417, - [SMALL_STATE(2155)] = 110428, - [SMALL_STATE(2156)] = 110439, - [SMALL_STATE(2157)] = 110450, - [SMALL_STATE(2158)] = 110461, - [SMALL_STATE(2159)] = 110472, - [SMALL_STATE(2160)] = 110483, - [SMALL_STATE(2161)] = 110494, - [SMALL_STATE(2162)] = 110505, - [SMALL_STATE(2163)] = 110516, - [SMALL_STATE(2164)] = 110527, - [SMALL_STATE(2165)] = 110544, - [SMALL_STATE(2166)] = 110555, - [SMALL_STATE(2167)] = 110566, - [SMALL_STATE(2168)] = 110583, - [SMALL_STATE(2169)] = 110594, - [SMALL_STATE(2170)] = 110605, - [SMALL_STATE(2171)] = 110616, - [SMALL_STATE(2172)] = 110627, - [SMALL_STATE(2173)] = 110638, - [SMALL_STATE(2174)] = 110649, - [SMALL_STATE(2175)] = 110660, - [SMALL_STATE(2176)] = 110671, - [SMALL_STATE(2177)] = 110682, - [SMALL_STATE(2178)] = 110693, - [SMALL_STATE(2179)] = 110704, - [SMALL_STATE(2180)] = 110719, - [SMALL_STATE(2181)] = 110730, - [SMALL_STATE(2182)] = 110741, - [SMALL_STATE(2183)] = 110758, - [SMALL_STATE(2184)] = 110775, - [SMALL_STATE(2185)] = 110792, - [SMALL_STATE(2186)] = 110807, - [SMALL_STATE(2187)] = 110822, - [SMALL_STATE(2188)] = 110833, - [SMALL_STATE(2189)] = 110850, - [SMALL_STATE(2190)] = 110865, - [SMALL_STATE(2191)] = 110880, - [SMALL_STATE(2192)] = 110897, - [SMALL_STATE(2193)] = 110914, - [SMALL_STATE(2194)] = 110931, - [SMALL_STATE(2195)] = 110948, - [SMALL_STATE(2196)] = 110965, - [SMALL_STATE(2197)] = 110976, - [SMALL_STATE(2198)] = 110991, - [SMALL_STATE(2199)] = 111008, - [SMALL_STATE(2200)] = 111019, - [SMALL_STATE(2201)] = 111030, - [SMALL_STATE(2202)] = 111041, - [SMALL_STATE(2203)] = 111052, - [SMALL_STATE(2204)] = 111069, - [SMALL_STATE(2205)] = 111080, - [SMALL_STATE(2206)] = 111095, - [SMALL_STATE(2207)] = 111110, - [SMALL_STATE(2208)] = 111121, - [SMALL_STATE(2209)] = 111138, - [SMALL_STATE(2210)] = 111149, - [SMALL_STATE(2211)] = 111160, - [SMALL_STATE(2212)] = 111177, - [SMALL_STATE(2213)] = 111194, - [SMALL_STATE(2214)] = 111209, - [SMALL_STATE(2215)] = 111224, - [SMALL_STATE(2216)] = 111235, - [SMALL_STATE(2217)] = 111246, - [SMALL_STATE(2218)] = 111263, - [SMALL_STATE(2219)] = 111278, - [SMALL_STATE(2220)] = 111289, - [SMALL_STATE(2221)] = 111300, - [SMALL_STATE(2222)] = 111311, - [SMALL_STATE(2223)] = 111322, - [SMALL_STATE(2224)] = 111339, - [SMALL_STATE(2225)] = 111350, - [SMALL_STATE(2226)] = 111365, - [SMALL_STATE(2227)] = 111376, - [SMALL_STATE(2228)] = 111387, - [SMALL_STATE(2229)] = 111398, - [SMALL_STATE(2230)] = 111409, - [SMALL_STATE(2231)] = 111420, - [SMALL_STATE(2232)] = 111431, - [SMALL_STATE(2233)] = 111448, - [SMALL_STATE(2234)] = 111465, - [SMALL_STATE(2235)] = 111482, - [SMALL_STATE(2236)] = 111493, - [SMALL_STATE(2237)] = 111510, - [SMALL_STATE(2238)] = 111527, - [SMALL_STATE(2239)] = 111540, - [SMALL_STATE(2240)] = 111554, - [SMALL_STATE(2241)] = 111568, - [SMALL_STATE(2242)] = 111582, - [SMALL_STATE(2243)] = 111596, - [SMALL_STATE(2244)] = 111610, - [SMALL_STATE(2245)] = 111624, - [SMALL_STATE(2246)] = 111638, - [SMALL_STATE(2247)] = 111652, - [SMALL_STATE(2248)] = 111666, - [SMALL_STATE(2249)] = 111680, - [SMALL_STATE(2250)] = 111694, - [SMALL_STATE(2251)] = 111708, - [SMALL_STATE(2252)] = 111722, - [SMALL_STATE(2253)] = 111736, - [SMALL_STATE(2254)] = 111750, - [SMALL_STATE(2255)] = 111764, - [SMALL_STATE(2256)] = 111778, - [SMALL_STATE(2257)] = 111792, - [SMALL_STATE(2258)] = 111802, - [SMALL_STATE(2259)] = 111816, - [SMALL_STATE(2260)] = 111828, - [SMALL_STATE(2261)] = 111842, - [SMALL_STATE(2262)] = 111854, - [SMALL_STATE(2263)] = 111868, - [SMALL_STATE(2264)] = 111878, - [SMALL_STATE(2265)] = 111892, - [SMALL_STATE(2266)] = 111904, - [SMALL_STATE(2267)] = 111918, - [SMALL_STATE(2268)] = 111932, - [SMALL_STATE(2269)] = 111946, - [SMALL_STATE(2270)] = 111960, - [SMALL_STATE(2271)] = 111974, - [SMALL_STATE(2272)] = 111988, - [SMALL_STATE(2273)] = 112002, - [SMALL_STATE(2274)] = 112016, - [SMALL_STATE(2275)] = 112030, - [SMALL_STATE(2276)] = 112044, - [SMALL_STATE(2277)] = 112058, - [SMALL_STATE(2278)] = 112072, - [SMALL_STATE(2279)] = 112084, - [SMALL_STATE(2280)] = 112098, - [SMALL_STATE(2281)] = 112110, - [SMALL_STATE(2282)] = 112122, - [SMALL_STATE(2283)] = 112136, - [SMALL_STATE(2284)] = 112150, - [SMALL_STATE(2285)] = 112164, - [SMALL_STATE(2286)] = 112178, - [SMALL_STATE(2287)] = 112192, - [SMALL_STATE(2288)] = 112206, - [SMALL_STATE(2289)] = 112218, - [SMALL_STATE(2290)] = 112232, - [SMALL_STATE(2291)] = 112246, - [SMALL_STATE(2292)] = 112260, - [SMALL_STATE(2293)] = 112274, - [SMALL_STATE(2294)] = 112288, - [SMALL_STATE(2295)] = 112302, - [SMALL_STATE(2296)] = 112316, - [SMALL_STATE(2297)] = 112330, - [SMALL_STATE(2298)] = 112344, - [SMALL_STATE(2299)] = 112358, - [SMALL_STATE(2300)] = 112372, - [SMALL_STATE(2301)] = 112382, - [SMALL_STATE(2302)] = 112396, - [SMALL_STATE(2303)] = 112406, - [SMALL_STATE(2304)] = 112420, - [SMALL_STATE(2305)] = 112430, - [SMALL_STATE(2306)] = 112444, - [SMALL_STATE(2307)] = 112454, - [SMALL_STATE(2308)] = 112468, - [SMALL_STATE(2309)] = 112482, - [SMALL_STATE(2310)] = 112496, - [SMALL_STATE(2311)] = 112510, - [SMALL_STATE(2312)] = 112524, - [SMALL_STATE(2313)] = 112534, - [SMALL_STATE(2314)] = 112548, - [SMALL_STATE(2315)] = 112562, - [SMALL_STATE(2316)] = 112576, - [SMALL_STATE(2317)] = 112590, - [SMALL_STATE(2318)] = 112604, - [SMALL_STATE(2319)] = 112618, - [SMALL_STATE(2320)] = 112632, - [SMALL_STATE(2321)] = 112646, - [SMALL_STATE(2322)] = 112660, - [SMALL_STATE(2323)] = 112674, - [SMALL_STATE(2324)] = 112688, - [SMALL_STATE(2325)] = 112702, - [SMALL_STATE(2326)] = 112716, - [SMALL_STATE(2327)] = 112730, - [SMALL_STATE(2328)] = 112744, - [SMALL_STATE(2329)] = 112758, - [SMALL_STATE(2330)] = 112772, - [SMALL_STATE(2331)] = 112786, - [SMALL_STATE(2332)] = 112800, - [SMALL_STATE(2333)] = 112814, - [SMALL_STATE(2334)] = 112828, - [SMALL_STATE(2335)] = 112842, - [SMALL_STATE(2336)] = 112856, - [SMALL_STATE(2337)] = 112870, - [SMALL_STATE(2338)] = 112884, - [SMALL_STATE(2339)] = 112898, - [SMALL_STATE(2340)] = 112908, - [SMALL_STATE(2341)] = 112922, - [SMALL_STATE(2342)] = 112936, - [SMALL_STATE(2343)] = 112950, - [SMALL_STATE(2344)] = 112964, - [SMALL_STATE(2345)] = 112978, - [SMALL_STATE(2346)] = 112992, - [SMALL_STATE(2347)] = 113006, - [SMALL_STATE(2348)] = 113020, - [SMALL_STATE(2349)] = 113034, - [SMALL_STATE(2350)] = 113044, - [SMALL_STATE(2351)] = 113058, - [SMALL_STATE(2352)] = 113068, - [SMALL_STATE(2353)] = 113082, - [SMALL_STATE(2354)] = 113096, - [SMALL_STATE(2355)] = 113110, - [SMALL_STATE(2356)] = 113124, - [SMALL_STATE(2357)] = 113138, - [SMALL_STATE(2358)] = 113152, - [SMALL_STATE(2359)] = 113166, - [SMALL_STATE(2360)] = 113178, - [SMALL_STATE(2361)] = 113192, - [SMALL_STATE(2362)] = 113206, - [SMALL_STATE(2363)] = 113220, - [SMALL_STATE(2364)] = 113234, - [SMALL_STATE(2365)] = 113248, - [SMALL_STATE(2366)] = 113262, - [SMALL_STATE(2367)] = 113276, - [SMALL_STATE(2368)] = 113286, - [SMALL_STATE(2369)] = 113300, - [SMALL_STATE(2370)] = 113314, - [SMALL_STATE(2371)] = 113328, - [SMALL_STATE(2372)] = 113340, - [SMALL_STATE(2373)] = 113354, - [SMALL_STATE(2374)] = 113368, - [SMALL_STATE(2375)] = 113382, - [SMALL_STATE(2376)] = 113396, - [SMALL_STATE(2377)] = 113410, - [SMALL_STATE(2378)] = 113424, - [SMALL_STATE(2379)] = 113438, - [SMALL_STATE(2380)] = 113452, - [SMALL_STATE(2381)] = 113466, - [SMALL_STATE(2382)] = 113480, - [SMALL_STATE(2383)] = 113494, - [SMALL_STATE(2384)] = 113508, - [SMALL_STATE(2385)] = 113522, - [SMALL_STATE(2386)] = 113534, - [SMALL_STATE(2387)] = 113548, - [SMALL_STATE(2388)] = 113562, - [SMALL_STATE(2389)] = 113576, - [SMALL_STATE(2390)] = 113590, - [SMALL_STATE(2391)] = 113604, - [SMALL_STATE(2392)] = 113618, - [SMALL_STATE(2393)] = 113632, - [SMALL_STATE(2394)] = 113646, - [SMALL_STATE(2395)] = 113660, - [SMALL_STATE(2396)] = 113674, - [SMALL_STATE(2397)] = 113686, - [SMALL_STATE(2398)] = 113700, - [SMALL_STATE(2399)] = 113714, - [SMALL_STATE(2400)] = 113728, - [SMALL_STATE(2401)] = 113742, - [SMALL_STATE(2402)] = 113756, - [SMALL_STATE(2403)] = 113770, - [SMALL_STATE(2404)] = 113784, - [SMALL_STATE(2405)] = 113798, - [SMALL_STATE(2406)] = 113808, - [SMALL_STATE(2407)] = 113822, - [SMALL_STATE(2408)] = 113836, - [SMALL_STATE(2409)] = 113850, - [SMALL_STATE(2410)] = 113864, - [SMALL_STATE(2411)] = 113878, - [SMALL_STATE(2412)] = 113890, - [SMALL_STATE(2413)] = 113902, - [SMALL_STATE(2414)] = 113916, - [SMALL_STATE(2415)] = 113930, - [SMALL_STATE(2416)] = 113944, - [SMALL_STATE(2417)] = 113958, - [SMALL_STATE(2418)] = 113970, - [SMALL_STATE(2419)] = 113984, - [SMALL_STATE(2420)] = 113998, - [SMALL_STATE(2421)] = 114012, - [SMALL_STATE(2422)] = 114026, - [SMALL_STATE(2423)] = 114040, - [SMALL_STATE(2424)] = 114054, - [SMALL_STATE(2425)] = 114068, - [SMALL_STATE(2426)] = 114082, - [SMALL_STATE(2427)] = 114094, - [SMALL_STATE(2428)] = 114108, - [SMALL_STATE(2429)] = 114122, - [SMALL_STATE(2430)] = 114136, - [SMALL_STATE(2431)] = 114150, - [SMALL_STATE(2432)] = 114164, - [SMALL_STATE(2433)] = 114174, - [SMALL_STATE(2434)] = 114188, - [SMALL_STATE(2435)] = 114202, - [SMALL_STATE(2436)] = 114216, - [SMALL_STATE(2437)] = 114230, - [SMALL_STATE(2438)] = 114244, - [SMALL_STATE(2439)] = 114258, - [SMALL_STATE(2440)] = 114272, - [SMALL_STATE(2441)] = 114286, - [SMALL_STATE(2442)] = 114300, - [SMALL_STATE(2443)] = 114314, - [SMALL_STATE(2444)] = 114328, - [SMALL_STATE(2445)] = 114340, - [SMALL_STATE(2446)] = 114350, - [SMALL_STATE(2447)] = 114364, - [SMALL_STATE(2448)] = 114378, - [SMALL_STATE(2449)] = 114392, - [SMALL_STATE(2450)] = 114406, - [SMALL_STATE(2451)] = 114420, - [SMALL_STATE(2452)] = 114434, - [SMALL_STATE(2453)] = 114448, - [SMALL_STATE(2454)] = 114462, - [SMALL_STATE(2455)] = 114476, - [SMALL_STATE(2456)] = 114490, - [SMALL_STATE(2457)] = 114504, - [SMALL_STATE(2458)] = 114518, - [SMALL_STATE(2459)] = 114530, - [SMALL_STATE(2460)] = 114544, - [SMALL_STATE(2461)] = 114558, - [SMALL_STATE(2462)] = 114572, - [SMALL_STATE(2463)] = 114586, - [SMALL_STATE(2464)] = 114600, - [SMALL_STATE(2465)] = 114614, - [SMALL_STATE(2466)] = 114628, - [SMALL_STATE(2467)] = 114642, - [SMALL_STATE(2468)] = 114656, - [SMALL_STATE(2469)] = 114670, - [SMALL_STATE(2470)] = 114684, - [SMALL_STATE(2471)] = 114698, - [SMALL_STATE(2472)] = 114712, - [SMALL_STATE(2473)] = 114726, - [SMALL_STATE(2474)] = 114740, - [SMALL_STATE(2475)] = 114754, - [SMALL_STATE(2476)] = 114768, - [SMALL_STATE(2477)] = 114780, - [SMALL_STATE(2478)] = 114794, - [SMALL_STATE(2479)] = 114808, - [SMALL_STATE(2480)] = 114822, - [SMALL_STATE(2481)] = 114836, - [SMALL_STATE(2482)] = 114850, - [SMALL_STATE(2483)] = 114864, - [SMALL_STATE(2484)] = 114878, - [SMALL_STATE(2485)] = 114892, - [SMALL_STATE(2486)] = 114906, - [SMALL_STATE(2487)] = 114920, - [SMALL_STATE(2488)] = 114932, - [SMALL_STATE(2489)] = 114944, - [SMALL_STATE(2490)] = 114956, - [SMALL_STATE(2491)] = 114968, - [SMALL_STATE(2492)] = 114980, - [SMALL_STATE(2493)] = 114992, - [SMALL_STATE(2494)] = 115006, - [SMALL_STATE(2495)] = 115020, - [SMALL_STATE(2496)] = 115034, - [SMALL_STATE(2497)] = 115048, - [SMALL_STATE(2498)] = 115062, - [SMALL_STATE(2499)] = 115076, - [SMALL_STATE(2500)] = 115087, - [SMALL_STATE(2501)] = 115098, - [SMALL_STATE(2502)] = 115109, - [SMALL_STATE(2503)] = 115118, - [SMALL_STATE(2504)] = 115127, - [SMALL_STATE(2505)] = 115138, - [SMALL_STATE(2506)] = 115147, - [SMALL_STATE(2507)] = 115156, - [SMALL_STATE(2508)] = 115165, - [SMALL_STATE(2509)] = 115174, - [SMALL_STATE(2510)] = 115183, - [SMALL_STATE(2511)] = 115194, - [SMALL_STATE(2512)] = 115203, - [SMALL_STATE(2513)] = 115214, - [SMALL_STATE(2514)] = 115223, - [SMALL_STATE(2515)] = 115232, - [SMALL_STATE(2516)] = 115241, - [SMALL_STATE(2517)] = 115250, - [SMALL_STATE(2518)] = 115259, - [SMALL_STATE(2519)] = 115268, - [SMALL_STATE(2520)] = 115277, - [SMALL_STATE(2521)] = 115288, - [SMALL_STATE(2522)] = 115297, - [SMALL_STATE(2523)] = 115308, - [SMALL_STATE(2524)] = 115317, - [SMALL_STATE(2525)] = 115326, - [SMALL_STATE(2526)] = 115335, - [SMALL_STATE(2527)] = 115344, - [SMALL_STATE(2528)] = 115353, - [SMALL_STATE(2529)] = 115362, - [SMALL_STATE(2530)] = 115371, - [SMALL_STATE(2531)] = 115380, - [SMALL_STATE(2532)] = 115389, - [SMALL_STATE(2533)] = 115398, - [SMALL_STATE(2534)] = 115407, - [SMALL_STATE(2535)] = 115416, - [SMALL_STATE(2536)] = 115425, - [SMALL_STATE(2537)] = 115436, - [SMALL_STATE(2538)] = 115445, - [SMALL_STATE(2539)] = 115454, - [SMALL_STATE(2540)] = 115465, - [SMALL_STATE(2541)] = 115474, - [SMALL_STATE(2542)] = 115483, - [SMALL_STATE(2543)] = 115492, - [SMALL_STATE(2544)] = 115501, - [SMALL_STATE(2545)] = 115512, - [SMALL_STATE(2546)] = 115521, - [SMALL_STATE(2547)] = 115532, - [SMALL_STATE(2548)] = 115541, - [SMALL_STATE(2549)] = 115550, - [SMALL_STATE(2550)] = 115559, - [SMALL_STATE(2551)] = 115570, - [SMALL_STATE(2552)] = 115581, - [SMALL_STATE(2553)] = 115590, - [SMALL_STATE(2554)] = 115599, - [SMALL_STATE(2555)] = 115608, - [SMALL_STATE(2556)] = 115617, - [SMALL_STATE(2557)] = 115626, - [SMALL_STATE(2558)] = 115635, - [SMALL_STATE(2559)] = 115644, - [SMALL_STATE(2560)] = 115653, - [SMALL_STATE(2561)] = 115662, - [SMALL_STATE(2562)] = 115673, - [SMALL_STATE(2563)] = 115682, - [SMALL_STATE(2564)] = 115693, - [SMALL_STATE(2565)] = 115704, - [SMALL_STATE(2566)] = 115715, - [SMALL_STATE(2567)] = 115724, - [SMALL_STATE(2568)] = 115735, - [SMALL_STATE(2569)] = 115746, - [SMALL_STATE(2570)] = 115755, - [SMALL_STATE(2571)] = 115764, - [SMALL_STATE(2572)] = 115773, - [SMALL_STATE(2573)] = 115782, - [SMALL_STATE(2574)] = 115791, - [SMALL_STATE(2575)] = 115800, - [SMALL_STATE(2576)] = 115809, - [SMALL_STATE(2577)] = 115818, - [SMALL_STATE(2578)] = 115827, - [SMALL_STATE(2579)] = 115836, - [SMALL_STATE(2580)] = 115845, - [SMALL_STATE(2581)] = 115854, - [SMALL_STATE(2582)] = 115863, - [SMALL_STATE(2583)] = 115872, - [SMALL_STATE(2584)] = 115881, - [SMALL_STATE(2585)] = 115890, - [SMALL_STATE(2586)] = 115899, - [SMALL_STATE(2587)] = 115908, - [SMALL_STATE(2588)] = 115917, - [SMALL_STATE(2589)] = 115928, - [SMALL_STATE(2590)] = 115937, - [SMALL_STATE(2591)] = 115948, - [SMALL_STATE(2592)] = 115959, - [SMALL_STATE(2593)] = 115968, - [SMALL_STATE(2594)] = 115977, - [SMALL_STATE(2595)] = 115988, - [SMALL_STATE(2596)] = 115997, - [SMALL_STATE(2597)] = 116006, - [SMALL_STATE(2598)] = 116017, - [SMALL_STATE(2599)] = 116026, - [SMALL_STATE(2600)] = 116035, - [SMALL_STATE(2601)] = 116043, - [SMALL_STATE(2602)] = 116051, - [SMALL_STATE(2603)] = 116059, - [SMALL_STATE(2604)] = 116067, - [SMALL_STATE(2605)] = 116075, - [SMALL_STATE(2606)] = 116083, - [SMALL_STATE(2607)] = 116091, - [SMALL_STATE(2608)] = 116099, - [SMALL_STATE(2609)] = 116107, - [SMALL_STATE(2610)] = 116115, - [SMALL_STATE(2611)] = 116123, - [SMALL_STATE(2612)] = 116131, - [SMALL_STATE(2613)] = 116139, - [SMALL_STATE(2614)] = 116147, - [SMALL_STATE(2615)] = 116155, - [SMALL_STATE(2616)] = 116163, - [SMALL_STATE(2617)] = 116171, - [SMALL_STATE(2618)] = 116179, - [SMALL_STATE(2619)] = 116187, - [SMALL_STATE(2620)] = 116195, - [SMALL_STATE(2621)] = 116203, - [SMALL_STATE(2622)] = 116211, - [SMALL_STATE(2623)] = 116219, - [SMALL_STATE(2624)] = 116227, - [SMALL_STATE(2625)] = 116235, - [SMALL_STATE(2626)] = 116243, - [SMALL_STATE(2627)] = 116251, - [SMALL_STATE(2628)] = 116259, - [SMALL_STATE(2629)] = 116267, - [SMALL_STATE(2630)] = 116275, - [SMALL_STATE(2631)] = 116283, - [SMALL_STATE(2632)] = 116291, - [SMALL_STATE(2633)] = 116299, - [SMALL_STATE(2634)] = 116307, - [SMALL_STATE(2635)] = 116315, - [SMALL_STATE(2636)] = 116323, - [SMALL_STATE(2637)] = 116331, - [SMALL_STATE(2638)] = 116339, - [SMALL_STATE(2639)] = 116347, - [SMALL_STATE(2640)] = 116355, - [SMALL_STATE(2641)] = 116363, - [SMALL_STATE(2642)] = 116371, - [SMALL_STATE(2643)] = 116379, - [SMALL_STATE(2644)] = 116387, - [SMALL_STATE(2645)] = 116395, - [SMALL_STATE(2646)] = 116403, - [SMALL_STATE(2647)] = 116411, - [SMALL_STATE(2648)] = 116419, - [SMALL_STATE(2649)] = 116427, - [SMALL_STATE(2650)] = 116435, - [SMALL_STATE(2651)] = 116443, - [SMALL_STATE(2652)] = 116451, - [SMALL_STATE(2653)] = 116459, - [SMALL_STATE(2654)] = 116467, - [SMALL_STATE(2655)] = 116475, - [SMALL_STATE(2656)] = 116483, - [SMALL_STATE(2657)] = 116491, - [SMALL_STATE(2658)] = 116499, - [SMALL_STATE(2659)] = 116507, - [SMALL_STATE(2660)] = 116515, - [SMALL_STATE(2661)] = 116523, - [SMALL_STATE(2662)] = 116531, - [SMALL_STATE(2663)] = 116539, - [SMALL_STATE(2664)] = 116547, - [SMALL_STATE(2665)] = 116555, - [SMALL_STATE(2666)] = 116563, - [SMALL_STATE(2667)] = 116571, - [SMALL_STATE(2668)] = 116579, - [SMALL_STATE(2669)] = 116587, - [SMALL_STATE(2670)] = 116595, - [SMALL_STATE(2671)] = 116603, - [SMALL_STATE(2672)] = 116611, - [SMALL_STATE(2673)] = 116619, - [SMALL_STATE(2674)] = 116627, - [SMALL_STATE(2675)] = 116635, - [SMALL_STATE(2676)] = 116643, - [SMALL_STATE(2677)] = 116651, - [SMALL_STATE(2678)] = 116659, - [SMALL_STATE(2679)] = 116667, - [SMALL_STATE(2680)] = 116675, - [SMALL_STATE(2681)] = 116683, - [SMALL_STATE(2682)] = 116691, - [SMALL_STATE(2683)] = 116699, - [SMALL_STATE(2684)] = 116707, - [SMALL_STATE(2685)] = 116715, - [SMALL_STATE(2686)] = 116723, - [SMALL_STATE(2687)] = 116731, - [SMALL_STATE(2688)] = 116739, - [SMALL_STATE(2689)] = 116747, - [SMALL_STATE(2690)] = 116755, - [SMALL_STATE(2691)] = 116763, - [SMALL_STATE(2692)] = 116771, - [SMALL_STATE(2693)] = 116779, - [SMALL_STATE(2694)] = 116787, - [SMALL_STATE(2695)] = 116795, - [SMALL_STATE(2696)] = 116803, - [SMALL_STATE(2697)] = 116811, - [SMALL_STATE(2698)] = 116819, - [SMALL_STATE(2699)] = 116827, - [SMALL_STATE(2700)] = 116835, - [SMALL_STATE(2701)] = 116843, - [SMALL_STATE(2702)] = 116851, - [SMALL_STATE(2703)] = 116859, - [SMALL_STATE(2704)] = 116867, - [SMALL_STATE(2705)] = 116875, - [SMALL_STATE(2706)] = 116883, - [SMALL_STATE(2707)] = 116891, - [SMALL_STATE(2708)] = 116899, - [SMALL_STATE(2709)] = 116907, - [SMALL_STATE(2710)] = 116915, - [SMALL_STATE(2711)] = 116923, - [SMALL_STATE(2712)] = 116931, - [SMALL_STATE(2713)] = 116939, - [SMALL_STATE(2714)] = 116947, - [SMALL_STATE(2715)] = 116955, - [SMALL_STATE(2716)] = 116963, - [SMALL_STATE(2717)] = 116971, - [SMALL_STATE(2718)] = 116979, - [SMALL_STATE(2719)] = 116987, - [SMALL_STATE(2720)] = 116995, - [SMALL_STATE(2721)] = 117003, - [SMALL_STATE(2722)] = 117011, - [SMALL_STATE(2723)] = 117019, - [SMALL_STATE(2724)] = 117027, - [SMALL_STATE(2725)] = 117035, - [SMALL_STATE(2726)] = 117043, - [SMALL_STATE(2727)] = 117051, - [SMALL_STATE(2728)] = 117059, - [SMALL_STATE(2729)] = 117067, - [SMALL_STATE(2730)] = 117075, - [SMALL_STATE(2731)] = 117083, - [SMALL_STATE(2732)] = 117091, - [SMALL_STATE(2733)] = 117099, - [SMALL_STATE(2734)] = 117107, - [SMALL_STATE(2735)] = 117115, - [SMALL_STATE(2736)] = 117123, - [SMALL_STATE(2737)] = 117131, - [SMALL_STATE(2738)] = 117139, - [SMALL_STATE(2739)] = 117147, - [SMALL_STATE(2740)] = 117155, - [SMALL_STATE(2741)] = 117163, - [SMALL_STATE(2742)] = 117171, - [SMALL_STATE(2743)] = 117179, - [SMALL_STATE(2744)] = 117187, - [SMALL_STATE(2745)] = 117195, - [SMALL_STATE(2746)] = 117203, - [SMALL_STATE(2747)] = 117211, - [SMALL_STATE(2748)] = 117219, - [SMALL_STATE(2749)] = 117227, - [SMALL_STATE(2750)] = 117235, - [SMALL_STATE(2751)] = 117243, - [SMALL_STATE(2752)] = 117251, - [SMALL_STATE(2753)] = 117259, - [SMALL_STATE(2754)] = 117267, - [SMALL_STATE(2755)] = 117275, - [SMALL_STATE(2756)] = 117283, - [SMALL_STATE(2757)] = 117291, - [SMALL_STATE(2758)] = 117299, - [SMALL_STATE(2759)] = 117307, - [SMALL_STATE(2760)] = 117315, - [SMALL_STATE(2761)] = 117323, - [SMALL_STATE(2762)] = 117331, - [SMALL_STATE(2763)] = 117339, - [SMALL_STATE(2764)] = 117347, - [SMALL_STATE(2765)] = 117355, - [SMALL_STATE(2766)] = 117363, - [SMALL_STATE(2767)] = 117371, - [SMALL_STATE(2768)] = 117379, - [SMALL_STATE(2769)] = 117387, - [SMALL_STATE(2770)] = 117395, - [SMALL_STATE(2771)] = 117403, - [SMALL_STATE(2772)] = 117411, - [SMALL_STATE(2773)] = 117419, - [SMALL_STATE(2774)] = 117427, - [SMALL_STATE(2775)] = 117435, - [SMALL_STATE(2776)] = 117443, - [SMALL_STATE(2777)] = 117451, - [SMALL_STATE(2778)] = 117459, - [SMALL_STATE(2779)] = 117467, - [SMALL_STATE(2780)] = 117475, - [SMALL_STATE(2781)] = 117483, - [SMALL_STATE(2782)] = 117491, - [SMALL_STATE(2783)] = 117499, - [SMALL_STATE(2784)] = 117507, - [SMALL_STATE(2785)] = 117515, - [SMALL_STATE(2786)] = 117523, - [SMALL_STATE(2787)] = 117531, - [SMALL_STATE(2788)] = 117539, - [SMALL_STATE(2789)] = 117547, - [SMALL_STATE(2790)] = 117555, - [SMALL_STATE(2791)] = 117563, - [SMALL_STATE(2792)] = 117571, - [SMALL_STATE(2793)] = 117579, - [SMALL_STATE(2794)] = 117587, + [SMALL_STATE(1608)] = 98575, + [SMALL_STATE(1609)] = 98622, + [SMALL_STATE(1610)] = 98669, + [SMALL_STATE(1611)] = 98694, + [SMALL_STATE(1612)] = 98718, + [SMALL_STATE(1613)] = 98764, + [SMALL_STATE(1614)] = 98794, + [SMALL_STATE(1615)] = 98822, + [SMALL_STATE(1616)] = 98868, + [SMALL_STATE(1617)] = 98900, + [SMALL_STATE(1618)] = 98946, + [SMALL_STATE(1619)] = 98992, + [SMALL_STATE(1620)] = 99038, + [SMALL_STATE(1621)] = 99062, + [SMALL_STATE(1622)] = 99090, + [SMALL_STATE(1623)] = 99122, + [SMALL_STATE(1624)] = 99146, + [SMALL_STATE(1625)] = 99192, + [SMALL_STATE(1626)] = 99216, + [SMALL_STATE(1627)] = 99262, + [SMALL_STATE(1628)] = 99308, + [SMALL_STATE(1629)] = 99354, + [SMALL_STATE(1630)] = 99400, + [SMALL_STATE(1631)] = 99446, + [SMALL_STATE(1632)] = 99489, + [SMALL_STATE(1633)] = 99529, + [SMALL_STATE(1634)] = 99569, + [SMALL_STATE(1635)] = 99609, + [SMALL_STATE(1636)] = 99649, + [SMALL_STATE(1637)] = 99675, + [SMALL_STATE(1638)] = 99712, + [SMALL_STATE(1639)] = 99749, + [SMALL_STATE(1640)] = 99790, + [SMALL_STATE(1641)] = 99809, + [SMALL_STATE(1642)] = 99832, + [SMALL_STATE(1643)] = 99873, + [SMALL_STATE(1644)] = 99892, + [SMALL_STATE(1645)] = 99913, + [SMALL_STATE(1646)] = 99940, + [SMALL_STATE(1647)] = 99965, + [SMALL_STATE(1648)] = 99984, + [SMALL_STATE(1649)] = 100025, + [SMALL_STATE(1650)] = 100052, + [SMALL_STATE(1651)] = 100093, + [SMALL_STATE(1652)] = 100134, + [SMALL_STATE(1653)] = 100175, + [SMALL_STATE(1654)] = 100202, + [SMALL_STATE(1655)] = 100243, + [SMALL_STATE(1656)] = 100284, + [SMALL_STATE(1657)] = 100322, + [SMALL_STATE(1658)] = 100360, + [SMALL_STATE(1659)] = 100398, + [SMALL_STATE(1660)] = 100428, + [SMALL_STATE(1661)] = 100458, + [SMALL_STATE(1662)] = 100496, + [SMALL_STATE(1663)] = 100534, + [SMALL_STATE(1664)] = 100564, + [SMALL_STATE(1665)] = 100594, + [SMALL_STATE(1666)] = 100632, + [SMALL_STATE(1667)] = 100670, + [SMALL_STATE(1668)] = 100700, + [SMALL_STATE(1669)] = 100738, + [SMALL_STATE(1670)] = 100768, + [SMALL_STATE(1671)] = 100806, + [SMALL_STATE(1672)] = 100836, + [SMALL_STATE(1673)] = 100866, + [SMALL_STATE(1674)] = 100904, + [SMALL_STATE(1675)] = 100942, + [SMALL_STATE(1676)] = 100972, + [SMALL_STATE(1677)] = 101002, + [SMALL_STATE(1678)] = 101032, + [SMALL_STATE(1679)] = 101070, + [SMALL_STATE(1680)] = 101100, + [SMALL_STATE(1681)] = 101130, + [SMALL_STATE(1682)] = 101160, + [SMALL_STATE(1683)] = 101190, + [SMALL_STATE(1684)] = 101228, + [SMALL_STATE(1685)] = 101266, + [SMALL_STATE(1686)] = 101296, + [SMALL_STATE(1687)] = 101326, + [SMALL_STATE(1688)] = 101364, + [SMALL_STATE(1689)] = 101394, + [SMALL_STATE(1690)] = 101432, + [SMALL_STATE(1691)] = 101470, + [SMALL_STATE(1692)] = 101508, + [SMALL_STATE(1693)] = 101546, + [SMALL_STATE(1694)] = 101584, + [SMALL_STATE(1695)] = 101622, + [SMALL_STATE(1696)] = 101660, + [SMALL_STATE(1697)] = 101692, + [SMALL_STATE(1698)] = 101730, + [SMALL_STATE(1699)] = 101760, + [SMALL_STATE(1700)] = 101798, + [SMALL_STATE(1701)] = 101836, + [SMALL_STATE(1702)] = 101855, + [SMALL_STATE(1703)] = 101872, + [SMALL_STATE(1704)] = 101889, + [SMALL_STATE(1705)] = 101912, + [SMALL_STATE(1706)] = 101941, + [SMALL_STATE(1707)] = 101958, + [SMALL_STATE(1708)] = 101979, + [SMALL_STATE(1709)] = 102004, + [SMALL_STATE(1710)] = 102027, + [SMALL_STATE(1711)] = 102048, + [SMALL_STATE(1712)] = 102073, + [SMALL_STATE(1713)] = 102090, + [SMALL_STATE(1714)] = 102109, + [SMALL_STATE(1715)] = 102134, + [SMALL_STATE(1716)] = 102159, + [SMALL_STATE(1717)] = 102188, + [SMALL_STATE(1718)] = 102213, + [SMALL_STATE(1719)] = 102238, + [SMALL_STATE(1720)] = 102255, + [SMALL_STATE(1721)] = 102272, + [SMALL_STATE(1722)] = 102297, + [SMALL_STATE(1723)] = 102322, + [SMALL_STATE(1724)] = 102342, + [SMALL_STATE(1725)] = 102366, + [SMALL_STATE(1726)] = 102388, + [SMALL_STATE(1727)] = 102408, + [SMALL_STATE(1728)] = 102424, + [SMALL_STATE(1729)] = 102442, + [SMALL_STATE(1730)] = 102466, + [SMALL_STATE(1731)] = 102486, + [SMALL_STATE(1732)] = 102510, + [SMALL_STATE(1733)] = 102534, + [SMALL_STATE(1734)] = 102556, + [SMALL_STATE(1735)] = 102576, + [SMALL_STATE(1736)] = 102592, + [SMALL_STATE(1737)] = 102610, + [SMALL_STATE(1738)] = 102634, + [SMALL_STATE(1739)] = 102658, + [SMALL_STATE(1740)] = 102688, + [SMALL_STATE(1741)] = 102708, + [SMALL_STATE(1742)] = 102732, + [SMALL_STATE(1743)] = 102756, + [SMALL_STATE(1744)] = 102780, + [SMALL_STATE(1745)] = 102796, + [SMALL_STATE(1746)] = 102820, + [SMALL_STATE(1747)] = 102844, + [SMALL_STATE(1748)] = 102862, + [SMALL_STATE(1749)] = 102886, + [SMALL_STATE(1750)] = 102908, + [SMALL_STATE(1751)] = 102930, + [SMALL_STATE(1752)] = 102946, + [SMALL_STATE(1753)] = 102962, + [SMALL_STATE(1754)] = 102986, + [SMALL_STATE(1755)] = 103004, + [SMALL_STATE(1756)] = 103022, + [SMALL_STATE(1757)] = 103038, + [SMALL_STATE(1758)] = 103060, + [SMALL_STATE(1759)] = 103080, + [SMALL_STATE(1760)] = 103101, + [SMALL_STATE(1761)] = 103124, + [SMALL_STATE(1762)] = 103143, + [SMALL_STATE(1763)] = 103164, + [SMALL_STATE(1764)] = 103187, + [SMALL_STATE(1765)] = 103208, + [SMALL_STATE(1766)] = 103237, + [SMALL_STATE(1767)] = 103254, + [SMALL_STATE(1768)] = 103283, + [SMALL_STATE(1769)] = 103304, + [SMALL_STATE(1770)] = 103333, + [SMALL_STATE(1771)] = 103356, + [SMALL_STATE(1772)] = 103377, + [SMALL_STATE(1773)] = 103394, + [SMALL_STATE(1774)] = 103413, + [SMALL_STATE(1775)] = 103430, + [SMALL_STATE(1776)] = 103453, + [SMALL_STATE(1777)] = 103480, + [SMALL_STATE(1778)] = 103505, + [SMALL_STATE(1779)] = 103534, + [SMALL_STATE(1780)] = 103561, + [SMALL_STATE(1781)] = 103584, + [SMALL_STATE(1782)] = 103611, + [SMALL_STATE(1783)] = 103632, + [SMALL_STATE(1784)] = 103661, + [SMALL_STATE(1785)] = 103686, + [SMALL_STATE(1786)] = 103715, + [SMALL_STATE(1787)] = 103738, + [SMALL_STATE(1788)] = 103767, + [SMALL_STATE(1789)] = 103792, + [SMALL_STATE(1790)] = 103815, + [SMALL_STATE(1791)] = 103842, + [SMALL_STATE(1792)] = 103865, + [SMALL_STATE(1793)] = 103894, + [SMALL_STATE(1794)] = 103921, + [SMALL_STATE(1795)] = 103946, + [SMALL_STATE(1796)] = 103967, + [SMALL_STATE(1797)] = 103996, + [SMALL_STATE(1798)] = 104013, + [SMALL_STATE(1799)] = 104034, + [SMALL_STATE(1800)] = 104061, + [SMALL_STATE(1801)] = 104082, + [SMALL_STATE(1802)] = 104099, + [SMALL_STATE(1803)] = 104120, + [SMALL_STATE(1804)] = 104141, + [SMALL_STATE(1805)] = 104166, + [SMALL_STATE(1806)] = 104189, + [SMALL_STATE(1807)] = 104210, + [SMALL_STATE(1808)] = 104237, + [SMALL_STATE(1809)] = 104254, + [SMALL_STATE(1810)] = 104273, + [SMALL_STATE(1811)] = 104294, + [SMALL_STATE(1812)] = 104315, + [SMALL_STATE(1813)] = 104344, + [SMALL_STATE(1814)] = 104359, + [SMALL_STATE(1815)] = 104380, + [SMALL_STATE(1816)] = 104401, + [SMALL_STATE(1817)] = 104426, + [SMALL_STATE(1818)] = 104453, + [SMALL_STATE(1819)] = 104476, + [SMALL_STATE(1820)] = 104494, + [SMALL_STATE(1821)] = 104514, + [SMALL_STATE(1822)] = 104536, + [SMALL_STATE(1823)] = 104562, + [SMALL_STATE(1824)] = 104580, + [SMALL_STATE(1825)] = 104602, + [SMALL_STATE(1826)] = 104624, + [SMALL_STATE(1827)] = 104640, + [SMALL_STATE(1828)] = 104666, + [SMALL_STATE(1829)] = 104684, + [SMALL_STATE(1830)] = 104706, + [SMALL_STATE(1831)] = 104728, + [SMALL_STATE(1832)] = 104746, + [SMALL_STATE(1833)] = 104772, + [SMALL_STATE(1834)] = 104798, + [SMALL_STATE(1835)] = 104824, + [SMALL_STATE(1836)] = 104844, + [SMALL_STATE(1837)] = 104866, + [SMALL_STATE(1838)] = 104890, + [SMALL_STATE(1839)] = 104916, + [SMALL_STATE(1840)] = 104942, + [SMALL_STATE(1841)] = 104960, + [SMALL_STATE(1842)] = 104980, + [SMALL_STATE(1843)] = 105002, + [SMALL_STATE(1844)] = 105024, + [SMALL_STATE(1845)] = 105050, + [SMALL_STATE(1846)] = 105076, + [SMALL_STATE(1847)] = 105102, + [SMALL_STATE(1848)] = 105120, + [SMALL_STATE(1849)] = 105144, + [SMALL_STATE(1850)] = 105170, + [SMALL_STATE(1851)] = 105196, + [SMALL_STATE(1852)] = 105214, + [SMALL_STATE(1853)] = 105232, + [SMALL_STATE(1854)] = 105258, + [SMALL_STATE(1855)] = 105284, + [SMALL_STATE(1856)] = 105310, + [SMALL_STATE(1857)] = 105326, + [SMALL_STATE(1858)] = 105348, + [SMALL_STATE(1859)] = 105366, + [SMALL_STATE(1860)] = 105392, + [SMALL_STATE(1861)] = 105416, + [SMALL_STATE(1862)] = 105442, + [SMALL_STATE(1863)] = 105460, + [SMALL_STATE(1864)] = 105486, + [SMALL_STATE(1865)] = 105508, + [SMALL_STATE(1866)] = 105532, + [SMALL_STATE(1867)] = 105554, + [SMALL_STATE(1868)] = 105572, + [SMALL_STATE(1869)] = 105590, + [SMALL_STATE(1870)] = 105607, + [SMALL_STATE(1871)] = 105622, + [SMALL_STATE(1872)] = 105643, + [SMALL_STATE(1873)] = 105664, + [SMALL_STATE(1874)] = 105685, + [SMALL_STATE(1875)] = 105706, + [SMALL_STATE(1876)] = 105723, + [SMALL_STATE(1877)] = 105736, + [SMALL_STATE(1878)] = 105757, + [SMALL_STATE(1879)] = 105778, + [SMALL_STATE(1880)] = 105795, + [SMALL_STATE(1881)] = 105810, + [SMALL_STATE(1882)] = 105827, + [SMALL_STATE(1883)] = 105850, + [SMALL_STATE(1884)] = 105871, + [SMALL_STATE(1885)] = 105892, + [SMALL_STATE(1886)] = 105905, + [SMALL_STATE(1887)] = 105922, + [SMALL_STATE(1888)] = 105935, + [SMALL_STATE(1889)] = 105956, + [SMALL_STATE(1890)] = 105973, + [SMALL_STATE(1891)] = 105988, + [SMALL_STATE(1892)] = 106009, + [SMALL_STATE(1893)] = 106026, + [SMALL_STATE(1894)] = 106043, + [SMALL_STATE(1895)] = 106060, + [SMALL_STATE(1896)] = 106073, + [SMALL_STATE(1897)] = 106086, + [SMALL_STATE(1898)] = 106103, + [SMALL_STATE(1899)] = 106124, + [SMALL_STATE(1900)] = 106145, + [SMALL_STATE(1901)] = 106162, + [SMALL_STATE(1902)] = 106175, + [SMALL_STATE(1903)] = 106196, + [SMALL_STATE(1904)] = 106211, + [SMALL_STATE(1905)] = 106232, + [SMALL_STATE(1906)] = 106245, + [SMALL_STATE(1907)] = 106266, + [SMALL_STATE(1908)] = 106287, + [SMALL_STATE(1909)] = 106308, + [SMALL_STATE(1910)] = 106325, + [SMALL_STATE(1911)] = 106346, + [SMALL_STATE(1912)] = 106367, + [SMALL_STATE(1913)] = 106390, + [SMALL_STATE(1914)] = 106407, + [SMALL_STATE(1915)] = 106428, + [SMALL_STATE(1916)] = 106441, + [SMALL_STATE(1917)] = 106454, + [SMALL_STATE(1918)] = 106471, + [SMALL_STATE(1919)] = 106484, + [SMALL_STATE(1920)] = 106501, + [SMALL_STATE(1921)] = 106518, + [SMALL_STATE(1922)] = 106539, + [SMALL_STATE(1923)] = 106552, + [SMALL_STATE(1924)] = 106575, + [SMALL_STATE(1925)] = 106596, + [SMALL_STATE(1926)] = 106613, + [SMALL_STATE(1927)] = 106630, + [SMALL_STATE(1928)] = 106651, + [SMALL_STATE(1929)] = 106664, + [SMALL_STATE(1930)] = 106683, + [SMALL_STATE(1931)] = 106696, + [SMALL_STATE(1932)] = 106719, + [SMALL_STATE(1933)] = 106736, + [SMALL_STATE(1934)] = 106753, + [SMALL_STATE(1935)] = 106768, + [SMALL_STATE(1936)] = 106785, + [SMALL_STATE(1937)] = 106800, + [SMALL_STATE(1938)] = 106817, + [SMALL_STATE(1939)] = 106838, + [SMALL_STATE(1940)] = 106851, + [SMALL_STATE(1941)] = 106872, + [SMALL_STATE(1942)] = 106889, + [SMALL_STATE(1943)] = 106910, + [SMALL_STATE(1944)] = 106933, + [SMALL_STATE(1945)] = 106950, + [SMALL_STATE(1946)] = 106973, + [SMALL_STATE(1947)] = 106986, + [SMALL_STATE(1948)] = 107003, + [SMALL_STATE(1949)] = 107024, + [SMALL_STATE(1950)] = 107041, + [SMALL_STATE(1951)] = 107056, + [SMALL_STATE(1952)] = 107073, + [SMALL_STATE(1953)] = 107090, + [SMALL_STATE(1954)] = 107109, + [SMALL_STATE(1955)] = 107126, + [SMALL_STATE(1956)] = 107147, + [SMALL_STATE(1957)] = 107160, + [SMALL_STATE(1958)] = 107181, + [SMALL_STATE(1959)] = 107198, + [SMALL_STATE(1960)] = 107211, + [SMALL_STATE(1961)] = 107228, + [SMALL_STATE(1962)] = 107249, + [SMALL_STATE(1963)] = 107266, + [SMALL_STATE(1964)] = 107279, + [SMALL_STATE(1965)] = 107292, + [SMALL_STATE(1966)] = 107309, + [SMALL_STATE(1967)] = 107326, + [SMALL_STATE(1968)] = 107343, + [SMALL_STATE(1969)] = 107356, + [SMALL_STATE(1970)] = 107369, + [SMALL_STATE(1971)] = 107392, + [SMALL_STATE(1972)] = 107413, + [SMALL_STATE(1973)] = 107434, + [SMALL_STATE(1974)] = 107449, + [SMALL_STATE(1975)] = 107462, + [SMALL_STATE(1976)] = 107479, + [SMALL_STATE(1977)] = 107499, + [SMALL_STATE(1978)] = 107519, + [SMALL_STATE(1979)] = 107537, + [SMALL_STATE(1980)] = 107557, + [SMALL_STATE(1981)] = 107577, + [SMALL_STATE(1982)] = 107597, + [SMALL_STATE(1983)] = 107609, + [SMALL_STATE(1984)] = 107625, + [SMALL_STATE(1985)] = 107641, + [SMALL_STATE(1986)] = 107653, + [SMALL_STATE(1987)] = 107673, + [SMALL_STATE(1988)] = 107685, + [SMALL_STATE(1989)] = 107697, + [SMALL_STATE(1990)] = 107709, + [SMALL_STATE(1991)] = 107727, + [SMALL_STATE(1992)] = 107747, + [SMALL_STATE(1993)] = 107759, + [SMALL_STATE(1994)] = 107779, + [SMALL_STATE(1995)] = 107797, + [SMALL_STATE(1996)] = 107815, + [SMALL_STATE(1997)] = 107827, + [SMALL_STATE(1998)] = 107839, + [SMALL_STATE(1999)] = 107859, + [SMALL_STATE(2000)] = 107875, + [SMALL_STATE(2001)] = 107895, + [SMALL_STATE(2002)] = 107907, + [SMALL_STATE(2003)] = 107925, + [SMALL_STATE(2004)] = 107943, + [SMALL_STATE(2005)] = 107955, + [SMALL_STATE(2006)] = 107967, + [SMALL_STATE(2007)] = 107985, + [SMALL_STATE(2008)] = 107997, + [SMALL_STATE(2009)] = 108009, + [SMALL_STATE(2010)] = 108027, + [SMALL_STATE(2011)] = 108045, + [SMALL_STATE(2012)] = 108057, + [SMALL_STATE(2013)] = 108077, + [SMALL_STATE(2014)] = 108089, + [SMALL_STATE(2015)] = 108101, + [SMALL_STATE(2016)] = 108113, + [SMALL_STATE(2017)] = 108127, + [SMALL_STATE(2018)] = 108143, + [SMALL_STATE(2019)] = 108155, + [SMALL_STATE(2020)] = 108175, + [SMALL_STATE(2021)] = 108187, + [SMALL_STATE(2022)] = 108199, + [SMALL_STATE(2023)] = 108211, + [SMALL_STATE(2024)] = 108227, + [SMALL_STATE(2025)] = 108239, + [SMALL_STATE(2026)] = 108259, + [SMALL_STATE(2027)] = 108271, + [SMALL_STATE(2028)] = 108289, + [SMALL_STATE(2029)] = 108301, + [SMALL_STATE(2030)] = 108313, + [SMALL_STATE(2031)] = 108329, + [SMALL_STATE(2032)] = 108343, + [SMALL_STATE(2033)] = 108359, + [SMALL_STATE(2034)] = 108371, + [SMALL_STATE(2035)] = 108383, + [SMALL_STATE(2036)] = 108403, + [SMALL_STATE(2037)] = 108419, + [SMALL_STATE(2038)] = 108437, + [SMALL_STATE(2039)] = 108457, + [SMALL_STATE(2040)] = 108471, + [SMALL_STATE(2041)] = 108487, + [SMALL_STATE(2042)] = 108507, + [SMALL_STATE(2043)] = 108519, + [SMALL_STATE(2044)] = 108531, + [SMALL_STATE(2045)] = 108543, + [SMALL_STATE(2046)] = 108563, + [SMALL_STATE(2047)] = 108583, + [SMALL_STATE(2048)] = 108595, + [SMALL_STATE(2049)] = 108607, + [SMALL_STATE(2050)] = 108619, + [SMALL_STATE(2051)] = 108631, + [SMALL_STATE(2052)] = 108643, + [SMALL_STATE(2053)] = 108655, + [SMALL_STATE(2054)] = 108667, + [SMALL_STATE(2055)] = 108679, + [SMALL_STATE(2056)] = 108691, + [SMALL_STATE(2057)] = 108709, + [SMALL_STATE(2058)] = 108729, + [SMALL_STATE(2059)] = 108741, + [SMALL_STATE(2060)] = 108761, + [SMALL_STATE(2061)] = 108773, + [SMALL_STATE(2062)] = 108793, + [SMALL_STATE(2063)] = 108813, + [SMALL_STATE(2064)] = 108825, + [SMALL_STATE(2065)] = 108841, + [SMALL_STATE(2066)] = 108853, + [SMALL_STATE(2067)] = 108865, + [SMALL_STATE(2068)] = 108883, + [SMALL_STATE(2069)] = 108895, + [SMALL_STATE(2070)] = 108907, + [SMALL_STATE(2071)] = 108919, + [SMALL_STATE(2072)] = 108939, + [SMALL_STATE(2073)] = 108951, + [SMALL_STATE(2074)] = 108963, + [SMALL_STATE(2075)] = 108975, + [SMALL_STATE(2076)] = 108995, + [SMALL_STATE(2077)] = 109015, + [SMALL_STATE(2078)] = 109035, + [SMALL_STATE(2079)] = 109055, + [SMALL_STATE(2080)] = 109075, + [SMALL_STATE(2081)] = 109091, + [SMALL_STATE(2082)] = 109111, + [SMALL_STATE(2083)] = 109131, + [SMALL_STATE(2084)] = 109151, + [SMALL_STATE(2085)] = 109165, + [SMALL_STATE(2086)] = 109181, + [SMALL_STATE(2087)] = 109195, + [SMALL_STATE(2088)] = 109211, + [SMALL_STATE(2089)] = 109223, + [SMALL_STATE(2090)] = 109235, + [SMALL_STATE(2091)] = 109251, + [SMALL_STATE(2092)] = 109267, + [SMALL_STATE(2093)] = 109281, + [SMALL_STATE(2094)] = 109293, + [SMALL_STATE(2095)] = 109304, + [SMALL_STATE(2096)] = 109317, + [SMALL_STATE(2097)] = 109328, + [SMALL_STATE(2098)] = 109339, + [SMALL_STATE(2099)] = 109350, + [SMALL_STATE(2100)] = 109363, + [SMALL_STATE(2101)] = 109374, + [SMALL_STATE(2102)] = 109385, + [SMALL_STATE(2103)] = 109400, + [SMALL_STATE(2104)] = 109415, + [SMALL_STATE(2105)] = 109430, + [SMALL_STATE(2106)] = 109447, + [SMALL_STATE(2107)] = 109464, + [SMALL_STATE(2108)] = 109475, + [SMALL_STATE(2109)] = 109490, + [SMALL_STATE(2110)] = 109507, + [SMALL_STATE(2111)] = 109522, + [SMALL_STATE(2112)] = 109533, + [SMALL_STATE(2113)] = 109550, + [SMALL_STATE(2114)] = 109561, + [SMALL_STATE(2115)] = 109578, + [SMALL_STATE(2116)] = 109595, + [SMALL_STATE(2117)] = 109610, + [SMALL_STATE(2118)] = 109621, + [SMALL_STATE(2119)] = 109636, + [SMALL_STATE(2120)] = 109651, + [SMALL_STATE(2121)] = 109662, + [SMALL_STATE(2122)] = 109679, + [SMALL_STATE(2123)] = 109696, + [SMALL_STATE(2124)] = 109713, + [SMALL_STATE(2125)] = 109730, + [SMALL_STATE(2126)] = 109747, + [SMALL_STATE(2127)] = 109758, + [SMALL_STATE(2128)] = 109775, + [SMALL_STATE(2129)] = 109788, + [SMALL_STATE(2130)] = 109805, + [SMALL_STATE(2131)] = 109816, + [SMALL_STATE(2132)] = 109831, + [SMALL_STATE(2133)] = 109846, + [SMALL_STATE(2134)] = 109857, + [SMALL_STATE(2135)] = 109874, + [SMALL_STATE(2136)] = 109885, + [SMALL_STATE(2137)] = 109900, + [SMALL_STATE(2138)] = 109915, + [SMALL_STATE(2139)] = 109926, + [SMALL_STATE(2140)] = 109937, + [SMALL_STATE(2141)] = 109954, + [SMALL_STATE(2142)] = 109971, + [SMALL_STATE(2143)] = 109982, + [SMALL_STATE(2144)] = 109993, + [SMALL_STATE(2145)] = 110004, + [SMALL_STATE(2146)] = 110015, + [SMALL_STATE(2147)] = 110026, + [SMALL_STATE(2148)] = 110041, + [SMALL_STATE(2149)] = 110056, + [SMALL_STATE(2150)] = 110073, + [SMALL_STATE(2151)] = 110090, + [SMALL_STATE(2152)] = 110101, + [SMALL_STATE(2153)] = 110118, + [SMALL_STATE(2154)] = 110135, + [SMALL_STATE(2155)] = 110152, + [SMALL_STATE(2156)] = 110169, + [SMALL_STATE(2157)] = 110184, + [SMALL_STATE(2158)] = 110195, + [SMALL_STATE(2159)] = 110206, + [SMALL_STATE(2160)] = 110217, + [SMALL_STATE(2161)] = 110228, + [SMALL_STATE(2162)] = 110239, + [SMALL_STATE(2163)] = 110250, + [SMALL_STATE(2164)] = 110267, + [SMALL_STATE(2165)] = 110284, + [SMALL_STATE(2166)] = 110301, + [SMALL_STATE(2167)] = 110318, + [SMALL_STATE(2168)] = 110329, + [SMALL_STATE(2169)] = 110340, + [SMALL_STATE(2170)] = 110351, + [SMALL_STATE(2171)] = 110366, + [SMALL_STATE(2172)] = 110377, + [SMALL_STATE(2173)] = 110392, + [SMALL_STATE(2174)] = 110409, + [SMALL_STATE(2175)] = 110420, + [SMALL_STATE(2176)] = 110431, + [SMALL_STATE(2177)] = 110442, + [SMALL_STATE(2178)] = 110459, + [SMALL_STATE(2179)] = 110476, + [SMALL_STATE(2180)] = 110487, + [SMALL_STATE(2181)] = 110498, + [SMALL_STATE(2182)] = 110509, + [SMALL_STATE(2183)] = 110520, + [SMALL_STATE(2184)] = 110531, + [SMALL_STATE(2185)] = 110542, + [SMALL_STATE(2186)] = 110553, + [SMALL_STATE(2187)] = 110568, + [SMALL_STATE(2188)] = 110579, + [SMALL_STATE(2189)] = 110590, + [SMALL_STATE(2190)] = 110601, + [SMALL_STATE(2191)] = 110612, + [SMALL_STATE(2192)] = 110623, + [SMALL_STATE(2193)] = 110634, + [SMALL_STATE(2194)] = 110645, + [SMALL_STATE(2195)] = 110656, + [SMALL_STATE(2196)] = 110667, + [SMALL_STATE(2197)] = 110678, + [SMALL_STATE(2198)] = 110689, + [SMALL_STATE(2199)] = 110700, + [SMALL_STATE(2200)] = 110711, + [SMALL_STATE(2201)] = 110728, + [SMALL_STATE(2202)] = 110739, + [SMALL_STATE(2203)] = 110754, + [SMALL_STATE(2204)] = 110769, + [SMALL_STATE(2205)] = 110786, + [SMALL_STATE(2206)] = 110803, + [SMALL_STATE(2207)] = 110814, + [SMALL_STATE(2208)] = 110825, + [SMALL_STATE(2209)] = 110836, + [SMALL_STATE(2210)] = 110847, + [SMALL_STATE(2211)] = 110858, + [SMALL_STATE(2212)] = 110869, + [SMALL_STATE(2213)] = 110880, + [SMALL_STATE(2214)] = 110891, + [SMALL_STATE(2215)] = 110902, + [SMALL_STATE(2216)] = 110913, + [SMALL_STATE(2217)] = 110924, + [SMALL_STATE(2218)] = 110935, + [SMALL_STATE(2219)] = 110946, + [SMALL_STATE(2220)] = 110957, + [SMALL_STATE(2221)] = 110968, + [SMALL_STATE(2222)] = 110979, + [SMALL_STATE(2223)] = 110990, + [SMALL_STATE(2224)] = 111002, + [SMALL_STATE(2225)] = 111016, + [SMALL_STATE(2226)] = 111030, + [SMALL_STATE(2227)] = 111044, + [SMALL_STATE(2228)] = 111058, + [SMALL_STATE(2229)] = 111072, + [SMALL_STATE(2230)] = 111086, + [SMALL_STATE(2231)] = 111096, + [SMALL_STATE(2232)] = 111110, + [SMALL_STATE(2233)] = 111124, + [SMALL_STATE(2234)] = 111138, + [SMALL_STATE(2235)] = 111152, + [SMALL_STATE(2236)] = 111166, + [SMALL_STATE(2237)] = 111180, + [SMALL_STATE(2238)] = 111192, + [SMALL_STATE(2239)] = 111206, + [SMALL_STATE(2240)] = 111220, + [SMALL_STATE(2241)] = 111234, + [SMALL_STATE(2242)] = 111248, + [SMALL_STATE(2243)] = 111262, + [SMALL_STATE(2244)] = 111276, + [SMALL_STATE(2245)] = 111288, + [SMALL_STATE(2246)] = 111302, + [SMALL_STATE(2247)] = 111316, + [SMALL_STATE(2248)] = 111330, + [SMALL_STATE(2249)] = 111344, + [SMALL_STATE(2250)] = 111358, + [SMALL_STATE(2251)] = 111372, + [SMALL_STATE(2252)] = 111386, + [SMALL_STATE(2253)] = 111400, + [SMALL_STATE(2254)] = 111414, + [SMALL_STATE(2255)] = 111428, + [SMALL_STATE(2256)] = 111442, + [SMALL_STATE(2257)] = 111456, + [SMALL_STATE(2258)] = 111470, + [SMALL_STATE(2259)] = 111484, + [SMALL_STATE(2260)] = 111498, + [SMALL_STATE(2261)] = 111512, + [SMALL_STATE(2262)] = 111526, + [SMALL_STATE(2263)] = 111540, + [SMALL_STATE(2264)] = 111554, + [SMALL_STATE(2265)] = 111566, + [SMALL_STATE(2266)] = 111576, + [SMALL_STATE(2267)] = 111590, + [SMALL_STATE(2268)] = 111604, + [SMALL_STATE(2269)] = 111618, + [SMALL_STATE(2270)] = 111632, + [SMALL_STATE(2271)] = 111646, + [SMALL_STATE(2272)] = 111658, + [SMALL_STATE(2273)] = 111672, + [SMALL_STATE(2274)] = 111686, + [SMALL_STATE(2275)] = 111700, + [SMALL_STATE(2276)] = 111714, + [SMALL_STATE(2277)] = 111728, + [SMALL_STATE(2278)] = 111740, + [SMALL_STATE(2279)] = 111754, + [SMALL_STATE(2280)] = 111768, + [SMALL_STATE(2281)] = 111782, + [SMALL_STATE(2282)] = 111796, + [SMALL_STATE(2283)] = 111810, + [SMALL_STATE(2284)] = 111824, + [SMALL_STATE(2285)] = 111836, + [SMALL_STATE(2286)] = 111850, + [SMALL_STATE(2287)] = 111864, + [SMALL_STATE(2288)] = 111878, + [SMALL_STATE(2289)] = 111890, + [SMALL_STATE(2290)] = 111902, + [SMALL_STATE(2291)] = 111916, + [SMALL_STATE(2292)] = 111930, + [SMALL_STATE(2293)] = 111944, + [SMALL_STATE(2294)] = 111958, + [SMALL_STATE(2295)] = 111972, + [SMALL_STATE(2296)] = 111986, + [SMALL_STATE(2297)] = 112000, + [SMALL_STATE(2298)] = 112014, + [SMALL_STATE(2299)] = 112028, + [SMALL_STATE(2300)] = 112042, + [SMALL_STATE(2301)] = 112056, + [SMALL_STATE(2302)] = 112066, + [SMALL_STATE(2303)] = 112080, + [SMALL_STATE(2304)] = 112094, + [SMALL_STATE(2305)] = 112108, + [SMALL_STATE(2306)] = 112120, + [SMALL_STATE(2307)] = 112134, + [SMALL_STATE(2308)] = 112148, + [SMALL_STATE(2309)] = 112162, + [SMALL_STATE(2310)] = 112176, + [SMALL_STATE(2311)] = 112190, + [SMALL_STATE(2312)] = 112204, + [SMALL_STATE(2313)] = 112218, + [SMALL_STATE(2314)] = 112232, + [SMALL_STATE(2315)] = 112246, + [SMALL_STATE(2316)] = 112260, + [SMALL_STATE(2317)] = 112274, + [SMALL_STATE(2318)] = 112284, + [SMALL_STATE(2319)] = 112298, + [SMALL_STATE(2320)] = 112308, + [SMALL_STATE(2321)] = 112322, + [SMALL_STATE(2322)] = 112336, + [SMALL_STATE(2323)] = 112350, + [SMALL_STATE(2324)] = 112364, + [SMALL_STATE(2325)] = 112378, + [SMALL_STATE(2326)] = 112392, + [SMALL_STATE(2327)] = 112406, + [SMALL_STATE(2328)] = 112420, + [SMALL_STATE(2329)] = 112434, + [SMALL_STATE(2330)] = 112448, + [SMALL_STATE(2331)] = 112462, + [SMALL_STATE(2332)] = 112476, + [SMALL_STATE(2333)] = 112490, + [SMALL_STATE(2334)] = 112504, + [SMALL_STATE(2335)] = 112518, + [SMALL_STATE(2336)] = 112532, + [SMALL_STATE(2337)] = 112544, + [SMALL_STATE(2338)] = 112558, + [SMALL_STATE(2339)] = 112572, + [SMALL_STATE(2340)] = 112584, + [SMALL_STATE(2341)] = 112598, + [SMALL_STATE(2342)] = 112612, + [SMALL_STATE(2343)] = 112626, + [SMALL_STATE(2344)] = 112640, + [SMALL_STATE(2345)] = 112654, + [SMALL_STATE(2346)] = 112666, + [SMALL_STATE(2347)] = 112680, + [SMALL_STATE(2348)] = 112694, + [SMALL_STATE(2349)] = 112708, + [SMALL_STATE(2350)] = 112722, + [SMALL_STATE(2351)] = 112736, + [SMALL_STATE(2352)] = 112750, + [SMALL_STATE(2353)] = 112764, + [SMALL_STATE(2354)] = 112778, + [SMALL_STATE(2355)] = 112792, + [SMALL_STATE(2356)] = 112806, + [SMALL_STATE(2357)] = 112820, + [SMALL_STATE(2358)] = 112834, + [SMALL_STATE(2359)] = 112844, + [SMALL_STATE(2360)] = 112858, + [SMALL_STATE(2361)] = 112872, + [SMALL_STATE(2362)] = 112886, + [SMALL_STATE(2363)] = 112898, + [SMALL_STATE(2364)] = 112912, + [SMALL_STATE(2365)] = 112926, + [SMALL_STATE(2366)] = 112940, + [SMALL_STATE(2367)] = 112954, + [SMALL_STATE(2368)] = 112968, + [SMALL_STATE(2369)] = 112982, + [SMALL_STATE(2370)] = 112996, + [SMALL_STATE(2371)] = 113010, + [SMALL_STATE(2372)] = 113024, + [SMALL_STATE(2373)] = 113038, + [SMALL_STATE(2374)] = 113050, + [SMALL_STATE(2375)] = 113064, + [SMALL_STATE(2376)] = 113078, + [SMALL_STATE(2377)] = 113092, + [SMALL_STATE(2378)] = 113106, + [SMALL_STATE(2379)] = 113120, + [SMALL_STATE(2380)] = 113134, + [SMALL_STATE(2381)] = 113148, + [SMALL_STATE(2382)] = 113162, + [SMALL_STATE(2383)] = 113176, + [SMALL_STATE(2384)] = 113190, + [SMALL_STATE(2385)] = 113204, + [SMALL_STATE(2386)] = 113218, + [SMALL_STATE(2387)] = 113230, + [SMALL_STATE(2388)] = 113244, + [SMALL_STATE(2389)] = 113258, + [SMALL_STATE(2390)] = 113272, + [SMALL_STATE(2391)] = 113286, + [SMALL_STATE(2392)] = 113298, + [SMALL_STATE(2393)] = 113310, + [SMALL_STATE(2394)] = 113324, + [SMALL_STATE(2395)] = 113338, + [SMALL_STATE(2396)] = 113352, + [SMALL_STATE(2397)] = 113366, + [SMALL_STATE(2398)] = 113380, + [SMALL_STATE(2399)] = 113394, + [SMALL_STATE(2400)] = 113408, + [SMALL_STATE(2401)] = 113422, + [SMALL_STATE(2402)] = 113436, + [SMALL_STATE(2403)] = 113450, + [SMALL_STATE(2404)] = 113460, + [SMALL_STATE(2405)] = 113474, + [SMALL_STATE(2406)] = 113488, + [SMALL_STATE(2407)] = 113502, + [SMALL_STATE(2408)] = 113516, + [SMALL_STATE(2409)] = 113530, + [SMALL_STATE(2410)] = 113544, + [SMALL_STATE(2411)] = 113558, + [SMALL_STATE(2412)] = 113572, + [SMALL_STATE(2413)] = 113586, + [SMALL_STATE(2414)] = 113600, + [SMALL_STATE(2415)] = 113612, + [SMALL_STATE(2416)] = 113626, + [SMALL_STATE(2417)] = 113640, + [SMALL_STATE(2418)] = 113654, + [SMALL_STATE(2419)] = 113668, + [SMALL_STATE(2420)] = 113682, + [SMALL_STATE(2421)] = 113696, + [SMALL_STATE(2422)] = 113710, + [SMALL_STATE(2423)] = 113724, + [SMALL_STATE(2424)] = 113738, + [SMALL_STATE(2425)] = 113752, + [SMALL_STATE(2426)] = 113762, + [SMALL_STATE(2427)] = 113774, + [SMALL_STATE(2428)] = 113788, + [SMALL_STATE(2429)] = 113802, + [SMALL_STATE(2430)] = 113816, + [SMALL_STATE(2431)] = 113830, + [SMALL_STATE(2432)] = 113844, + [SMALL_STATE(2433)] = 113858, + [SMALL_STATE(2434)] = 113872, + [SMALL_STATE(2435)] = 113886, + [SMALL_STATE(2436)] = 113900, + [SMALL_STATE(2437)] = 113910, + [SMALL_STATE(2438)] = 113924, + [SMALL_STATE(2439)] = 113938, + [SMALL_STATE(2440)] = 113952, + [SMALL_STATE(2441)] = 113966, + [SMALL_STATE(2442)] = 113980, + [SMALL_STATE(2443)] = 113992, + [SMALL_STATE(2444)] = 114002, + [SMALL_STATE(2445)] = 114016, + [SMALL_STATE(2446)] = 114030, + [SMALL_STATE(2447)] = 114044, + [SMALL_STATE(2448)] = 114058, + [SMALL_STATE(2449)] = 114072, + [SMALL_STATE(2450)] = 114086, + [SMALL_STATE(2451)] = 114100, + [SMALL_STATE(2452)] = 114114, + [SMALL_STATE(2453)] = 114128, + [SMALL_STATE(2454)] = 114142, + [SMALL_STATE(2455)] = 114152, + [SMALL_STATE(2456)] = 114162, + [SMALL_STATE(2457)] = 114174, + [SMALL_STATE(2458)] = 114188, + [SMALL_STATE(2459)] = 114202, + [SMALL_STATE(2460)] = 114216, + [SMALL_STATE(2461)] = 114230, + [SMALL_STATE(2462)] = 114244, + [SMALL_STATE(2463)] = 114258, + [SMALL_STATE(2464)] = 114272, + [SMALL_STATE(2465)] = 114282, + [SMALL_STATE(2466)] = 114296, + [SMALL_STATE(2467)] = 114308, + [SMALL_STATE(2468)] = 114322, + [SMALL_STATE(2469)] = 114336, + [SMALL_STATE(2470)] = 114350, + [SMALL_STATE(2471)] = 114364, + [SMALL_STATE(2472)] = 114374, + [SMALL_STATE(2473)] = 114388, + [SMALL_STATE(2474)] = 114400, + [SMALL_STATE(2475)] = 114414, + [SMALL_STATE(2476)] = 114428, + [SMALL_STATE(2477)] = 114442, + [SMALL_STATE(2478)] = 114456, + [SMALL_STATE(2479)] = 114470, + [SMALL_STATE(2480)] = 114479, + [SMALL_STATE(2481)] = 114490, + [SMALL_STATE(2482)] = 114499, + [SMALL_STATE(2483)] = 114508, + [SMALL_STATE(2484)] = 114517, + [SMALL_STATE(2485)] = 114526, + [SMALL_STATE(2486)] = 114537, + [SMALL_STATE(2487)] = 114546, + [SMALL_STATE(2488)] = 114555, + [SMALL_STATE(2489)] = 114566, + [SMALL_STATE(2490)] = 114575, + [SMALL_STATE(2491)] = 114584, + [SMALL_STATE(2492)] = 114593, + [SMALL_STATE(2493)] = 114602, + [SMALL_STATE(2494)] = 114611, + [SMALL_STATE(2495)] = 114622, + [SMALL_STATE(2496)] = 114633, + [SMALL_STATE(2497)] = 114644, + [SMALL_STATE(2498)] = 114653, + [SMALL_STATE(2499)] = 114662, + [SMALL_STATE(2500)] = 114671, + [SMALL_STATE(2501)] = 114680, + [SMALL_STATE(2502)] = 114689, + [SMALL_STATE(2503)] = 114698, + [SMALL_STATE(2504)] = 114707, + [SMALL_STATE(2505)] = 114718, + [SMALL_STATE(2506)] = 114727, + [SMALL_STATE(2507)] = 114736, + [SMALL_STATE(2508)] = 114747, + [SMALL_STATE(2509)] = 114758, + [SMALL_STATE(2510)] = 114767, + [SMALL_STATE(2511)] = 114776, + [SMALL_STATE(2512)] = 114787, + [SMALL_STATE(2513)] = 114796, + [SMALL_STATE(2514)] = 114805, + [SMALL_STATE(2515)] = 114816, + [SMALL_STATE(2516)] = 114825, + [SMALL_STATE(2517)] = 114836, + [SMALL_STATE(2518)] = 114845, + [SMALL_STATE(2519)] = 114856, + [SMALL_STATE(2520)] = 114867, + [SMALL_STATE(2521)] = 114876, + [SMALL_STATE(2522)] = 114885, + [SMALL_STATE(2523)] = 114894, + [SMALL_STATE(2524)] = 114903, + [SMALL_STATE(2525)] = 114912, + [SMALL_STATE(2526)] = 114921, + [SMALL_STATE(2527)] = 114930, + [SMALL_STATE(2528)] = 114939, + [SMALL_STATE(2529)] = 114948, + [SMALL_STATE(2530)] = 114957, + [SMALL_STATE(2531)] = 114966, + [SMALL_STATE(2532)] = 114975, + [SMALL_STATE(2533)] = 114984, + [SMALL_STATE(2534)] = 114993, + [SMALL_STATE(2535)] = 115004, + [SMALL_STATE(2536)] = 115013, + [SMALL_STATE(2537)] = 115024, + [SMALL_STATE(2538)] = 115033, + [SMALL_STATE(2539)] = 115042, + [SMALL_STATE(2540)] = 115053, + [SMALL_STATE(2541)] = 115062, + [SMALL_STATE(2542)] = 115071, + [SMALL_STATE(2543)] = 115080, + [SMALL_STATE(2544)] = 115089, + [SMALL_STATE(2545)] = 115098, + [SMALL_STATE(2546)] = 115109, + [SMALL_STATE(2547)] = 115120, + [SMALL_STATE(2548)] = 115129, + [SMALL_STATE(2549)] = 115138, + [SMALL_STATE(2550)] = 115149, + [SMALL_STATE(2551)] = 115158, + [SMALL_STATE(2552)] = 115169, + [SMALL_STATE(2553)] = 115178, + [SMALL_STATE(2554)] = 115187, + [SMALL_STATE(2555)] = 115196, + [SMALL_STATE(2556)] = 115205, + [SMALL_STATE(2557)] = 115216, + [SMALL_STATE(2558)] = 115225, + [SMALL_STATE(2559)] = 115234, + [SMALL_STATE(2560)] = 115243, + [SMALL_STATE(2561)] = 115252, + [SMALL_STATE(2562)] = 115261, + [SMALL_STATE(2563)] = 115270, + [SMALL_STATE(2564)] = 115279, + [SMALL_STATE(2565)] = 115288, + [SMALL_STATE(2566)] = 115297, + [SMALL_STATE(2567)] = 115306, + [SMALL_STATE(2568)] = 115315, + [SMALL_STATE(2569)] = 115326, + [SMALL_STATE(2570)] = 115335, + [SMALL_STATE(2571)] = 115344, + [SMALL_STATE(2572)] = 115355, + [SMALL_STATE(2573)] = 115364, + [SMALL_STATE(2574)] = 115373, + [SMALL_STATE(2575)] = 115382, + [SMALL_STATE(2576)] = 115393, + [SMALL_STATE(2577)] = 115402, + [SMALL_STATE(2578)] = 115411, + [SMALL_STATE(2579)] = 115420, + [SMALL_STATE(2580)] = 115429, + [SMALL_STATE(2581)] = 115437, + [SMALL_STATE(2582)] = 115445, + [SMALL_STATE(2583)] = 115453, + [SMALL_STATE(2584)] = 115461, + [SMALL_STATE(2585)] = 115469, + [SMALL_STATE(2586)] = 115477, + [SMALL_STATE(2587)] = 115485, + [SMALL_STATE(2588)] = 115493, + [SMALL_STATE(2589)] = 115501, + [SMALL_STATE(2590)] = 115509, + [SMALL_STATE(2591)] = 115517, + [SMALL_STATE(2592)] = 115525, + [SMALL_STATE(2593)] = 115533, + [SMALL_STATE(2594)] = 115541, + [SMALL_STATE(2595)] = 115549, + [SMALL_STATE(2596)] = 115557, + [SMALL_STATE(2597)] = 115565, + [SMALL_STATE(2598)] = 115573, + [SMALL_STATE(2599)] = 115581, + [SMALL_STATE(2600)] = 115589, + [SMALL_STATE(2601)] = 115597, + [SMALL_STATE(2602)] = 115605, + [SMALL_STATE(2603)] = 115613, + [SMALL_STATE(2604)] = 115621, + [SMALL_STATE(2605)] = 115629, + [SMALL_STATE(2606)] = 115637, + [SMALL_STATE(2607)] = 115645, + [SMALL_STATE(2608)] = 115653, + [SMALL_STATE(2609)] = 115661, + [SMALL_STATE(2610)] = 115669, + [SMALL_STATE(2611)] = 115677, + [SMALL_STATE(2612)] = 115685, + [SMALL_STATE(2613)] = 115693, + [SMALL_STATE(2614)] = 115701, + [SMALL_STATE(2615)] = 115709, + [SMALL_STATE(2616)] = 115717, + [SMALL_STATE(2617)] = 115725, + [SMALL_STATE(2618)] = 115733, + [SMALL_STATE(2619)] = 115741, + [SMALL_STATE(2620)] = 115749, + [SMALL_STATE(2621)] = 115757, + [SMALL_STATE(2622)] = 115765, + [SMALL_STATE(2623)] = 115773, + [SMALL_STATE(2624)] = 115781, + [SMALL_STATE(2625)] = 115789, + [SMALL_STATE(2626)] = 115797, + [SMALL_STATE(2627)] = 115805, + [SMALL_STATE(2628)] = 115813, + [SMALL_STATE(2629)] = 115821, + [SMALL_STATE(2630)] = 115829, + [SMALL_STATE(2631)] = 115837, + [SMALL_STATE(2632)] = 115845, + [SMALL_STATE(2633)] = 115853, + [SMALL_STATE(2634)] = 115861, + [SMALL_STATE(2635)] = 115869, + [SMALL_STATE(2636)] = 115877, + [SMALL_STATE(2637)] = 115885, + [SMALL_STATE(2638)] = 115893, + [SMALL_STATE(2639)] = 115901, + [SMALL_STATE(2640)] = 115909, + [SMALL_STATE(2641)] = 115917, + [SMALL_STATE(2642)] = 115925, + [SMALL_STATE(2643)] = 115933, + [SMALL_STATE(2644)] = 115941, + [SMALL_STATE(2645)] = 115949, + [SMALL_STATE(2646)] = 115957, + [SMALL_STATE(2647)] = 115965, + [SMALL_STATE(2648)] = 115973, + [SMALL_STATE(2649)] = 115981, + [SMALL_STATE(2650)] = 115989, + [SMALL_STATE(2651)] = 115997, + [SMALL_STATE(2652)] = 116005, + [SMALL_STATE(2653)] = 116013, + [SMALL_STATE(2654)] = 116021, + [SMALL_STATE(2655)] = 116029, + [SMALL_STATE(2656)] = 116037, + [SMALL_STATE(2657)] = 116045, + [SMALL_STATE(2658)] = 116053, + [SMALL_STATE(2659)] = 116061, + [SMALL_STATE(2660)] = 116069, + [SMALL_STATE(2661)] = 116077, + [SMALL_STATE(2662)] = 116085, + [SMALL_STATE(2663)] = 116093, + [SMALL_STATE(2664)] = 116101, + [SMALL_STATE(2665)] = 116109, + [SMALL_STATE(2666)] = 116117, + [SMALL_STATE(2667)] = 116125, + [SMALL_STATE(2668)] = 116133, + [SMALL_STATE(2669)] = 116141, + [SMALL_STATE(2670)] = 116149, + [SMALL_STATE(2671)] = 116157, + [SMALL_STATE(2672)] = 116165, + [SMALL_STATE(2673)] = 116173, + [SMALL_STATE(2674)] = 116181, + [SMALL_STATE(2675)] = 116189, + [SMALL_STATE(2676)] = 116197, + [SMALL_STATE(2677)] = 116205, + [SMALL_STATE(2678)] = 116213, + [SMALL_STATE(2679)] = 116221, + [SMALL_STATE(2680)] = 116229, + [SMALL_STATE(2681)] = 116237, + [SMALL_STATE(2682)] = 116245, + [SMALL_STATE(2683)] = 116253, + [SMALL_STATE(2684)] = 116261, + [SMALL_STATE(2685)] = 116269, + [SMALL_STATE(2686)] = 116277, + [SMALL_STATE(2687)] = 116285, + [SMALL_STATE(2688)] = 116293, + [SMALL_STATE(2689)] = 116301, + [SMALL_STATE(2690)] = 116309, + [SMALL_STATE(2691)] = 116317, + [SMALL_STATE(2692)] = 116325, + [SMALL_STATE(2693)] = 116333, + [SMALL_STATE(2694)] = 116341, + [SMALL_STATE(2695)] = 116349, + [SMALL_STATE(2696)] = 116357, + [SMALL_STATE(2697)] = 116365, + [SMALL_STATE(2698)] = 116373, + [SMALL_STATE(2699)] = 116381, + [SMALL_STATE(2700)] = 116389, + [SMALL_STATE(2701)] = 116397, + [SMALL_STATE(2702)] = 116405, + [SMALL_STATE(2703)] = 116413, + [SMALL_STATE(2704)] = 116421, + [SMALL_STATE(2705)] = 116429, + [SMALL_STATE(2706)] = 116437, + [SMALL_STATE(2707)] = 116445, + [SMALL_STATE(2708)] = 116453, + [SMALL_STATE(2709)] = 116461, + [SMALL_STATE(2710)] = 116469, + [SMALL_STATE(2711)] = 116477, + [SMALL_STATE(2712)] = 116485, + [SMALL_STATE(2713)] = 116493, + [SMALL_STATE(2714)] = 116501, + [SMALL_STATE(2715)] = 116509, + [SMALL_STATE(2716)] = 116517, + [SMALL_STATE(2717)] = 116525, + [SMALL_STATE(2718)] = 116533, + [SMALL_STATE(2719)] = 116541, + [SMALL_STATE(2720)] = 116549, + [SMALL_STATE(2721)] = 116557, + [SMALL_STATE(2722)] = 116565, + [SMALL_STATE(2723)] = 116573, + [SMALL_STATE(2724)] = 116581, + [SMALL_STATE(2725)] = 116589, + [SMALL_STATE(2726)] = 116597, + [SMALL_STATE(2727)] = 116605, + [SMALL_STATE(2728)] = 116613, + [SMALL_STATE(2729)] = 116621, + [SMALL_STATE(2730)] = 116629, + [SMALL_STATE(2731)] = 116637, + [SMALL_STATE(2732)] = 116645, + [SMALL_STATE(2733)] = 116653, + [SMALL_STATE(2734)] = 116661, + [SMALL_STATE(2735)] = 116669, + [SMALL_STATE(2736)] = 116677, + [SMALL_STATE(2737)] = 116685, + [SMALL_STATE(2738)] = 116693, + [SMALL_STATE(2739)] = 116701, + [SMALL_STATE(2740)] = 116709, + [SMALL_STATE(2741)] = 116717, + [SMALL_STATE(2742)] = 116725, + [SMALL_STATE(2743)] = 116733, + [SMALL_STATE(2744)] = 116741, + [SMALL_STATE(2745)] = 116749, + [SMALL_STATE(2746)] = 116757, + [SMALL_STATE(2747)] = 116765, + [SMALL_STATE(2748)] = 116773, + [SMALL_STATE(2749)] = 116781, + [SMALL_STATE(2750)] = 116789, + [SMALL_STATE(2751)] = 116797, + [SMALL_STATE(2752)] = 116805, + [SMALL_STATE(2753)] = 116813, + [SMALL_STATE(2754)] = 116821, + [SMALL_STATE(2755)] = 116829, + [SMALL_STATE(2756)] = 116837, + [SMALL_STATE(2757)] = 116845, + [SMALL_STATE(2758)] = 116853, + [SMALL_STATE(2759)] = 116861, + [SMALL_STATE(2760)] = 116869, + [SMALL_STATE(2761)] = 116877, + [SMALL_STATE(2762)] = 116885, + [SMALL_STATE(2763)] = 116893, + [SMALL_STATE(2764)] = 116901, + [SMALL_STATE(2765)] = 116909, + [SMALL_STATE(2766)] = 116917, + [SMALL_STATE(2767)] = 116925, + [SMALL_STATE(2768)] = 116933, + [SMALL_STATE(2769)] = 116941, + [SMALL_STATE(2770)] = 116949, + [SMALL_STATE(2771)] = 116957, + [SMALL_STATE(2772)] = 116965, + [SMALL_STATE(2773)] = 116973, + [SMALL_STATE(2774)] = 116981, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -126850,2431 +125996,2417 @@ static const TSParseActionEntry ts_parse_actions[] = { [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 0, 0, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1, 0, 0), - [123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(626), - [126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2232), - [129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1873), - [132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(200), - [135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(875), - [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(83), - [141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(566), - [144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(403), - [147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(471), - [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(349), - [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2534), - [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2508), - [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2578), - [162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(603), - [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(85), - [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(463), - [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(850), - [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(604), - [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2758), - [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(454), - [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2783), - [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2708), - [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2657), - [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(461), - [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(74), - [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2760), - [201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(215), - [204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(567), - [207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(936), - [210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(214), - [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(528), - [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1645), - [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(360), - [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1035), - [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1035), - [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(155), - [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(1672), - [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(568), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(86), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(467), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(743), - [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(535), - [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2620), - [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(431), - [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2772), - [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2761), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), - [279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), - [281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(275), - [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), REDUCE(sym_primary_expression, 1, 0, 1), - [287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(943), - [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, 0, 1), - [294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), REDUCE(sym_primary_expression, 1, 0, 1), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2630), - [302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), - [304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(308), - [307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(910), - [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(550), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), - [319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(614), + [116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2140), + [119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1837), + [122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(187), + [125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(917), + [128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(82), + [131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(523), + [134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(401), + [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(463), + [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(361), + [143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2554), + [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2560), + [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2543), + [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(595), + [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(84), + [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(466), + [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(775), + [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(596), + [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2738), + [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(453), + [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2763), + [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2745), + [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2599), + [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(457), + [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(72), + [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2740), + [191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(197), + [194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(593), + [197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(910), + [200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(204), + [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(522), + [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1627), + [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(346), + [212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1063), + [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1063), + [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(148), + [221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), + [223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1680), + [226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(500), + [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(83), + [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(471), + [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(788), + [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(571), + [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2591), + [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(441), + [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2723), + [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2618), + [255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1, 0, 0), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), + [271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), + [273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(269), + [276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), REDUCE(sym_primary_expression, 1, 0, 1), + [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(935), + [282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, 0, 1), + [286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), REDUCE(sym_primary_expression, 1, 0, 1), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2727), + [294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), + [296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(268), + [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(937), + [302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(553), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(321), - [388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(908), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(322), - [400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(936), - [403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(528), - [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(920), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), - [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 5), - [665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_list_splat_pattern, 2, 0, 5), - [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 5), - [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_list_splat_pattern, 2, 0, 5), - [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), - [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), - [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), - [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), - [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), - [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, 0, 0), - [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 3, 0, 0), - [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), - [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), - [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), - [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), - [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [1099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 1, 0, 0), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [1249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 97), - [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(318), + [380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(936), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(266), + [392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(910), + [395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(522), + [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(907), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 5), + [649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_list_splat_pattern, 2, 0, 5), + [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 5), + [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_list_splat_pattern, 2, 0, 5), + [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 3, 0, 0), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, 0, 0), + [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [1081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 1, 0, 0), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [1233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, 0, 108), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [1237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 7, 0, 108), + [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [1245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 3, 0, 0), + [1247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 77), + [1249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 5, 0, 77), + [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), [1253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 97), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), - [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [1263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 3, 0, 0), - [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 3, 0, 0), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [1269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 5, 0, 77), - [1271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 77), - [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [1279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 96), - [1281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 96), - [1283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, 0, 108), - [1285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 7, 0, 108), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [1291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, 0, 0), - [1293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, 0, 0), - [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [1299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1, 0, 0), - [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1, 0, 0), - [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 3, 0, 0), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [1373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2, 0, 0), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, 0, 0), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [1413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1, 0, 0), - [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 5), - [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 0), - [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 3, 0, 0), - [1429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 0), - [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, -1, 15), - [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, 0, 14), - [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, 0, 0), - [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 6), - [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2, 0, 0), - [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 0), - [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), - [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 61), - [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 61), - [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), - [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), - [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), - [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 42), - [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 42), - [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), - [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), - [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), - [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), - [1549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), - [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), - [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, 0, 0), - [1556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), - [1559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), - [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 81), - [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 81), - [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 55), - [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 55), - [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 37), - [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 37), - [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 54), - [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 54), - [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), - [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), - [1589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(475), - [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), - [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), - [1596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(557), - [1599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(478), - [1602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(605), - [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 23), - [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 23), - [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 2), - [1611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 2), - [1614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 2), - [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), - [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), - [1620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), SHIFT_REPEAT(606), - [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2, 0, 0), - [1625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), REDUCE(sym_tuple, 2, 0, 0), - [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2, 0, 0), - [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), - [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2, 0, 0), - [1634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), SHIFT_REPEAT(608), - [1637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2, 0, 0), - [1639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), REDUCE(sym_list, 2, 0, 0), - [1642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2, 0, 0), - [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2, 0, 0), - [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), - [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), - [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_type, 2, 0, 0), - [1652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), - [1655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), - [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), - [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splat_type, 2, 0, 0), - [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 48), - [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 48), - [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, 0, 70), - [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, 0, 70), - [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 48), - [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 48), - [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 70), - [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 70), - [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 4, 0, 104), - [1680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 4, 0, 104), - [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2, 0, 0), - [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2, 0, 0), - [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 0), - [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 0), - [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1, 0, 0), - [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1, 0, 0), - [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 4, 0, 0), - [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 4, 0, 0), - [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 3, 0, 0), - [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 3, 0, 0), - [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), - [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, 0, 0), - [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, 0, 0), - [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 5, 0, 0), - [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 5, 0, 0), - [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, 0, 127), - [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, 0, 127), - [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 3, 0, 88), - [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 3, 0, 88), - [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 6, 0, 127), - [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 6, 0, 127), - [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7, 0, 0), - [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7, 0, 0), - [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 104), - [1746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 104), - [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 7, 0, 0), - [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 7, 0, 0), - [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 41), - [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 41), - [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 52), - [1758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 52), - [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 103), - [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 103), - [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 86), - [1766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 86), - [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 42), - [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 42), + [1255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 97), + [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, 0, 0), + [1267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, 0, 0), + [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [1273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 96), + [1275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 96), + [1277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 3, 0, 0), + [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [1319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1, 0, 0), + [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [1345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, 0, 0), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [1349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 3, 0, 0), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [1393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1, 0, 0), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [1403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2, 0, 0), + [1405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1, 0, 0), + [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 5), + [1409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, -1, 15), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 3, 0, 0), + [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, 0, 14), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 0), + [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 0), + [1429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, 0, 0), + [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 0), + [1433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 6), + [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2, 0, 0), + [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 42), + [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 42), + [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), + [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), + [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 61), + [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 61), + [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), + [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), + [1533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), + [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), + [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, 0, 0), + [1540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), + [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), + [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), + [1549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 81), + [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 81), + [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [1555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 54), + [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 54), + [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 55), + [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 55), + [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [1569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(467), + [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), + [1574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), + [1576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(486), + [1579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(460), + [1582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(598), + [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 37), + [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 37), + [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2, 0, 0), + [1591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), REDUCE(sym_tuple, 2, 0, 0), + [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2, 0, 0), + [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1, 0, 0), + [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1, 0, 0), + [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, 0, 70), + [1606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, 0, 70), + [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 2), + [1610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 2), + [1613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 2), + [1615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 48), + [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 48), + [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2, 0, 0), + [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2, 0, 0), + [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 4, 0, 0), + [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 4, 0, 0), + [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2, 0, 0), + [1633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), REDUCE(sym_list, 2, 0, 0), + [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2, 0, 0), + [1638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2, 0, 0), + [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), + [1642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 3, 0, 0), + [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 3, 0, 0), + [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), + [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), + [1650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), SHIFT_REPEAT(599), + [1653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 48), + [1655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 48), + [1657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 70), + [1659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 70), + [1661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), SHIFT_REPEAT(537), + [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), + [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_type, 2, 0, 0), + [1668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), + [1671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), + [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), + [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splat_type, 2, 0, 0), + [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 23), + [1680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 23), + [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 7, 0, 0), + [1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 7, 0, 0), + [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 4, 0, 104), + [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 4, 0, 104), + [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, 0, 0), + [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, 0, 0), + [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, 0, 127), + [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, 0, 127), + [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 3, 0, 88), + [1714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 3, 0, 88), + [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 5, 0, 0), + [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 5, 0, 0), + [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 6, 0, 127), + [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 6, 0, 127), + [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 0), + [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 0), + [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7, 0, 0), + [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7, 0, 0), + [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 104), + [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 104), + [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 42), + [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 42), + [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 103), + [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 103), + [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, 0, 37), + [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, 0, 37), + [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 60), + [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 60), + [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 112), + [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 112), + [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, 0, 55), + [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, 0, 55), + [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 52), + [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 52), + [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 41), + [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 41), + [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 86), + [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 86), [1772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 61), [1774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 61), - [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 60), - [1778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 60), - [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, 0, 55), - [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, 0, 55), - [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 112), - [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 112), - [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, 0, 37), - [1790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, 0, 37), - [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 99), - [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 99), - [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, 0, 61), - [1814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, 0, 61), - [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, 0, 42), - [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, 0, 42), - [1822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 113), - [1824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 113), - [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 57), - [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 57), - [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 117), - [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 117), - [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 78), - [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 78), - [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 80), - [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 80), - [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 3, 0, 82), - [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 3, 0, 82), - [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 6, 0, 83), - [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 6, 0, 83), - [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 124), - [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 124), - [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, 0, 84), - [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, 0, 84), - [1858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 125), - [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 125), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 85), - [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 85), - [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 126), - [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 126), - [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), - [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), - [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 87), - [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 87), - [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 3, 0, 88), - [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 3, 0, 88), - [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 42), - [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 42), - [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 89), - [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 89), - [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 90), - [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 90), - [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 91), - [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 91), - [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 92), - [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 92), - [1910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 128), - [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 128), - [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 93), - [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 93), - [1918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 133), - [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 133), - [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 62), - [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 62), - [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 98), - [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 98), - [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 58), - [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 58), - [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 100), - [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 100), - [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 101), - [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 101), - [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 102), - [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 102), - [1946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 114), - [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 114), - [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 4, 0, 0), - [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 4, 0, 0), - [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 7, 0, 61), - [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 7, 0, 61), - [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 105), - [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 105), - [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 106), - [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 106), - [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 107), - [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 107), - [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 3, 0, 0), - [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 111), - [1974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 111), - [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 1, 0, 0), - [1978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 1, 0, 0), - [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 115), - [1982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 115), - [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, 0, 39), - [1986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, 0, 39), - [1988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 116), - [1990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 116), - [1992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 63), - [1994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 63), - [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, 0, 0), - [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 53), - [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 53), - [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 4, 0, 43), - [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 4, 0, 43), - [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 44), - [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 44), - [2010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, 0, 12), - [2012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, 0, 12), - [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [2028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 66), - [2030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 66), - [2032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 3, 0, 0), - [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 56), - [2036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 56), - [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 59), - [2040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 59), - [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 64), - [2044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 64), - [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 65), - [2048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 65), - [2050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 2, 0, 0), - [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 2, 0, 0), - [2054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 2, 0, 0), - [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [2060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_separator, 1, 0, 0), - [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), - [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [2072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [2076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [2092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), - [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), - [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), - [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), - [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), - [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), - [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [2298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [2304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [2336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [2358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [2362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [2364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1672), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [2395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1695), - [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, 0, 21), - [2400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, 0, 21), - [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [2406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [2428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 24), - [2432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 24), - [2434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1689), - [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await, 2, 0, 0), - [2439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await, 2, 0, 0), - [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, 0, 9), - [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, 0, 9), - [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), - [2447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), - [2449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1684), - [2452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1674), - [2455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1710), - [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), - [2460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), - [2462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1699), - [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, 0, 34), - [2467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, 0, 34), - [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, 0, 0), - [2471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, 0, 0), - [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_comprehension, 4, 0, 34), - [2475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_comprehension, 4, 0, 34), - [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, 0, 34), - [2479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, 0, 34), - [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), - [2483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), - [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 33), - [2487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 33), - [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 10), - [2491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 10), - [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5, 0, 0), - [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5, 0, 0), - [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), - [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), - [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 33), - [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 33), - [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3, 0, 0), - [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3, 0, 0), - [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), - [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), - [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 33), - [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 33), - [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, 0, 0), - [2525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, 0, 0), - [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3, 0, 0), - [2529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3, 0, 0), - [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set, 3, 0, 0), - [2533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set, 3, 0, 0), - [2535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1703), - [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), - [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), - [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2, 0, 0), - [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2, 0, 0), - [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_expression, 4, 0, 34), - [2552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_expression, 4, 0, 34), - [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), - [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), - [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), - [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [2694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [2698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [2706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [2710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), - [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [2758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), - [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), - [2766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), - [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [2770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), - [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), - [2774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(901), - [2777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), - [2779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(2651), - [2782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(868), - [2785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(901), - [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, 0, 11), - [2790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, 0, 11), - [2792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), - [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), - [2796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [2800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(928), - [2803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(864), - [2806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(928), - [2809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(898), - [2812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(860), - [2815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(898), - [2818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(941), - [2821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(867), - [2824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(941), - [2827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(940), - [2830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(863), - [2833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(940), - [2836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(873), - [2839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(866), - [2842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(873), - [2845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__not_in, 2, 0, 0), - [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__not_in, 2, 0, 0), - [2849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__is_not, 2, 0, 0), - [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__is_not, 2, 0, 0), - [2853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(889), - [2856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(861), - [2859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(889), - [2862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(869), - [2865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(862), - [2868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(869), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [2873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 0), - [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), - [2877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(857), - [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, 0, 0), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [2892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__right_hand_side, 1, 0, 0), - [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [2926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(852), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [2943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3, 0, 0), - [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2, 0, 0), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [2955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1, 0, 0), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [2971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_pattern, 3, 0, 22), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [2977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, 0, 21), - [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, 0, 47), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [2985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, 0, 17), - [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 0), - [2989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, 0, 6), - [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), - [2993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(569), - [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [3000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), - [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [3006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [3082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), SHIFT(346), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [3109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(233), - [3112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1812), - [3115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1812), - [3118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [3128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [3130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [3150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(523), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [3159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2, 0, 0), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [3165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(509), - [3168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__f_expression, 1, 0, 0), - [3170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(500), - [3173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, 0, 6), - [3175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2, 0, 0), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1, 0, 0), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [3187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(492), - [3190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_pattern, 3, 0, 22), - [3192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, 0, 21), - [3194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2, 0, 0), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [3204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), - [3206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(517), - [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3, 0, 0), - [3211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), - [3213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2781), - [3216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), - [3218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1775), - [3221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1775), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [3226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2, 0, 0), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [3230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2, 0, 0), - [3232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_within_for_in_clause, 1, 0, 0), - [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [3244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 4, 0, 8), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [3256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 45), - [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [3290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1, 0, 0), - [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), - [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [3300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [3306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 1, 0, 0), - [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [3312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(482), - [3315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, -1, 6), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [3323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(578), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [3338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2719), - [3341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1, 0, 0), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 69), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [3355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2716), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [3362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2, 0, 0), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [3378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chevron, 2, 0, 0), - [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2, 0, 0), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [3388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2650), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [3397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), - [3399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(548), - [3402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2674), - [3405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(781), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [3412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 2, 0, 0), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [3418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), - [3420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(553), - [3423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2791), - [3426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(848), - [3429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 6), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [3441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(532), - [3444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2788), - [3447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(844), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [3454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 51), - [3456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 51), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [3462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 108), - [3464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 5, 0, 0), - [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 0), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [3470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2, 0, 0), - [3472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_pattern, 3, 0, 0), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [3476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 0), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, 0, 77), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 96), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [3490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), - [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [3504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2, 0, 0), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [3508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5, 0, 0), - [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 68), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [3520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_pattern, 1, 0, 0), - [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 18), - [3524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(583), - [3527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, 0, 18), - [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [3531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), - [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [3537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, 0, 26), - [3539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, 0, 26), - [3541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 72), - [3543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 72), - [3545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, 0, 16), - [3547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(456), - [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), - [3552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 73), - [3558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 73), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 97), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 6, 0, 95), - [3568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 6, 0, 95), - [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [3572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 26), - [3574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 26), - [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 38), - [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), - [3580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1556), - [3583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2748), - [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [3592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, 0, 94), - [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 0), - [3596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(853), - [3599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_type, 3, 0, 0), - [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [3603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), - [3605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(567), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [3612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type, 3, 0, 0), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_pattern, 2, 0, 0), - [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), - [3626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(453), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [3631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(441), - [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [3640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4, 0, 36), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [3648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 74), - [3650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 74), - [3652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 50), - [3654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 50), - [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [3658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 19), - [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, 0, 46), - [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [3680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 4, 1, 0), - [3682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 3, 0, 17), - [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [3698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 3, 0, 0), - [3700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 3, 0, 0), - [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 4), - [3704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 109), - [3706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 0), - [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 3, 0, 0), - [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [3716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 3, 0, 0), - [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [3720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 0), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [3726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(497), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [3733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 4, 0, 47), - [3735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 4, 0, 0), - [3737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 4, 0, 0), - [3739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1557), - [3742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 4, 0, 0), - [3744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 109), - [3746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 118), - [3748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 0), - [3750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 120), - [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 4, 0, 0), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [3764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2, 0, 0), - [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [3768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 5, 0, 0), - [3770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 5, 0, 0), - [3772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 118), - [3774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 120), - [3776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 5, 0, 0), - [3778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1, 0, 0), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [3782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 6, 0, 0), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [3786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 3, 0, 13), - [3788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 2, 0, 0), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [3798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_pattern, 2, 0, 0), - [3800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 2, 0, 0), - [3802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 2, 0, 0), - [3804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(230), - [3807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), - [3809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2058), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [3830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1553), - [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [3835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, 0, 4), - [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [3869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1550), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [3876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 3, 0, 0), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [3880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 0), - [3882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 0), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [3902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 2, 0, 0), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [3912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 13), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [3918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), - [3920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2747), - [3923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 27), - [3925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 35), - [3927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 35), SHIFT_REPEAT(556), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [3936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 28), - [3938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 28), SHIFT_REPEAT(2290), - [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [3949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3, 0, 0), - [3951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 2, 0, 0), - [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [3963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 15), - [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [3967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, 0, 0), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [3971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__as_pattern, 3, 0, 0), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [3977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3, 0, 0), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 99), + [1778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 99), + [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, 0, 61), + [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, 0, 61), + [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, 0, 42), + [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, 0, 42), + [1806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 107), + [1808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 107), + [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 44), + [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 44), + [1814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 111), + [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 111), + [1818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 113), + [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 113), + [1822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 114), + [1824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 114), + [1826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 115), + [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 115), + [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 116), + [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 116), + [1834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 117), + [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 117), + [1838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 124), + [1840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 124), + [1842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 125), + [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 125), + [1846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 126), + [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 126), + [1850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [1858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 3, 0, 0), + [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [1862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 128), + [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 128), + [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 133), + [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 133), + [1872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 3, 0, 0), + [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 1, 0, 0), + [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 1, 0, 0), + [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, 0, 39), + [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, 0, 39), + [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 7, 0, 61), + [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 7, 0, 61), + [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 105), + [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 105), + [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 53), + [1906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 53), + [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 56), + [1910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 56), + [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 2, 0, 0), + [1914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 2, 0, 0), + [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 57), + [1918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 57), + [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 58), + [1922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 58), + [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 59), + [1926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 59), + [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 4, 0, 43), + [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 4, 0, 43), + [1932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 62), + [1934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 62), + [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 63), + [1938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 63), + [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 64), + [1942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 64), + [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 65), + [1946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 65), + [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 66), + [1950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 66), + [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 78), + [1954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 78), + [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 80), + [1958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 80), + [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 3, 0, 82), + [1962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 3, 0, 82), + [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 6, 0, 83), + [1966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 6, 0, 83), + [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, 0, 84), + [1970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, 0, 84), + [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 85), + [1974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 85), + [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 87), + [1978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 87), + [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 3, 0, 88), + [1982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 3, 0, 88), + [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 42), + [1986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 42), + [1988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 89), + [1990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 89), + [1992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 90), + [1994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 90), + [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, 0, 12), + [1998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, 0, 12), + [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 91), + [2002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 91), + [2004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 92), + [2006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 92), + [2008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 93), + [2010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 93), + [2012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 98), + [2014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 98), + [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, 0, 0), + [2018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 100), + [2020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 100), + [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 101), + [2024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 101), + [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 102), + [2028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 102), + [2030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 106), + [2032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 106), + [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 4, 0, 0), + [2036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 4, 0, 0), + [2038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 2, 0, 0), + [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_separator, 1, 0, 0), + [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [2062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [2076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), + [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), + [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [2280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [2282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [2284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [2286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [2288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1680), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, 0, 21), + [2381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, 0, 21), + [2383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1675), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [2390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [2412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [2414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1671), + [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 24), + [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 24), + [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, 0, 9), + [2423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, 0, 9), + [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await, 2, 0, 0), + [2427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await, 2, 0, 0), + [2429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1698), + [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [2434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [2436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1681), + [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [2441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [2443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1676), + [2446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1664), + [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, 0, 0), + [2451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, 0, 0), + [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set, 3, 0, 0), + [2455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set, 3, 0, 0), + [2457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1685), + [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, 0, 34), + [2462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, 0, 34), + [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, 0, 0), + [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, 0, 0), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_comprehension, 4, 0, 34), + [2472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_comprehension, 4, 0, 34), + [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, 0, 34), + [2476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, 0, 34), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [2482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), + [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 33), + [2486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 33), + [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2, 0, 0), + [2490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2, 0, 0), + [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [2494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), + [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5, 0, 0), + [2498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5, 0, 0), + [2500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), + [2502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), + [2504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 33), + [2506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 33), + [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3, 0, 0), + [2510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3, 0, 0), + [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 10), + [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 10), + [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), + [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), + [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 33), + [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 33), + [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3, 0, 0), + [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3, 0, 0), + [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_expression, 4, 0, 34), + [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_expression, 4, 0, 34), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), + [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [2604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [2678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [2682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [2690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [2694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [2698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [2742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [2744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), + [2746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), + [2752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(934), + [2755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), + [2757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(2623), + [2760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(847), + [2763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(934), + [2766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [2770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), + [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), + [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, 0, 11), + [2776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, 0, 11), + [2778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [2782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [2784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(871), + [2787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(846), + [2790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(871), + [2793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(894), + [2796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(850), + [2799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(894), + [2802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(945), + [2805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(845), + [2808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(945), + [2811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(885), + [2814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(852), + [2817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(885), + [2820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(920), + [2823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(844), + [2826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(920), + [2829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(865), + [2832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(849), + [2835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(865), + [2838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__is_not, 2, 0, 0), + [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__is_not, 2, 0, 0), + [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__not_in, 2, 0, 0), + [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__not_in, 2, 0, 0), + [2846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(905), + [2849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(848), + [2852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(905), + [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 0), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [2859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), + [2861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(836), + [2864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), + [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, 0, 0), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [2876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__right_hand_side, 1, 0, 0), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [2892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(841), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [2927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2, 0, 0), + [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3, 0, 0), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1, 0, 0), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_pattern, 3, 0, 22), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, 0, 21), + [2963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, 0, 47), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), + [2971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(546), + [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, 0, 6), + [2976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, 0, 17), + [2978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 0), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [2982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [2998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [3030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(219), + [3033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1805), + [3036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1805), + [3039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [3043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), SHIFT(333), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [3106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [3108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [3120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(510), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__f_expression, 1, 0, 0), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [3145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(574), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [3152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2, 0, 0), + [3154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1, 0, 0), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [3166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(517), + [3169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), + [3171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2685), + [3174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(503), + [3177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2, 0, 0), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [3183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2, 0, 0), + [3185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3, 0, 0), + [3187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, 0, 6), + [3189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(493), + [3192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_pattern, 3, 0, 22), + [3194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), + [3196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, 0, 21), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [3200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_within_for_in_clause, 1, 0, 0), + [3202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 1, 0, 0), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [3214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(479), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [3221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 45), + [3223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 4, 0, 8), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [3237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, -1, 6), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [3241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2, 0, 0), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), + [3261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1789), + [3264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1789), + [3267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2, 0, 0), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [3283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(476), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [3296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1, 0, 0), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [3300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [3310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2595), + [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2, 0, 0), + [3315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(555), + [3318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2771), + [3321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(833), + [3324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [3330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chevron, 2, 0, 0), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [3334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2, 0, 0), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [3344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 6), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [3358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(533), + [3361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2768), + [3364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(827), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [3379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(582), + [3382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2614), + [3385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(793), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [3406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2689), + [3409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2756), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [3422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 2, 0, 0), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [3426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1, 0, 0), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [3430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 69), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [3438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(839), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [3445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, 0, 46), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [3453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), + [3455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, 0, 18), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [3459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4, 0, 36), + [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2, 0, 0), + [3463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), + [3465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(443), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [3470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 51), + [3472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 51), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [3484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 38), + [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 0), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [3490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 96), + [3492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 0), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 97), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2, 0, 0), + [3502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_pattern, 3, 0, 0), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 108), + [3512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 0), + [3514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, 0, 77), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [3518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 19), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [3528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(434), + [3531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), + [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [3535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, 0, 94), + [3537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 68), + [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [3541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 18), + [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [3553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), + [3555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 5, 0, 0), + [3557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 6, 0, 95), + [3559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 6, 0, 95), + [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [3563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_pattern, 1, 0, 0), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [3571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 50), + [3573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 50), + [3575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(490), + [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_type, 3, 0, 0), + [3580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type, 3, 0, 0), + [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [3596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), + [3598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1542), + [3601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, 0, 16), + [3603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(428), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), + [3612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(593), + [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [3619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_pattern, 2, 0, 0), + [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [3627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 72), + [3629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 72), + [3631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 73), + [3633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 73), + [3635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 74), + [3637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 74), + [3639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 26), + [3641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 26), + [3643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, 0, 26), + [3645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, 0, 26), + [3647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2746), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [3654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5, 0, 0), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [3670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 0), + [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [3682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(570), + [3685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 2, 0, 0), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [3693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_pattern, 2, 0, 0), + [3695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 2, 0, 0), + [3697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 2, 0, 0), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [3715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [3717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1, 0, 0), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [3725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 4, 1, 0), + [3727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 3, 0, 17), + [3729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 3, 0, 13), + [3731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 3, 0, 0), + [3733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2, 0, 0), + [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [3737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 3, 0, 0), + [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [3745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 109), + [3747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 0), + [3749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 3, 0, 0), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [3757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 3, 0, 0), + [3759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1541), + [3762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 4, 0, 47), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [3766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1534), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [3783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(226), + [3786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), + [3788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2045), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [3793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 4, 0, 0), + [3795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 4, 0, 0), + [3797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 4, 0, 0), + [3799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 109), + [3801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 118), + [3803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 0), + [3805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 120), + [3807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 4, 0, 0), + [3809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 4), + [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [3819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 5, 0, 0), + [3821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 5, 0, 0), + [3823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, 0, 4), + [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [3829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 118), + [3831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 120), + [3833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 5, 0, 0), + [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [3837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 6, 0, 0), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [3853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1533), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [3860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 27), + [3862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), + [3864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__as_pattern, 3, 0, 0), + [3866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1511), + [3869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 3, 0, 0), + [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [3873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 3, 0, 0), + [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [3887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 5, 0, 8), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [3893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 28), + [3895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 28), SHIFT_REPEAT(2273), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [3908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 35), + [3910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 35), SHIFT_REPEAT(536), + [3913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 0), + [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [3919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3, 0, 0), + [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [3931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 0), + [3933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 2, 0, 0), + [3935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 2, 0, 0), + [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [3939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 13), + [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [3971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, 0, 0), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [3975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3, 0, 0), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [3981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 79), SHIFT_REPEAT(1509), + [3984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 79), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [3988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), + [3990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(2170), [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 14), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [4003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_prefix, 1, 0, 0), - [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [4007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), - [4009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(2206), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [4018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1526), - [4021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), - [4023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 79), SHIFT_REPEAT(1527), - [4026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 79), - [4028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 5, 0, 8), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [4032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 3, 0, 0), - [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [4040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(235), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [4083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), SHIFT_REPEAT(381), - [4086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), - [4088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1653), - [4091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [4099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(348), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 1, 0, 0), - [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [4120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(464), - [4123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [4135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(856), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [4188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(547), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [4225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(559), - [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, 0, 29), - [4238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 1, 0, 0), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [4272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relative_import, 1, 0, 0), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [4284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 40), SHIFT_REPEAT(554), - [4287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 40), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [4295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(855), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [4302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1523), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [4319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 2, 0, 8), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [4343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__key_value_pattern, 3, 0, 45), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [4359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(153), - [4362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [4374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 71), SHIFT_REPEAT(410), - [4377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 71), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [4403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 28), SHIFT_REPEAT(2493), - [4406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 119), SHIFT_REPEAT(1548), - [4409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 119), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [4419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(854), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [4424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 49), - [4426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 49), - [4428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(356), - [4431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(369), - [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [4452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(331), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [4463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1524), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [4484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1, 0, 0), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [4508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(472), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [4527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(541), - [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [4544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1654), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [4573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 0), - [4575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 33), - [4577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1, 0, 0), - [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [4583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 129), - [4585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 4, 0, 30), - [4587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 130), - [4589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 131), - [4591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 132), - [4593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 6, 0, 75), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [4599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 6, 0, 76), - [4601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [4605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 134), - [4607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 135), - [4609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 4, 0, 110), - [4611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard_import, 1, 0, 0), - [4613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_separator, 1, 0, 0), - [4615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 31), - [4617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 136), - [4619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 32), - [4621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pass_statement, 1, 0, 0), - [4623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 8, 0, 137), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [4629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [4631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [4635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 109), - [4637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), - [4639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [4643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), - [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [4659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, 0, 21), - [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [4673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [4679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [4683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, 0, 3), - [4685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 121), - [4687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1, 0, 0), - [4689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 122), - [4691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 123), - [4693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 33), - [4695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 20), - [4697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, 0, 67), - [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [4701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [4705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 1, 0, 52), - [4707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [4711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [4747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 0), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [4911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1, 0, 0), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [4931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_import, 2, 0, 0), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [4967] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [5029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 0), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), + [4011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2644), + [4014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_prefix, 1, 0, 0), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [4018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 15), + [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [4024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1, 0, 0), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [4038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(349), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [4091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(332), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [4116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1510), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [4123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(838), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [4138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 1, 0, 0), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [4176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), + [4178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1638), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [4193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(360), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 1, 0, 0), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [4236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 71), SHIFT_REPEAT(436), + [4239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 71), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [4251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1637), + [4254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(147), + [4257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [4275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__key_value_pattern, 3, 0, 45), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [4279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 119), SHIFT_REPEAT(1532), + [4282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 119), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [4322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 40), SHIFT_REPEAT(539), + [4325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 40), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [4331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(260), + [4334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(840), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [4343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(837), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [4364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(558), + [4367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(552), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [4376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), SHIFT_REPEAT(397), + [4379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [4405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(579), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [4432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 49), + [4434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 49), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [4446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), + [4448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(464), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [4453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(344), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [4466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1507), + [4469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(468), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [4474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relative_import, 1, 0, 0), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [4502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, 0, 29), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [4510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 28), SHIFT_REPEAT(2396), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [4517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 2, 0, 8), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [4531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, 0, 3), + [4533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [4537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, 0, 67), + [4539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 121), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [4545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 33), + [4547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [4551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 122), + [4553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 123), + [4555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 20), + [4557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 4, 0, 110), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [4563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [4567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard_import, 1, 0, 0), + [4569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), + [4571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 0), + [4573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), + [4581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [4585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [4589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, 0, 21), + [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [4595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), + [4597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [4601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 31), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [4609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 129), + [4611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 130), + [4613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 131), + [4615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 132), + [4617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 1, 0, 52), + [4619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_separator, 1, 0, 0), + [4621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [4625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 134), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [4631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 135), + [4633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 136), + [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [4639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 8, 0, 137), + [4641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1, 0, 0), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [4659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pass_statement, 1, 0, 0), + [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [4665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1, 0, 0), + [4667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), + [4669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [4671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 32), + [4673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 33), + [4675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 109), + [4677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 4, 0, 30), + [4679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 6, 0, 75), + [4681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [4685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 6, 0, 76), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [4691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_import, 2, 0, 0), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [4731] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [4763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1, 0, 0), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [4903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 0), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [4919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 0), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), }; enum ts_external_scanner_symbol_identifiers { @@ -129463,6 +128595,9 @@ TS_PUBLIC const TSLanguage *tree_sitter_python(void) { tree_sitter_python_external_scanner_deserialize, }, .primary_state_ids = ts_primary_state_ids, + .name = "python", + .reserved_words = &ts_reserved_words[0][0], + .max_reserved_word_set_size = 35, }; return &language; } diff --git a/src/tree_sitter/array.h b/src/tree_sitter/array.h index 15a3b233..a17a574f 100644 --- a/src/tree_sitter/array.h +++ b/src/tree_sitter/array.h @@ -14,6 +14,7 @@ extern "C" { #include #ifdef _MSC_VER +#pragma warning(push) #pragma warning(disable : 4101) #elif defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic push @@ -278,7 +279,7 @@ static inline void _array__splice(Array *self, size_t element_size, #define _compare_int(a, b) ((int)*(a) - (int)(b)) #ifdef _MSC_VER -#pragma warning(default : 4101) +#pragma warning(pop) #elif defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic pop #endif diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h index 799f599b..30fa7f18 100644 --- a/src/tree_sitter/parser.h +++ b/src/tree_sitter/parser.h @@ -79,6 +79,12 @@ typedef struct { uint16_t external_lex_state; } TSLexMode; +typedef struct { + uint16_t lex_state; + uint16_t external_lex_state; + uint16_t reserved_word_set_id; +} TSLexerMode; + typedef union { TSParseAction action; struct { @@ -115,7 +121,7 @@ struct TSLanguage { const TSSymbol *public_symbol_map; const uint16_t *alias_map; const TSSymbol *alias_sequences; - const TSLexMode *lex_modes; + const TSLexerMode *lex_modes; bool (*lex_fn)(TSLexer *, TSStateId); bool (*keyword_lex_fn)(TSLexer *, TSStateId); TSSymbol keyword_capture_token; @@ -129,6 +135,9 @@ struct TSLanguage { void (*deserialize)(void *, const char *, unsigned); } external_scanner; const TSStateId *primary_state_ids; + const char *name; + const TSSymbol *reserved_words; + uint16_t max_reserved_word_set_size; }; static inline bool set_contains(TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { diff --git a/test/corpus/errors.txt b/test/corpus/errors.txt index d0bf103c..f27a2636 100644 --- a/test/corpus/errors.txt +++ b/test/corpus/errors.txt @@ -29,3 +29,46 @@ def a(b): (string_end))) (expression_statement (identifier))))) + +================================================= +Error detected at globally reserved keyword +================================================= + +def test_comprehension(): + [x for. # Should error here, and not use def as a method call + + def valid_func(): # Should parse as valid function + pass + +def test_incomplete_call(): + print( # Should error here + class Example: # Should still parse as valid class definition + pass + +--- + +(module + (function_definition + (identifier) + (parameters) + (ERROR + (identifier)) + (comment) + (block + (function_definition + (identifier) + (parameters) + (comment) + (block + (pass_statement))))) + (function_definition + (identifier) + (parameters) + (ERROR) + (comment) + (block + (class_definition + (identifier) + (comment) + (block + (pass_statement))))))