From fcec8e025675b3c05c59f88bd5c7a4262ca76bdd Mon Sep 17 00:00:00 2001 From: Taus Date: Tue, 22 Oct 2024 15:11:51 +0000 Subject: [PATCH 1/7] Python: Fail tests when errors/warnings are logged This is primarily useful for ensuring that errors where a node does not have an appropriate context set in `python.tsg` actually have an effect on the pass/fail status of the parser tests. Previously, these would just be logged to stdout, but test could still succeed when there were errors present. Also fixes one of the logging lines in `tsg_parser.py` to be more consistent with the others. --- .../extractor/semmle/python/parser/dump_ast.py | 18 ++++++++++++++++++ .../semmle/python/parser/tsg_parser.py | 2 +- python/extractor/tests/test_parser.py | 8 ++++++++ 3 files changed, 27 insertions(+), 1 deletion(-) diff --git a/python/extractor/semmle/python/parser/dump_ast.py b/python/extractor/semmle/python/parser/dump_ast.py index fbeaabb2939..23e1a973dfc 100644 --- a/python/extractor/semmle/python/parser/dump_ast.py +++ b/python/extractor/semmle/python/parser/dump_ast.py @@ -97,9 +97,27 @@ class AstDumper(object): class StdoutLogger(logging.Logger): + error_count = 0 def log(self, level, fmt, *args): sys.stdout.write(fmt % args + "\n") + def info(self, fmt, *args): + self.log(logging.INFO, fmt, *args) + + def warn(self, fmt, *args): + self.log(logging.WARN, fmt, *args) + self.error_count += 1 + + def error(self, fmt, *args): + self.log(logging.ERROR, fmt, *args) + self.error_count += 1 + + def had_errors(self): + return self.error_count > 0 + + def reset_error_count(self): + self.error_count = 0 + def old_parser(inputfile, logger): mod = PythonSourceModule(None, inputfile, logger) logger.close() diff --git a/python/extractor/semmle/python/parser/tsg_parser.py b/python/extractor/semmle/python/parser/tsg_parser.py index 46784c4e860..7ddd6813da7 100644 --- a/python/extractor/semmle/python/parser/tsg_parser.py +++ b/python/extractor/semmle/python/parser/tsg_parser.py @@ -440,7 +440,7 @@ def concatenate_stringparts(stringparts, logger): try: return "".join(decode_str(stringpart.s) for stringpart in stringparts) except Exception as ex: - logger.error("Unable to concatenate string %s getting error %s", stringparts, ex) + logger.error("Unable to concatenate string {} getting error {}".format(stringparts, ex)) return stringparts[0].s diff --git a/python/extractor/tests/test_parser.py b/python/extractor/tests/test_parser.py index e93ffd1ffd7..0c74a62f452 100644 --- a/python/extractor/tests/test_parser.py +++ b/python/extractor/tests/test_parser.py @@ -49,6 +49,8 @@ class ParserTest(unittest.TestCase): diff = e.output if diff: pytest.fail(diff.decode("utf-8")) + self.check_for_stdout_errors(logger) + self.assertEqual(self.capsys.readouterr().err, "") os.remove(oldfile) os.remove(newfile) @@ -84,9 +86,15 @@ class ParserTest(unittest.TestCase): diff = e.output if diff: pytest.fail(diff.decode("utf-8")) + + self.check_for_stdout_errors(logger) self.assertEqual(self.capsys.readouterr().err, "") os.remove(actual) + def check_for_stdout_errors(self, logger): + if logger.had_errors(): + logger.reset_error_count() + pytest.fail("Errors/warnings were logged to stdout during testing.") def setup_tests(): test_folder = os.path.join(os.path.dirname(__file__), "parser") From 8053e0ed44bb5a11a4a09d6a23e1d81be7131784 Mon Sep 17 00:00:00 2001 From: Taus Date: Tue, 22 Oct 2024 15:17:12 +0000 Subject: [PATCH 2/7] Python: Allow `list_splat`s as type annotations That is, the `*T` in `def foo(*args : *T): ...`. This is apparently a piece of syntax we did not support correctly until now. In terms of the grammar, we simply add `list_splat` as a possible alternative for `type` (which could previously only be an `expression`). We also update `python.tsg` to not specify `expression` those places (as the relevant stanzas will then not work for `list_splat`s). This syntax is not supported by the old parser, hence we only add a new parser test for it. --- .../tests/parser/functions_new.expected | 41 +++++++++++++++++++ .../extractor/tests/parser/functions_new.py | 2 + python/extractor/tsg-python/python.tsg | 10 ++--- python/extractor/tsg-python/tsp/grammar.js | 2 +- 4 files changed, 49 insertions(+), 6 deletions(-) create mode 100644 python/extractor/tests/parser/functions_new.expected create mode 100644 python/extractor/tests/parser/functions_new.py diff --git a/python/extractor/tests/parser/functions_new.expected b/python/extractor/tests/parser/functions_new.expected new file mode 100644 index 00000000000..491226c9bc1 --- /dev/null +++ b/python/extractor/tests/parser/functions_new.expected @@ -0,0 +1,41 @@ +Module: [1, 0] - [3, 0] + body: [ + Assign: [1, 0] - [1, 42] + targets: [ + Name: [1, 4] - [1, 26] + variable: Variable('tuple_typed_list_splat', None) + ctx: Store + ] + value: + FunctionExpr: [1, 0] - [1, 42] + name: 'tuple_typed_list_splat' + args: + arguments + defaults: [] + kw_defaults: [] + annotations: [] + varargannotation: + Starred: [1, 35] - [1, 40] + value: + Name: [1, 36] - [1, 40] + variable: Variable('ARGS', None) + ctx: Load + ctx: Load + kwargannotation: None + kw_annotations: [] + returns: None + inner_scope: + Function: [1, 0] - [1, 42] + name: 'tuple_typed_list_splat' + type_parameters: [] + args: [] + vararg: + Name: [1, 28] - [1, 32] + variable: Variable('args', None) + ctx: Param + kwonlyargs: [] + kwarg: None + body: [ + Pass: [2, 4] - [2, 8] + ] + ] diff --git a/python/extractor/tests/parser/functions_new.py b/python/extractor/tests/parser/functions_new.py new file mode 100644 index 00000000000..eb5d9d06d45 --- /dev/null +++ b/python/extractor/tests/parser/functions_new.py @@ -0,0 +1,2 @@ +def tuple_typed_list_splat(*args : *ARGS): + pass diff --git a/python/extractor/tsg-python/python.tsg b/python/extractor/tsg-python/python.tsg index 8a9ab01e991..c06596653f6 100644 --- a/python/extractor/tsg-python/python.tsg +++ b/python/extractor/tsg-python/python.tsg @@ -3169,11 +3169,11 @@ (typed_parameter (identifier) @name . - type: (type (expression) @type) + type: (type (_) @type) ) (typed_default_parameter name: (_) @name - type: (type (expression) @type) + type: (type (_) @type) value: (_) @value ) ] @param @@ -3228,7 +3228,7 @@ (list_splat_pattern vararg: (_) @name) @starred (typed_parameter (list_splat_pattern vararg: (_) @name) @starred - type: (type (expression) @type) + type: (type (_) @type) ) ] ) @params @@ -3245,7 +3245,7 @@ ; Return type (function_definition - return_type: (type (expression) @type) + return_type: (type (_) @type) ) @funcdef { attr (@funcdef.funcexpr) returns = @type.node @@ -3259,7 +3259,7 @@ (dictionary_splat_pattern kwarg: (identifier) @name) (typed_parameter (dictionary_splat_pattern kwarg: (identifier) @name) - type: (type (expression) @type) + type: (type (_) @type) ) ] ) @params diff --git a/python/extractor/tsg-python/tsp/grammar.js b/python/extractor/tsg-python/tsp/grammar.js index ebef231f362..256364f4364 100644 --- a/python/extractor/tsg-python/tsp/grammar.js +++ b/python/extractor/tsg-python/tsp/grammar.js @@ -963,7 +963,7 @@ module.exports = grammar({ field('type', $.type) )), - type: $ => $.expression, + type: $ => choice($.list_splat, $.expression), keyword_argument: $ => seq( field('name', choice($.identifier, $.keyword_identifier)), From 7ceefb509bbba76380537a6e4051ed41a5f4ac48 Mon Sep 17 00:00:00 2001 From: Taus Date: Tue, 22 Oct 2024 15:17:34 +0000 Subject: [PATCH 3/7] Python: Regenerate parser files --- .../extractor/tsg-python/tsp/src/grammar.json | 13 +- .../tsg-python/tsp/src/node-types.json | 4 + python/extractor/tsg-python/tsp/src/parser.c | 93485 ++++++++-------- 3 files changed, 46791 insertions(+), 46711 deletions(-) diff --git a/python/extractor/tsg-python/tsp/src/grammar.json b/python/extractor/tsg-python/tsp/src/grammar.json index 0f37f9865ec..0573a840b89 100644 --- a/python/extractor/tsg-python/tsp/src/grammar.json +++ b/python/extractor/tsg-python/tsp/src/grammar.json @@ -5289,8 +5289,17 @@ } }, "type": { - "type": "SYMBOL", - "name": "expression" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "list_splat" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] }, "keyword_argument": { "type": "SEQ", diff --git a/python/extractor/tsg-python/tsp/src/node-types.json b/python/extractor/tsg-python/tsp/src/node-types.json index 3d6613fac97..bc56c0a62d0 100644 --- a/python/extractor/tsg-python/tsp/src/node-types.json +++ b/python/extractor/tsg-python/tsp/src/node-types.json @@ -3347,6 +3347,10 @@ { "type": "expression", "named": true + }, + { + "type": "list_splat", + "named": true } ] } diff --git a/python/extractor/tsg-python/tsp/src/parser.c b/python/extractor/tsg-python/tsp/src/parser.c index f6968085e58..7ef0bfdc959 100644 --- a/python/extractor/tsg-python/tsp/src/parser.c +++ b/python/extractor/tsg-python/tsp/src/parser.c @@ -5,7 +5,7 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1532 +#define STATE_COUNT 1534 #define LARGE_STATE_COUNT 155 #define SYMBOL_COUNT 283 #define ALIAS_COUNT 3 @@ -2991,72 +2991,72 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5] = 5, [6] = 6, [7] = 7, - [8] = 8, + [8] = 5, [9] = 9, [10] = 10, [11] = 11, - [12] = 12, - [13] = 13, + [12] = 3, + [13] = 6, [14] = 14, [15] = 15, [16] = 16, [17] = 17, [18] = 18, [19] = 19, - [20] = 20, - [21] = 4, + [20] = 16, + [21] = 21, [22] = 22, [23] = 23, - [24] = 24, - [25] = 25, + [24] = 2, + [25] = 11, [26] = 26, [27] = 27, - [28] = 11, - [29] = 2, - [30] = 5, - [31] = 31, - [32] = 32, - [33] = 8, - [34] = 32, - [35] = 31, - [36] = 36, - [37] = 10, + [28] = 28, + [29] = 29, + [30] = 9, + [31] = 22, + [32] = 7, + [33] = 33, + [34] = 23, + [35] = 35, + [36] = 4, + [37] = 37, [38] = 38, - [39] = 27, - [40] = 26, - [41] = 6, - [42] = 7, - [43] = 25, - [44] = 24, - [45] = 23, - [46] = 22, - [47] = 20, - [48] = 19, - [49] = 18, - [50] = 17, - [51] = 36, - [52] = 16, - [53] = 15, - [54] = 14, - [55] = 13, - [56] = 12, - [57] = 3, - [58] = 38, - [59] = 9, + [39] = 39, + [40] = 33, + [41] = 41, + [42] = 38, + [43] = 21, + [44] = 44, + [45] = 19, + [46] = 18, + [47] = 26, + [48] = 35, + [49] = 27, + [50] = 28, + [51] = 37, + [52] = 41, + [53] = 29, + [54] = 17, + [55] = 44, + [56] = 39, + [57] = 10, + [58] = 14, + [59] = 15, [60] = 60, [61] = 61, [62] = 62, - [63] = 61, - [64] = 61, - [65] = 62, - [66] = 61, - [67] = 61, - [68] = 61, - [69] = 61, + [63] = 60, + [64] = 60, + [65] = 60, + [66] = 62, + [67] = 60, + [68] = 60, + [69] = 60, [70] = 70, [71] = 70, [72] = 72, - [73] = 73, + [73] = 72, [74] = 74, [75] = 75, [76] = 76, @@ -3064,72 +3064,72 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [78] = 78, [79] = 79, [80] = 80, - [81] = 81, + [81] = 77, [82] = 82, [83] = 83, [84] = 84, [85] = 85, - [86] = 86, + [86] = 79, [87] = 87, [88] = 88, [89] = 89, - [90] = 73, + [90] = 90, [91] = 85, - [92] = 80, - [93] = 81, - [94] = 82, - [95] = 95, - [96] = 96, - [97] = 83, - [98] = 76, - [99] = 74, - [100] = 100, + [92] = 92, + [93] = 93, + [94] = 83, + [95] = 82, + [96] = 75, + [97] = 97, + [98] = 98, + [99] = 99, + [100] = 98, [101] = 101, - [102] = 96, - [103] = 75, + [102] = 97, + [103] = 103, [104] = 104, - [105] = 88, - [106] = 84, - [107] = 77, - [108] = 86, - [109] = 89, - [110] = 101, + [105] = 93, + [106] = 106, + [107] = 84, + [108] = 106, + [109] = 109, + [110] = 110, [111] = 111, - [112] = 79, - [113] = 78, - [114] = 114, - [115] = 115, - [116] = 116, - [117] = 117, - [118] = 104, - [119] = 100, - [120] = 95, - [121] = 121, + [112] = 104, + [113] = 109, + [114] = 76, + [115] = 80, + [116] = 89, + [117] = 111, + [118] = 74, + [119] = 78, + [120] = 120, + [121] = 99, [122] = 122, - [123] = 121, - [124] = 72, - [125] = 116, - [126] = 117, - [127] = 111, - [128] = 122, - [129] = 114, - [130] = 115, + [123] = 120, + [124] = 103, + [125] = 122, + [126] = 101, + [127] = 87, + [128] = 110, + [129] = 92, + [130] = 88, [131] = 131, [132] = 132, [133] = 133, - [134] = 134, + [134] = 133, [135] = 133, - [136] = 133, + [136] = 136, [137] = 133, - [138] = 134, - [139] = 134, - [140] = 134, - [141] = 134, - [142] = 134, - [143] = 133, - [144] = 134, + [138] = 136, + [139] = 136, + [140] = 133, + [141] = 133, + [142] = 136, + [143] = 136, + [144] = 136, [145] = 133, - [146] = 133, + [146] = 136, [147] = 147, [148] = 148, [149] = 148, @@ -3143,64 +3143,64 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [157] = 157, [158] = 158, [159] = 159, - [160] = 159, + [160] = 160, [161] = 161, - [162] = 161, - [163] = 163, - [164] = 161, + [162] = 160, + [163] = 159, + [164] = 159, [165] = 165, - [166] = 165, + [166] = 166, [167] = 167, [168] = 168, [169] = 169, [170] = 170, - [171] = 171, - [172] = 165, + [171] = 170, + [172] = 170, [173] = 173, - [174] = 173, + [174] = 174, [175] = 175, [176] = 176, - [177] = 177, - [178] = 178, - [179] = 179, - [180] = 173, + [177] = 174, + [178] = 158, + [179] = 175, + [180] = 175, [181] = 181, - [182] = 158, + [182] = 182, [183] = 183, - [184] = 181, + [184] = 184, [185] = 185, [186] = 186, [187] = 187, - [188] = 188, - [189] = 189, - [190] = 190, + [188] = 187, + [189] = 185, + [190] = 185, [191] = 191, - [192] = 167, - [193] = 193, - [194] = 188, + [192] = 168, + [193] = 191, + [194] = 185, [195] = 195, [196] = 196, - [197] = 171, - [198] = 186, - [199] = 187, + [197] = 169, + [198] = 191, + [199] = 167, [200] = 200, - [201] = 170, - [202] = 186, - [203] = 189, - [204] = 187, - [205] = 196, - [206] = 190, - [207] = 193, - [208] = 190, - [209] = 188, - [210] = 193, - [211] = 211, - [212] = 189, - [213] = 196, - [214] = 200, - [215] = 188, - [216] = 216, - [217] = 189, + [201] = 196, + [202] = 202, + [203] = 191, + [204] = 202, + [205] = 205, + [206] = 206, + [207] = 187, + [208] = 200, + [209] = 196, + [210] = 210, + [211] = 195, + [212] = 212, + [213] = 202, + [214] = 195, + [215] = 206, + [216] = 200, + [217] = 217, [218] = 218, [219] = 219, [220] = 220, @@ -3215,42 +3215,42 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [229] = 229, [230] = 230, [231] = 231, - [232] = 232, - [233] = 230, - [234] = 232, - [235] = 228, - [236] = 236, + [232] = 228, + [233] = 233, + [234] = 234, + [235] = 233, + [236] = 231, [237] = 237, - [238] = 229, + [238] = 230, [239] = 239, [240] = 240, - [241] = 240, - [242] = 236, + [241] = 229, + [242] = 239, [243] = 243, - [244] = 240, - [245] = 243, - [246] = 246, - [247] = 239, - [248] = 246, - [249] = 246, - [250] = 243, + [244] = 243, + [245] = 228, + [246] = 229, + [247] = 247, + [248] = 237, + [249] = 233, + [250] = 247, [251] = 251, [252] = 252, [253] = 253, [254] = 254, - [255] = 253, - [256] = 251, - [257] = 252, - [258] = 251, + [255] = 255, + [256] = 256, + [257] = 251, + [258] = 255, [259] = 259, - [260] = 259, - [261] = 261, - [262] = 259, - [263] = 261, - [264] = 264, - [265] = 261, - [266] = 252, - [267] = 264, + [260] = 255, + [261] = 259, + [262] = 256, + [263] = 252, + [264] = 252, + [265] = 254, + [266] = 251, + [267] = 254, [268] = 268, [269] = 269, [270] = 270, @@ -3259,116 +3259,116 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [273] = 273, [274] = 274, [275] = 275, - [276] = 274, - [277] = 277, + [276] = 276, + [277] = 273, [278] = 278, - [279] = 275, - [280] = 273, - [281] = 272, - [282] = 268, - [283] = 271, + [279] = 279, + [280] = 280, + [281] = 281, + [282] = 276, + [283] = 268, [284] = 284, - [285] = 285, - [286] = 286, - [287] = 287, + [285] = 272, + [286] = 269, + [287] = 271, [288] = 288, [289] = 289, - [290] = 290, - [291] = 291, - [292] = 292, + [290] = 278, + [291] = 275, + [292] = 274, [293] = 293, - [294] = 294, + [294] = 288, [295] = 295, [296] = 296, [297] = 297, [298] = 298, [299] = 299, - [300] = 287, - [301] = 301, + [300] = 300, + [301] = 296, [302] = 302, [303] = 303, - [304] = 304, + [304] = 303, [305] = 305, - [306] = 305, + [306] = 297, [307] = 307, [308] = 308, [309] = 309, [310] = 310, - [311] = 291, - [312] = 292, - [313] = 302, - [314] = 303, - [315] = 308, - [316] = 310, - [317] = 227, - [318] = 305, - [319] = 291, - [320] = 305, - [321] = 292, - [322] = 303, + [311] = 307, + [312] = 312, + [313] = 313, + [314] = 312, + [315] = 315, + [316] = 316, + [317] = 317, + [318] = 318, + [319] = 319, + [320] = 313, + [321] = 321, + [322] = 322, [323] = 323, - [324] = 324, - [325] = 291, + [324] = 318, + [325] = 325, [326] = 326, - [327] = 223, + [327] = 316, [328] = 328, - [329] = 218, - [330] = 224, - [331] = 292, - [332] = 332, - [333] = 308, - [334] = 225, - [335] = 291, - [336] = 305, - [337] = 292, - [338] = 308, - [339] = 303, - [340] = 292, - [341] = 303, - [342] = 305, + [329] = 224, + [330] = 312, + [331] = 297, + [332] = 296, + [333] = 316, + [334] = 334, + [335] = 297, + [336] = 318, + [337] = 312, + [338] = 338, + [339] = 339, + [340] = 340, + [341] = 296, + [342] = 342, [343] = 343, [344] = 344, - [345] = 345, - [346] = 308, - [347] = 344, - [348] = 323, - [349] = 291, - [350] = 308, - [351] = 220, - [352] = 352, - [353] = 353, - [354] = 326, - [355] = 355, - [356] = 356, + [345] = 296, + [346] = 316, + [347] = 312, + [348] = 348, + [349] = 349, + [350] = 318, + [351] = 227, + [352] = 318, + [353] = 297, + [354] = 316, + [355] = 296, + [356] = 342, [357] = 357, [358] = 358, - [359] = 355, - [360] = 360, - [361] = 343, - [362] = 362, - [363] = 357, - [364] = 324, - [365] = 358, - [366] = 366, - [367] = 367, - [368] = 368, - [369] = 366, - [370] = 368, - [371] = 226, - [372] = 372, - [373] = 332, - [374] = 372, + [359] = 340, + [360] = 312, + [361] = 361, + [362] = 318, + [363] = 219, + [364] = 339, + [365] = 343, + [366] = 338, + [367] = 221, + [368] = 297, + [369] = 316, + [370] = 334, + [371] = 371, + [372] = 225, + [373] = 373, + [374] = 374, [375] = 375, - [376] = 303, - [377] = 377, - [378] = 377, - [379] = 379, - [380] = 362, - [381] = 381, - [382] = 379, - [383] = 381, - [384] = 352, - [385] = 385, + [376] = 348, + [377] = 218, + [378] = 358, + [379] = 357, + [380] = 328, + [381] = 373, + [382] = 222, + [383] = 383, + [384] = 361, + [385] = 374, [386] = 386, [387] = 387, [388] = 388, @@ -3376,12 +3376,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [390] = 390, [391] = 391, [392] = 392, - [393] = 393, + [393] = 386, [394] = 394, [395] = 395, [396] = 396, - [397] = 391, - [398] = 398, + [397] = 397, + [398] = 388, [399] = 399, [400] = 400, [401] = 401, @@ -3390,116 +3390,116 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [404] = 404, [405] = 405, [406] = 406, - [407] = 388, - [408] = 403, + [407] = 407, + [408] = 387, [409] = 409, - [410] = 409, - [411] = 403, + [410] = 410, + [411] = 411, [412] = 412, - [413] = 413, + [413] = 387, [414] = 414, [415] = 415, - [416] = 393, - [417] = 406, - [418] = 404, + [416] = 407, + [417] = 404, + [418] = 402, [419] = 419, [420] = 420, - [421] = 421, + [421] = 407, [422] = 422, [423] = 423, - [424] = 400, - [425] = 391, + [424] = 424, + [425] = 390, [426] = 426, [427] = 427, - [428] = 387, + [428] = 428, [429] = 429, [430] = 430, - [431] = 431, - [432] = 432, - [433] = 412, + [431] = 390, + [432] = 401, + [433] = 388, [434] = 434, - [435] = 387, - [436] = 427, - [437] = 390, - [438] = 438, - [439] = 438, - [440] = 389, - [441] = 389, - [442] = 409, - [443] = 443, - [444] = 444, - [445] = 402, + [435] = 389, + [436] = 402, + [437] = 402, + [438] = 404, + [439] = 411, + [440] = 420, + [441] = 441, + [442] = 400, + [443] = 396, + [444] = 424, + [445] = 445, [446] = 446, - [447] = 394, + [447] = 447, [448] = 448, - [449] = 448, + [449] = 424, [450] = 450, [451] = 451, [452] = 452, - [453] = 453, - [454] = 421, - [455] = 395, - [456] = 386, - [457] = 426, - [458] = 404, - [459] = 400, - [460] = 430, - [461] = 461, - [462] = 448, - [463] = 398, - [464] = 387, - [465] = 409, - [466] = 405, - [467] = 406, - [468] = 403, - [469] = 389, - [470] = 470, - [471] = 406, - [472] = 404, - [473] = 473, - [474] = 443, - [475] = 400, - [476] = 461, - [477] = 391, - [478] = 415, - [479] = 448, - [480] = 480, - [481] = 453, - [482] = 419, - [483] = 483, - [484] = 432, - [485] = 485, + [453] = 424, + [454] = 403, + [455] = 404, + [456] = 456, + [457] = 399, + [458] = 396, + [459] = 411, + [460] = 407, + [461] = 395, + [462] = 411, + [463] = 387, + [464] = 464, + [465] = 456, + [466] = 466, + [467] = 466, + [468] = 426, + [469] = 469, + [470] = 396, + [471] = 388, + [472] = 464, + [473] = 429, + [474] = 390, + [475] = 423, + [476] = 419, + [477] = 445, + [478] = 412, + [479] = 479, + [480] = 428, + [481] = 481, + [482] = 446, + [483] = 414, + [484] = 484, + [485] = 447, [486] = 486, [487] = 487, [488] = 488, - [489] = 486, - [490] = 490, - [491] = 490, - [492] = 492, + [489] = 489, + [490] = 487, + [491] = 491, + [492] = 491, [493] = 493, - [494] = 487, - [495] = 488, - [496] = 492, - [497] = 493, + [494] = 486, + [495] = 493, + [496] = 488, + [497] = 489, [498] = 498, [499] = 499, [500] = 500, [501] = 501, - [502] = 498, + [502] = 502, [503] = 503, [504] = 504, [505] = 505, [506] = 506, - [507] = 504, + [507] = 507, [508] = 508, [509] = 509, [510] = 510, - [511] = 510, + [511] = 511, [512] = 512, [513] = 513, [514] = 514, [515] = 515, - [516] = 512, + [516] = 516, [517] = 517, [518] = 518, [519] = 519, @@ -3509,7 +3509,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [523] = 523, [524] = 524, [525] = 513, - [526] = 526, + [526] = 512, [527] = 527, [528] = 528, [529] = 529, @@ -3517,68 +3517,68 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [531] = 531, [532] = 532, [533] = 533, - [534] = 534, + [534] = 533, [535] = 535, [536] = 536, [537] = 537, - [538] = 538, - [539] = 524, + [538] = 524, + [539] = 523, [540] = 540, - [541] = 541, - [542] = 505, - [543] = 543, + [541] = 514, + [542] = 516, + [543] = 531, [544] = 544, [545] = 545, - [546] = 503, - [547] = 508, - [548] = 545, - [549] = 540, - [550] = 533, - [551] = 551, + [546] = 527, + [547] = 522, + [548] = 548, + [549] = 520, + [550] = 532, + [551] = 540, [552] = 552, [553] = 553, - [554] = 523, - [555] = 541, - [556] = 543, - [557] = 538, - [558] = 553, - [559] = 532, + [554] = 510, + [555] = 500, + [556] = 544, + [557] = 501, + [558] = 506, + [559] = 502, [560] = 560, - [561] = 522, + [561] = 503, [562] = 562, - [563] = 563, - [564] = 515, - [565] = 501, - [566] = 527, + [563] = 504, + [564] = 505, + [565] = 507, + [566] = 560, [567] = 567, - [568] = 517, - [569] = 518, - [570] = 519, - [571] = 506, - [572] = 521, - [573] = 500, - [574] = 560, - [575] = 520, - [576] = 576, - [577] = 526, - [578] = 563, - [579] = 562, - [580] = 576, + [568] = 568, + [569] = 509, + [570] = 511, + [571] = 517, + [572] = 518, + [573] = 567, + [574] = 519, + [575] = 562, + [576] = 521, + [577] = 537, + [578] = 508, + [579] = 548, + [580] = 568, [581] = 528, - [582] = 529, - [583] = 534, - [584] = 499, - [585] = 537, - [586] = 535, - [587] = 552, - [588] = 551, - [589] = 544, + [582] = 582, + [583] = 499, + [584] = 529, + [585] = 553, + [586] = 530, + [587] = 535, + [588] = 552, + [589] = 545, [590] = 536, - [591] = 509, - [592] = 530, - [593] = 531, - [594] = 514, - [595] = 567, + [591] = 591, + [592] = 582, + [593] = 591, + [594] = 515, + [595] = 498, [596] = 596, [597] = 597, [598] = 598, @@ -3586,11 +3586,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [600] = 600, [601] = 601, [602] = 602, - [603] = 599, + [603] = 602, [604] = 604, [605] = 605, - [606] = 602, - [607] = 607, + [606] = 606, + [607] = 606, [608] = 608, [609] = 609, [610] = 610, @@ -3603,7 +3603,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [617] = 617, [618] = 618, [619] = 619, - [620] = 620, + [620] = 618, [621] = 621, [622] = 622, [623] = 623, @@ -3613,7 +3613,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [627] = 627, [628] = 628, [629] = 629, - [630] = 621, + [630] = 630, [631] = 631, [632] = 632, [633] = 633, @@ -3633,210 +3633,210 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [647] = 647, [648] = 648, [649] = 649, - [650] = 648, - [651] = 647, - [652] = 652, - [653] = 653, + [650] = 650, + [651] = 648, + [652] = 649, + [653] = 647, [654] = 654, - [655] = 646, + [655] = 655, [656] = 656, [657] = 657, - [658] = 653, - [659] = 656, - [660] = 654, + [658] = 658, + [659] = 654, + [660] = 650, [661] = 661, - [662] = 662, - [663] = 649, - [664] = 652, - [665] = 661, - [666] = 662, - [667] = 657, + [662] = 658, + [663] = 655, + [664] = 657, + [665] = 656, + [666] = 661, + [667] = 646, [668] = 668, - [669] = 668, - [670] = 670, - [671] = 671, - [672] = 668, + [669] = 669, + [670] = 599, + [671] = 669, + [672] = 669, [673] = 673, - [674] = 600, + [674] = 673, [675] = 675, - [676] = 673, - [677] = 670, - [678] = 601, - [679] = 668, - [680] = 600, + [676] = 676, + [677] = 675, + [678] = 669, + [679] = 601, + [680] = 676, [681] = 681, [682] = 682, - [683] = 607, - [684] = 684, - [685] = 685, - [686] = 686, + [683] = 683, + [684] = 681, + [685] = 599, + [686] = 683, [687] = 687, - [688] = 688, - [689] = 685, - [690] = 686, + [688] = 683, + [689] = 687, + [690] = 690, [691] = 691, - [692] = 601, - [693] = 682, - [694] = 694, - [695] = 682, - [696] = 696, - [697] = 691, - [698] = 698, - [699] = 687, + [692] = 687, + [693] = 668, + [694] = 690, + [695] = 695, + [696] = 618, + [697] = 697, + [698] = 691, + [699] = 699, [700] = 700, - [701] = 671, - [702] = 698, - [703] = 675, - [704] = 704, - [705] = 700, - [706] = 688, - [707] = 686, - [708] = 696, - [709] = 694, - [710] = 621, - [711] = 687, - [712] = 694, - [713] = 685, - [714] = 698, + [701] = 601, + [702] = 604, + [703] = 695, + [704] = 697, + [705] = 690, + [706] = 699, + [707] = 707, + [708] = 707, + [709] = 695, + [710] = 710, + [711] = 697, + [712] = 710, + [713] = 682, + [714] = 681, [715] = 691, - [716] = 696, - [717] = 698, - [718] = 696, - [719] = 691, - [720] = 685, - [721] = 704, - [722] = 686, - [723] = 688, - [724] = 688, - [725] = 687, - [726] = 704, - [727] = 704, - [728] = 700, - [729] = 682, - [730] = 694, - [731] = 700, - [732] = 648, - [733] = 652, - [734] = 646, - [735] = 610, - [736] = 649, - [737] = 657, - [738] = 647, - [739] = 607, - [740] = 621, - [741] = 662, - [742] = 656, - [743] = 611, - [744] = 653, - [745] = 654, - [746] = 661, - [747] = 747, - [748] = 656, - [749] = 470, - [750] = 654, - [751] = 423, - [752] = 653, - [753] = 652, - [754] = 661, - [755] = 646, - [756] = 673, - [757] = 611, + [716] = 682, + [717] = 687, + [718] = 699, + [719] = 710, + [720] = 707, + [721] = 699, + [722] = 707, + [723] = 691, + [724] = 697, + [725] = 690, + [726] = 710, + [727] = 683, + [728] = 682, + [729] = 681, + [730] = 730, + [731] = 695, + [732] = 646, + [733] = 648, + [734] = 649, + [735] = 618, + [736] = 658, + [737] = 610, + [738] = 650, + [739] = 611, + [740] = 661, + [741] = 604, + [742] = 655, + [743] = 647, + [744] = 654, + [745] = 656, + [746] = 657, + [747] = 655, + [748] = 649, + [749] = 611, + [750] = 656, + [751] = 397, + [752] = 654, + [753] = 658, + [754] = 344, + [755] = 755, + [756] = 610, + [757] = 406, [758] = 758, - [759] = 657, - [760] = 367, - [761] = 761, - [762] = 670, - [763] = 662, - [764] = 647, - [765] = 648, - [766] = 610, + [759] = 650, + [760] = 648, + [761] = 657, + [762] = 661, + [763] = 349, + [764] = 764, + [765] = 675, + [766] = 673, [767] = 392, - [768] = 768, - [769] = 385, - [770] = 444, - [771] = 649, - [772] = 636, - [773] = 615, - [774] = 627, - [775] = 673, - [776] = 631, - [777] = 632, - [778] = 618, + [768] = 415, + [769] = 646, + [770] = 647, + [771] = 771, + [772] = 624, + [773] = 621, + [774] = 630, + [775] = 640, + [776] = 614, + [777] = 613, + [778] = 631, [779] = 643, - [780] = 638, - [781] = 637, - [782] = 617, - [783] = 633, - [784] = 628, - [785] = 635, - [786] = 639, - [787] = 640, - [788] = 612, - [789] = 614, - [790] = 619, - [791] = 644, - [792] = 620, - [793] = 613, - [794] = 629, - [795] = 622, - [796] = 671, - [797] = 444, - [798] = 634, - [799] = 624, - [800] = 470, - [801] = 675, - [802] = 670, - [803] = 625, - [804] = 641, - [805] = 626, - [806] = 645, - [807] = 642, - [808] = 616, - [809] = 423, - [810] = 638, - [811] = 624, - [812] = 637, - [813] = 622, - [814] = 639, - [815] = 616, - [816] = 627, - [817] = 631, - [818] = 634, - [819] = 613, - [820] = 643, - [821] = 645, - [822] = 635, - [823] = 633, - [824] = 632, - [825] = 620, - [826] = 636, - [827] = 226, - [828] = 641, - [829] = 220, - [830] = 227, - [831] = 761, - [832] = 642, - [833] = 625, - [834] = 626, - [835] = 223, - [836] = 617, - [837] = 629, - [838] = 224, + [780] = 642, + [781] = 639, + [782] = 637, + [783] = 645, + [784] = 632, + [785] = 676, + [786] = 673, + [787] = 675, + [788] = 644, + [789] = 638, + [790] = 668, + [791] = 636, + [792] = 612, + [793] = 641, + [794] = 633, + [795] = 623, + [796] = 634, + [797] = 415, + [798] = 635, + [799] = 625, + [800] = 406, + [801] = 619, + [802] = 626, + [803] = 627, + [804] = 628, + [805] = 397, + [806] = 615, + [807] = 616, + [808] = 629, + [809] = 617, + [810] = 639, + [811] = 616, + [812] = 619, + [813] = 614, + [814] = 621, + [815] = 612, + [816] = 624, + [817] = 625, + [818] = 626, + [819] = 627, + [820] = 628, + [821] = 629, + [822] = 758, + [823] = 227, + [824] = 630, + [825] = 771, + [826] = 643, + [827] = 635, + [828] = 634, + [829] = 633, + [830] = 632, + [831] = 631, + [832] = 613, + [833] = 642, + [834] = 638, + [835] = 218, + [836] = 644, + [837] = 617, + [838] = 623, [839] = 225, - [840] = 644, - [841] = 614, - [842] = 218, + [840] = 221, + [841] = 637, + [842] = 641, [843] = 640, - [844] = 619, - [845] = 612, - [846] = 628, - [847] = 615, - [848] = 618, - [849] = 758, + [844] = 222, + [845] = 636, + [846] = 224, + [847] = 219, + [848] = 615, + [849] = 645, [850] = 850, [851] = 851, - [852] = 851, - [853] = 853, + [852] = 852, + [853] = 851, [854] = 854, [855] = 855, [856] = 856, @@ -3858,36 +3858,36 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [872] = 870, [873] = 873, [874] = 874, - [875] = 875, + [875] = 869, [876] = 876, [877] = 877, [878] = 878, - [879] = 869, - [880] = 870, - [881] = 881, + [879] = 879, + [880] = 880, + [881] = 870, [882] = 870, - [883] = 883, - [884] = 869, + [883] = 869, + [884] = 884, [885] = 885, [886] = 886, - [887] = 887, + [887] = 886, [888] = 888, - [889] = 888, - [890] = 888, - [891] = 888, + [889] = 886, + [890] = 886, + [891] = 891, [892] = 892, [893] = 893, [894] = 894, [895] = 895, [896] = 896, - [897] = 896, - [898] = 898, - [899] = 899, - [900] = 899, + [897] = 897, + [898] = 896, + [899] = 897, + [900] = 900, [901] = 901, [902] = 902, - [903] = 903, - [904] = 902, + [903] = 901, + [904] = 904, [905] = 905, [906] = 906, [907] = 907, @@ -3897,47 +3897,47 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [911] = 911, [912] = 912, [913] = 913, - [914] = 909, - [915] = 915, + [914] = 914, + [915] = 910, [916] = 916, [917] = 917, [918] = 918, [919] = 919, - [920] = 910, - [921] = 921, - [922] = 919, - [923] = 910, - [924] = 918, - [925] = 925, - [926] = 909, - [927] = 909, - [928] = 928, - [929] = 913, + [920] = 920, + [921] = 909, + [922] = 922, + [923] = 923, + [924] = 909, + [925] = 914, + [926] = 926, + [927] = 920, + [928] = 917, + [929] = 916, [930] = 930, - [931] = 915, - [932] = 913, - [933] = 933, - [934] = 934, - [935] = 925, - [936] = 910, - [937] = 908, - [938] = 917, - [939] = 916, + [931] = 914, + [932] = 920, + [933] = 909, + [934] = 923, + [935] = 911, + [936] = 936, + [937] = 914, + [938] = 919, + [939] = 918, [940] = 940, [941] = 941, - [942] = 942, + [942] = 941, [943] = 943, [944] = 944, - [945] = 942, - [946] = 946, - [947] = 940, - [948] = 942, + [945] = 945, + [946] = 943, + [947] = 947, + [948] = 948, [949] = 949, - [950] = 940, - [951] = 951, - [952] = 952, - [953] = 944, - [954] = 944, + [950] = 943, + [951] = 940, + [952] = 941, + [953] = 953, + [954] = 940, [955] = 955, [956] = 956, [957] = 957, @@ -3948,172 +3948,172 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [962] = 962, [963] = 963, [964] = 964, - [965] = 915, + [965] = 965, [966] = 966, [967] = 967, [968] = 968, [969] = 969, [970] = 970, [971] = 971, - [972] = 916, - [973] = 917, - [974] = 905, - [975] = 908, + [972] = 972, + [973] = 973, + [974] = 974, + [975] = 975, [976] = 976, [977] = 977, [978] = 978, - [979] = 979, + [979] = 910, [980] = 980, - [981] = 967, - [982] = 982, + [981] = 981, + [982] = 916, [983] = 983, [984] = 984, [985] = 985, [986] = 986, - [987] = 987, - [988] = 925, + [987] = 923, + [988] = 988, [989] = 989, [990] = 990, [991] = 991, - [992] = 992, - [993] = 993, + [992] = 984, + [993] = 904, [994] = 994, [995] = 995, - [996] = 996, - [997] = 997, + [996] = 905, + [997] = 902, [998] = 998, - [999] = 999, + [999] = 973, [1000] = 1000, [1001] = 1001, - [1002] = 1001, + [1002] = 1002, [1003] = 1003, - [1004] = 976, + [1004] = 1004, [1005] = 1005, - [1006] = 918, + [1006] = 1006, [1007] = 1007, - [1008] = 1008, - [1009] = 1009, + [1008] = 947, + [1009] = 978, [1010] = 1010, - [1011] = 1011, - [1012] = 903, - [1013] = 919, + [1011] = 917, + [1012] = 1012, + [1013] = 911, [1014] = 1014, [1015] = 1015, - [1016] = 901, - [1017] = 1017, + [1016] = 919, + [1017] = 918, [1018] = 1018, - [1019] = 941, + [1019] = 1019, [1020] = 1020, - [1021] = 1021, - [1022] = 1022, + [1021] = 1020, + [1022] = 949, [1023] = 1023, [1024] = 1024, - [1025] = 1024, + [1025] = 1025, [1026] = 1026, - [1027] = 915, - [1028] = 919, - [1029] = 917, - [1030] = 1030, - [1031] = 916, - [1032] = 908, - [1033] = 925, - [1034] = 918, - [1035] = 928, + [1027] = 1027, + [1028] = 1028, + [1029] = 1020, + [1030] = 1019, + [1031] = 1031, + [1032] = 1032, + [1033] = 1033, + [1034] = 1034, + [1035] = 1035, [1036] = 1036, - [1037] = 1037, + [1037] = 945, [1038] = 1038, - [1039] = 1023, - [1040] = 943, + [1039] = 1039, + [1040] = 1040, [1041] = 1041, - [1042] = 952, - [1043] = 1043, + [1042] = 922, + [1043] = 902, [1044] = 1044, - [1045] = 1045, - [1046] = 1046, - [1047] = 1024, - [1048] = 1048, + [1045] = 905, + [1046] = 916, + [1047] = 923, + [1048] = 911, [1049] = 1049, - [1050] = 1023, - [1051] = 1051, - [1052] = 1052, - [1053] = 905, - [1054] = 903, - [1055] = 1055, - [1056] = 1056, - [1057] = 901, + [1050] = 1050, + [1051] = 918, + [1052] = 919, + [1053] = 904, + [1054] = 910, + [1055] = 1019, + [1056] = 917, + [1057] = 1057, [1058] = 1058, [1059] = 1059, [1060] = 1060, [1061] = 1061, [1062] = 1062, - [1063] = 1059, + [1063] = 1063, [1064] = 1064, [1065] = 1065, [1066] = 1066, [1067] = 1067, [1068] = 1068, - [1069] = 1051, + [1069] = 1069, [1070] = 1070, [1071] = 1071, [1072] = 1072, [1073] = 1073, - [1074] = 1074, + [1074] = 1062, [1075] = 1075, - [1076] = 1076, + [1076] = 1061, [1077] = 1077, [1078] = 1078, - [1079] = 1074, - [1080] = 1062, + [1079] = 1079, + [1080] = 907, [1081] = 1081, - [1082] = 1061, + [1082] = 1082, [1083] = 1083, [1084] = 1084, - [1085] = 907, + [1085] = 1085, [1086] = 1086, - [1087] = 1067, - [1088] = 1088, - [1089] = 1089, - [1090] = 1090, - [1091] = 1091, - [1092] = 1058, + [1087] = 1083, + [1088] = 1079, + [1089] = 1024, + [1090] = 1058, + [1091] = 1081, + [1092] = 1092, [1093] = 1093, [1094] = 1094, [1095] = 1095, - [1096] = 992, + [1096] = 1096, [1097] = 1097, - [1098] = 949, - [1099] = 1048, - [1100] = 1100, + [1098] = 1041, + [1099] = 988, + [1100] = 948, [1101] = 1101, [1102] = 1102, - [1103] = 934, + [1103] = 967, [1104] = 1104, [1105] = 1105, - [1106] = 993, + [1106] = 1106, [1107] = 1107, [1108] = 1108, [1109] = 1109, - [1110] = 1110, - [1111] = 1111, - [1112] = 1112, - [1113] = 1112, + [1110] = 1104, + [1111] = 966, + [1112] = 1094, + [1113] = 1096, [1114] = 1114, [1115] = 1115, [1116] = 1116, [1117] = 1117, - [1118] = 1118, - [1119] = 1100, + [1118] = 936, + [1119] = 1119, [1120] = 1120, [1121] = 1121, [1122] = 1122, [1123] = 1123, [1124] = 1124, - [1125] = 1015, + [1125] = 1125, [1126] = 1126, [1127] = 1127, [1128] = 1128, [1129] = 1129, - [1130] = 1107, + [1130] = 1130, [1131] = 1131, [1132] = 1132, [1133] = 1133, @@ -4122,83 +4122,83 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1136] = 1136, [1137] = 1137, [1138] = 1138, - [1139] = 1139, - [1140] = 1138, - [1141] = 1141, + [1139] = 1097, + [1140] = 1135, + [1141] = 1135, [1142] = 1142, - [1143] = 1128, - [1144] = 1144, - [1145] = 1145, + [1143] = 1143, + [1144] = 1138, + [1145] = 1132, [1146] = 1146, [1147] = 1147, - [1148] = 1136, - [1149] = 1138, + [1148] = 1148, + [1149] = 1149, [1150] = 1150, [1151] = 1151, [1152] = 1152, [1153] = 1153, - [1154] = 1151, + [1154] = 1154, [1155] = 1155, - [1156] = 1138, - [1157] = 1142, - [1158] = 1094, - [1159] = 1139, + [1156] = 1156, + [1157] = 1116, + [1158] = 1095, + [1159] = 1159, [1160] = 1160, [1161] = 1161, - [1162] = 1162, - [1163] = 1163, - [1164] = 1144, - [1165] = 1136, + [1162] = 1135, + [1163] = 1138, + [1164] = 1164, + [1165] = 1165, [1166] = 1166, [1167] = 1167, - [1168] = 1155, + [1168] = 1168, [1169] = 1169, [1170] = 1170, - [1171] = 1136, + [1171] = 1171, [1172] = 1172, [1173] = 1173, - [1174] = 1152, - [1175] = 1175, - [1176] = 1169, - [1177] = 1177, - [1178] = 1138, - [1179] = 1179, - [1180] = 1180, - [1181] = 1181, - [1182] = 933, - [1183] = 1095, - [1184] = 1184, + [1174] = 1174, + [1175] = 1161, + [1176] = 1176, + [1177] = 1148, + [1178] = 1178, + [1179] = 1153, + [1180] = 1152, + [1181] = 1171, + [1182] = 1138, + [1183] = 908, + [1184] = 1132, [1185] = 1185, [1186] = 1186, [1187] = 1187, - [1188] = 1136, - [1189] = 1136, - [1190] = 1190, - [1191] = 1147, + [1188] = 1135, + [1189] = 1159, + [1190] = 1135, + [1191] = 1164, [1192] = 1192, [1193] = 1193, [1194] = 1194, - [1195] = 1195, - [1196] = 1173, - [1197] = 1144, + [1195] = 1125, + [1196] = 1196, + [1197] = 1160, [1198] = 1198, - [1199] = 1144, - [1200] = 1093, - [1201] = 1187, - [1202] = 1136, + [1199] = 1199, + [1200] = 1132, + [1201] = 1135, + [1202] = 1202, [1203] = 1203, [1204] = 1204, - [1205] = 1205, - [1206] = 1150, - [1207] = 1138, - [1208] = 1208, - [1209] = 1138, - [1210] = 1210, + [1205] = 1174, + [1206] = 1206, + [1207] = 1186, + [1208] = 1138, + [1209] = 1209, + [1210] = 1138, [1211] = 1211, - [1212] = 1052, - [1213] = 1213, + [1212] = 1138, + [1213] = 1018, [1214] = 1214, - [1215] = 1215, + [1215] = 611, [1216] = 1216, [1217] = 1217, [1218] = 1218, @@ -4206,17 +4206,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1220] = 1220, [1221] = 1221, [1222] = 1222, - [1223] = 1223, + [1223] = 1142, [1224] = 1224, - [1225] = 1072, - [1226] = 1226, + [1225] = 1217, + [1226] = 1063, [1227] = 1227, - [1228] = 1224, - [1229] = 1216, - [1230] = 1214, + [1228] = 1228, + [1229] = 1229, + [1230] = 1176, [1231] = 1218, [1232] = 1232, - [1233] = 1233, + [1233] = 1220, [1234] = 1234, [1235] = 1235, [1236] = 1236, @@ -4225,116 +4225,116 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1239] = 1239, [1240] = 1240, [1241] = 1241, - [1242] = 610, + [1242] = 1242, [1243] = 1243, - [1244] = 1244, - [1245] = 611, + [1244] = 610, + [1245] = 1245, [1246] = 1246, [1247] = 1247, [1248] = 1248, [1249] = 1249, - [1250] = 1248, + [1250] = 1250, [1251] = 1251, - [1252] = 1244, + [1252] = 1250, [1253] = 1253, - [1254] = 1241, + [1254] = 1246, [1255] = 1255, - [1256] = 291, + [1256] = 1243, [1257] = 1257, [1258] = 1258, [1259] = 1259, [1260] = 1260, - [1261] = 1218, - [1262] = 1216, - [1263] = 1223, - [1264] = 1224, - [1265] = 1226, - [1266] = 1266, - [1267] = 1234, + [1261] = 1261, + [1262] = 297, + [1263] = 1220, + [1264] = 1218, + [1265] = 1228, + [1266] = 1229, + [1267] = 1267, [1268] = 1268, - [1269] = 1269, + [1269] = 1236, [1270] = 1270, [1271] = 1271, [1272] = 1272, [1273] = 1273, - [1274] = 1274, - [1275] = 1146, + [1274] = 318, + [1275] = 1275, [1276] = 1276, - [1277] = 1244, + [1277] = 1277, [1278] = 1278, - [1279] = 1219, - [1280] = 1219, + [1279] = 1246, + [1280] = 1280, [1281] = 1281, - [1282] = 1282, + [1282] = 1221, [1283] = 1283, - [1284] = 1220, - [1285] = 1285, - [1286] = 1236, - [1287] = 1247, - [1288] = 1248, - [1289] = 1249, - [1290] = 1251, - [1291] = 1291, - [1292] = 1292, - [1293] = 1175, - [1294] = 1226, + [1284] = 1284, + [1285] = 1155, + [1286] = 1222, + [1287] = 1287, + [1288] = 1216, + [1289] = 1238, + [1290] = 1250, + [1291] = 1249, + [1292] = 1251, + [1293] = 1293, + [1294] = 1229, [1295] = 1295, - [1296] = 1296, + [1296] = 1178, [1297] = 1297, - [1298] = 1298, + [1298] = 1228, [1299] = 1299, [1300] = 1300, [1301] = 1301, [1302] = 1302, - [1303] = 1180, - [1304] = 1060, - [1305] = 1221, + [1303] = 1221, + [1304] = 1304, + [1305] = 1066, [1306] = 1306, - [1307] = 1307, - [1308] = 1282, - [1309] = 1270, - [1310] = 1310, - [1311] = 1220, - [1312] = 1236, - [1313] = 1313, - [1314] = 1247, - [1315] = 1249, - [1316] = 303, - [1317] = 1251, - [1318] = 1318, - [1319] = 1291, - [1320] = 1320, + [1307] = 1224, + [1308] = 1065, + [1309] = 1309, + [1310] = 1284, + [1311] = 1311, + [1312] = 1312, + [1313] = 1222, + [1314] = 1216, + [1315] = 1315, + [1316] = 1238, + [1317] = 1249, + [1318] = 296, + [1319] = 1319, + [1320] = 1251, [1321] = 1321, - [1322] = 1227, + [1322] = 1293, [1323] = 1323, [1324] = 1324, - [1325] = 1325, - [1326] = 1210, - [1327] = 1208, + [1325] = 1272, + [1326] = 1227, + [1327] = 1327, [1328] = 1328, - [1329] = 292, - [1330] = 308, + [1329] = 1329, + [1330] = 1167, [1331] = 1331, - [1332] = 305, + [1332] = 1332, [1333] = 1333, - [1334] = 1334, - [1335] = 1335, - [1336] = 1292, - [1337] = 1068, + [1334] = 1199, + [1335] = 1198, + [1336] = 1232, + [1337] = 316, [1338] = 1338, - [1339] = 1339, + [1339] = 312, [1340] = 1340, - [1341] = 1081, - [1342] = 1141, + [1341] = 1341, + [1342] = 1342, [1343] = 1343, [1344] = 1344, - [1345] = 1345, - [1346] = 1346, + [1345] = 1075, + [1346] = 1297, [1347] = 1347, - [1348] = 1043, - [1349] = 1298, + [1348] = 1348, + [1349] = 1349, [1350] = 1350, - [1351] = 1351, + [1351] = 1306, [1352] = 1352, [1353] = 1353, [1354] = 1354, @@ -4344,51 +4344,51 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1358] = 1358, [1359] = 1359, [1360] = 1360, - [1361] = 1346, + [1361] = 1361, [1362] = 1362, [1363] = 1363, - [1364] = 1240, + [1364] = 1364, [1365] = 1365, - [1366] = 1366, - [1367] = 1367, + [1366] = 1242, + [1367] = 1353, [1368] = 1368, - [1369] = 1369, - [1370] = 1368, - [1371] = 1350, + [1369] = 1364, + [1370] = 1370, + [1371] = 1371, [1372] = 1372, [1373] = 1373, [1374] = 1374, [1375] = 1375, [1376] = 1376, - [1377] = 1377, + [1377] = 1245, [1378] = 1378, [1379] = 1379, - [1380] = 1380, + [1380] = 1034, [1381] = 1381, [1382] = 1382, [1383] = 1383, - [1384] = 1356, + [1384] = 1384, [1385] = 1385, [1386] = 1386, [1387] = 1387, [1388] = 1388, - [1389] = 1389, + [1389] = 1360, [1390] = 1390, [1391] = 1391, - [1392] = 1392, + [1392] = 1361, [1393] = 1393, [1394] = 1394, [1395] = 1395, [1396] = 1396, - [1397] = 1373, + [1397] = 1397, [1398] = 1398, [1399] = 1399, [1400] = 1400, [1401] = 1401, - [1402] = 1392, - [1403] = 1389, - [1404] = 1404, - [1405] = 1243, + [1402] = 1399, + [1403] = 1403, + [1404] = 1386, + [1405] = 1405, [1406] = 1406, [1407] = 1407, [1408] = 1408, @@ -4396,7 +4396,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1410] = 1410, [1411] = 1411, [1412] = 1412, - [1413] = 1413, + [1413] = 1398, [1414] = 1414, [1415] = 1415, [1416] = 1416, @@ -4411,40 +4411,40 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1425] = 1425, [1426] = 1426, [1427] = 1427, - [1428] = 1412, + [1428] = 1428, [1429] = 1429, - [1430] = 1425, + [1430] = 1430, [1431] = 1431, - [1432] = 1432, - [1433] = 1422, + [1432] = 1428, + [1433] = 1433, [1434] = 1434, - [1435] = 1435, + [1435] = 1425, [1436] = 1436, [1437] = 1437, - [1438] = 1427, - [1439] = 1426, - [1440] = 1432, - [1441] = 1441, - [1442] = 1442, - [1443] = 1443, - [1444] = 1425, - [1445] = 1432, + [1438] = 1438, + [1439] = 1439, + [1440] = 1440, + [1441] = 1433, + [1442] = 1439, + [1443] = 1431, + [1444] = 1429, + [1445] = 1445, [1446] = 1446, [1447] = 1447, - [1448] = 1424, - [1449] = 1422, - [1450] = 1450, + [1448] = 1448, + [1449] = 1428, + [1450] = 1439, [1451] = 1451, - [1452] = 1452, + [1452] = 1427, [1453] = 1453, - [1454] = 1454, + [1454] = 1425, [1455] = 1455, [1456] = 1456, [1457] = 1457, - [1458] = 1441, - [1459] = 1423, - [1460] = 1460, - [1461] = 1461, + [1458] = 1458, + [1459] = 1459, + [1460] = 1445, + [1461] = 1426, [1462] = 1462, [1463] = 1463, [1464] = 1464, @@ -4452,69 +4452,71 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1466] = 1466, [1467] = 1467, [1468] = 1468, - [1469] = 1421, + [1469] = 1469, [1470] = 1470, - [1471] = 1437, + [1471] = 1471, [1472] = 1472, - [1473] = 1473, + [1473] = 1414, [1474] = 1474, [1475] = 1475, - [1476] = 1476, - [1477] = 1474, - [1478] = 1460, - [1479] = 1455, - [1480] = 1466, - [1481] = 1481, - [1482] = 1482, + [1476] = 1423, + [1477] = 1458, + [1478] = 1440, + [1479] = 1479, + [1480] = 1465, + [1481] = 1463, + [1482] = 1479, [1483] = 1483, - [1484] = 1419, - [1485] = 1442, - [1486] = 1467, - [1487] = 1436, - [1488] = 1420, - [1489] = 1434, - [1490] = 1443, - [1491] = 1418, - [1492] = 1492, - [1493] = 1417, + [1484] = 1468, + [1485] = 1485, + [1486] = 1486, + [1487] = 1447, + [1488] = 1488, + [1489] = 1436, + [1490] = 1459, + [1491] = 1437, + [1492] = 1446, + [1493] = 1422, [1494] = 1494, - [1495] = 1495, - [1496] = 1475, + [1495] = 1421, + [1496] = 1420, [1497] = 1497, - [1498] = 1470, + [1498] = 1498, [1499] = 1499, [1500] = 1472, [1501] = 1501, - [1502] = 1502, - [1503] = 1415, - [1504] = 1417, - [1505] = 1505, - [1506] = 1418, - [1507] = 1419, + [1502] = 1474, + [1503] = 1503, + [1504] = 1504, + [1505] = 1419, + [1506] = 1420, + [1507] = 1507, [1508] = 1421, - [1509] = 1509, - [1510] = 1462, + [1509] = 1422, + [1510] = 1423, [1511] = 1511, - [1512] = 1457, - [1513] = 1499, - [1514] = 1422, - [1515] = 1505, - [1516] = 1516, - [1517] = 1517, + [1512] = 1467, + [1513] = 1513, + [1514] = 1464, + [1515] = 1501, + [1516] = 1425, + [1517] = 1507, [1518] = 1518, - [1519] = 1502, - [1520] = 1424, - [1521] = 1425, - [1522] = 1426, - [1523] = 1518, - [1524] = 1416, - [1525] = 1427, - [1526] = 1413, - [1527] = 1452, - [1528] = 1412, - [1529] = 1476, - [1530] = 1415, - [1531] = 1531, + [1519] = 1519, + [1520] = 1520, + [1521] = 1504, + [1522] = 1427, + [1523] = 1428, + [1524] = 1429, + [1525] = 1520, + [1526] = 1418, + [1527] = 1431, + [1528] = 1416, + [1529] = 1457, + [1530] = 1433, + [1531] = 1483, + [1532] = 1419, + [1533] = 1533, }; static TSCharacterRange sym_identifier_character_set_1[] = { @@ -5704,12 +5706,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 159: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(148); + if (lookahead == 't') ADVANCE(78); if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(164); END_STATE(); case 160: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(78); + if (lookahead == 't') ADVANCE(148); if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(164); END_STATE(); case 161: @@ -6341,13 +6343,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [57] = {.lex_state = 62, .external_lex_state = 3}, [58] = {.lex_state = 62, .external_lex_state = 3}, [59] = {.lex_state = 62, .external_lex_state = 3}, - [60] = {.lex_state = 62, .external_lex_state = 2}, - [61] = {.lex_state = 62, .external_lex_state = 3}, - [62] = {.lex_state = 62, .external_lex_state = 2}, + [60] = {.lex_state = 62, .external_lex_state = 3}, + [61] = {.lex_state = 62, .external_lex_state = 2}, + [62] = {.lex_state = 62, .external_lex_state = 3}, [63] = {.lex_state = 62, .external_lex_state = 3}, [64] = {.lex_state = 62, .external_lex_state = 3}, [65] = {.lex_state = 62, .external_lex_state = 3}, - [66] = {.lex_state = 62, .external_lex_state = 3}, + [66] = {.lex_state = 62, .external_lex_state = 2}, [67] = {.lex_state = 62, .external_lex_state = 3}, [68] = {.lex_state = 62, .external_lex_state = 3}, [69] = {.lex_state = 62, .external_lex_state = 3}, @@ -6368,10 +6370,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [84] = {.lex_state = 62, .external_lex_state = 5}, [85] = {.lex_state = 62, .external_lex_state = 5}, [86] = {.lex_state = 62, .external_lex_state = 5}, - [87] = {.lex_state = 62, .external_lex_state = 4}, + [87] = {.lex_state = 62, .external_lex_state = 5}, [88] = {.lex_state = 62, .external_lex_state = 5}, [89] = {.lex_state = 62, .external_lex_state = 5}, - [90] = {.lex_state = 62, .external_lex_state = 5}, + [90] = {.lex_state = 62, .external_lex_state = 4}, [91] = {.lex_state = 62, .external_lex_state = 5}, [92] = {.lex_state = 62, .external_lex_state = 5}, [93] = {.lex_state = 62, .external_lex_state = 5}, @@ -6446,20 +6448,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [162] = {.lex_state = 62, .external_lex_state = 2}, [163] = {.lex_state = 62, .external_lex_state = 2}, [164] = {.lex_state = 62, .external_lex_state = 2}, - [165] = {.lex_state = 62, .external_lex_state = 2}, - [166] = {.lex_state = 62, .external_lex_state = 2}, + [165] = {.lex_state = 16, .external_lex_state = 2}, + [166] = {.lex_state = 16, .external_lex_state = 2}, [167] = {.lex_state = 16, .external_lex_state = 2}, [168] = {.lex_state = 16, .external_lex_state = 2}, [169] = {.lex_state = 16, .external_lex_state = 2}, - [170] = {.lex_state = 16, .external_lex_state = 2}, - [171] = {.lex_state = 16, .external_lex_state = 2}, + [170] = {.lex_state = 62, .external_lex_state = 2}, + [171] = {.lex_state = 62, .external_lex_state = 2}, [172] = {.lex_state = 62, .external_lex_state = 2}, [173] = {.lex_state = 62, .external_lex_state = 2}, [174] = {.lex_state = 62, .external_lex_state = 2}, [175] = {.lex_state = 62, .external_lex_state = 2}, [176] = {.lex_state = 62, .external_lex_state = 2}, - [177] = {.lex_state = 62, .external_lex_state = 4}, - [178] = {.lex_state = 62, .external_lex_state = 2}, + [177] = {.lex_state = 62, .external_lex_state = 2}, + [178] = {.lex_state = 62, .external_lex_state = 4}, [179] = {.lex_state = 62, .external_lex_state = 2}, [180] = {.lex_state = 62, .external_lex_state = 2}, [181] = {.lex_state = 62, .external_lex_state = 2}, @@ -6472,7 +6474,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [188] = {.lex_state = 62, .external_lex_state = 2}, [189] = {.lex_state = 62, .external_lex_state = 2}, [190] = {.lex_state = 62, .external_lex_state = 2}, - [191] = {.lex_state = 62, .external_lex_state = 4}, + [191] = {.lex_state = 62, .external_lex_state = 2}, [192] = {.lex_state = 62, .external_lex_state = 4}, [193] = {.lex_state = 62, .external_lex_state = 2}, [194] = {.lex_state = 62, .external_lex_state = 2}, @@ -6480,13 +6482,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [196] = {.lex_state = 62, .external_lex_state = 2}, [197] = {.lex_state = 62, .external_lex_state = 4}, [198] = {.lex_state = 62, .external_lex_state = 2}, - [199] = {.lex_state = 62, .external_lex_state = 2}, + [199] = {.lex_state = 62, .external_lex_state = 4}, [200] = {.lex_state = 62, .external_lex_state = 2}, - [201] = {.lex_state = 62, .external_lex_state = 4}, + [201] = {.lex_state = 62, .external_lex_state = 2}, [202] = {.lex_state = 62, .external_lex_state = 2}, [203] = {.lex_state = 62, .external_lex_state = 2}, [204] = {.lex_state = 62, .external_lex_state = 2}, - [205] = {.lex_state = 62, .external_lex_state = 2}, + [205] = {.lex_state = 62, .external_lex_state = 4}, [206] = {.lex_state = 62, .external_lex_state = 2}, [207] = {.lex_state = 62, .external_lex_state = 2}, [208] = {.lex_state = 62, .external_lex_state = 2}, @@ -6500,94 +6502,94 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [216] = {.lex_state = 62, .external_lex_state = 2}, [217] = {.lex_state = 62, .external_lex_state = 2}, [218] = {.lex_state = 15}, - [219] = {.lex_state = 62, .external_lex_state = 2}, - [220] = {.lex_state = 15}, - [221] = {.lex_state = 62, .external_lex_state = 2}, - [222] = {.lex_state = 62, .external_lex_state = 2}, - [223] = {.lex_state = 15}, + [219] = {.lex_state = 15}, + [220] = {.lex_state = 62, .external_lex_state = 2}, + [221] = {.lex_state = 15}, + [222] = {.lex_state = 15}, + [223] = {.lex_state = 62, .external_lex_state = 2}, [224] = {.lex_state = 15}, [225] = {.lex_state = 15}, - [226] = {.lex_state = 15}, + [226] = {.lex_state = 62, .external_lex_state = 2}, [227] = {.lex_state = 15}, - [228] = {.lex_state = 63, .external_lex_state = 3}, - [229] = {.lex_state = 62, .external_lex_state = 2}, - [230] = {.lex_state = 64, .external_lex_state = 3}, + [228] = {.lex_state = 16, .external_lex_state = 2}, + [229] = {.lex_state = 16, .external_lex_state = 2}, + [230] = {.lex_state = 62, .external_lex_state = 2}, [231] = {.lex_state = 62, .external_lex_state = 2}, - [232] = {.lex_state = 63, .external_lex_state = 3}, - [233] = {.lex_state = 64, .external_lex_state = 2}, - [234] = {.lex_state = 63, .external_lex_state = 2}, - [235] = {.lex_state = 63, .external_lex_state = 2}, - [236] = {.lex_state = 64, .external_lex_state = 2}, - [237] = {.lex_state = 62, .external_lex_state = 2}, + [232] = {.lex_state = 16, .external_lex_state = 2}, + [233] = {.lex_state = 16, .external_lex_state = 2}, + [234] = {.lex_state = 62, .external_lex_state = 2}, + [235] = {.lex_state = 16, .external_lex_state = 2}, + [236] = {.lex_state = 62, .external_lex_state = 2}, + [237] = {.lex_state = 63, .external_lex_state = 3}, [238] = {.lex_state = 62, .external_lex_state = 2}, - [239] = {.lex_state = 62, .external_lex_state = 2}, - [240] = {.lex_state = 16, .external_lex_state = 2}, + [239] = {.lex_state = 64, .external_lex_state = 2}, + [240] = {.lex_state = 62, .external_lex_state = 2}, [241] = {.lex_state = 16, .external_lex_state = 2}, [242] = {.lex_state = 64, .external_lex_state = 3}, - [243] = {.lex_state = 16, .external_lex_state = 2}, - [244] = {.lex_state = 16, .external_lex_state = 2}, + [243] = {.lex_state = 63, .external_lex_state = 3}, + [244] = {.lex_state = 63, .external_lex_state = 2}, [245] = {.lex_state = 16, .external_lex_state = 2}, [246] = {.lex_state = 16, .external_lex_state = 2}, - [247] = {.lex_state = 62, .external_lex_state = 2}, - [248] = {.lex_state = 16, .external_lex_state = 2}, + [247] = {.lex_state = 64, .external_lex_state = 2}, + [248] = {.lex_state = 63, .external_lex_state = 2}, [249] = {.lex_state = 16, .external_lex_state = 2}, - [250] = {.lex_state = 16, .external_lex_state = 2}, - [251] = {.lex_state = 16, .external_lex_state = 2}, + [250] = {.lex_state = 64, .external_lex_state = 3}, + [251] = {.lex_state = 62, .external_lex_state = 2}, [252] = {.lex_state = 62, .external_lex_state = 2}, - [253] = {.lex_state = 62, .external_lex_state = 2}, + [253] = {.lex_state = 16, .external_lex_state = 2}, [254] = {.lex_state = 16, .external_lex_state = 2}, [255] = {.lex_state = 62, .external_lex_state = 2}, - [256] = {.lex_state = 16, .external_lex_state = 2}, + [256] = {.lex_state = 62, .external_lex_state = 2}, [257] = {.lex_state = 62, .external_lex_state = 2}, - [258] = {.lex_state = 16, .external_lex_state = 2}, - [259] = {.lex_state = 62, .external_lex_state = 2}, + [258] = {.lex_state = 62, .external_lex_state = 2}, + [259] = {.lex_state = 14, .external_lex_state = 6}, [260] = {.lex_state = 62, .external_lex_state = 2}, - [261] = {.lex_state = 62, .external_lex_state = 2}, + [261] = {.lex_state = 14, .external_lex_state = 6}, [262] = {.lex_state = 62, .external_lex_state = 2}, [263] = {.lex_state = 62, .external_lex_state = 2}, - [264] = {.lex_state = 14, .external_lex_state = 6}, - [265] = {.lex_state = 62, .external_lex_state = 2}, + [264] = {.lex_state = 62, .external_lex_state = 2}, + [265] = {.lex_state = 16, .external_lex_state = 2}, [266] = {.lex_state = 62, .external_lex_state = 2}, - [267] = {.lex_state = 14, .external_lex_state = 6}, - [268] = {.lex_state = 64, .external_lex_state = 3}, + [267] = {.lex_state = 16, .external_lex_state = 2}, + [268] = {.lex_state = 62, .external_lex_state = 2}, [269] = {.lex_state = 62, .external_lex_state = 2}, - [270] = {.lex_state = 16, .external_lex_state = 2}, - [271] = {.lex_state = 63, .external_lex_state = 3}, - [272] = {.lex_state = 62, .external_lex_state = 3}, + [270] = {.lex_state = 14, .external_lex_state = 4}, + [271] = {.lex_state = 62, .external_lex_state = 2}, + [272] = {.lex_state = 62, .external_lex_state = 2}, [273] = {.lex_state = 62, .external_lex_state = 3}, - [274] = {.lex_state = 62, .external_lex_state = 2}, - [275] = {.lex_state = 62, .external_lex_state = 2}, - [276] = {.lex_state = 62, .external_lex_state = 3}, - [277] = {.lex_state = 14, .external_lex_state = 4}, - [278] = {.lex_state = 16, .external_lex_state = 2}, - [279] = {.lex_state = 62, .external_lex_state = 3}, - [280] = {.lex_state = 62, .external_lex_state = 2}, + [274] = {.lex_state = 64, .external_lex_state = 2}, + [275] = {.lex_state = 63, .external_lex_state = 2}, + [276] = {.lex_state = 62, .external_lex_state = 2}, + [277] = {.lex_state = 62, .external_lex_state = 2}, + [278] = {.lex_state = 62, .external_lex_state = 2}, + [279] = {.lex_state = 62, .external_lex_state = 2}, + [280] = {.lex_state = 16, .external_lex_state = 2}, [281] = {.lex_state = 62, .external_lex_state = 2}, - [282] = {.lex_state = 64, .external_lex_state = 2}, - [283] = {.lex_state = 63, .external_lex_state = 2}, + [282] = {.lex_state = 62, .external_lex_state = 3}, + [283] = {.lex_state = 62, .external_lex_state = 2}, [284] = {.lex_state = 62, .external_lex_state = 2}, - [285] = {.lex_state = 62, .external_lex_state = 4}, - [286] = {.lex_state = 62, .external_lex_state = 4}, + [285] = {.lex_state = 62, .external_lex_state = 2}, + [286] = {.lex_state = 62, .external_lex_state = 2}, [287] = {.lex_state = 62, .external_lex_state = 2}, - [288] = {.lex_state = 62, .external_lex_state = 2}, + [288] = {.lex_state = 62, .external_lex_state = 3}, [289] = {.lex_state = 62, .external_lex_state = 2}, - [290] = {.lex_state = 62, .external_lex_state = 2}, - [291] = {.lex_state = 62, .external_lex_state = 3}, - [292] = {.lex_state = 62, .external_lex_state = 2}, - [293] = {.lex_state = 62, .external_lex_state = 2}, + [290] = {.lex_state = 62, .external_lex_state = 3}, + [291] = {.lex_state = 63, .external_lex_state = 3}, + [292] = {.lex_state = 64, .external_lex_state = 3}, + [293] = {.lex_state = 16, .external_lex_state = 2}, [294] = {.lex_state = 62, .external_lex_state = 2}, - [295] = {.lex_state = 62, .external_lex_state = 2}, + [295] = {.lex_state = 62, .external_lex_state = 4}, [296] = {.lex_state = 62, .external_lex_state = 2}, - [297] = {.lex_state = 14, .external_lex_state = 6}, - [298] = {.lex_state = 62, .external_lex_state = 4}, - [299] = {.lex_state = 62, .external_lex_state = 2}, + [297] = {.lex_state = 62, .external_lex_state = 2}, + [298] = {.lex_state = 62, .external_lex_state = 2}, + [299] = {.lex_state = 62, .external_lex_state = 4}, [300] = {.lex_state = 62, .external_lex_state = 2}, - [301] = {.lex_state = 62, .external_lex_state = 4}, - [302] = {.lex_state = 62, .external_lex_state = 3}, - [303] = {.lex_state = 62, .external_lex_state = 2}, + [301] = {.lex_state = 62, .external_lex_state = 3}, + [302] = {.lex_state = 62, .external_lex_state = 2}, + [303] = {.lex_state = 62, .external_lex_state = 3}, [304] = {.lex_state = 62, .external_lex_state = 2}, - [305] = {.lex_state = 62, .external_lex_state = 3}, - [306] = {.lex_state = 62, .external_lex_state = 2}, + [305] = {.lex_state = 62, .external_lex_state = 2}, + [306] = {.lex_state = 62, .external_lex_state = 3}, [307] = {.lex_state = 62, .external_lex_state = 2}, [308] = {.lex_state = 62, .external_lex_state = 2}, [309] = {.lex_state = 62, .external_lex_state = 2}, @@ -6595,90 +6597,90 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [311] = {.lex_state = 62, .external_lex_state = 2}, [312] = {.lex_state = 62, .external_lex_state = 3}, [313] = {.lex_state = 62, .external_lex_state = 2}, - [314] = {.lex_state = 62, .external_lex_state = 3}, - [315] = {.lex_state = 62, .external_lex_state = 3}, - [316] = {.lex_state = 62, .external_lex_state = 2}, - [317] = {.lex_state = 15, .external_lex_state = 6}, - [318] = {.lex_state = 64, .external_lex_state = 2}, - [319] = {.lex_state = 64, .external_lex_state = 3}, - [320] = {.lex_state = 64, .external_lex_state = 3}, - [321] = {.lex_state = 64, .external_lex_state = 3}, - [322] = {.lex_state = 64, .external_lex_state = 3}, - [323] = {.lex_state = 64, .external_lex_state = 2}, - [324] = {.lex_state = 62, .external_lex_state = 2}, - [325] = {.lex_state = 63, .external_lex_state = 2}, - [326] = {.lex_state = 62, .external_lex_state = 3}, - [327] = {.lex_state = 15, .external_lex_state = 6}, - [328] = {.lex_state = 14}, + [314] = {.lex_state = 62, .external_lex_state = 2}, + [315] = {.lex_state = 14, .external_lex_state = 6}, + [316] = {.lex_state = 62, .external_lex_state = 3}, + [317] = {.lex_state = 62, .external_lex_state = 4}, + [318] = {.lex_state = 62, .external_lex_state = 2}, + [319] = {.lex_state = 62, .external_lex_state = 4}, + [320] = {.lex_state = 62, .external_lex_state = 2}, + [321] = {.lex_state = 62, .external_lex_state = 2}, + [322] = {.lex_state = 62, .external_lex_state = 2}, + [323] = {.lex_state = 62, .external_lex_state = 2}, + [324] = {.lex_state = 62, .external_lex_state = 3}, + [325] = {.lex_state = 62, .external_lex_state = 2}, + [326] = {.lex_state = 62, .external_lex_state = 2}, + [327] = {.lex_state = 62, .external_lex_state = 2}, + [328] = {.lex_state = 64, .external_lex_state = 2}, [329] = {.lex_state = 15, .external_lex_state = 6}, - [330] = {.lex_state = 15, .external_lex_state = 6}, - [331] = {.lex_state = 63, .external_lex_state = 2}, - [332] = {.lex_state = 63, .external_lex_state = 3}, - [333] = {.lex_state = 63, .external_lex_state = 2}, - [334] = {.lex_state = 15, .external_lex_state = 6}, - [335] = {.lex_state = 64, .external_lex_state = 2}, - [336] = {.lex_state = 63, .external_lex_state = 2}, - [337] = {.lex_state = 64, .external_lex_state = 2}, + [330] = {.lex_state = 64, .external_lex_state = 2}, + [331] = {.lex_state = 64, .external_lex_state = 2}, + [332] = {.lex_state = 64, .external_lex_state = 2}, + [333] = {.lex_state = 64, .external_lex_state = 2}, + [334] = {.lex_state = 63, .external_lex_state = 3}, + [335] = {.lex_state = 63, .external_lex_state = 2}, + [336] = {.lex_state = 64, .external_lex_state = 2}, + [337] = {.lex_state = 63, .external_lex_state = 2}, [338] = {.lex_state = 64, .external_lex_state = 3}, [339] = {.lex_state = 63, .external_lex_state = 3}, [340] = {.lex_state = 63, .external_lex_state = 3}, - [341] = {.lex_state = 64, .external_lex_state = 2}, - [342] = {.lex_state = 63, .external_lex_state = 3}, - [343] = {.lex_state = 62, .external_lex_state = 2}, - [344] = {.lex_state = 62, .external_lex_state = 2}, - [345] = {.lex_state = 62, .external_lex_state = 2}, - [346] = {.lex_state = 64, .external_lex_state = 2}, - [347] = {.lex_state = 62, .external_lex_state = 2}, - [348] = {.lex_state = 64, .external_lex_state = 3}, - [349] = {.lex_state = 63, .external_lex_state = 3}, + [341] = {.lex_state = 63, .external_lex_state = 2}, + [342] = {.lex_state = 64, .external_lex_state = 3}, + [343] = {.lex_state = 62, .external_lex_state = 3}, + [344] = {.lex_state = 14, .external_lex_state = 6}, + [345] = {.lex_state = 63, .external_lex_state = 3}, + [346] = {.lex_state = 63, .external_lex_state = 2}, + [347] = {.lex_state = 63, .external_lex_state = 3}, + [348] = {.lex_state = 62, .external_lex_state = 2}, + [349] = {.lex_state = 14, .external_lex_state = 6}, [350] = {.lex_state = 63, .external_lex_state = 3}, [351] = {.lex_state = 15, .external_lex_state = 6}, - [352] = {.lex_state = 62, .external_lex_state = 3}, - [353] = {.lex_state = 62, .external_lex_state = 2}, - [354] = {.lex_state = 62, .external_lex_state = 2}, + [352] = {.lex_state = 63, .external_lex_state = 2}, + [353] = {.lex_state = 63, .external_lex_state = 3}, + [354] = {.lex_state = 63, .external_lex_state = 3}, [355] = {.lex_state = 64, .external_lex_state = 3}, - [356] = {.lex_state = 14}, - [357] = {.lex_state = 64, .external_lex_state = 3}, - [358] = {.lex_state = 63, .external_lex_state = 3}, - [359] = {.lex_state = 64, .external_lex_state = 2}, - [360] = {.lex_state = 62, .external_lex_state = 2}, - [361] = {.lex_state = 62, .external_lex_state = 2}, - [362] = {.lex_state = 62, .external_lex_state = 2}, - [363] = {.lex_state = 64, .external_lex_state = 2}, - [364] = {.lex_state = 62, .external_lex_state = 2}, - [365] = {.lex_state = 63, .external_lex_state = 2}, - [366] = {.lex_state = 64, .external_lex_state = 3}, - [367] = {.lex_state = 14, .external_lex_state = 6}, - [368] = {.lex_state = 63, .external_lex_state = 3}, - [369] = {.lex_state = 64, .external_lex_state = 2}, + [356] = {.lex_state = 64, .external_lex_state = 2}, + [357] = {.lex_state = 63, .external_lex_state = 2}, + [358] = {.lex_state = 64, .external_lex_state = 2}, + [359] = {.lex_state = 63, .external_lex_state = 2}, + [360] = {.lex_state = 64, .external_lex_state = 3}, + [361] = {.lex_state = 16, .external_lex_state = 2}, + [362] = {.lex_state = 64, .external_lex_state = 3}, + [363] = {.lex_state = 15, .external_lex_state = 6}, + [364] = {.lex_state = 63, .external_lex_state = 2}, + [365] = {.lex_state = 62, .external_lex_state = 2}, + [366] = {.lex_state = 64, .external_lex_state = 2}, + [367] = {.lex_state = 15, .external_lex_state = 6}, + [368] = {.lex_state = 64, .external_lex_state = 3}, + [369] = {.lex_state = 64, .external_lex_state = 3}, [370] = {.lex_state = 63, .external_lex_state = 2}, - [371] = {.lex_state = 15, .external_lex_state = 6}, - [372] = {.lex_state = 64, .external_lex_state = 2}, + [371] = {.lex_state = 14}, + [372] = {.lex_state = 15, .external_lex_state = 6}, [373] = {.lex_state = 63, .external_lex_state = 2}, - [374] = {.lex_state = 64, .external_lex_state = 3}, - [375] = {.lex_state = 62, .external_lex_state = 2}, - [376] = {.lex_state = 63, .external_lex_state = 2}, - [377] = {.lex_state = 64, .external_lex_state = 2}, + [374] = {.lex_state = 63, .external_lex_state = 2}, + [375] = {.lex_state = 14}, + [376] = {.lex_state = 62, .external_lex_state = 3}, + [377] = {.lex_state = 15, .external_lex_state = 6}, [378] = {.lex_state = 64, .external_lex_state = 3}, [379] = {.lex_state = 63, .external_lex_state = 3}, - [380] = {.lex_state = 62, .external_lex_state = 2}, - [381] = {.lex_state = 16, .external_lex_state = 2}, - [382] = {.lex_state = 63, .external_lex_state = 2}, - [383] = {.lex_state = 16, .external_lex_state = 2}, - [384] = {.lex_state = 62, .external_lex_state = 2}, - [385] = {.lex_state = 14, .external_lex_state = 6}, - [386] = {.lex_state = 62, .external_lex_state = 3}, + [380] = {.lex_state = 64, .external_lex_state = 3}, + [381] = {.lex_state = 63, .external_lex_state = 3}, + [382] = {.lex_state = 15, .external_lex_state = 6}, + [383] = {.lex_state = 62, .external_lex_state = 2}, + [384] = {.lex_state = 16, .external_lex_state = 2}, + [385] = {.lex_state = 63, .external_lex_state = 3}, + [386] = {.lex_state = 62, .external_lex_state = 2}, [387] = {.lex_state = 62, .external_lex_state = 2}, [388] = {.lex_state = 62, .external_lex_state = 2}, [389] = {.lex_state = 62, .external_lex_state = 2}, [390] = {.lex_state = 62, .external_lex_state = 2}, [391] = {.lex_state = 62, .external_lex_state = 2}, [392] = {.lex_state = 15}, - [393] = {.lex_state = 62, .external_lex_state = 2}, + [393] = {.lex_state = 62, .external_lex_state = 3}, [394] = {.lex_state = 62, .external_lex_state = 2}, [395] = {.lex_state = 62, .external_lex_state = 2}, [396] = {.lex_state = 62, .external_lex_state = 2}, - [397] = {.lex_state = 62, .external_lex_state = 2}, + [397] = {.lex_state = 15, .external_lex_state = 6}, [398] = {.lex_state = 62, .external_lex_state = 2}, [399] = {.lex_state = 62, .external_lex_state = 2}, [400] = {.lex_state = 62, .external_lex_state = 2}, @@ -6687,7 +6689,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [403] = {.lex_state = 62, .external_lex_state = 2}, [404] = {.lex_state = 62, .external_lex_state = 2}, [405] = {.lex_state = 62, .external_lex_state = 2}, - [406] = {.lex_state = 62, .external_lex_state = 2}, + [406] = {.lex_state = 15, .external_lex_state = 6}, [407] = {.lex_state = 62, .external_lex_state = 2}, [408] = {.lex_state = 62, .external_lex_state = 2}, [409] = {.lex_state = 62, .external_lex_state = 2}, @@ -6696,7 +6698,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [412] = {.lex_state = 62, .external_lex_state = 2}, [413] = {.lex_state = 62, .external_lex_state = 2}, [414] = {.lex_state = 62, .external_lex_state = 2}, - [415] = {.lex_state = 62, .external_lex_state = 2}, + [415] = {.lex_state = 15, .external_lex_state = 6}, [416] = {.lex_state = 62, .external_lex_state = 2}, [417] = {.lex_state = 62, .external_lex_state = 2}, [418] = {.lex_state = 62, .external_lex_state = 2}, @@ -6704,28 +6706,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [420] = {.lex_state = 62, .external_lex_state = 2}, [421] = {.lex_state = 62, .external_lex_state = 2}, [422] = {.lex_state = 62, .external_lex_state = 2}, - [423] = {.lex_state = 15, .external_lex_state = 6}, + [423] = {.lex_state = 62, .external_lex_state = 2}, [424] = {.lex_state = 62, .external_lex_state = 2}, [425] = {.lex_state = 62, .external_lex_state = 2}, [426] = {.lex_state = 62, .external_lex_state = 2}, - [427] = {.lex_state = 62, .external_lex_state = 3}, - [428] = {.lex_state = 62, .external_lex_state = 2}, - [429] = {.lex_state = 62, .external_lex_state = 2}, + [427] = {.lex_state = 62, .external_lex_state = 2}, + [428] = {.lex_state = 62, .external_lex_state = 3}, + [429] = {.lex_state = 62, .external_lex_state = 3}, [430] = {.lex_state = 62, .external_lex_state = 2}, [431] = {.lex_state = 62, .external_lex_state = 2}, - [432] = {.lex_state = 62, .external_lex_state = 2}, + [432] = {.lex_state = 62, .external_lex_state = 3}, [433] = {.lex_state = 62, .external_lex_state = 2}, [434] = {.lex_state = 62, .external_lex_state = 2}, [435] = {.lex_state = 62, .external_lex_state = 2}, [436] = {.lex_state = 62, .external_lex_state = 2}, [437] = {.lex_state = 62, .external_lex_state = 2}, [438] = {.lex_state = 62, .external_lex_state = 2}, - [439] = {.lex_state = 62, .external_lex_state = 3}, - [440] = {.lex_state = 62, .external_lex_state = 2}, + [439] = {.lex_state = 62, .external_lex_state = 2}, + [440] = {.lex_state = 62, .external_lex_state = 3}, [441] = {.lex_state = 62, .external_lex_state = 2}, [442] = {.lex_state = 62, .external_lex_state = 2}, [443] = {.lex_state = 62, .external_lex_state = 2}, - [444] = {.lex_state = 15, .external_lex_state = 6}, + [444] = {.lex_state = 62, .external_lex_state = 2}, [445] = {.lex_state = 62, .external_lex_state = 3}, [446] = {.lex_state = 62, .external_lex_state = 2}, [447] = {.lex_state = 62, .external_lex_state = 2}, @@ -6734,24 +6736,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [450] = {.lex_state = 62, .external_lex_state = 2}, [451] = {.lex_state = 62, .external_lex_state = 2}, [452] = {.lex_state = 62, .external_lex_state = 2}, - [453] = {.lex_state = 62, .external_lex_state = 3}, - [454] = {.lex_state = 62, .external_lex_state = 3}, - [455] = {.lex_state = 62, .external_lex_state = 3}, + [453] = {.lex_state = 62, .external_lex_state = 2}, + [454] = {.lex_state = 62, .external_lex_state = 2}, + [455] = {.lex_state = 62, .external_lex_state = 2}, [456] = {.lex_state = 62, .external_lex_state = 2}, [457] = {.lex_state = 62, .external_lex_state = 2}, [458] = {.lex_state = 62, .external_lex_state = 2}, [459] = {.lex_state = 62, .external_lex_state = 2}, [460] = {.lex_state = 62, .external_lex_state = 2}, - [461] = {.lex_state = 62, .external_lex_state = 2}, + [461] = {.lex_state = 62, .external_lex_state = 3}, [462] = {.lex_state = 62, .external_lex_state = 2}, - [463] = {.lex_state = 62, .external_lex_state = 3}, - [464] = {.lex_state = 62, .external_lex_state = 2}, + [463] = {.lex_state = 62, .external_lex_state = 2}, + [464] = {.lex_state = 62, .external_lex_state = 3}, [465] = {.lex_state = 62, .external_lex_state = 2}, - [466] = {.lex_state = 62, .external_lex_state = 2}, + [466] = {.lex_state = 62, .external_lex_state = 3}, [467] = {.lex_state = 62, .external_lex_state = 2}, [468] = {.lex_state = 62, .external_lex_state = 2}, [469] = {.lex_state = 62, .external_lex_state = 2}, - [470] = {.lex_state = 15, .external_lex_state = 6}, + [470] = {.lex_state = 62, .external_lex_state = 2}, [471] = {.lex_state = 62, .external_lex_state = 2}, [472] = {.lex_state = 62, .external_lex_state = 2}, [473] = {.lex_state = 62, .external_lex_state = 2}, @@ -6759,7 +6761,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [475] = {.lex_state = 62, .external_lex_state = 2}, [476] = {.lex_state = 62, .external_lex_state = 3}, [477] = {.lex_state = 62, .external_lex_state = 2}, - [478] = {.lex_state = 62, .external_lex_state = 3}, + [478] = {.lex_state = 62, .external_lex_state = 2}, [479] = {.lex_state = 62, .external_lex_state = 2}, [480] = {.lex_state = 62, .external_lex_state = 2}, [481] = {.lex_state = 62, .external_lex_state = 2}, @@ -6768,127 +6770,127 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [484] = {.lex_state = 62, .external_lex_state = 2}, [485] = {.lex_state = 62, .external_lex_state = 2}, [486] = {.lex_state = 62, .external_lex_state = 3}, - [487] = {.lex_state = 62, .external_lex_state = 3}, + [487] = {.lex_state = 62, .external_lex_state = 2}, [488] = {.lex_state = 62, .external_lex_state = 3}, - [489] = {.lex_state = 62, .external_lex_state = 2}, + [489] = {.lex_state = 62, .external_lex_state = 3}, [490] = {.lex_state = 62, .external_lex_state = 3}, [491] = {.lex_state = 62, .external_lex_state = 2}, - [492] = {.lex_state = 62, .external_lex_state = 2}, + [492] = {.lex_state = 62, .external_lex_state = 3}, [493] = {.lex_state = 62, .external_lex_state = 3}, [494] = {.lex_state = 62, .external_lex_state = 2}, [495] = {.lex_state = 62, .external_lex_state = 2}, - [496] = {.lex_state = 62, .external_lex_state = 3}, + [496] = {.lex_state = 62, .external_lex_state = 2}, [497] = {.lex_state = 62, .external_lex_state = 2}, [498] = {.lex_state = 62, .external_lex_state = 2}, [499] = {.lex_state = 62, .external_lex_state = 2}, - [500] = {.lex_state = 62, .external_lex_state = 2}, + [500] = {.lex_state = 62, .external_lex_state = 3}, [501] = {.lex_state = 62, .external_lex_state = 3}, [502] = {.lex_state = 62, .external_lex_state = 3}, - [503] = {.lex_state = 62, .external_lex_state = 2}, + [503] = {.lex_state = 62, .external_lex_state = 3}, [504] = {.lex_state = 62, .external_lex_state = 3}, - [505] = {.lex_state = 62, .external_lex_state = 2}, + [505] = {.lex_state = 62, .external_lex_state = 3}, [506] = {.lex_state = 62, .external_lex_state = 2}, - [507] = {.lex_state = 62, .external_lex_state = 2}, + [507] = {.lex_state = 62, .external_lex_state = 3}, [508] = {.lex_state = 62, .external_lex_state = 2}, - [509] = {.lex_state = 62, .external_lex_state = 2}, + [509] = {.lex_state = 62, .external_lex_state = 3}, [510] = {.lex_state = 62, .external_lex_state = 2}, [511] = {.lex_state = 62, .external_lex_state = 3}, - [512] = {.lex_state = 62, .external_lex_state = 3}, - [513] = {.lex_state = 62, .external_lex_state = 3}, + [512] = {.lex_state = 62, .external_lex_state = 2}, + [513] = {.lex_state = 62, .external_lex_state = 2}, [514] = {.lex_state = 62, .external_lex_state = 2}, [515] = {.lex_state = 62, .external_lex_state = 2}, [516] = {.lex_state = 62, .external_lex_state = 2}, [517] = {.lex_state = 62, .external_lex_state = 3}, [518] = {.lex_state = 62, .external_lex_state = 3}, [519] = {.lex_state = 62, .external_lex_state = 3}, - [520] = {.lex_state = 62, .external_lex_state = 2}, + [520] = {.lex_state = 62, .external_lex_state = 3}, [521] = {.lex_state = 62, .external_lex_state = 3}, [522] = {.lex_state = 62, .external_lex_state = 3}, [523] = {.lex_state = 62, .external_lex_state = 3}, - [524] = {.lex_state = 62, .external_lex_state = 2}, - [525] = {.lex_state = 62, .external_lex_state = 2}, - [526] = {.lex_state = 62, .external_lex_state = 2}, + [524] = {.lex_state = 62, .external_lex_state = 3}, + [525] = {.lex_state = 62, .external_lex_state = 3}, + [526] = {.lex_state = 62, .external_lex_state = 3}, [527] = {.lex_state = 62, .external_lex_state = 2}, [528] = {.lex_state = 62, .external_lex_state = 3}, [529] = {.lex_state = 62, .external_lex_state = 3}, - [530] = {.lex_state = 62, .external_lex_state = 2}, + [530] = {.lex_state = 62, .external_lex_state = 3}, [531] = {.lex_state = 62, .external_lex_state = 2}, [532] = {.lex_state = 62, .external_lex_state = 2}, - [533] = {.lex_state = 62, .external_lex_state = 2}, - [534] = {.lex_state = 62, .external_lex_state = 3}, + [533] = {.lex_state = 62, .external_lex_state = 3}, + [534] = {.lex_state = 62, .external_lex_state = 2}, [535] = {.lex_state = 62, .external_lex_state = 3}, [536] = {.lex_state = 62, .external_lex_state = 3}, - [537] = {.lex_state = 62, .external_lex_state = 2}, + [537] = {.lex_state = 62, .external_lex_state = 3}, [538] = {.lex_state = 62, .external_lex_state = 2}, - [539] = {.lex_state = 62, .external_lex_state = 3}, - [540] = {.lex_state = 62, .external_lex_state = 3}, + [539] = {.lex_state = 62, .external_lex_state = 2}, + [540] = {.lex_state = 62, .external_lex_state = 2}, [541] = {.lex_state = 62, .external_lex_state = 3}, [542] = {.lex_state = 62, .external_lex_state = 3}, - [543] = {.lex_state = 62, .external_lex_state = 2}, - [544] = {.lex_state = 62, .external_lex_state = 2}, + [543] = {.lex_state = 62, .external_lex_state = 3}, + [544] = {.lex_state = 62, .external_lex_state = 3}, [545] = {.lex_state = 62, .external_lex_state = 2}, [546] = {.lex_state = 62, .external_lex_state = 3}, - [547] = {.lex_state = 62, .external_lex_state = 3}, - [548] = {.lex_state = 62, .external_lex_state = 3}, + [547] = {.lex_state = 62, .external_lex_state = 2}, + [548] = {.lex_state = 62, .external_lex_state = 2}, [549] = {.lex_state = 62, .external_lex_state = 2}, [550] = {.lex_state = 62, .external_lex_state = 3}, - [551] = {.lex_state = 62, .external_lex_state = 2}, + [551] = {.lex_state = 62, .external_lex_state = 3}, [552] = {.lex_state = 62, .external_lex_state = 2}, [553] = {.lex_state = 62, .external_lex_state = 2}, - [554] = {.lex_state = 62, .external_lex_state = 2}, + [554] = {.lex_state = 62, .external_lex_state = 3}, [555] = {.lex_state = 62, .external_lex_state = 2}, - [556] = {.lex_state = 62, .external_lex_state = 3}, - [557] = {.lex_state = 62, .external_lex_state = 3}, + [556] = {.lex_state = 62, .external_lex_state = 2}, + [557] = {.lex_state = 62, .external_lex_state = 2}, [558] = {.lex_state = 62, .external_lex_state = 3}, - [559] = {.lex_state = 62, .external_lex_state = 3}, + [559] = {.lex_state = 62, .external_lex_state = 2}, [560] = {.lex_state = 62, .external_lex_state = 3}, [561] = {.lex_state = 62, .external_lex_state = 2}, [562] = {.lex_state = 62, .external_lex_state = 3}, - [563] = {.lex_state = 62, .external_lex_state = 3}, - [564] = {.lex_state = 62, .external_lex_state = 3}, + [563] = {.lex_state = 62, .external_lex_state = 2}, + [564] = {.lex_state = 62, .external_lex_state = 2}, [565] = {.lex_state = 62, .external_lex_state = 2}, - [566] = {.lex_state = 62, .external_lex_state = 3}, - [567] = {.lex_state = 62, .external_lex_state = 2}, + [566] = {.lex_state = 62, .external_lex_state = 2}, + [567] = {.lex_state = 62, .external_lex_state = 3}, [568] = {.lex_state = 62, .external_lex_state = 2}, [569] = {.lex_state = 62, .external_lex_state = 2}, [570] = {.lex_state = 62, .external_lex_state = 2}, - [571] = {.lex_state = 62, .external_lex_state = 3}, + [571] = {.lex_state = 62, .external_lex_state = 2}, [572] = {.lex_state = 62, .external_lex_state = 2}, - [573] = {.lex_state = 62, .external_lex_state = 3}, + [573] = {.lex_state = 62, .external_lex_state = 2}, [574] = {.lex_state = 62, .external_lex_state = 2}, - [575] = {.lex_state = 62, .external_lex_state = 3}, + [575] = {.lex_state = 62, .external_lex_state = 2}, [576] = {.lex_state = 62, .external_lex_state = 2}, - [577] = {.lex_state = 62, .external_lex_state = 3}, - [578] = {.lex_state = 62, .external_lex_state = 2}, - [579] = {.lex_state = 62, .external_lex_state = 2}, + [577] = {.lex_state = 62, .external_lex_state = 2}, + [578] = {.lex_state = 62, .external_lex_state = 3}, + [579] = {.lex_state = 62, .external_lex_state = 3}, [580] = {.lex_state = 62, .external_lex_state = 3}, [581] = {.lex_state = 62, .external_lex_state = 2}, [582] = {.lex_state = 62, .external_lex_state = 2}, - [583] = {.lex_state = 62, .external_lex_state = 2}, - [584] = {.lex_state = 62, .external_lex_state = 3}, + [583] = {.lex_state = 62, .external_lex_state = 3}, + [584] = {.lex_state = 62, .external_lex_state = 2}, [585] = {.lex_state = 62, .external_lex_state = 3}, [586] = {.lex_state = 62, .external_lex_state = 2}, - [587] = {.lex_state = 62, .external_lex_state = 3}, + [587] = {.lex_state = 62, .external_lex_state = 2}, [588] = {.lex_state = 62, .external_lex_state = 3}, [589] = {.lex_state = 62, .external_lex_state = 3}, [590] = {.lex_state = 62, .external_lex_state = 2}, [591] = {.lex_state = 62, .external_lex_state = 3}, [592] = {.lex_state = 62, .external_lex_state = 3}, - [593] = {.lex_state = 62, .external_lex_state = 3}, + [593] = {.lex_state = 62, .external_lex_state = 2}, [594] = {.lex_state = 62, .external_lex_state = 3}, [595] = {.lex_state = 62, .external_lex_state = 3}, [596] = {.lex_state = 62, .external_lex_state = 2}, [597] = {.lex_state = 62, .external_lex_state = 2}, [598] = {.lex_state = 62, .external_lex_state = 2}, - [599] = {.lex_state = 62, .external_lex_state = 2}, - [600] = {.lex_state = 15, .external_lex_state = 2}, + [599] = {.lex_state = 15, .external_lex_state = 2}, + [600] = {.lex_state = 62, .external_lex_state = 2}, [601] = {.lex_state = 15, .external_lex_state = 2}, [602] = {.lex_state = 62, .external_lex_state = 2}, [603] = {.lex_state = 62, .external_lex_state = 2}, - [604] = {.lex_state = 62, .external_lex_state = 2}, + [604] = {.lex_state = 15, .external_lex_state = 2}, [605] = {.lex_state = 62, .external_lex_state = 2}, [606] = {.lex_state = 62, .external_lex_state = 2}, - [607] = {.lex_state = 15, .external_lex_state = 2}, + [607] = {.lex_state = 62, .external_lex_state = 2}, [608] = {.lex_state = 62, .external_lex_state = 2}, [609] = {.lex_state = 62, .external_lex_state = 2}, [610] = {.lex_state = 15, .external_lex_state = 2}, @@ -6903,8 +6905,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [619] = {.lex_state = 15}, [620] = {.lex_state = 15}, [621] = {.lex_state = 15}, - [622] = {.lex_state = 15}, - [623] = {.lex_state = 16, .external_lex_state = 2}, + [622] = {.lex_state = 16, .external_lex_state = 2}, + [623] = {.lex_state = 15}, [624] = {.lex_state = 15}, [625] = {.lex_state = 15}, [626] = {.lex_state = 15}, @@ -6949,49 +6951,49 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [665] = {.lex_state = 15}, [666] = {.lex_state = 15}, [667] = {.lex_state = 15}, - [668] = {.lex_state = 62, .external_lex_state = 2}, + [668] = {.lex_state = 15}, [669] = {.lex_state = 62, .external_lex_state = 2}, - [670] = {.lex_state = 14}, - [671] = {.lex_state = 15}, + [670] = {.lex_state = 15, .external_lex_state = 2}, + [671] = {.lex_state = 62, .external_lex_state = 2}, [672] = {.lex_state = 62, .external_lex_state = 2}, [673] = {.lex_state = 14}, - [674] = {.lex_state = 15, .external_lex_state = 2}, - [675] = {.lex_state = 15}, - [676] = {.lex_state = 14}, + [674] = {.lex_state = 14}, + [675] = {.lex_state = 14}, + [676] = {.lex_state = 15}, [677] = {.lex_state = 14}, - [678] = {.lex_state = 15, .external_lex_state = 2}, - [679] = {.lex_state = 62, .external_lex_state = 2}, - [680] = {.lex_state = 15, .external_lex_state = 4}, + [678] = {.lex_state = 62, .external_lex_state = 2}, + [679] = {.lex_state = 15, .external_lex_state = 2}, + [680] = {.lex_state = 15}, [681] = {.lex_state = 62, .external_lex_state = 2}, [682] = {.lex_state = 62, .external_lex_state = 2}, - [683] = {.lex_state = 15, .external_lex_state = 4}, + [683] = {.lex_state = 62, .external_lex_state = 2}, [684] = {.lex_state = 62, .external_lex_state = 2}, - [685] = {.lex_state = 62, .external_lex_state = 2}, + [685] = {.lex_state = 15, .external_lex_state = 4}, [686] = {.lex_state = 62, .external_lex_state = 2}, [687] = {.lex_state = 62, .external_lex_state = 2}, [688] = {.lex_state = 62, .external_lex_state = 2}, [689] = {.lex_state = 62, .external_lex_state = 2}, [690] = {.lex_state = 62, .external_lex_state = 2}, [691] = {.lex_state = 62, .external_lex_state = 2}, - [692] = {.lex_state = 15, .external_lex_state = 4}, - [693] = {.lex_state = 62, .external_lex_state = 2}, + [692] = {.lex_state = 62, .external_lex_state = 2}, + [693] = {.lex_state = 15}, [694] = {.lex_state = 62, .external_lex_state = 2}, [695] = {.lex_state = 62, .external_lex_state = 2}, - [696] = {.lex_state = 62, .external_lex_state = 2}, + [696] = {.lex_state = 15, .external_lex_state = 6}, [697] = {.lex_state = 62, .external_lex_state = 2}, [698] = {.lex_state = 62, .external_lex_state = 2}, [699] = {.lex_state = 62, .external_lex_state = 2}, [700] = {.lex_state = 62, .external_lex_state = 2}, - [701] = {.lex_state = 15}, - [702] = {.lex_state = 62, .external_lex_state = 2}, - [703] = {.lex_state = 15}, + [701] = {.lex_state = 15, .external_lex_state = 4}, + [702] = {.lex_state = 15, .external_lex_state = 4}, + [703] = {.lex_state = 62, .external_lex_state = 2}, [704] = {.lex_state = 62, .external_lex_state = 2}, [705] = {.lex_state = 62, .external_lex_state = 2}, [706] = {.lex_state = 62, .external_lex_state = 2}, [707] = {.lex_state = 62, .external_lex_state = 2}, [708] = {.lex_state = 62, .external_lex_state = 2}, [709] = {.lex_state = 62, .external_lex_state = 2}, - [710] = {.lex_state = 15, .external_lex_state = 6}, + [710] = {.lex_state = 62, .external_lex_state = 2}, [711] = {.lex_state = 62, .external_lex_state = 2}, [712] = {.lex_state = 62, .external_lex_state = 2}, [713] = {.lex_state = 62, .external_lex_state = 2}, @@ -7016,47 +7018,47 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [732] = {.lex_state = 15, .external_lex_state = 6}, [733] = {.lex_state = 15, .external_lex_state = 6}, [734] = {.lex_state = 15, .external_lex_state = 6}, - [735] = {.lex_state = 15, .external_lex_state = 2}, + [735] = {.lex_state = 15}, [736] = {.lex_state = 15, .external_lex_state = 6}, - [737] = {.lex_state = 15, .external_lex_state = 6}, + [737] = {.lex_state = 15, .external_lex_state = 2}, [738] = {.lex_state = 15, .external_lex_state = 6}, [739] = {.lex_state = 15, .external_lex_state = 2}, - [740] = {.lex_state = 15}, - [741] = {.lex_state = 15, .external_lex_state = 6}, + [740] = {.lex_state = 15, .external_lex_state = 6}, + [741] = {.lex_state = 15, .external_lex_state = 2}, [742] = {.lex_state = 15, .external_lex_state = 6}, - [743] = {.lex_state = 15, .external_lex_state = 2}, + [743] = {.lex_state = 15, .external_lex_state = 6}, [744] = {.lex_state = 15, .external_lex_state = 6}, [745] = {.lex_state = 15, .external_lex_state = 6}, [746] = {.lex_state = 15, .external_lex_state = 6}, [747] = {.lex_state = 15}, [748] = {.lex_state = 15}, - [749] = {.lex_state = 15}, + [749] = {.lex_state = 15, .external_lex_state = 4}, [750] = {.lex_state = 15}, [751] = {.lex_state = 15}, [752] = {.lex_state = 15}, [753] = {.lex_state = 15}, - [754] = {.lex_state = 15}, + [754] = {.lex_state = 14}, [755] = {.lex_state = 15}, - [756] = {.lex_state = 14, .external_lex_state = 6}, - [757] = {.lex_state = 15, .external_lex_state = 4}, + [756] = {.lex_state = 15, .external_lex_state = 4}, + [757] = {.lex_state = 15}, [758] = {.lex_state = 14}, [759] = {.lex_state = 15}, - [760] = {.lex_state = 14}, - [761] = {.lex_state = 14}, - [762] = {.lex_state = 14, .external_lex_state = 6}, - [763] = {.lex_state = 15}, + [760] = {.lex_state = 15}, + [761] = {.lex_state = 15}, + [762] = {.lex_state = 15}, + [763] = {.lex_state = 14}, [764] = {.lex_state = 15}, - [765] = {.lex_state = 15}, - [766] = {.lex_state = 15, .external_lex_state = 4}, + [765] = {.lex_state = 14, .external_lex_state = 6}, + [766] = {.lex_state = 14, .external_lex_state = 6}, [767] = {.lex_state = 15}, [768] = {.lex_state = 15}, - [769] = {.lex_state = 14}, + [769] = {.lex_state = 15}, [770] = {.lex_state = 15}, - [771] = {.lex_state = 15}, + [771] = {.lex_state = 14}, [772] = {.lex_state = 15, .external_lex_state = 6}, [773] = {.lex_state = 15, .external_lex_state = 6}, [774] = {.lex_state = 15, .external_lex_state = 6}, - [775] = {.lex_state = 14}, + [775] = {.lex_state = 15, .external_lex_state = 6}, [776] = {.lex_state = 15, .external_lex_state = 6}, [777] = {.lex_state = 15, .external_lex_state = 6}, [778] = {.lex_state = 15, .external_lex_state = 6}, @@ -7067,8 +7069,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [783] = {.lex_state = 15, .external_lex_state = 6}, [784] = {.lex_state = 15, .external_lex_state = 6}, [785] = {.lex_state = 15, .external_lex_state = 6}, - [786] = {.lex_state = 15, .external_lex_state = 6}, - [787] = {.lex_state = 15, .external_lex_state = 6}, + [786] = {.lex_state = 14}, + [787] = {.lex_state = 14}, [788] = {.lex_state = 15, .external_lex_state = 6}, [789] = {.lex_state = 15, .external_lex_state = 6}, [790] = {.lex_state = 15, .external_lex_state = 6}, @@ -7083,14 +7085,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [799] = {.lex_state = 15, .external_lex_state = 6}, [800] = {.lex_state = 15}, [801] = {.lex_state = 15, .external_lex_state = 6}, - [802] = {.lex_state = 14}, + [802] = {.lex_state = 15, .external_lex_state = 6}, [803] = {.lex_state = 15, .external_lex_state = 6}, [804] = {.lex_state = 15, .external_lex_state = 6}, - [805] = {.lex_state = 15, .external_lex_state = 6}, + [805] = {.lex_state = 15}, [806] = {.lex_state = 15, .external_lex_state = 6}, [807] = {.lex_state = 15, .external_lex_state = 6}, [808] = {.lex_state = 15, .external_lex_state = 6}, - [809] = {.lex_state = 15}, + [809] = {.lex_state = 15, .external_lex_state = 6}, [810] = {.lex_state = 15}, [811] = {.lex_state = 15}, [812] = {.lex_state = 15}, @@ -7103,16 +7105,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [819] = {.lex_state = 15}, [820] = {.lex_state = 15}, [821] = {.lex_state = 15}, - [822] = {.lex_state = 15}, + [822] = {.lex_state = 14}, [823] = {.lex_state = 15}, [824] = {.lex_state = 15}, - [825] = {.lex_state = 15}, + [825] = {.lex_state = 14}, [826] = {.lex_state = 15}, [827] = {.lex_state = 15}, [828] = {.lex_state = 15}, [829] = {.lex_state = 15}, [830] = {.lex_state = 15}, - [831] = {.lex_state = 14}, + [831] = {.lex_state = 15}, [832] = {.lex_state = 15}, [833] = {.lex_state = 15}, [834] = {.lex_state = 15}, @@ -7130,11 +7132,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [846] = {.lex_state = 15}, [847] = {.lex_state = 15}, [848] = {.lex_state = 15}, - [849] = {.lex_state = 14}, + [849] = {.lex_state = 15}, [850] = {.lex_state = 16, .external_lex_state = 2}, [851] = {.lex_state = 62, .external_lex_state = 2}, - [852] = {.lex_state = 62, .external_lex_state = 2}, - [853] = {.lex_state = 16, .external_lex_state = 2}, + [852] = {.lex_state = 16, .external_lex_state = 2}, + [853] = {.lex_state = 62, .external_lex_state = 2}, [854] = {.lex_state = 62, .external_lex_state = 2}, [855] = {.lex_state = 62, .external_lex_state = 2}, [856] = {.lex_state = 62, .external_lex_state = 2}, @@ -7155,378 +7157,378 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [871] = {.lex_state = 16}, [872] = {.lex_state = 16}, [873] = {.lex_state = 16}, - [874] = {.lex_state = 15}, - [875] = {.lex_state = 16}, + [874] = {.lex_state = 16}, + [875] = {.lex_state = 62, .external_lex_state = 6}, [876] = {.lex_state = 16}, - [877] = {.lex_state = 16}, - [878] = {.lex_state = 16}, - [879] = {.lex_state = 62, .external_lex_state = 6}, - [880] = {.lex_state = 62, .external_lex_state = 6}, - [881] = {.lex_state = 15}, + [877] = {.lex_state = 15}, + [878] = {.lex_state = 15}, + [879] = {.lex_state = 16}, + [880] = {.lex_state = 16}, + [881] = {.lex_state = 62, .external_lex_state = 6}, [882] = {.lex_state = 16}, - [883] = {.lex_state = 15}, + [883] = {.lex_state = 16}, [884] = {.lex_state = 16}, - [885] = {.lex_state = 16}, + [885] = {.lex_state = 15}, [886] = {.lex_state = 16}, [887] = {.lex_state = 16}, [888] = {.lex_state = 16}, [889] = {.lex_state = 16}, [890] = {.lex_state = 16}, [891] = {.lex_state = 16}, - [892] = {.lex_state = 62, .external_lex_state = 2}, + [892] = {.lex_state = 62}, [893] = {.lex_state = 62, .external_lex_state = 2}, [894] = {.lex_state = 62, .external_lex_state = 2}, - [895] = {.lex_state = 62}, - [896] = {.lex_state = 62}, + [895] = {.lex_state = 62, .external_lex_state = 2}, + [896] = {.lex_state = 16}, [897] = {.lex_state = 16}, - [898] = {.lex_state = 16}, - [899] = {.lex_state = 16}, - [900] = {.lex_state = 62}, - [901] = {.lex_state = 16}, - [902] = {.lex_state = 62}, - [903] = {.lex_state = 16}, - [904] = {.lex_state = 62}, + [898] = {.lex_state = 62}, + [899] = {.lex_state = 62}, + [900] = {.lex_state = 16}, + [901] = {.lex_state = 62}, + [902] = {.lex_state = 16}, + [903] = {.lex_state = 62}, + [904] = {.lex_state = 16}, [905] = {.lex_state = 16}, [906] = {.lex_state = 62, .external_lex_state = 2}, [907] = {.lex_state = 15}, - [908] = {.lex_state = 16}, + [908] = {.lex_state = 16, .external_lex_state = 2}, [909] = {.lex_state = 18, .external_lex_state = 7}, - [910] = {.lex_state = 18, .external_lex_state = 7}, - [911] = {.lex_state = 62}, - [912] = {.lex_state = 15}, - [913] = {.lex_state = 16}, + [910] = {.lex_state = 16}, + [911] = {.lex_state = 16}, + [912] = {.lex_state = 18, .external_lex_state = 7}, + [913] = {.lex_state = 62}, [914] = {.lex_state = 18, .external_lex_state = 7}, [915] = {.lex_state = 16}, [916] = {.lex_state = 16}, [917] = {.lex_state = 16}, [918] = {.lex_state = 16}, [919] = {.lex_state = 16}, - [920] = {.lex_state = 18, .external_lex_state = 7}, + [920] = {.lex_state = 16}, [921] = {.lex_state = 18, .external_lex_state = 7}, [922] = {.lex_state = 16}, - [923] = {.lex_state = 18, .external_lex_state = 7}, - [924] = {.lex_state = 16}, - [925] = {.lex_state = 16}, - [926] = {.lex_state = 18, .external_lex_state = 7}, - [927] = {.lex_state = 18, .external_lex_state = 7}, + [923] = {.lex_state = 16}, + [924] = {.lex_state = 18, .external_lex_state = 7}, + [925] = {.lex_state = 18, .external_lex_state = 7}, + [926] = {.lex_state = 15}, + [927] = {.lex_state = 16}, [928] = {.lex_state = 16}, [929] = {.lex_state = 16}, [930] = {.lex_state = 15}, - [931] = {.lex_state = 16}, + [931] = {.lex_state = 18, .external_lex_state = 7}, [932] = {.lex_state = 16}, - [933] = {.lex_state = 16, .external_lex_state = 2}, - [934] = {.lex_state = 15}, + [933] = {.lex_state = 18, .external_lex_state = 7}, + [934] = {.lex_state = 16}, [935] = {.lex_state = 16}, - [936] = {.lex_state = 18, .external_lex_state = 7}, - [937] = {.lex_state = 16}, + [936] = {.lex_state = 15}, + [937] = {.lex_state = 18, .external_lex_state = 7}, [938] = {.lex_state = 16}, [939] = {.lex_state = 16}, [940] = {.lex_state = 62}, - [941] = {.lex_state = 16}, + [941] = {.lex_state = 62}, [942] = {.lex_state = 62}, - [943] = {.lex_state = 16}, - [944] = {.lex_state = 62}, - [945] = {.lex_state = 62}, - [946] = {.lex_state = 16}, - [947] = {.lex_state = 62}, - [948] = {.lex_state = 62}, + [943] = {.lex_state = 62}, + [944] = {.lex_state = 16}, + [945] = {.lex_state = 16}, + [946] = {.lex_state = 62}, + [947] = {.lex_state = 16}, + [948] = {.lex_state = 16}, [949] = {.lex_state = 16}, [950] = {.lex_state = 62}, - [951] = {.lex_state = 16}, - [952] = {.lex_state = 16}, - [953] = {.lex_state = 62}, + [951] = {.lex_state = 62}, + [952] = {.lex_state = 62}, + [953] = {.lex_state = 16}, [954] = {.lex_state = 62}, [955] = {.lex_state = 62}, [956] = {.lex_state = 16}, [957] = {.lex_state = 16}, - [958] = {.lex_state = 62}, + [958] = {.lex_state = 16}, [959] = {.lex_state = 62}, - [960] = {.lex_state = 16}, + [960] = {.lex_state = 62}, [961] = {.lex_state = 16}, [962] = {.lex_state = 62}, [963] = {.lex_state = 62}, [964] = {.lex_state = 62}, - [965] = {.lex_state = 62, .external_lex_state = 6}, + [965] = {.lex_state = 16}, [966] = {.lex_state = 16}, - [967] = {.lex_state = 62}, + [967] = {.lex_state = 16}, [968] = {.lex_state = 16}, - [969] = {.lex_state = 62, .external_lex_state = 6}, + [969] = {.lex_state = 16}, [970] = {.lex_state = 16}, [971] = {.lex_state = 16}, [972] = {.lex_state = 62, .external_lex_state = 6}, - [973] = {.lex_state = 62, .external_lex_state = 6}, - [974] = {.lex_state = 62, .external_lex_state = 6}, - [975] = {.lex_state = 62, .external_lex_state = 6}, - [976] = {.lex_state = 0}, - [977] = {.lex_state = 16}, - [978] = {.lex_state = 16}, - [979] = {.lex_state = 16}, + [973] = {.lex_state = 62}, + [974] = {.lex_state = 16}, + [975] = {.lex_state = 16}, + [976] = {.lex_state = 15}, + [977] = {.lex_state = 62}, + [978] = {.lex_state = 0}, + [979] = {.lex_state = 62, .external_lex_state = 6}, [980] = {.lex_state = 16}, [981] = {.lex_state = 62}, - [982] = {.lex_state = 16}, + [982] = {.lex_state = 62, .external_lex_state = 6}, [983] = {.lex_state = 16}, - [984] = {.lex_state = 16}, + [984] = {.lex_state = 0}, [985] = {.lex_state = 16}, [986] = {.lex_state = 16}, - [987] = {.lex_state = 16}, - [988] = {.lex_state = 62, .external_lex_state = 6}, - [989] = {.lex_state = 62}, - [990] = {.lex_state = 18, .external_lex_state = 7}, + [987] = {.lex_state = 62, .external_lex_state = 6}, + [988] = {.lex_state = 16}, + [989] = {.lex_state = 16}, + [990] = {.lex_state = 62}, [991] = {.lex_state = 16}, - [992] = {.lex_state = 16}, - [993] = {.lex_state = 16}, - [994] = {.lex_state = 16}, + [992] = {.lex_state = 0}, + [993] = {.lex_state = 62, .external_lex_state = 6}, + [994] = {.lex_state = 18, .external_lex_state = 7}, [995] = {.lex_state = 16}, - [996] = {.lex_state = 62}, - [997] = {.lex_state = 62}, - [998] = {.lex_state = 15}, + [996] = {.lex_state = 62, .external_lex_state = 6}, + [997] = {.lex_state = 62, .external_lex_state = 6}, + [998] = {.lex_state = 16}, [999] = {.lex_state = 62}, [1000] = {.lex_state = 16}, - [1001] = {.lex_state = 0}, - [1002] = {.lex_state = 0}, + [1001] = {.lex_state = 16}, + [1002] = {.lex_state = 16}, [1003] = {.lex_state = 16}, - [1004] = {.lex_state = 0}, - [1005] = {.lex_state = 62}, - [1006] = {.lex_state = 62, .external_lex_state = 6}, - [1007] = {.lex_state = 16}, - [1008] = {.lex_state = 62}, - [1009] = {.lex_state = 16}, - [1010] = {.lex_state = 18, .external_lex_state = 7}, - [1011] = {.lex_state = 16}, - [1012] = {.lex_state = 62, .external_lex_state = 6}, + [1004] = {.lex_state = 62}, + [1005] = {.lex_state = 18, .external_lex_state = 7}, + [1006] = {.lex_state = 16}, + [1007] = {.lex_state = 62}, + [1008] = {.lex_state = 62, .external_lex_state = 6}, + [1009] = {.lex_state = 0}, + [1010] = {.lex_state = 16}, + [1011] = {.lex_state = 62, .external_lex_state = 6}, + [1012] = {.lex_state = 16}, [1013] = {.lex_state = 62, .external_lex_state = 6}, - [1014] = {.lex_state = 16}, + [1014] = {.lex_state = 62}, [1015] = {.lex_state = 16}, [1016] = {.lex_state = 62, .external_lex_state = 6}, - [1017] = {.lex_state = 62}, - [1018] = {.lex_state = 62}, - [1019] = {.lex_state = 62, .external_lex_state = 6}, - [1020] = {.lex_state = 15}, - [1021] = {.lex_state = 62, .external_lex_state = 6}, + [1017] = {.lex_state = 62, .external_lex_state = 6}, + [1018] = {.lex_state = 16}, + [1019] = {.lex_state = 16}, + [1020] = {.lex_state = 62}, + [1021] = {.lex_state = 62}, [1022] = {.lex_state = 62, .external_lex_state = 6}, - [1023] = {.lex_state = 62}, + [1023] = {.lex_state = 15}, [1024] = {.lex_state = 16}, - [1025] = {.lex_state = 16}, - [1026] = {.lex_state = 16}, - [1027] = {.lex_state = 16}, - [1028] = {.lex_state = 16}, - [1029] = {.lex_state = 16}, - [1030] = {.lex_state = 62}, - [1031] = {.lex_state = 16}, - [1032] = {.lex_state = 16}, - [1033] = {.lex_state = 16}, + [1025] = {.lex_state = 62}, + [1026] = {.lex_state = 62, .external_lex_state = 6}, + [1027] = {.lex_state = 62, .external_lex_state = 6}, + [1028] = {.lex_state = 62}, + [1029] = {.lex_state = 62}, + [1030] = {.lex_state = 16}, + [1031] = {.lex_state = 62}, + [1032] = {.lex_state = 62}, + [1033] = {.lex_state = 62, .external_lex_state = 6}, [1034] = {.lex_state = 16}, [1035] = {.lex_state = 62, .external_lex_state = 6}, - [1036] = {.lex_state = 62, .external_lex_state = 6}, + [1036] = {.lex_state = 62}, [1037] = {.lex_state = 62, .external_lex_state = 6}, - [1038] = {.lex_state = 16}, + [1038] = {.lex_state = 62, .external_lex_state = 6}, [1039] = {.lex_state = 62}, [1040] = {.lex_state = 62, .external_lex_state = 6}, - [1041] = {.lex_state = 62, .external_lex_state = 6}, + [1041] = {.lex_state = 62}, [1042] = {.lex_state = 62, .external_lex_state = 6}, [1043] = {.lex_state = 16}, - [1044] = {.lex_state = 62}, - [1045] = {.lex_state = 62}, - [1046] = {.lex_state = 62}, + [1044] = {.lex_state = 16}, + [1045] = {.lex_state = 16}, + [1046] = {.lex_state = 16}, [1047] = {.lex_state = 16}, - [1048] = {.lex_state = 62}, - [1049] = {.lex_state = 62, .external_lex_state = 6}, - [1050] = {.lex_state = 62}, + [1048] = {.lex_state = 16}, + [1049] = {.lex_state = 16}, + [1050] = {.lex_state = 62, .external_lex_state = 6}, [1051] = {.lex_state = 16}, [1052] = {.lex_state = 16}, [1053] = {.lex_state = 16}, [1054] = {.lex_state = 16}, - [1055] = {.lex_state = 62, .external_lex_state = 6}, - [1056] = {.lex_state = 62}, - [1057] = {.lex_state = 16}, - [1058] = {.lex_state = 16}, - [1059] = {.lex_state = 15}, - [1060] = {.lex_state = 18, .external_lex_state = 7}, - [1061] = {.lex_state = 16}, + [1055] = {.lex_state = 16}, + [1056] = {.lex_state = 16}, + [1057] = {.lex_state = 62}, + [1058] = {.lex_state = 15, .external_lex_state = 6}, + [1059] = {.lex_state = 18, .external_lex_state = 7}, + [1060] = {.lex_state = 16}, + [1061] = {.lex_state = 15}, [1062] = {.lex_state = 16}, - [1063] = {.lex_state = 15, .external_lex_state = 6}, - [1064] = {.lex_state = 62, .external_lex_state = 6}, - [1065] = {.lex_state = 16}, - [1066] = {.lex_state = 62, .external_lex_state = 6}, - [1067] = {.lex_state = 15, .external_lex_state = 6}, - [1068] = {.lex_state = 18, .external_lex_state = 7}, - [1069] = {.lex_state = 62, .external_lex_state = 6}, - [1070] = {.lex_state = 62}, + [1063] = {.lex_state = 18, .external_lex_state = 7}, + [1064] = {.lex_state = 16}, + [1065] = {.lex_state = 18, .external_lex_state = 7}, + [1066] = {.lex_state = 18, .external_lex_state = 7}, + [1067] = {.lex_state = 16}, + [1068] = {.lex_state = 62, .external_lex_state = 6}, + [1069] = {.lex_state = 16}, + [1070] = {.lex_state = 62, .external_lex_state = 6}, [1071] = {.lex_state = 16}, - [1072] = {.lex_state = 18, .external_lex_state = 7}, - [1073] = {.lex_state = 16}, + [1072] = {.lex_state = 16}, + [1073] = {.lex_state = 62, .external_lex_state = 6}, [1074] = {.lex_state = 16}, - [1075] = {.lex_state = 62}, - [1076] = {.lex_state = 16}, - [1077] = {.lex_state = 16}, - [1078] = {.lex_state = 62, .external_lex_state = 6}, + [1075] = {.lex_state = 18, .external_lex_state = 7}, + [1076] = {.lex_state = 15, .external_lex_state = 6}, + [1077] = {.lex_state = 62}, + [1078] = {.lex_state = 16}, [1079] = {.lex_state = 16}, - [1080] = {.lex_state = 16}, - [1081] = {.lex_state = 18, .external_lex_state = 7}, + [1080] = {.lex_state = 15, .external_lex_state = 6}, + [1081] = {.lex_state = 16}, [1082] = {.lex_state = 16}, [1083] = {.lex_state = 16}, - [1084] = {.lex_state = 16}, - [1085] = {.lex_state = 15, .external_lex_state = 6}, + [1084] = {.lex_state = 62}, + [1085] = {.lex_state = 16}, [1086] = {.lex_state = 62}, - [1087] = {.lex_state = 15}, - [1088] = {.lex_state = 18, .external_lex_state = 7}, - [1089] = {.lex_state = 18, .external_lex_state = 7}, - [1090] = {.lex_state = 16}, + [1087] = {.lex_state = 16}, + [1088] = {.lex_state = 16}, + [1089] = {.lex_state = 62, .external_lex_state = 6}, + [1090] = {.lex_state = 15}, [1091] = {.lex_state = 16}, - [1092] = {.lex_state = 16}, - [1093] = {.lex_state = 62, .external_lex_state = 6}, - [1094] = {.lex_state = 62, .external_lex_state = 6}, + [1092] = {.lex_state = 18, .external_lex_state = 7}, + [1093] = {.lex_state = 62}, + [1094] = {.lex_state = 16}, [1095] = {.lex_state = 62, .external_lex_state = 6}, - [1096] = {.lex_state = 62, .external_lex_state = 6}, - [1097] = {.lex_state = 16}, - [1098] = {.lex_state = 62, .external_lex_state = 6}, - [1099] = {.lex_state = 62}, - [1100] = {.lex_state = 16}, - [1101] = {.lex_state = 62}, + [1096] = {.lex_state = 16}, + [1097] = {.lex_state = 62, .external_lex_state = 6}, + [1098] = {.lex_state = 62}, + [1099] = {.lex_state = 62, .external_lex_state = 6}, + [1100] = {.lex_state = 62, .external_lex_state = 6}, + [1101] = {.lex_state = 62, .external_lex_state = 6}, [1102] = {.lex_state = 62, .external_lex_state = 6}, - [1103] = {.lex_state = 15, .external_lex_state = 6}, + [1103] = {.lex_state = 62, .external_lex_state = 6}, [1104] = {.lex_state = 16}, [1105] = {.lex_state = 62}, - [1106] = {.lex_state = 62, .external_lex_state = 6}, - [1107] = {.lex_state = 16}, - [1108] = {.lex_state = 62, .external_lex_state = 6}, - [1109] = {.lex_state = 8}, - [1110] = {.lex_state = 62, .external_lex_state = 6}, - [1111] = {.lex_state = 0}, + [1106] = {.lex_state = 62}, + [1107] = {.lex_state = 62}, + [1108] = {.lex_state = 62}, + [1109] = {.lex_state = 62}, + [1110] = {.lex_state = 16}, + [1111] = {.lex_state = 62, .external_lex_state = 6}, [1112] = {.lex_state = 16}, [1113] = {.lex_state = 16}, - [1114] = {.lex_state = 8}, + [1114] = {.lex_state = 62}, [1115] = {.lex_state = 62}, - [1116] = {.lex_state = 0}, - [1117] = {.lex_state = 62}, - [1118] = {.lex_state = 0}, - [1119] = {.lex_state = 16}, + [1116] = {.lex_state = 62, .external_lex_state = 6}, + [1117] = {.lex_state = 62, .external_lex_state = 6}, + [1118] = {.lex_state = 15, .external_lex_state = 6}, + [1119] = {.lex_state = 62, .external_lex_state = 6}, [1120] = {.lex_state = 0}, - [1121] = {.lex_state = 62}, - [1122] = {.lex_state = 62}, - [1123] = {.lex_state = 62}, - [1124] = {.lex_state = 62, .external_lex_state = 6}, + [1121] = {.lex_state = 16}, + [1122] = {.lex_state = 0}, + [1123] = {.lex_state = 8}, + [1124] = {.lex_state = 0}, [1125] = {.lex_state = 62, .external_lex_state = 6}, - [1126] = {.lex_state = 62}, - [1127] = {.lex_state = 62}, - [1128] = {.lex_state = 62, .external_lex_state = 6}, + [1126] = {.lex_state = 8}, + [1127] = {.lex_state = 16}, + [1128] = {.lex_state = 0}, [1129] = {.lex_state = 8}, - [1130] = {.lex_state = 16}, - [1131] = {.lex_state = 16}, + [1130] = {.lex_state = 62}, + [1131] = {.lex_state = 0, .external_lex_state = 6}, [1132] = {.lex_state = 62}, - [1133] = {.lex_state = 62}, - [1134] = {.lex_state = 0, .external_lex_state = 6}, + [1133] = {.lex_state = 0, .external_lex_state = 6}, + [1134] = {.lex_state = 62}, [1135] = {.lex_state = 0, .external_lex_state = 6}, - [1136] = {.lex_state = 0, .external_lex_state = 6}, + [1136] = {.lex_state = 0}, [1137] = {.lex_state = 0}, [1138] = {.lex_state = 0, .external_lex_state = 6}, - [1139] = {.lex_state = 16}, + [1139] = {.lex_state = 62}, [1140] = {.lex_state = 0, .external_lex_state = 6}, - [1141] = {.lex_state = 16}, + [1141] = {.lex_state = 0, .external_lex_state = 6}, [1142] = {.lex_state = 16}, - [1143] = {.lex_state = 62}, - [1144] = {.lex_state = 62}, - [1145] = {.lex_state = 0}, - [1146] = {.lex_state = 0, .external_lex_state = 6}, - [1147] = {.lex_state = 16}, - [1148] = {.lex_state = 0, .external_lex_state = 6}, - [1149] = {.lex_state = 0, .external_lex_state = 6}, - [1150] = {.lex_state = 16}, - [1151] = {.lex_state = 16}, - [1152] = {.lex_state = 62}, - [1153] = {.lex_state = 0}, - [1154] = {.lex_state = 16}, - [1155] = {.lex_state = 16}, + [1143] = {.lex_state = 15}, + [1144] = {.lex_state = 0, .external_lex_state = 6}, + [1145] = {.lex_state = 62}, + [1146] = {.lex_state = 0}, + [1147] = {.lex_state = 0}, + [1148] = {.lex_state = 16}, + [1149] = {.lex_state = 16}, + [1150] = {.lex_state = 0, .external_lex_state = 6}, + [1151] = {.lex_state = 62}, + [1152] = {.lex_state = 16}, + [1153] = {.lex_state = 62}, + [1154] = {.lex_state = 62}, + [1155] = {.lex_state = 0, .external_lex_state = 6}, [1156] = {.lex_state = 0, .external_lex_state = 6}, - [1157] = {.lex_state = 16}, + [1157] = {.lex_state = 62}, [1158] = {.lex_state = 62}, [1159] = {.lex_state = 16}, - [1160] = {.lex_state = 0}, - [1161] = {.lex_state = 0, .external_lex_state = 6}, + [1160] = {.lex_state = 16}, + [1161] = {.lex_state = 16}, [1162] = {.lex_state = 0, .external_lex_state = 6}, - [1163] = {.lex_state = 16}, - [1164] = {.lex_state = 62}, - [1165] = {.lex_state = 0, .external_lex_state = 6}, - [1166] = {.lex_state = 16}, - [1167] = {.lex_state = 0}, - [1168] = {.lex_state = 16}, - [1169] = {.lex_state = 62}, - [1170] = {.lex_state = 62}, - [1171] = {.lex_state = 0, .external_lex_state = 6}, - [1172] = {.lex_state = 0, .external_lex_state = 6}, - [1173] = {.lex_state = 0}, - [1174] = {.lex_state = 62}, - [1175] = {.lex_state = 0, .external_lex_state = 6}, - [1176] = {.lex_state = 62}, - [1177] = {.lex_state = 62}, - [1178] = {.lex_state = 0, .external_lex_state = 6}, - [1179] = {.lex_state = 0}, - [1180] = {.lex_state = 62, .external_lex_state = 6}, - [1181] = {.lex_state = 0}, - [1182] = {.lex_state = 16, .external_lex_state = 2}, - [1183] = {.lex_state = 62}, - [1184] = {.lex_state = 0, .external_lex_state = 6}, + [1163] = {.lex_state = 0, .external_lex_state = 6}, + [1164] = {.lex_state = 16}, + [1165] = {.lex_state = 16}, + [1166] = {.lex_state = 0, .external_lex_state = 6}, + [1167] = {.lex_state = 16}, + [1168] = {.lex_state = 0, .external_lex_state = 6}, + [1169] = {.lex_state = 16}, + [1170] = {.lex_state = 16}, + [1171] = {.lex_state = 62}, + [1172] = {.lex_state = 0}, + [1173] = {.lex_state = 62}, + [1174] = {.lex_state = 0}, + [1175] = {.lex_state = 16}, + [1176] = {.lex_state = 0, .external_lex_state = 6}, + [1177] = {.lex_state = 16}, + [1178] = {.lex_state = 62, .external_lex_state = 6}, + [1179] = {.lex_state = 62}, + [1180] = {.lex_state = 16}, + [1181] = {.lex_state = 62}, + [1182] = {.lex_state = 0, .external_lex_state = 6}, + [1183] = {.lex_state = 16, .external_lex_state = 2}, + [1184] = {.lex_state = 62}, [1185] = {.lex_state = 0, .external_lex_state = 6}, - [1186] = {.lex_state = 15}, - [1187] = {.lex_state = 0}, + [1186] = {.lex_state = 0}, + [1187] = {.lex_state = 16}, [1188] = {.lex_state = 0, .external_lex_state = 6}, - [1189] = {.lex_state = 0, .external_lex_state = 6}, - [1190] = {.lex_state = 62, .external_lex_state = 6}, + [1189] = {.lex_state = 16}, + [1190] = {.lex_state = 0, .external_lex_state = 6}, [1191] = {.lex_state = 16}, - [1192] = {.lex_state = 16}, + [1192] = {.lex_state = 0, .external_lex_state = 6}, [1193] = {.lex_state = 0, .external_lex_state = 6}, - [1194] = {.lex_state = 0, .external_lex_state = 6}, - [1195] = {.lex_state = 0, .external_lex_state = 6}, - [1196] = {.lex_state = 0}, - [1197] = {.lex_state = 62}, + [1194] = {.lex_state = 0}, + [1195] = {.lex_state = 62}, + [1196] = {.lex_state = 15}, + [1197] = {.lex_state = 16}, [1198] = {.lex_state = 0, .external_lex_state = 6}, - [1199] = {.lex_state = 62}, + [1199] = {.lex_state = 0, .external_lex_state = 6}, [1200] = {.lex_state = 62}, - [1201] = {.lex_state = 0}, - [1202] = {.lex_state = 0, .external_lex_state = 6}, + [1201] = {.lex_state = 0, .external_lex_state = 6}, + [1202] = {.lex_state = 0}, [1203] = {.lex_state = 0}, - [1204] = {.lex_state = 16}, - [1205] = {.lex_state = 15}, - [1206] = {.lex_state = 16}, - [1207] = {.lex_state = 0, .external_lex_state = 6}, + [1204] = {.lex_state = 62, .external_lex_state = 6}, + [1205] = {.lex_state = 0}, + [1206] = {.lex_state = 0, .external_lex_state = 6}, + [1207] = {.lex_state = 0}, [1208] = {.lex_state = 0, .external_lex_state = 6}, [1209] = {.lex_state = 0, .external_lex_state = 6}, [1210] = {.lex_state = 0, .external_lex_state = 6}, [1211] = {.lex_state = 0, .external_lex_state = 6}, - [1212] = {.lex_state = 62, .external_lex_state = 6}, - [1213] = {.lex_state = 0, .external_lex_state = 6}, - [1214] = {.lex_state = 16}, - [1215] = {.lex_state = 16}, + [1212] = {.lex_state = 0, .external_lex_state = 6}, + [1213] = {.lex_state = 62, .external_lex_state = 6}, + [1214] = {.lex_state = 0, .external_lex_state = 6}, + [1215] = {.lex_state = 62, .external_lex_state = 6}, [1216] = {.lex_state = 0}, - [1217] = {.lex_state = 0, .external_lex_state = 6}, + [1217] = {.lex_state = 62}, [1218] = {.lex_state = 0}, - [1219] = {.lex_state = 0}, + [1219] = {.lex_state = 0, .external_lex_state = 6}, [1220] = {.lex_state = 0}, - [1221] = {.lex_state = 62}, + [1221] = {.lex_state = 0}, [1222] = {.lex_state = 0}, - [1223] = {.lex_state = 62}, - [1224] = {.lex_state = 0}, - [1225] = {.lex_state = 8}, - [1226] = {.lex_state = 0}, + [1223] = {.lex_state = 0, .external_lex_state = 6}, + [1224] = {.lex_state = 62}, + [1225] = {.lex_state = 62}, + [1226] = {.lex_state = 8}, [1227] = {.lex_state = 62}, [1228] = {.lex_state = 0}, [1229] = {.lex_state = 0}, [1230] = {.lex_state = 0}, [1231] = {.lex_state = 0}, - [1232] = {.lex_state = 16}, - [1233] = {.lex_state = 62}, + [1232] = {.lex_state = 0}, + [1233] = {.lex_state = 0}, [1234] = {.lex_state = 16}, - [1235] = {.lex_state = 0}, - [1236] = {.lex_state = 0}, - [1237] = {.lex_state = 16}, - [1238] = {.lex_state = 62}, - [1239] = {.lex_state = 0}, - [1240] = {.lex_state = 0, .external_lex_state = 6}, - [1241] = {.lex_state = 16}, - [1242] = {.lex_state = 62, .external_lex_state = 6}, - [1243] = {.lex_state = 0, .external_lex_state = 6}, - [1244] = {.lex_state = 0}, - [1245] = {.lex_state = 62, .external_lex_state = 6}, + [1235] = {.lex_state = 62}, + [1236] = {.lex_state = 16}, + [1237] = {.lex_state = 0}, + [1238] = {.lex_state = 0}, + [1239] = {.lex_state = 16}, + [1240] = {.lex_state = 62}, + [1241] = {.lex_state = 0}, + [1242] = {.lex_state = 0, .external_lex_state = 6}, + [1243] = {.lex_state = 16}, + [1244] = {.lex_state = 62, .external_lex_state = 6}, + [1245] = {.lex_state = 0, .external_lex_state = 6}, [1246] = {.lex_state = 0}, [1247] = {.lex_state = 0}, [1248] = {.lex_state = 0}, @@ -7534,35 +7536,35 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1250] = {.lex_state = 0}, [1251] = {.lex_state = 0}, [1252] = {.lex_state = 0}, - [1253] = {.lex_state = 62, .external_lex_state = 6}, + [1253] = {.lex_state = 0}, [1254] = {.lex_state = 0}, - [1255] = {.lex_state = 16}, + [1255] = {.lex_state = 0}, [1256] = {.lex_state = 0}, - [1257] = {.lex_state = 0}, + [1257] = {.lex_state = 16}, [1258] = {.lex_state = 0}, - [1259] = {.lex_state = 62}, + [1259] = {.lex_state = 62, .external_lex_state = 6}, [1260] = {.lex_state = 62}, - [1261] = {.lex_state = 0}, + [1261] = {.lex_state = 62}, [1262] = {.lex_state = 0}, - [1263] = {.lex_state = 62}, + [1263] = {.lex_state = 0}, [1264] = {.lex_state = 0}, [1265] = {.lex_state = 0}, [1266] = {.lex_state = 0}, - [1267] = {.lex_state = 16}, - [1268] = {.lex_state = 62}, - [1269] = {.lex_state = 0}, - [1270] = {.lex_state = 16}, - [1271] = {.lex_state = 62}, - [1272] = {.lex_state = 0}, - [1273] = {.lex_state = 0}, + [1267] = {.lex_state = 0}, + [1268] = {.lex_state = 16}, + [1269] = {.lex_state = 16}, + [1270] = {.lex_state = 62}, + [1271] = {.lex_state = 0}, + [1272] = {.lex_state = 16}, + [1273] = {.lex_state = 62}, [1274] = {.lex_state = 0}, [1275] = {.lex_state = 0}, - [1276] = {.lex_state = 16}, + [1276] = {.lex_state = 0}, [1277] = {.lex_state = 0}, [1278] = {.lex_state = 16}, [1279] = {.lex_state = 0}, [1280] = {.lex_state = 0}, - [1281] = {.lex_state = 0}, + [1281] = {.lex_state = 16}, [1282] = {.lex_state = 0}, [1283] = {.lex_state = 0}, [1284] = {.lex_state = 0}, @@ -7572,247 +7574,249 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1288] = {.lex_state = 0}, [1289] = {.lex_state = 0}, [1290] = {.lex_state = 0}, - [1291] = {.lex_state = 16}, - [1292] = {.lex_state = 16}, - [1293] = {.lex_state = 0}, + [1291] = {.lex_state = 0}, + [1292] = {.lex_state = 0}, + [1293] = {.lex_state = 16}, [1294] = {.lex_state = 0}, [1295] = {.lex_state = 0}, - [1296] = {.lex_state = 0}, + [1296] = {.lex_state = 62}, [1297] = {.lex_state = 16}, - [1298] = {.lex_state = 16}, - [1299] = {.lex_state = 0}, + [1298] = {.lex_state = 0}, + [1299] = {.lex_state = 16}, [1300] = {.lex_state = 0}, [1301] = {.lex_state = 0}, - [1302] = {.lex_state = 0, .external_lex_state = 6}, - [1303] = {.lex_state = 62}, - [1304] = {.lex_state = 8}, - [1305] = {.lex_state = 62}, - [1306] = {.lex_state = 62, .external_lex_state = 6}, - [1307] = {.lex_state = 0}, - [1308] = {.lex_state = 16}, - [1309] = {.lex_state = 16}, + [1302] = {.lex_state = 0}, + [1303] = {.lex_state = 0}, + [1304] = {.lex_state = 0, .external_lex_state = 6}, + [1305] = {.lex_state = 8}, + [1306] = {.lex_state = 16}, + [1307] = {.lex_state = 62}, + [1308] = {.lex_state = 8}, + [1309] = {.lex_state = 62, .external_lex_state = 6}, [1310] = {.lex_state = 16}, [1311] = {.lex_state = 0}, - [1312] = {.lex_state = 0}, + [1312] = {.lex_state = 16}, [1313] = {.lex_state = 0}, [1314] = {.lex_state = 0}, [1315] = {.lex_state = 0}, [1316] = {.lex_state = 0}, [1317] = {.lex_state = 0}, - [1318] = {.lex_state = 8}, - [1319] = {.lex_state = 16}, + [1318] = {.lex_state = 0}, + [1319] = {.lex_state = 0}, [1320] = {.lex_state = 0}, - [1321] = {.lex_state = 0}, - [1322] = {.lex_state = 62}, + [1321] = {.lex_state = 8}, + [1322] = {.lex_state = 16}, [1323] = {.lex_state = 0}, [1324] = {.lex_state = 0}, - [1325] = {.lex_state = 62}, - [1326] = {.lex_state = 0}, - [1327] = {.lex_state = 0}, - [1328] = {.lex_state = 0}, + [1325] = {.lex_state = 16}, + [1326] = {.lex_state = 62}, + [1327] = {.lex_state = 16}, + [1328] = {.lex_state = 16}, [1329] = {.lex_state = 0}, - [1330] = {.lex_state = 0}, + [1330] = {.lex_state = 16}, [1331] = {.lex_state = 62}, [1332] = {.lex_state = 0}, - [1333] = {.lex_state = 15}, - [1334] = {.lex_state = 62}, + [1333] = {.lex_state = 0}, + [1334] = {.lex_state = 0}, [1335] = {.lex_state = 0}, [1336] = {.lex_state = 16}, - [1337] = {.lex_state = 8}, - [1338] = {.lex_state = 16}, - [1339] = {.lex_state = 16}, - [1340] = {.lex_state = 0}, - [1341] = {.lex_state = 8}, - [1342] = {.lex_state = 16}, + [1337] = {.lex_state = 0}, + [1338] = {.lex_state = 0}, + [1339] = {.lex_state = 0}, + [1340] = {.lex_state = 62}, + [1341] = {.lex_state = 62}, + [1342] = {.lex_state = 15}, [1343] = {.lex_state = 16}, - [1344] = {.lex_state = 16}, - [1345] = {.lex_state = 0}, - [1346] = {.lex_state = 17}, - [1347] = {.lex_state = 0}, - [1348] = {.lex_state = 0, .external_lex_state = 6}, - [1349] = {.lex_state = 16}, - [1350] = {.lex_state = 17}, - [1351] = {.lex_state = 17}, + [1344] = {.lex_state = 0}, + [1345] = {.lex_state = 8}, + [1346] = {.lex_state = 16}, + [1347] = {.lex_state = 16}, + [1348] = {.lex_state = 0}, + [1349] = {.lex_state = 0, .external_lex_state = 6}, + [1350] = {.lex_state = 0}, + [1351] = {.lex_state = 16}, [1352] = {.lex_state = 0}, - [1353] = {.lex_state = 0}, + [1353] = {.lex_state = 17}, [1354] = {.lex_state = 0}, [1355] = {.lex_state = 0}, - [1356] = {.lex_state = 17}, - [1357] = {.lex_state = 0}, - [1358] = {.lex_state = 0, .external_lex_state = 6}, + [1356] = {.lex_state = 0, .external_lex_state = 6}, + [1357] = {.lex_state = 17}, + [1358] = {.lex_state = 0}, [1359] = {.lex_state = 0}, - [1360] = {.lex_state = 0}, + [1360] = {.lex_state = 17}, [1361] = {.lex_state = 17}, - [1362] = {.lex_state = 0, .external_lex_state = 6}, - [1363] = {.lex_state = 0}, - [1364] = {.lex_state = 0}, - [1365] = {.lex_state = 0}, + [1362] = {.lex_state = 0}, + [1363] = {.lex_state = 15}, + [1364] = {.lex_state = 17}, + [1365] = {.lex_state = 0, .external_lex_state = 6}, [1366] = {.lex_state = 0}, - [1367] = {.lex_state = 0}, - [1368] = {.lex_state = 17}, - [1369] = {.lex_state = 0}, - [1370] = {.lex_state = 17}, - [1371] = {.lex_state = 17}, - [1372] = {.lex_state = 17}, + [1367] = {.lex_state = 17}, + [1368] = {.lex_state = 0}, + [1369] = {.lex_state = 17}, + [1370] = {.lex_state = 0}, + [1371] = {.lex_state = 0}, + [1372] = {.lex_state = 0}, [1373] = {.lex_state = 0}, - [1374] = {.lex_state = 0}, - [1375] = {.lex_state = 0, .external_lex_state = 6}, - [1376] = {.lex_state = 0, .external_lex_state = 6}, + [1374] = {.lex_state = 17}, + [1375] = {.lex_state = 0}, + [1376] = {.lex_state = 0}, [1377] = {.lex_state = 0}, - [1378] = {.lex_state = 0}, - [1379] = {.lex_state = 0}, - [1380] = {.lex_state = 0}, + [1378] = {.lex_state = 0, .external_lex_state = 6}, + [1379] = {.lex_state = 0, .external_lex_state = 6}, + [1380] = {.lex_state = 0, .external_lex_state = 6}, [1381] = {.lex_state = 0}, [1382] = {.lex_state = 0}, - [1383] = {.lex_state = 0, .external_lex_state = 6}, - [1384] = {.lex_state = 17}, + [1383] = {.lex_state = 0}, + [1384] = {.lex_state = 0}, [1385] = {.lex_state = 0}, [1386] = {.lex_state = 0}, [1387] = {.lex_state = 0}, - [1388] = {.lex_state = 0}, - [1389] = {.lex_state = 0}, - [1390] = {.lex_state = 0, .external_lex_state = 6}, - [1391] = {.lex_state = 62}, - [1392] = {.lex_state = 0}, - [1393] = {.lex_state = 0}, - [1394] = {.lex_state = 0, .external_lex_state = 6}, - [1395] = {.lex_state = 62}, + [1388] = {.lex_state = 0, .external_lex_state = 6}, + [1389] = {.lex_state = 17}, + [1390] = {.lex_state = 0}, + [1391] = {.lex_state = 0}, + [1392] = {.lex_state = 17}, + [1393] = {.lex_state = 0, .external_lex_state = 6}, + [1394] = {.lex_state = 62}, + [1395] = {.lex_state = 0}, [1396] = {.lex_state = 0, .external_lex_state = 6}, - [1397] = {.lex_state = 0}, - [1398] = {.lex_state = 0, .external_lex_state = 6}, - [1399] = {.lex_state = 0, .external_lex_state = 6}, + [1397] = {.lex_state = 0, .external_lex_state = 6}, + [1398] = {.lex_state = 0}, + [1399] = {.lex_state = 0}, [1400] = {.lex_state = 0, .external_lex_state = 6}, - [1401] = {.lex_state = 15}, + [1401] = {.lex_state = 0, .external_lex_state = 6}, [1402] = {.lex_state = 0}, - [1403] = {.lex_state = 0}, - [1404] = {.lex_state = 0, .external_lex_state = 6}, - [1405] = {.lex_state = 0}, + [1403] = {.lex_state = 62}, + [1404] = {.lex_state = 0}, + [1405] = {.lex_state = 0, .external_lex_state = 6}, [1406] = {.lex_state = 0, .external_lex_state = 6}, - [1407] = {.lex_state = 0}, + [1407] = {.lex_state = 0, .external_lex_state = 6}, [1408] = {.lex_state = 0, .external_lex_state = 6}, [1409] = {.lex_state = 0, .external_lex_state = 6}, [1410] = {.lex_state = 0, .external_lex_state = 6}, - [1411] = {.lex_state = 0, .external_lex_state = 6}, + [1411] = {.lex_state = 0}, [1412] = {.lex_state = 0}, - [1413] = {.lex_state = 62}, - [1414] = {.lex_state = 16}, - [1415] = {.lex_state = 0}, + [1413] = {.lex_state = 0}, + [1414] = {.lex_state = 0}, + [1415] = {.lex_state = 16}, [1416] = {.lex_state = 62}, - [1417] = {.lex_state = 0}, - [1418] = {.lex_state = 0}, + [1417] = {.lex_state = 16}, + [1418] = {.lex_state = 62}, [1419] = {.lex_state = 0}, - [1420] = {.lex_state = 16}, + [1420] = {.lex_state = 0}, [1421] = {.lex_state = 0}, - [1422] = {.lex_state = 62}, - [1423] = {.lex_state = 16}, + [1422] = {.lex_state = 0}, + [1423] = {.lex_state = 0}, [1424] = {.lex_state = 62}, - [1425] = {.lex_state = 16}, - [1426] = {.lex_state = 0}, - [1427] = {.lex_state = 0}, - [1428] = {.lex_state = 0}, + [1425] = {.lex_state = 62}, + [1426] = {.lex_state = 16}, + [1427] = {.lex_state = 62}, + [1428] = {.lex_state = 16}, [1429] = {.lex_state = 0}, [1430] = {.lex_state = 16}, - [1431] = {.lex_state = 16}, - [1432] = {.lex_state = 0}, - [1433] = {.lex_state = 62}, - [1434] = {.lex_state = 16}, - [1435] = {.lex_state = 16}, + [1431] = {.lex_state = 0}, + [1432] = {.lex_state = 16}, + [1433] = {.lex_state = 0}, + [1434] = {.lex_state = 0}, + [1435] = {.lex_state = 62}, [1436] = {.lex_state = 16}, - [1437] = {.lex_state = 0}, - [1438] = {.lex_state = 0}, + [1437] = {.lex_state = 16}, + [1438] = {.lex_state = 16}, [1439] = {.lex_state = 0}, [1440] = {.lex_state = 0}, - [1441] = {.lex_state = 16}, - [1442] = {.lex_state = 16}, - [1443] = {.lex_state = 16}, - [1444] = {.lex_state = 16}, - [1445] = {.lex_state = 0}, - [1446] = {.lex_state = 0}, - [1447] = {.lex_state = 0}, - [1448] = {.lex_state = 62}, - [1449] = {.lex_state = 62}, + [1441] = {.lex_state = 0}, + [1442] = {.lex_state = 0}, + [1443] = {.lex_state = 0}, + [1444] = {.lex_state = 0}, + [1445] = {.lex_state = 16}, + [1446] = {.lex_state = 16}, + [1447] = {.lex_state = 16}, + [1448] = {.lex_state = 0}, + [1449] = {.lex_state = 16}, [1450] = {.lex_state = 0}, - [1451] = {.lex_state = 62}, + [1451] = {.lex_state = 0}, [1452] = {.lex_state = 62}, [1453] = {.lex_state = 62}, - [1454] = {.lex_state = 16}, - [1455] = {.lex_state = 16}, - [1456] = {.lex_state = 62}, + [1454] = {.lex_state = 62}, + [1455] = {.lex_state = 62}, + [1456] = {.lex_state = 0}, [1457] = {.lex_state = 62}, [1458] = {.lex_state = 16}, [1459] = {.lex_state = 16}, [1460] = {.lex_state = 16}, - [1461] = {.lex_state = 62}, - [1462] = {.lex_state = 62}, - [1463] = {.lex_state = 0}, - [1464] = {.lex_state = 0}, - [1465] = {.lex_state = 62}, - [1466] = {.lex_state = 16}, - [1467] = {.lex_state = 0}, - [1468] = {.lex_state = 62}, + [1461] = {.lex_state = 16}, + [1462] = {.lex_state = 16}, + [1463] = {.lex_state = 16}, + [1464] = {.lex_state = 62}, + [1465] = {.lex_state = 16}, + [1466] = {.lex_state = 62}, + [1467] = {.lex_state = 62}, + [1468] = {.lex_state = 16}, [1469] = {.lex_state = 0}, - [1470] = {.lex_state = 16}, - [1471] = {.lex_state = 0}, + [1470] = {.lex_state = 0}, + [1471] = {.lex_state = 62}, [1472] = {.lex_state = 16}, - [1473] = {.lex_state = 16}, + [1473] = {.lex_state = 0}, [1474] = {.lex_state = 16}, - [1475] = {.lex_state = 16}, - [1476] = {.lex_state = 62}, + [1475] = {.lex_state = 62}, + [1476] = {.lex_state = 0}, [1477] = {.lex_state = 16}, - [1478] = {.lex_state = 16}, + [1478] = {.lex_state = 0}, [1479] = {.lex_state = 16}, [1480] = {.lex_state = 16}, - [1481] = {.lex_state = 62}, - [1482] = {.lex_state = 62}, - [1483] = {.lex_state = 0}, - [1484] = {.lex_state = 0}, - [1485] = {.lex_state = 16}, - [1486] = {.lex_state = 0}, + [1481] = {.lex_state = 16}, + [1482] = {.lex_state = 16}, + [1483] = {.lex_state = 62}, + [1484] = {.lex_state = 16}, + [1485] = {.lex_state = 62}, + [1486] = {.lex_state = 62}, [1487] = {.lex_state = 16}, - [1488] = {.lex_state = 16}, + [1488] = {.lex_state = 0}, [1489] = {.lex_state = 16}, [1490] = {.lex_state = 16}, - [1491] = {.lex_state = 0}, - [1492] = {.lex_state = 0}, + [1491] = {.lex_state = 16}, + [1492] = {.lex_state = 16}, [1493] = {.lex_state = 0}, - [1494] = {.lex_state = 62}, - [1495] = {.lex_state = 16}, - [1496] = {.lex_state = 16}, - [1497] = {.lex_state = 0}, + [1494] = {.lex_state = 0}, + [1495] = {.lex_state = 0}, + [1496] = {.lex_state = 0}, + [1497] = {.lex_state = 62}, [1498] = {.lex_state = 16}, [1499] = {.lex_state = 0}, [1500] = {.lex_state = 16}, - [1501] = {.lex_state = 62}, + [1501] = {.lex_state = 0}, [1502] = {.lex_state = 16}, - [1503] = {.lex_state = 0}, - [1504] = {.lex_state = 0}, - [1505] = {.lex_state = 62}, + [1503] = {.lex_state = 62}, + [1504] = {.lex_state = 16}, + [1505] = {.lex_state = 0}, [1506] = {.lex_state = 0}, - [1507] = {.lex_state = 0}, + [1507] = {.lex_state = 62}, [1508] = {.lex_state = 0}, [1509] = {.lex_state = 0}, - [1510] = {.lex_state = 62}, + [1510] = {.lex_state = 0}, [1511] = {.lex_state = 0}, [1512] = {.lex_state = 62}, [1513] = {.lex_state = 0}, [1514] = {.lex_state = 62}, - [1515] = {.lex_state = 62}, + [1515] = {.lex_state = 0}, [1516] = {.lex_state = 62}, [1517] = {.lex_state = 62}, [1518] = {.lex_state = 62}, - [1519] = {.lex_state = 16}, + [1519] = {.lex_state = 62}, [1520] = {.lex_state = 62}, [1521] = {.lex_state = 16}, - [1522] = {.lex_state = 0}, - [1523] = {.lex_state = 62}, - [1524] = {.lex_state = 62}, - [1525] = {.lex_state = 0}, + [1522] = {.lex_state = 62}, + [1523] = {.lex_state = 16}, + [1524] = {.lex_state = 0}, + [1525] = {.lex_state = 62}, [1526] = {.lex_state = 62}, - [1527] = {.lex_state = 62}, - [1528] = {.lex_state = 0}, + [1527] = {.lex_state = 0}, + [1528] = {.lex_state = 62}, [1529] = {.lex_state = 62}, [1530] = {.lex_state = 0}, - [1531] = {.lex_state = 0}, + [1531] = {.lex_state = 62}, + [1532] = {.lex_state = 0}, + [1533] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -7923,73 +7927,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_end] = ACTIONS(1), }, [1] = { - [sym_module] = STATE(1511), - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1209), - [sym_future_import_statement] = STATE(1209), - [sym_import_from_statement] = STATE(1209), - [sym_print_statement] = STATE(1209), - [sym_assert_statement] = STATE(1209), - [sym_expression_statement] = STATE(1209), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1209), - [sym_delete_statement] = STATE(1209), - [sym_raise_statement] = STATE(1209), - [sym_pass_statement] = STATE(1209), - [sym_break_statement] = STATE(1209), - [sym_continue_statement] = STATE(1209), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1209), - [sym_nonlocal_statement] = STATE(1209), - [sym_exec_statement] = STATE(1209), - [sym_type_alias_statement] = STATE(1209), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(981), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(981), + [sym_module] = STATE(1513), + [sym__statement] = STATE(61), + [sym__simple_statements] = STATE(61), + [sym_import_statement] = STATE(1210), + [sym_future_import_statement] = STATE(1210), + [sym_import_from_statement] = STATE(1210), + [sym_print_statement] = STATE(1210), + [sym_assert_statement] = STATE(1210), + [sym_expression_statement] = STATE(1210), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1210), + [sym_delete_statement] = STATE(1210), + [sym_raise_statement] = STATE(1210), + [sym_pass_statement] = STATE(1210), + [sym_break_statement] = STATE(1210), + [sym_continue_statement] = STATE(1210), + [sym_if_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_try_statement] = STATE(61), + [sym_with_statement] = STATE(61), + [sym_match_statement] = STATE(61), + [sym_function_definition] = STATE(61), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1210), + [sym_nonlocal_statement] = STATE(1210), + [sym_exec_statement] = STATE(1210), + [sym_type_alias_statement] = STATE(1210), + [sym_class_definition] = STATE(61), + [sym_decorated_definition] = STATE(61), + [sym_decorator] = STATE(973), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), + [aux_sym_module_repeat1] = STATE(61), + [aux_sym_decorated_definition_repeat1] = STATE(973), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), @@ -8038,73 +8042,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [2] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_if_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(967), - [sym_block] = STATE(594), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [sym__statement] = STATE(69), + [sym__simple_statements] = STATE(69), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_if_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_with_statement] = STATE(69), + [sym_match_statement] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_class_definition] = STATE(69), + [sym_decorated_definition] = STATE(69), + [sym_decorator] = STATE(999), + [sym_block] = STATE(357), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), + [aux_sym_module_repeat1] = STATE(69), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -8153,73 +8157,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [3] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(967), - [sym_block] = STATE(1001), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_if_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(999), + [sym_block] = STATE(581), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -8268,73 +8272,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [4] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_if_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(967), - [sym_block] = STATE(506), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_if_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(999), + [sym_block] = STATE(540), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -8379,77 +8383,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), }, [5] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_if_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(967), - [sym_block] = STATE(508), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_if_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(999), + [sym_block] = STATE(276), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -8494,77 +8498,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), }, [6] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_if_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(967), - [sym_block] = STATE(497), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_if_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(999), + [sym_block] = STATE(574), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -8609,77 +8613,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), }, [7] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_if_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(967), - [sym_block] = STATE(516), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_if_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_with_statement] = STATE(60), + [sym_match_statement] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(999), + [sym_block] = STATE(588), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -8728,73 +8732,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [8] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_if_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(967), - [sym_block] = STATE(379), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_if_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_with_statement] = STATE(60), + [sym_match_statement] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(999), + [sym_block] = STATE(282), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -8839,77 +8843,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), + [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), }, [9] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_if_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(967), - [sym_block] = STATE(527), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_if_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_with_statement] = STATE(60), + [sym_match_statement] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(999), + [sym_block] = STATE(536), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -8958,73 +8962,188 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [10] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_if_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(967), - [sym_block] = STATE(378), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(999), + [sym_block] = STATE(984), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(999), + [sym_identifier] = ACTIONS(7), + [anon_sym_import] = ACTIONS(9), + [anon_sym_from] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_print] = ACTIONS(17), + [anon_sym_assert] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_raise] = ACTIONS(25), + [anon_sym_pass] = ACTIONS(27), + [anon_sym_break] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_if] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_match] = ACTIONS(95), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_STAR_STAR] = ACTIONS(53), + [anon_sym_def] = ACTIONS(97), + [anon_sym_global] = ACTIONS(57), + [anon_sym_nonlocal] = ACTIONS(59), + [anon_sym_exec] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_class] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(67), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(47), + [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__dedent] = ACTIONS(107), + [sym__string_start] = ACTIONS(81), + }, + [11] = { + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_if_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(999), + [sym_block] = STATE(358), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -9072,189 +9191,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(109), [sym__string_start] = ACTIONS(81), }, - [11] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_if_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(967), - [sym_block] = STATE(588), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(967), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), - [anon_sym_AT] = ACTIONS(67), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(47), - [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__dedent] = ACTIONS(101), - [sym__string_start] = ACTIONS(81), - }, [12] = { - [sym__statement] = STATE(61), - [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_if_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_with_statement] = STATE(61), - [sym_match_statement] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_class_definition] = STATE(61), - [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(967), - [sym_block] = STATE(370), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), - [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_if_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_with_statement] = STATE(60), + [sym_match_statement] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(999), + [sym_block] = STATE(528), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -9299,77 +9303,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(111), + [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), }, [13] = { - [sym__statement] = STATE(69), - [sym__simple_statements] = STATE(69), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_if_statement] = STATE(69), - [sym_for_statement] = STATE(69), - [sym_while_statement] = STATE(69), - [sym_try_statement] = STATE(69), - [sym_with_statement] = STATE(69), - [sym_match_statement] = STATE(69), - [sym_function_definition] = STATE(69), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_class_definition] = STATE(69), - [sym_decorated_definition] = STATE(69), - [sym_decorator] = STATE(967), - [sym_block] = STATE(369), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), - [aux_sym_module_repeat1] = STATE(69), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_if_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_with_statement] = STATE(60), + [sym_match_statement] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(999), + [sym_block] = STATE(519), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -9414,77 +9418,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(113), + [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), }, [14] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_if_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(967), - [sym_block] = STATE(538), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_if_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_with_statement] = STATE(60), + [sym_match_statement] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(999), + [sym_block] = STATE(466), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -9533,73 +9537,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [15] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_if_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(967), - [sym_block] = STATE(415), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_if_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(999), + [sym_block] = STATE(385), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -9644,77 +9648,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(111), [sym__string_start] = ACTIONS(81), }, [16] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_if_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(967), - [sym_block] = STATE(489), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_if_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(999), + [sym_block] = STATE(494), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -9759,77 +9763,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), }, [17] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_if_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(967), - [sym_block] = STATE(549), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_if_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_with_statement] = STATE(60), + [sym_match_statement] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(999), + [sym_block] = STATE(511), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -9878,73 +9882,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [18] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_if_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(967), - [sym_block] = STATE(554), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_if_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_with_statement] = STATE(60), + [sym_match_statement] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(999), + [sym_block] = STATE(505), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -9993,73 +9997,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [19] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_if_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(967), - [sym_block] = STATE(498), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_if_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_with_statement] = STATE(60), + [sym_match_statement] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(999), + [sym_block] = STATE(504), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -10108,73 +10112,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [20] = { - [sym__statement] = STATE(69), - [sym__simple_statements] = STATE(69), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_if_statement] = STATE(69), - [sym_for_statement] = STATE(69), - [sym_while_statement] = STATE(69), - [sym_try_statement] = STATE(69), - [sym_with_statement] = STATE(69), - [sym_match_statement] = STATE(69), - [sym_function_definition] = STATE(69), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_class_definition] = STATE(69), - [sym_decorated_definition] = STATE(69), - [sym_decorator] = STATE(967), - [sym_block] = STATE(359), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), - [aux_sym_module_repeat1] = STATE(69), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_if_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_with_statement] = STATE(60), + [sym_match_statement] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(999), + [sym_block] = STATE(486), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -10219,77 +10223,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(113), + [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), }, [21] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_if_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(967), - [sym_block] = STATE(571), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [sym__statement] = STATE(69), + [sym__simple_statements] = STATE(69), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_if_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_with_statement] = STATE(69), + [sym_match_statement] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_class_definition] = STATE(69), + [sym_decorated_definition] = STATE(69), + [sym_decorator] = STATE(999), + [sym_block] = STATE(359), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), + [aux_sym_module_repeat1] = STATE(69), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -10338,73 +10342,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [22] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_if_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(967), - [sym_block] = STATE(436), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_if_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_with_statement] = STATE(60), + [sym_match_statement] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(999), + [sym_block] = STATE(476), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -10453,73 +10457,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [23] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_if_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(967), - [sym_block] = STATE(570), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_if_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_with_statement] = STATE(60), + [sym_match_statement] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(999), + [sym_block] = STATE(501), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -10568,73 +10572,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [24] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_if_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(967), - [sym_block] = STATE(581), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_if_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(999), + [sym_block] = STATE(379), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -10679,77 +10683,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(111), [sym__string_start] = ACTIONS(81), }, [25] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_if_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(967), - [sym_block] = STATE(583), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_if_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(999), + [sym_block] = STATE(378), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -10794,77 +10798,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(113), [sym__string_start] = ACTIONS(81), }, [26] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_if_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(967), - [sym_block] = STATE(590), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_if_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_with_statement] = STATE(60), + [sym_match_statement] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(999), + [sym_block] = STATE(488), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -10913,73 +10917,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [27] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_if_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(967), - [sym_block] = STATE(553), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_if_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_with_statement] = STATE(60), + [sym_match_statement] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(999), + [sym_block] = STATE(520), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11028,73 +11032,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [28] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_if_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(967), - [sym_block] = STATE(551), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_if_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_with_statement] = STATE(60), + [sym_match_statement] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(999), + [sym_block] = STATE(461), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11143,73 +11147,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [29] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_if_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(967), - [sym_block] = STATE(514), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_if_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_with_statement] = STATE(60), + [sym_match_statement] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(999), + [sym_block] = STATE(524), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11260,19 +11264,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [30] = { [sym__statement] = STATE(67), [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), [sym_if_statement] = STATE(67), [sym_for_statement] = STATE(67), [sym_while_statement] = STATE(67), @@ -11280,51 +11284,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(67), [sym_match_statement] = STATE(67), [sym_function_definition] = STATE(67), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), [sym_class_definition] = STATE(67), [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(967), - [sym_block] = STATE(547), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym_decorator] = STATE(999), + [sym_block] = STATE(590), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11369,77 +11373,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), }, [31] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_if_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(967), - [sym_block] = STATE(421), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_if_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(999), + [sym_block] = STATE(419), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11484,77 +11488,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), }, [32] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_if_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(967), - [sym_block] = STATE(281), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_if_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(999), + [sym_block] = STATE(552), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11599,77 +11603,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), }, [33] = { - [sym__statement] = STATE(61), - [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_if_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_with_statement] = STATE(61), - [sym_match_statement] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_class_definition] = STATE(61), - [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(967), - [sym_block] = STATE(382), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), - [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_if_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(999), + [sym_block] = STATE(527), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11714,25 +11718,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(111), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), }, [34] = { [sym__statement] = STATE(67), [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), [sym_if_statement] = STATE(67), [sym_for_statement] = STATE(67), [sym_while_statement] = STATE(67), @@ -11740,51 +11744,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(67), [sym_match_statement] = STATE(67), [sym_function_definition] = STATE(67), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), [sym_class_definition] = STATE(67), [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(967), - [sym_block] = STATE(272), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym_decorator] = STATE(999), + [sym_block] = STATE(557), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11829,77 +11833,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), }, [35] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_if_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(967), - [sym_block] = STATE(454), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_if_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_with_statement] = STATE(60), + [sym_match_statement] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(999), + [sym_block] = STATE(493), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11944,77 +11948,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), }, [36] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_if_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(967), - [sym_block] = STATE(398), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_if_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_with_statement] = STATE(60), + [sym_match_statement] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(999), + [sym_block] = STATE(551), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12063,73 +12067,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [37] = { - [sym__statement] = STATE(69), - [sym__simple_statements] = STATE(69), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_if_statement] = STATE(69), - [sym_for_statement] = STATE(69), - [sym_while_statement] = STATE(69), - [sym_try_statement] = STATE(69), - [sym_with_statement] = STATE(69), - [sym_match_statement] = STATE(69), - [sym_function_definition] = STATE(69), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_class_definition] = STATE(69), - [sym_decorated_definition] = STATE(69), - [sym_decorator] = STATE(967), - [sym_block] = STATE(377), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), - [aux_sym_module_repeat1] = STATE(69), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_if_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_with_statement] = STATE(60), + [sym_match_statement] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(999), + [sym_block] = STATE(594), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12174,77 +12178,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(113), + [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), }, [38] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_if_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(967), - [sym_block] = STATE(494), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_if_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_with_statement] = STATE(60), + [sym_match_statement] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(999), + [sym_block] = STATE(530), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12293,73 +12297,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [39] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_if_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(967), - [sym_block] = STATE(558), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_if_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_with_statement] = STATE(60), + [sym_match_statement] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(999), + [sym_block] = STATE(543), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12404,77 +12408,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), }, [40] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_if_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(967), - [sym_block] = STATE(536), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_if_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_with_statement] = STATE(60), + [sym_match_statement] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(999), + [sym_block] = STATE(546), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12519,25 +12523,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), }, [41] = { [sym__statement] = STATE(67), [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), [sym_if_statement] = STATE(67), [sym_for_statement] = STATE(67), [sym_while_statement] = STATE(67), @@ -12545,51 +12549,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(67), [sym_match_statement] = STATE(67), [sym_function_definition] = STATE(67), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), [sym_class_definition] = STATE(67), [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(967), - [sym_block] = STATE(493), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym_decorator] = STATE(999), + [sym_block] = STATE(473), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12634,25 +12638,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), }, [42] = { [sym__statement] = STATE(67), [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), [sym_if_statement] = STATE(67), [sym_for_statement] = STATE(67), [sym_while_statement] = STATE(67), @@ -12660,51 +12664,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(67), [sym_match_statement] = STATE(67), [sym_function_definition] = STATE(67), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), [sym_class_definition] = STATE(67), [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(967), - [sym_block] = STATE(512), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym_decorator] = STATE(999), + [sym_block] = STATE(586), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12749,77 +12753,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), }, [43] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_if_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(967), - [sym_block] = STATE(534), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_if_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(999), + [sym_block] = STATE(340), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12864,77 +12868,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(111), [sym__string_start] = ACTIONS(81), }, [44] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_if_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(967), - [sym_block] = STATE(528), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_if_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(999), + [sym_block] = STATE(342), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12979,25 +12983,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(113), [sym__string_start] = ACTIONS(81), }, [45] = { [sym__statement] = STATE(67), [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), [sym_if_statement] = STATE(67), [sym_for_statement] = STATE(67), [sym_while_statement] = STATE(67), @@ -13005,51 +13009,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(67), [sym_match_statement] = STATE(67), [sym_function_definition] = STATE(67), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), [sym_class_definition] = STATE(67), [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(967), - [sym_block] = STATE(519), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym_decorator] = STATE(999), + [sym_block] = STATE(563), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13094,25 +13098,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), }, [46] = { [sym__statement] = STATE(67), [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), [sym_if_statement] = STATE(67), [sym_for_statement] = STATE(67), [sym_while_statement] = STATE(67), @@ -13120,51 +13124,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(67), [sym_match_statement] = STATE(67), [sym_function_definition] = STATE(67), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), [sym_class_definition] = STATE(67), [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(967), - [sym_block] = STATE(427), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym_decorator] = STATE(999), + [sym_block] = STATE(564), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13209,77 +13213,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), }, [47] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_if_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(967), - [sym_block] = STATE(355), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_if_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(999), + [sym_block] = STATE(496), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13324,25 +13328,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(109), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), }, [48] = { [sym__statement] = STATE(67), [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), [sym_if_statement] = STATE(67), [sym_for_statement] = STATE(67), [sym_while_statement] = STATE(67), @@ -13350,51 +13354,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(67), [sym_match_statement] = STATE(67), [sym_function_definition] = STATE(67), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), [sym_class_definition] = STATE(67), [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(967), - [sym_block] = STATE(502), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym_decorator] = STATE(999), + [sym_block] = STATE(495), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13439,25 +13443,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), }, [49] = { [sym__statement] = STATE(67), [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), [sym_if_statement] = STATE(67), [sym_for_statement] = STATE(67), [sym_while_statement] = STATE(67), @@ -13465,51 +13469,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(67), [sym_match_statement] = STATE(67), [sym_function_definition] = STATE(67), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), [sym_class_definition] = STATE(67), [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(967), - [sym_block] = STATE(523), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym_decorator] = STATE(999), + [sym_block] = STATE(549), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13554,25 +13558,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), }, [50] = { [sym__statement] = STATE(67), [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), [sym_if_statement] = STATE(67), [sym_for_statement] = STATE(67), [sym_while_statement] = STATE(67), @@ -13580,51 +13584,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(67), [sym_match_statement] = STATE(67), [sym_function_definition] = STATE(67), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), [sym_class_definition] = STATE(67), [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(967), - [sym_block] = STATE(540), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym_decorator] = STATE(999), + [sym_block] = STATE(395), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13669,25 +13673,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), }, [51] = { [sym__statement] = STATE(67), [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), [sym_if_statement] = STATE(67), [sym_for_statement] = STATE(67), [sym_while_statement] = STATE(67), @@ -13695,51 +13699,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(67), [sym_match_statement] = STATE(67), [sym_function_definition] = STATE(67), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), [sym_class_definition] = STATE(67), [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(967), - [sym_block] = STATE(463), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym_decorator] = STATE(999), + [sym_block] = STATE(515), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13784,77 +13788,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), }, [52] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_if_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(967), - [sym_block] = STATE(486), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_if_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_with_statement] = STATE(60), + [sym_match_statement] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(999), + [sym_block] = STATE(429), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13899,25 +13903,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), }, [53] = { [sym__statement] = STATE(67), [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), [sym_if_statement] = STATE(67), [sym_for_statement] = STATE(67), [sym_while_statement] = STATE(67), @@ -13925,51 +13929,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(67), [sym_match_statement] = STATE(67), [sym_function_definition] = STATE(67), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), [sym_class_definition] = STATE(67), [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(967), - [sym_block] = STATE(478), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym_decorator] = STATE(999), + [sym_block] = STATE(538), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14014,25 +14018,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), }, [54] = { [sym__statement] = STATE(67), [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), [sym_if_statement] = STATE(67), [sym_for_statement] = STATE(67), [sym_while_statement] = STATE(67), @@ -14040,51 +14044,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(67), [sym_match_statement] = STATE(67), [sym_function_definition] = STATE(67), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), [sym_class_definition] = STATE(67), [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(967), - [sym_block] = STATE(557), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym_decorator] = STATE(999), + [sym_block] = STATE(570), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14129,77 +14133,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), }, [55] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_if_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(967), - [sym_block] = STATE(366), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_if_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(999), + [sym_block] = STATE(356), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14248,188 +14252,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [56] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_if_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(967), - [sym_block] = STATE(368), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(967), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), - [anon_sym_AT] = ACTIONS(67), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(47), - [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__dedent] = ACTIONS(107), - [sym__string_start] = ACTIONS(81), - }, - [57] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(967), - [sym_block] = STATE(1002), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_if_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(999), + [sym_block] = STATE(531), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14477,74 +14366,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), }, - [58] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_if_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(967), - [sym_block] = STATE(487), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [57] = { + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(999), + [sym_block] = STATE(992), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14589,25 +14478,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(107), [sym__string_start] = ACTIONS(81), }, - [59] = { + [58] = { [sym__statement] = STATE(67), [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), [sym_if_statement] = STATE(67), [sym_for_statement] = STATE(67), [sym_while_statement] = STATE(67), @@ -14615,51 +14504,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(67), [sym_match_statement] = STATE(67), [sym_function_definition] = STATE(67), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), [sym_class_definition] = STATE(67), [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(967), - [sym_block] = STATE(566), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym_decorator] = STATE(999), + [sym_block] = STATE(467), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [aux_sym_decorated_definition_repeat1] = STATE(999), + [sym_identifier] = ACTIONS(7), + [anon_sym_import] = ACTIONS(9), + [anon_sym_from] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_print] = ACTIONS(17), + [anon_sym_assert] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_raise] = ACTIONS(25), + [anon_sym_pass] = ACTIONS(27), + [anon_sym_break] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_if] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_match] = ACTIONS(95), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_STAR_STAR] = ACTIONS(53), + [anon_sym_def] = ACTIONS(97), + [anon_sym_global] = ACTIONS(57), + [anon_sym_nonlocal] = ACTIONS(59), + [anon_sym_exec] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_class] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(67), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(47), + [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__dedent] = ACTIONS(103), + [sym__string_start] = ACTIONS(81), + }, + [59] = { + [sym__statement] = STATE(69), + [sym__simple_statements] = STATE(69), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_if_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_with_statement] = STATE(69), + [sym_match_statement] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_class_definition] = STATE(69), + [sym_decorated_definition] = STATE(69), + [sym_decorator] = STATE(999), + [sym_block] = STATE(374), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), + [aux_sym_module_repeat1] = STATE(69), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14710,19 +14714,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [60] = { [sym__statement] = STATE(62), [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(1209), - [sym_future_import_statement] = STATE(1209), - [sym_import_from_statement] = STATE(1209), - [sym_print_statement] = STATE(1209), - [sym_assert_statement] = STATE(1209), - [sym_expression_statement] = STATE(1209), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1209), - [sym_delete_statement] = STATE(1209), - [sym_raise_statement] = STATE(1209), - [sym_pass_statement] = STATE(1209), - [sym_break_statement] = STATE(1209), - [sym_continue_statement] = STATE(1209), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), [sym_if_statement] = STATE(62), [sym_for_statement] = STATE(62), [sym_while_statement] = STATE(62), @@ -14730,51 +14734,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(62), [sym_match_statement] = STATE(62), [sym_function_definition] = STATE(62), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1209), - [sym_nonlocal_statement] = STATE(1209), - [sym_exec_statement] = STATE(1209), - [sym_type_alias_statement] = STATE(1209), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), [sym_class_definition] = STATE(62), [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(981), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym_decorator] = STATE(999), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(981), - [ts_builtin_sym_end] = ACTIONS(115), + [aux_sym_decorated_definition_repeat1] = STATE(999), + [sym_identifier] = ACTIONS(7), + [anon_sym_import] = ACTIONS(9), + [anon_sym_from] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_print] = ACTIONS(17), + [anon_sym_assert] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_raise] = ACTIONS(25), + [anon_sym_pass] = ACTIONS(27), + [anon_sym_break] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_if] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_match] = ACTIONS(95), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_STAR_STAR] = ACTIONS(53), + [anon_sym_def] = ACTIONS(97), + [anon_sym_global] = ACTIONS(57), + [anon_sym_nonlocal] = ACTIONS(59), + [anon_sym_exec] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_class] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(67), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(47), + [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__dedent] = ACTIONS(115), + [sym__string_start] = ACTIONS(81), + }, + [61] = { + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(1210), + [sym_future_import_statement] = STATE(1210), + [sym_import_from_statement] = STATE(1210), + [sym_print_statement] = STATE(1210), + [sym_assert_statement] = STATE(1210), + [sym_expression_statement] = STATE(1210), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1210), + [sym_delete_statement] = STATE(1210), + [sym_raise_statement] = STATE(1210), + [sym_pass_statement] = STATE(1210), + [sym_break_statement] = STATE(1210), + [sym_continue_statement] = STATE(1210), + [sym_if_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1210), + [sym_nonlocal_statement] = STATE(1210), + [sym_exec_statement] = STATE(1210), + [sym_type_alias_statement] = STATE(1210), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(973), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(973), + [ts_builtin_sym_end] = ACTIONS(117), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14821,136 +14939,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(81), }, - [61] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_if_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(967), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(967), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), - [anon_sym_AT] = ACTIONS(67), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(47), - [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__dedent] = ACTIONS(117), - [sym__string_start] = ACTIONS(81), - }, [62] = { [sym__statement] = STATE(62), [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(1209), - [sym_future_import_statement] = STATE(1209), - [sym_import_from_statement] = STATE(1209), - [sym_print_statement] = STATE(1209), - [sym_assert_statement] = STATE(1209), - [sym_expression_statement] = STATE(1209), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1209), - [sym_delete_statement] = STATE(1209), - [sym_raise_statement] = STATE(1209), - [sym_pass_statement] = STATE(1209), - [sym_break_statement] = STATE(1209), - [sym_continue_statement] = STATE(1209), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), [sym_if_statement] = STATE(62), [sym_for_statement] = STATE(62), [sym_while_statement] = STATE(62), @@ -14958,164 +14962,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(62), [sym_match_statement] = STATE(62), [sym_function_definition] = STATE(62), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1209), - [sym_nonlocal_statement] = STATE(1209), - [sym_exec_statement] = STATE(1209), - [sym_type_alias_statement] = STATE(1209), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), [sym_class_definition] = STATE(62), [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(981), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym_decorator] = STATE(999), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(981), - [ts_builtin_sym_end] = ACTIONS(119), - [sym_identifier] = ACTIONS(121), - [anon_sym_import] = ACTIONS(124), - [anon_sym_from] = ACTIONS(127), - [anon_sym_LPAREN] = ACTIONS(130), - [anon_sym_STAR] = ACTIONS(133), - [anon_sym_print] = ACTIONS(136), - [anon_sym_assert] = ACTIONS(139), - [anon_sym_return] = ACTIONS(142), - [anon_sym_del] = ACTIONS(145), - [anon_sym_raise] = ACTIONS(148), - [anon_sym_pass] = ACTIONS(151), - [anon_sym_break] = ACTIONS(154), - [anon_sym_continue] = ACTIONS(157), - [anon_sym_if] = ACTIONS(160), - [anon_sym_async] = ACTIONS(163), - [anon_sym_for] = ACTIONS(166), - [anon_sym_while] = ACTIONS(169), - [anon_sym_try] = ACTIONS(172), - [anon_sym_with] = ACTIONS(175), - [anon_sym_match] = ACTIONS(178), - [anon_sym_DASH] = ACTIONS(181), - [anon_sym_PLUS] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(184), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_STAR_STAR] = ACTIONS(190), - [anon_sym_def] = ACTIONS(193), - [anon_sym_global] = ACTIONS(196), - [anon_sym_nonlocal] = ACTIONS(199), - [anon_sym_exec] = ACTIONS(202), - [anon_sym_type] = ACTIONS(205), - [anon_sym_class] = ACTIONS(208), - [anon_sym_AT] = ACTIONS(211), - [anon_sym_not] = ACTIONS(214), - [anon_sym_TILDE] = ACTIONS(181), - [anon_sym_lambda] = ACTIONS(217), - [anon_sym_yield] = ACTIONS(220), - [sym_ellipsis] = ACTIONS(223), - [sym_integer] = ACTIONS(226), - [sym_float] = ACTIONS(223), - [anon_sym_await] = ACTIONS(229), - [sym_true] = ACTIONS(226), - [sym_false] = ACTIONS(226), - [sym_none] = ACTIONS(226), + [aux_sym_decorated_definition_repeat1] = STATE(999), + [sym_identifier] = ACTIONS(119), + [anon_sym_import] = ACTIONS(122), + [anon_sym_from] = ACTIONS(125), + [anon_sym_LPAREN] = ACTIONS(128), + [anon_sym_STAR] = ACTIONS(131), + [anon_sym_print] = ACTIONS(134), + [anon_sym_assert] = ACTIONS(137), + [anon_sym_return] = ACTIONS(140), + [anon_sym_del] = ACTIONS(143), + [anon_sym_raise] = ACTIONS(146), + [anon_sym_pass] = ACTIONS(149), + [anon_sym_break] = ACTIONS(152), + [anon_sym_continue] = ACTIONS(155), + [anon_sym_if] = ACTIONS(158), + [anon_sym_async] = ACTIONS(161), + [anon_sym_for] = ACTIONS(164), + [anon_sym_while] = ACTIONS(167), + [anon_sym_try] = ACTIONS(170), + [anon_sym_with] = ACTIONS(173), + [anon_sym_match] = ACTIONS(176), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_LBRACK] = ACTIONS(182), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_STAR_STAR] = ACTIONS(188), + [anon_sym_def] = ACTIONS(191), + [anon_sym_global] = ACTIONS(194), + [anon_sym_nonlocal] = ACTIONS(197), + [anon_sym_exec] = ACTIONS(200), + [anon_sym_type] = ACTIONS(203), + [anon_sym_class] = ACTIONS(206), + [anon_sym_AT] = ACTIONS(209), + [anon_sym_not] = ACTIONS(212), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_lambda] = ACTIONS(215), + [anon_sym_yield] = ACTIONS(218), + [sym_ellipsis] = ACTIONS(221), + [sym_integer] = ACTIONS(224), + [sym_float] = ACTIONS(221), + [anon_sym_await] = ACTIONS(227), + [sym_true] = ACTIONS(224), + [sym_false] = ACTIONS(224), + [sym_none] = ACTIONS(224), [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(230), [sym__string_start] = ACTIONS(232), }, [63] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_if_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(967), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(999), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -15164,72 +15168,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [64] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_if_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(967), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(999), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -15278,186 +15282,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [65] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_if_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(967), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(967), - [sym_identifier] = ACTIONS(121), - [anon_sym_import] = ACTIONS(124), - [anon_sym_from] = ACTIONS(127), - [anon_sym_LPAREN] = ACTIONS(130), - [anon_sym_STAR] = ACTIONS(133), - [anon_sym_print] = ACTIONS(136), - [anon_sym_assert] = ACTIONS(139), - [anon_sym_return] = ACTIONS(142), - [anon_sym_del] = ACTIONS(145), - [anon_sym_raise] = ACTIONS(148), - [anon_sym_pass] = ACTIONS(151), - [anon_sym_break] = ACTIONS(154), - [anon_sym_continue] = ACTIONS(157), - [anon_sym_if] = ACTIONS(239), - [anon_sym_async] = ACTIONS(242), - [anon_sym_for] = ACTIONS(245), - [anon_sym_while] = ACTIONS(248), - [anon_sym_try] = ACTIONS(251), - [anon_sym_with] = ACTIONS(254), - [anon_sym_match] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(181), - [anon_sym_PLUS] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(184), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_STAR_STAR] = ACTIONS(190), - [anon_sym_def] = ACTIONS(260), - [anon_sym_global] = ACTIONS(196), - [anon_sym_nonlocal] = ACTIONS(199), - [anon_sym_exec] = ACTIONS(202), - [anon_sym_type] = ACTIONS(205), - [anon_sym_class] = ACTIONS(263), - [anon_sym_AT] = ACTIONS(211), - [anon_sym_not] = ACTIONS(214), - [anon_sym_TILDE] = ACTIONS(181), - [anon_sym_lambda] = ACTIONS(217), - [anon_sym_yield] = ACTIONS(220), - [sym_ellipsis] = ACTIONS(223), - [sym_integer] = ACTIONS(226), - [sym_float] = ACTIONS(223), - [anon_sym_await] = ACTIONS(229), - [sym_true] = ACTIONS(226), - [sym_false] = ACTIONS(226), - [sym_none] = ACTIONS(226), - [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(119), - [sym__string_start] = ACTIONS(232), - }, - [66] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_if_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(967), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(999), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -15502,76 +15392,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(266), + [sym__dedent] = ACTIONS(239), [sym__string_start] = ACTIONS(81), }, + [66] = { + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(1210), + [sym_future_import_statement] = STATE(1210), + [sym_import_from_statement] = STATE(1210), + [sym_print_statement] = STATE(1210), + [sym_assert_statement] = STATE(1210), + [sym_expression_statement] = STATE(1210), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1210), + [sym_delete_statement] = STATE(1210), + [sym_raise_statement] = STATE(1210), + [sym_pass_statement] = STATE(1210), + [sym_break_statement] = STATE(1210), + [sym_continue_statement] = STATE(1210), + [sym_if_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1210), + [sym_nonlocal_statement] = STATE(1210), + [sym_exec_statement] = STATE(1210), + [sym_type_alias_statement] = STATE(1210), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(973), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(973), + [ts_builtin_sym_end] = ACTIONS(230), + [sym_identifier] = ACTIONS(119), + [anon_sym_import] = ACTIONS(122), + [anon_sym_from] = ACTIONS(125), + [anon_sym_LPAREN] = ACTIONS(128), + [anon_sym_STAR] = ACTIONS(131), + [anon_sym_print] = ACTIONS(134), + [anon_sym_assert] = ACTIONS(137), + [anon_sym_return] = ACTIONS(140), + [anon_sym_del] = ACTIONS(143), + [anon_sym_raise] = ACTIONS(146), + [anon_sym_pass] = ACTIONS(149), + [anon_sym_break] = ACTIONS(152), + [anon_sym_continue] = ACTIONS(155), + [anon_sym_if] = 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_match] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_LBRACK] = ACTIONS(182), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_STAR_STAR] = ACTIONS(188), + [anon_sym_def] = ACTIONS(262), + [anon_sym_global] = ACTIONS(194), + [anon_sym_nonlocal] = ACTIONS(197), + [anon_sym_exec] = ACTIONS(200), + [anon_sym_type] = ACTIONS(203), + [anon_sym_class] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(209), + [anon_sym_not] = ACTIONS(212), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_lambda] = ACTIONS(215), + [anon_sym_yield] = ACTIONS(218), + [sym_ellipsis] = ACTIONS(221), + [sym_integer] = ACTIONS(224), + [sym_float] = ACTIONS(221), + [anon_sym_await] = ACTIONS(227), + [sym_true] = ACTIONS(224), + [sym_false] = ACTIONS(224), + [sym_none] = ACTIONS(224), + [sym_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(232), + }, [67] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_if_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(967), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(999), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -15620,72 +15624,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [68] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_if_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(967), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(999), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -15734,72 +15738,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [69] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_if_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(967), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(967), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(999), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(999), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -15848,34 +15852,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [70] = { - [sym_named_expression] = STATE(905), - [sym_list_splat] = STATE(1373), - [sym_dictionary_splat] = STATE(1373), - [sym_expression_list] = STATE(1459), - [sym_expression] = STATE(1058), - [sym_primary_expression] = STATE(630), - [sym_not_operator] = STATE(905), - [sym_boolean_operator] = STATE(905), - [sym_binary_operator] = STATE(622), - [sym_unary_operator] = STATE(622), - [sym_comparison_operator] = STATE(905), - [sym_lambda] = STATE(905), - [sym_attribute] = STATE(622), - [sym_subscript] = STATE(622), - [sym_call] = STATE(622), - [sym_list] = STATE(622), - [sym_set] = STATE(622), - [sym_tuple] = STATE(622), - [sym_dictionary] = STATE(622), - [sym_list_comprehension] = STATE(622), - [sym_dictionary_comprehension] = STATE(622), - [sym_set_comprehension] = STATE(622), - [sym_generator_expression] = STATE(622), - [sym_parenthesized_expression] = STATE(622), - [sym_conditional_expression] = STATE(905), - [sym_concatenated_string] = STATE(622), - [sym_string] = STATE(607), - [sym_await] = STATE(905), + [sym_named_expression] = STATE(904), + [sym_list_splat] = STATE(1413), + [sym_dictionary_splat] = STATE(1413), + [sym_expression_list] = STATE(1461), + [sym_expression] = STATE(1062), + [sym_primary_expression] = STATE(620), + [sym_not_operator] = STATE(904), + [sym_boolean_operator] = STATE(904), + [sym_binary_operator] = STATE(619), + [sym_unary_operator] = STATE(619), + [sym_comparison_operator] = STATE(904), + [sym_lambda] = STATE(904), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(619), + [sym_list] = STATE(619), + [sym_set] = STATE(619), + [sym_tuple] = STATE(619), + [sym_dictionary] = STATE(619), + [sym_list_comprehension] = STATE(619), + [sym_dictionary_comprehension] = STATE(619), + [sym_set_comprehension] = STATE(619), + [sym_generator_expression] = STATE(619), + [sym_parenthesized_expression] = STATE(619), + [sym_conditional_expression] = STATE(904), + [sym_concatenated_string] = STATE(619), + [sym_string] = STATE(604), + [sym_await] = STATE(904), [sym_identifier] = ACTIONS(274), [anon_sym_DOT] = ACTIONS(276), [anon_sym_LPAREN] = ACTIONS(278), @@ -15944,34 +15948,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(315), }, [71] = { - [sym_named_expression] = STATE(905), - [sym_list_splat] = STATE(1373), - [sym_dictionary_splat] = STATE(1373), - [sym_expression_list] = STATE(1423), - [sym_expression] = STATE(1092), - [sym_primary_expression] = STATE(630), - [sym_not_operator] = STATE(905), - [sym_boolean_operator] = STATE(905), - [sym_binary_operator] = STATE(622), - [sym_unary_operator] = STATE(622), - [sym_comparison_operator] = STATE(905), - [sym_lambda] = STATE(905), - [sym_attribute] = STATE(622), - [sym_subscript] = STATE(622), - [sym_call] = STATE(622), - [sym_list] = STATE(622), - [sym_set] = STATE(622), - [sym_tuple] = STATE(622), - [sym_dictionary] = STATE(622), - [sym_list_comprehension] = STATE(622), - [sym_dictionary_comprehension] = STATE(622), - [sym_set_comprehension] = STATE(622), - [sym_generator_expression] = STATE(622), - [sym_parenthesized_expression] = STATE(622), - [sym_conditional_expression] = STATE(905), - [sym_concatenated_string] = STATE(622), - [sym_string] = STATE(607), - [sym_await] = STATE(905), + [sym_named_expression] = STATE(904), + [sym_list_splat] = STATE(1413), + [sym_dictionary_splat] = STATE(1413), + [sym_expression_list] = STATE(1426), + [sym_expression] = STATE(1074), + [sym_primary_expression] = STATE(620), + [sym_not_operator] = STATE(904), + [sym_boolean_operator] = STATE(904), + [sym_binary_operator] = STATE(619), + [sym_unary_operator] = STATE(619), + [sym_comparison_operator] = STATE(904), + [sym_lambda] = STATE(904), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(619), + [sym_list] = STATE(619), + [sym_set] = STATE(619), + [sym_tuple] = STATE(619), + [sym_dictionary] = STATE(619), + [sym_list_comprehension] = STATE(619), + [sym_dictionary_comprehension] = STATE(619), + [sym_set_comprehension] = STATE(619), + [sym_generator_expression] = STATE(619), + [sym_parenthesized_expression] = STATE(619), + [sym_conditional_expression] = STATE(904), + [sym_concatenated_string] = STATE(619), + [sym_string] = STATE(604), + [sym_await] = STATE(904), [sym_identifier] = ACTIONS(274), [anon_sym_DOT] = ACTIONS(276), [anon_sym_LPAREN] = ACTIONS(278), @@ -16040,59 +16044,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(315), }, [72] = { - [sym__simple_statements] = STATE(569), - [sym_import_statement] = STATE(1209), - [sym_future_import_statement] = STATE(1209), - [sym_import_from_statement] = STATE(1209), - [sym_print_statement] = STATE(1209), - [sym_assert_statement] = STATE(1209), - [sym_expression_statement] = STATE(1209), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1209), - [sym_delete_statement] = STATE(1209), - [sym_raise_statement] = STATE(1209), - [sym_pass_statement] = STATE(1209), - [sym_break_statement] = STATE(1209), - [sym_continue_statement] = STATE(1209), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1209), - [sym_nonlocal_statement] = STATE(1209), - [sym_exec_statement] = STATE(1209), - [sym_type_alias_statement] = STATE(1209), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym__simple_statements] = STATE(370), + [sym_import_statement] = STATE(1163), + [sym_future_import_statement] = STATE(1163), + [sym_import_from_statement] = STATE(1163), + [sym_print_statement] = STATE(1163), + [sym_assert_statement] = STATE(1163), + [sym_expression_statement] = STATE(1163), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1163), + [sym_delete_statement] = STATE(1163), + [sym_raise_statement] = STATE(1163), + [sym_pass_statement] = STATE(1163), + [sym_break_statement] = STATE(1163), + [sym_continue_statement] = STATE(1163), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1163), + [sym_nonlocal_statement] = STATE(1163), + [sym_exec_statement] = STATE(1163), + [sym_type_alias_statement] = STATE(1163), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16134,59 +16138,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [73] = { - [sym__simple_statements] = STATE(490), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym__simple_statements] = STATE(334), + [sym_import_statement] = STATE(1144), + [sym_future_import_statement] = STATE(1144), + [sym_import_from_statement] = STATE(1144), + [sym_print_statement] = STATE(1144), + [sym_assert_statement] = STATE(1144), + [sym_expression_statement] = STATE(1144), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1144), + [sym_delete_statement] = STATE(1144), + [sym_raise_statement] = STATE(1144), + [sym_pass_statement] = STATE(1144), + [sym_break_statement] = STATE(1144), + [sym_continue_statement] = STATE(1144), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1144), + [sym_nonlocal_statement] = STATE(1144), + [sym_exec_statement] = STATE(1144), + [sym_type_alias_statement] = STATE(1144), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16228,59 +16232,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [74] = { - [sym__simple_statements] = STATE(461), - [sym_import_statement] = STATE(1209), - [sym_future_import_statement] = STATE(1209), - [sym_import_from_statement] = STATE(1209), - [sym_print_statement] = STATE(1209), - [sym_assert_statement] = STATE(1209), - [sym_expression_statement] = STATE(1209), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1209), - [sym_delete_statement] = STATE(1209), - [sym_raise_statement] = STATE(1209), - [sym_pass_statement] = STATE(1209), - [sym_break_statement] = STATE(1209), - [sym_continue_statement] = STATE(1209), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1209), - [sym_nonlocal_statement] = STATE(1209), - [sym_exec_statement] = STATE(1209), - [sym_type_alias_statement] = STATE(1209), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym__simple_statements] = STATE(502), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16322,59 +16326,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [75] = { - [sym__simple_statements] = STATE(505), - [sym_import_statement] = STATE(1209), - [sym_future_import_statement] = STATE(1209), - [sym_import_from_statement] = STATE(1209), - [sym_print_statement] = STATE(1209), - [sym_assert_statement] = STATE(1209), - [sym_expression_statement] = STATE(1209), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1209), - [sym_delete_statement] = STATE(1209), - [sym_raise_statement] = STATE(1209), - [sym_pass_statement] = STATE(1209), - [sym_break_statement] = STATE(1209), - [sym_continue_statement] = STATE(1209), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1209), - [sym_nonlocal_statement] = STATE(1209), - [sym_exec_statement] = STATE(1209), - [sym_type_alias_statement] = STATE(1209), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym__simple_statements] = STATE(482), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16416,59 +16420,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [76] = { - [sym__simple_statements] = STATE(533), - [sym_import_statement] = STATE(1209), - [sym_future_import_statement] = STATE(1209), - [sym_import_from_statement] = STATE(1209), - [sym_print_statement] = STATE(1209), - [sym_assert_statement] = STATE(1209), - [sym_expression_statement] = STATE(1209), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1209), - [sym_delete_statement] = STATE(1209), - [sym_raise_statement] = STATE(1209), - [sym_pass_statement] = STATE(1209), - [sym_break_statement] = STATE(1209), - [sym_continue_statement] = STATE(1209), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1209), - [sym_nonlocal_statement] = STATE(1209), - [sym_exec_statement] = STATE(1209), - [sym_type_alias_statement] = STATE(1209), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym__simple_statements] = STATE(1009), + [sym_import_statement] = STATE(1208), + [sym_future_import_statement] = STATE(1208), + [sym_import_from_statement] = STATE(1208), + [sym_print_statement] = STATE(1208), + [sym_assert_statement] = STATE(1208), + [sym_expression_statement] = STATE(1208), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1208), + [sym_delete_statement] = STATE(1208), + [sym_raise_statement] = STATE(1208), + [sym_pass_statement] = STATE(1208), + [sym_break_statement] = STATE(1208), + [sym_continue_statement] = STATE(1208), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1208), + [sym_nonlocal_statement] = STATE(1208), + [sym_exec_statement] = STATE(1208), + [sym_type_alias_statement] = STATE(1208), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16510,59 +16514,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [77] = { - [sym__simple_statements] = STATE(586), - [sym_import_statement] = STATE(1209), - [sym_future_import_statement] = STATE(1209), - [sym_import_from_statement] = STATE(1209), - [sym_print_statement] = STATE(1209), - [sym_assert_statement] = STATE(1209), - [sym_expression_statement] = STATE(1209), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1209), - [sym_delete_statement] = STATE(1209), - [sym_raise_statement] = STATE(1209), - [sym_pass_statement] = STATE(1209), - [sym_break_statement] = STATE(1209), - [sym_continue_statement] = STATE(1209), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1209), - [sym_nonlocal_statement] = STATE(1209), - [sym_exec_statement] = STATE(1209), - [sym_type_alias_statement] = STATE(1209), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym__simple_statements] = STATE(507), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16604,59 +16608,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [78] = { - [sym__simple_statements] = STATE(279), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym__simple_statements] = STATE(548), + [sym_import_statement] = STATE(1210), + [sym_future_import_statement] = STATE(1210), + [sym_import_from_statement] = STATE(1210), + [sym_print_statement] = STATE(1210), + [sym_assert_statement] = STATE(1210), + [sym_expression_statement] = STATE(1210), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1210), + [sym_delete_statement] = STATE(1210), + [sym_raise_statement] = STATE(1210), + [sym_pass_statement] = STATE(1210), + [sym_break_statement] = STATE(1210), + [sym_continue_statement] = STATE(1210), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1210), + [sym_nonlocal_statement] = STATE(1210), + [sym_exec_statement] = STATE(1210), + [sym_type_alias_statement] = STATE(1210), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16698,59 +16702,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [79] = { - [sym__simple_statements] = STATE(582), - [sym_import_statement] = STATE(1209), - [sym_future_import_statement] = STATE(1209), - [sym_import_from_statement] = STATE(1209), - [sym_print_statement] = STATE(1209), - [sym_assert_statement] = STATE(1209), - [sym_expression_statement] = STATE(1209), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1209), - [sym_delete_statement] = STATE(1209), - [sym_raise_statement] = STATE(1209), - [sym_pass_statement] = STATE(1209), - [sym_break_statement] = STATE(1209), - [sym_continue_statement] = STATE(1209), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1209), - [sym_nonlocal_statement] = STATE(1209), - [sym_exec_statement] = STATE(1209), - [sym_type_alias_statement] = STATE(1209), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym__simple_statements] = STATE(522), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16792,59 +16796,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [80] = { - [sym__simple_statements] = STATE(332), - [sym_import_statement] = STATE(1140), - [sym_future_import_statement] = STATE(1140), - [sym_import_from_statement] = STATE(1140), - [sym_print_statement] = STATE(1140), - [sym_assert_statement] = STATE(1140), - [sym_expression_statement] = STATE(1140), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1140), - [sym_delete_statement] = STATE(1140), - [sym_raise_statement] = STATE(1140), - [sym_pass_statement] = STATE(1140), - [sym_break_statement] = STATE(1140), - [sym_continue_statement] = STATE(1140), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1140), - [sym_nonlocal_statement] = STATE(1140), - [sym_exec_statement] = STATE(1140), - [sym_type_alias_statement] = STATE(1140), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym__simple_statements] = STATE(497), + [sym_import_statement] = STATE(1210), + [sym_future_import_statement] = STATE(1210), + [sym_import_from_statement] = STATE(1210), + [sym_print_statement] = STATE(1210), + [sym_assert_statement] = STATE(1210), + [sym_expression_statement] = STATE(1210), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1210), + [sym_delete_statement] = STATE(1210), + [sym_raise_statement] = STATE(1210), + [sym_pass_statement] = STATE(1210), + [sym_break_statement] = STATE(1210), + [sym_continue_statement] = STATE(1210), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1210), + [sym_nonlocal_statement] = STATE(1210), + [sym_exec_statement] = STATE(1210), + [sym_type_alias_statement] = STATE(1210), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16886,59 +16890,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [81] = { - [sym__simple_statements] = STATE(374), - [sym_import_statement] = STATE(1149), - [sym_future_import_statement] = STATE(1149), - [sym_import_from_statement] = STATE(1149), - [sym_print_statement] = STATE(1149), - [sym_assert_statement] = STATE(1149), - [sym_expression_statement] = STATE(1149), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1149), - [sym_delete_statement] = STATE(1149), - [sym_raise_statement] = STATE(1149), - [sym_pass_statement] = STATE(1149), - [sym_break_statement] = STATE(1149), - [sym_continue_statement] = STATE(1149), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1149), - [sym_nonlocal_statement] = STATE(1149), - [sym_exec_statement] = STATE(1149), - [sym_type_alias_statement] = STATE(1149), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym__simple_statements] = STATE(565), + [sym_import_statement] = STATE(1210), + [sym_future_import_statement] = STATE(1210), + [sym_import_from_statement] = STATE(1210), + [sym_print_statement] = STATE(1210), + [sym_assert_statement] = STATE(1210), + [sym_expression_statement] = STATE(1210), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1210), + [sym_delete_statement] = STATE(1210), + [sym_raise_statement] = STATE(1210), + [sym_pass_statement] = STATE(1210), + [sym_break_statement] = STATE(1210), + [sym_continue_statement] = STATE(1210), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1210), + [sym_nonlocal_statement] = STATE(1210), + [sym_exec_statement] = STATE(1210), + [sym_type_alias_statement] = STATE(1210), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16981,58 +16985,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [82] = { [sym__simple_statements] = STATE(499), - [sym_import_statement] = STATE(1209), - [sym_future_import_statement] = STATE(1209), - [sym_import_from_statement] = STATE(1209), - [sym_print_statement] = STATE(1209), - [sym_assert_statement] = STATE(1209), - [sym_expression_statement] = STATE(1209), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1209), - [sym_delete_statement] = STATE(1209), - [sym_raise_statement] = STATE(1209), - [sym_pass_statement] = STATE(1209), - [sym_break_statement] = STATE(1209), - [sym_continue_statement] = STATE(1209), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1209), - [sym_nonlocal_statement] = STATE(1209), - [sym_exec_statement] = STATE(1209), - [sym_type_alias_statement] = STATE(1209), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym_import_statement] = STATE(1210), + [sym_future_import_statement] = STATE(1210), + [sym_import_from_statement] = STATE(1210), + [sym_print_statement] = STATE(1210), + [sym_assert_statement] = STATE(1210), + [sym_expression_statement] = STATE(1210), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1210), + [sym_delete_statement] = STATE(1210), + [sym_raise_statement] = STATE(1210), + [sym_pass_statement] = STATE(1210), + [sym_break_statement] = STATE(1210), + [sym_continue_statement] = STATE(1210), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1210), + [sym_nonlocal_statement] = STATE(1210), + [sym_exec_statement] = STATE(1210), + [sym_type_alias_statement] = STATE(1210), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17074,59 +17078,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [83] = { - [sym__simple_statements] = STATE(564), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym__simple_statements] = STATE(553), + [sym_import_statement] = STATE(1210), + [sym_future_import_statement] = STATE(1210), + [sym_import_from_statement] = STATE(1210), + [sym_print_statement] = STATE(1210), + [sym_assert_statement] = STATE(1210), + [sym_expression_statement] = STATE(1210), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1210), + [sym_delete_statement] = STATE(1210), + [sym_raise_statement] = STATE(1210), + [sym_pass_statement] = STATE(1210), + [sym_break_statement] = STATE(1210), + [sym_continue_statement] = STATE(1210), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1210), + [sym_nonlocal_statement] = STATE(1210), + [sym_exec_statement] = STATE(1210), + [sym_type_alias_statement] = STATE(1210), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17168,59 +17172,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [84] = { - [sym__simple_statements] = STATE(589), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym__simple_statements] = STATE(578), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17262,59 +17266,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [85] = { - [sym__simple_statements] = STATE(552), - [sym_import_statement] = STATE(1209), - [sym_future_import_statement] = STATE(1209), - [sym_import_from_statement] = STATE(1209), - [sym_print_statement] = STATE(1209), - [sym_assert_statement] = STATE(1209), - [sym_expression_statement] = STATE(1209), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1209), - [sym_delete_statement] = STATE(1209), - [sym_raise_statement] = STATE(1209), - [sym_pass_statement] = STATE(1209), - [sym_break_statement] = STATE(1209), - [sym_continue_statement] = STATE(1209), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1209), - [sym_nonlocal_statement] = STATE(1209), - [sym_exec_statement] = STATE(1209), - [sym_type_alias_statement] = STATE(1209), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym__simple_statements] = STATE(492), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17356,59 +17360,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [86] = { - [sym__simple_statements] = STATE(445), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym__simple_statements] = STATE(547), + [sym_import_statement] = STATE(1210), + [sym_future_import_statement] = STATE(1210), + [sym_import_from_statement] = STATE(1210), + [sym_print_statement] = STATE(1210), + [sym_assert_statement] = STATE(1210), + [sym_expression_statement] = STATE(1210), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1210), + [sym_delete_statement] = STATE(1210), + [sym_raise_statement] = STATE(1210), + [sym_pass_statement] = STATE(1210), + [sym_break_statement] = STATE(1210), + [sym_continue_statement] = STATE(1210), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1210), + [sym_nonlocal_statement] = STATE(1210), + [sym_exec_statement] = STATE(1210), + [sym_type_alias_statement] = STATE(1210), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17450,153 +17454,247 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [87] = { - [sym_chevron] = STATE(1184), - [sym_named_expression] = STATE(974), - [sym_expression] = STATE(1055), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_attribute] = STATE(795), - [sym_subscript] = STATE(795), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), - [sym_identifier] = ACTIONS(379), - [anon_sym_DOT] = ACTIONS(276), - [anon_sym_LPAREN] = ACTIONS(303), - [anon_sym_COMMA] = ACTIONS(280), - [anon_sym_STAR] = ACTIONS(276), - [anon_sym_print] = ACTIONS(381), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_COLON_EQ] = ACTIONS(287), - [anon_sym_if] = ACTIONS(276), - [anon_sym_COLON] = ACTIONS(289), - [anon_sym_async] = ACTIONS(381), - [anon_sym_in] = ACTIONS(276), - [anon_sym_match] = ACTIONS(381), - [anon_sym_PIPE] = ACTIONS(276), - [anon_sym_DASH] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(303), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(276), - [anon_sym_EQ] = ACTIONS(289), - [anon_sym_exec] = ACTIONS(381), - [anon_sym_type] = ACTIONS(381), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_not] = ACTIONS(276), - [anon_sym_and] = ACTIONS(276), - [anon_sym_or] = ACTIONS(276), - [anon_sym_SLASH] = ACTIONS(276), - [anon_sym_PERCENT] = ACTIONS(276), - [anon_sym_SLASH_SLASH] = ACTIONS(276), - [anon_sym_AMP] = ACTIONS(276), - [anon_sym_CARET] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(276), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(276), - [anon_sym_LT_EQ] = ACTIONS(303), - [anon_sym_EQ_EQ] = ACTIONS(303), - [anon_sym_BANG_EQ] = ACTIONS(303), - [anon_sym_GT_EQ] = ACTIONS(303), - [anon_sym_GT] = ACTIONS(276), - [anon_sym_LT_GT] = ACTIONS(303), - [anon_sym_is] = ACTIONS(276), - [anon_sym_lambda] = ACTIONS(71), - [anon_sym_PLUS_EQ] = ACTIONS(307), - [anon_sym_DASH_EQ] = ACTIONS(307), - [anon_sym_STAR_EQ] = ACTIONS(307), - [anon_sym_SLASH_EQ] = ACTIONS(307), - [anon_sym_AT_EQ] = ACTIONS(307), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(307), - [anon_sym_PERCENT_EQ] = ACTIONS(307), - [anon_sym_STAR_STAR_EQ] = ACTIONS(307), - [anon_sym_GT_GT_EQ] = ACTIONS(307), - [anon_sym_LT_LT_EQ] = ACTIONS(307), - [anon_sym_AMP_EQ] = ACTIONS(307), - [anon_sym_CARET_EQ] = ACTIONS(307), - [anon_sym_PIPE_EQ] = ACTIONS(307), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(385), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(303), - [sym__newline] = ACTIONS(303), - [sym__string_start] = ACTIONS(81), - }, - [88] = { - [sym__simple_statements] = STATE(577), + [sym__simple_statements] = STATE(380), [sym_import_statement] = STATE(1138), [sym_future_import_statement] = STATE(1138), [sym_import_from_statement] = STATE(1138), [sym_print_statement] = STATE(1138), [sym_assert_statement] = STATE(1138), [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), + [sym_named_expression] = STATE(993), [sym_return_statement] = STATE(1138), [sym_delete_statement] = STATE(1138), [sym_raise_statement] = STATE(1138), [sym_pass_statement] = STATE(1138), [sym_break_statement] = STATE(1138), [sym_continue_statement] = STATE(1138), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), [sym_global_statement] = STATE(1138), [sym_nonlocal_statement] = STATE(1138), [sym_exec_statement] = STATE(1138), [sym_type_alias_statement] = STATE(1138), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), + [sym_identifier] = ACTIONS(7), + [anon_sym_import] = ACTIONS(9), + [anon_sym_from] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_print] = ACTIONS(17), + [anon_sym_assert] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_raise] = ACTIONS(25), + [anon_sym_pass] = ACTIONS(27), + [anon_sym_break] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_async] = ACTIONS(317), + [anon_sym_match] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_STAR_STAR] = ACTIONS(53), + [anon_sym_global] = ACTIONS(57), + [anon_sym_nonlocal] = ACTIONS(59), + [anon_sym_exec] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(47), + [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__newline] = ACTIONS(379), + [sym__indent] = ACTIONS(381), + [sym__string_start] = ACTIONS(81), + }, + [88] = { + [sym__simple_statements] = STATE(381), + [sym_import_statement] = STATE(1144), + [sym_future_import_statement] = STATE(1144), + [sym_import_from_statement] = STATE(1144), + [sym_print_statement] = STATE(1144), + [sym_assert_statement] = STATE(1144), + [sym_expression_statement] = STATE(1144), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1144), + [sym_delete_statement] = STATE(1144), + [sym_raise_statement] = STATE(1144), + [sym_pass_statement] = STATE(1144), + [sym_break_statement] = STATE(1144), + [sym_continue_statement] = STATE(1144), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1144), + [sym_nonlocal_statement] = STATE(1144), + [sym_exec_statement] = STATE(1144), + [sym_type_alias_statement] = STATE(1144), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), + [sym_identifier] = ACTIONS(7), + [anon_sym_import] = ACTIONS(9), + [anon_sym_from] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_print] = ACTIONS(17), + [anon_sym_assert] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_raise] = ACTIONS(25), + [anon_sym_pass] = ACTIONS(27), + [anon_sym_break] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_async] = ACTIONS(317), + [anon_sym_match] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_STAR_STAR] = ACTIONS(53), + [anon_sym_global] = ACTIONS(57), + [anon_sym_nonlocal] = ACTIONS(59), + [anon_sym_exec] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(47), + [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__newline] = ACTIONS(383), + [sym__indent] = ACTIONS(385), + [sym__string_start] = ACTIONS(81), + }, + [89] = { + [sym__simple_statements] = STATE(533), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17637,248 +17735,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(389), [sym__string_start] = ACTIONS(81), }, - [89] = { - [sym__simple_statements] = STATE(976), - [sym_import_statement] = STATE(1207), - [sym_future_import_statement] = STATE(1207), - [sym_import_from_statement] = STATE(1207), - [sym_print_statement] = STATE(1207), - [sym_assert_statement] = STATE(1207), - [sym_expression_statement] = STATE(1207), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1207), - [sym_delete_statement] = STATE(1207), - [sym_raise_statement] = STATE(1207), - [sym_pass_statement] = STATE(1207), - [sym_break_statement] = STATE(1207), - [sym_continue_statement] = STATE(1207), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1207), - [sym_nonlocal_statement] = STATE(1207), - [sym_exec_statement] = STATE(1207), - [sym_type_alias_statement] = STATE(1207), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(47), - [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__newline] = ACTIONS(391), - [sym__indent] = ACTIONS(393), - [sym__string_start] = ACTIONS(81), - }, [90] = { - [sym__simple_statements] = STATE(491), - [sym_import_statement] = STATE(1209), - [sym_future_import_statement] = STATE(1209), - [sym_import_from_statement] = STATE(1209), - [sym_print_statement] = STATE(1209), - [sym_assert_statement] = STATE(1209), - [sym_expression_statement] = STATE(1209), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1209), - [sym_delete_statement] = STATE(1209), - [sym_raise_statement] = STATE(1209), - [sym_pass_statement] = STATE(1209), - [sym_break_statement] = STATE(1209), - [sym_continue_statement] = STATE(1209), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1209), - [sym_nonlocal_statement] = STATE(1209), - [sym_exec_statement] = STATE(1209), - [sym_type_alias_statement] = STATE(1209), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), + [sym_chevron] = STATE(1133), + [sym_named_expression] = STATE(993), + [sym_expression] = STATE(1026), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_attribute] = STATE(801), + [sym_subscript] = STATE(801), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), + [sym_identifier] = ACTIONS(391), + [anon_sym_DOT] = ACTIONS(276), + [anon_sym_LPAREN] = ACTIONS(303), + [anon_sym_COMMA] = ACTIONS(280), + [anon_sym_STAR] = ACTIONS(276), + [anon_sym_print] = ACTIONS(393), + [anon_sym_GT_GT] = ACTIONS(395), + [anon_sym_COLON_EQ] = ACTIONS(287), + [anon_sym_if] = ACTIONS(276), + [anon_sym_COLON] = ACTIONS(289), + [anon_sym_async] = ACTIONS(393), + [anon_sym_in] = ACTIONS(276), + [anon_sym_match] = ACTIONS(393), + [anon_sym_PIPE] = ACTIONS(276), + [anon_sym_DASH] = ACTIONS(276), + [anon_sym_PLUS] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(303), [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_not] = ACTIONS(69), + [anon_sym_STAR_STAR] = ACTIONS(276), + [anon_sym_EQ] = ACTIONS(289), + [anon_sym_exec] = ACTIONS(393), + [anon_sym_type] = ACTIONS(393), + [anon_sym_AT] = ACTIONS(276), + [anon_sym_not] = ACTIONS(276), + [anon_sym_and] = ACTIONS(276), + [anon_sym_or] = ACTIONS(276), + [anon_sym_SLASH] = ACTIONS(276), + [anon_sym_PERCENT] = ACTIONS(276), + [anon_sym_SLASH_SLASH] = ACTIONS(276), + [anon_sym_AMP] = ACTIONS(276), + [anon_sym_CARET] = ACTIONS(276), + [anon_sym_LT_LT] = ACTIONS(276), [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_LT_EQ] = ACTIONS(303), + [anon_sym_EQ_EQ] = ACTIONS(303), + [anon_sym_BANG_EQ] = ACTIONS(303), + [anon_sym_GT_EQ] = ACTIONS(303), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_LT_GT] = ACTIONS(303), + [anon_sym_is] = ACTIONS(276), [anon_sym_lambda] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), + [anon_sym_PLUS_EQ] = ACTIONS(307), + [anon_sym_DASH_EQ] = ACTIONS(307), + [anon_sym_STAR_EQ] = ACTIONS(307), + [anon_sym_SLASH_EQ] = ACTIONS(307), + [anon_sym_AT_EQ] = ACTIONS(307), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(307), + [anon_sym_PERCENT_EQ] = ACTIONS(307), + [anon_sym_STAR_STAR_EQ] = ACTIONS(307), + [anon_sym_GT_GT_EQ] = ACTIONS(307), + [anon_sym_LT_LT_EQ] = ACTIONS(307), + [anon_sym_AMP_EQ] = ACTIONS(307), + [anon_sym_CARET_EQ] = ACTIONS(307), + [anon_sym_PIPE_EQ] = ACTIONS(307), [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(79), + [anon_sym_await] = ACTIONS(397), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(395), - [sym__indent] = ACTIONS(397), + [anon_sym_SEMI] = ACTIONS(303), + [sym__newline] = ACTIONS(303), [sym__string_start] = ACTIONS(81), }, [91] = { - [sym__simple_statements] = STATE(587), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym__simple_statements] = STATE(491), + [sym_import_statement] = STATE(1210), + [sym_future_import_statement] = STATE(1210), + [sym_import_from_statement] = STATE(1210), + [sym_print_statement] = STATE(1210), + [sym_assert_statement] = STATE(1210), + [sym_expression_statement] = STATE(1210), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1210), + [sym_delete_statement] = STATE(1210), + [sym_raise_statement] = STATE(1210), + [sym_pass_statement] = STATE(1210), + [sym_break_statement] = STATE(1210), + [sym_continue_statement] = STATE(1210), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1210), + [sym_nonlocal_statement] = STATE(1210), + [sym_exec_statement] = STATE(1210), + [sym_type_alias_statement] = STATE(1210), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17920,59 +17924,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [92] = { - [sym__simple_statements] = STATE(373), - [sym_import_statement] = STATE(1178), - [sym_future_import_statement] = STATE(1178), - [sym_import_from_statement] = STATE(1178), - [sym_print_statement] = STATE(1178), - [sym_assert_statement] = STATE(1178), - [sym_expression_statement] = STATE(1178), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1178), - [sym_delete_statement] = STATE(1178), - [sym_raise_statement] = STATE(1178), - [sym_pass_statement] = STATE(1178), - [sym_break_statement] = STATE(1178), - [sym_continue_statement] = STATE(1178), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1178), - [sym_nonlocal_statement] = STATE(1178), - [sym_exec_statement] = STATE(1178), - [sym_type_alias_statement] = STATE(1178), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym__simple_statements] = STATE(589), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18014,59 +18018,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [93] = { - [sym__simple_statements] = STATE(372), - [sym_import_statement] = STATE(1156), - [sym_future_import_statement] = STATE(1156), - [sym_import_from_statement] = STATE(1156), - [sym_print_statement] = STATE(1156), - [sym_assert_statement] = STATE(1156), - [sym_expression_statement] = STATE(1156), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1156), - [sym_delete_statement] = STATE(1156), - [sym_raise_statement] = STATE(1156), - [sym_pass_statement] = STATE(1156), - [sym_break_statement] = STATE(1156), - [sym_continue_statement] = STATE(1156), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1156), - [sym_nonlocal_statement] = STATE(1156), - [sym_exec_statement] = STATE(1156), - [sym_type_alias_statement] = STATE(1156), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym__simple_statements] = STATE(516), + [sym_import_statement] = STATE(1210), + [sym_future_import_statement] = STATE(1210), + [sym_import_from_statement] = STATE(1210), + [sym_print_statement] = STATE(1210), + [sym_assert_statement] = STATE(1210), + [sym_expression_statement] = STATE(1210), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1210), + [sym_delete_statement] = STATE(1210), + [sym_raise_statement] = STATE(1210), + [sym_pass_statement] = STATE(1210), + [sym_break_statement] = STATE(1210), + [sym_continue_statement] = STATE(1210), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1210), + [sym_nonlocal_statement] = STATE(1210), + [sym_exec_statement] = STATE(1210), + [sym_type_alias_statement] = STATE(1210), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18108,59 +18112,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [94] = { - [sym__simple_statements] = STATE(584), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym__simple_statements] = STATE(585), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18202,59 +18206,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [95] = { - [sym__simple_statements] = STATE(438), - [sym_import_statement] = STATE(1209), - [sym_future_import_statement] = STATE(1209), - [sym_import_from_statement] = STATE(1209), - [sym_print_statement] = STATE(1209), - [sym_assert_statement] = STATE(1209), - [sym_expression_statement] = STATE(1209), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1209), - [sym_delete_statement] = STATE(1209), - [sym_raise_statement] = STATE(1209), - [sym_pass_statement] = STATE(1209), - [sym_break_statement] = STATE(1209), - [sym_continue_statement] = STATE(1209), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1209), - [sym_nonlocal_statement] = STATE(1209), - [sym_exec_statement] = STATE(1209), - [sym_type_alias_statement] = STATE(1209), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym__simple_statements] = STATE(583), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18296,59 +18300,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [96] = { - [sym__simple_statements] = STATE(591), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym__simple_statements] = STATE(446), + [sym_import_statement] = STATE(1210), + [sym_future_import_statement] = STATE(1210), + [sym_import_from_statement] = STATE(1210), + [sym_print_statement] = STATE(1210), + [sym_assert_statement] = STATE(1210), + [sym_expression_statement] = STATE(1210), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1210), + [sym_delete_statement] = STATE(1210), + [sym_raise_statement] = STATE(1210), + [sym_pass_statement] = STATE(1210), + [sym_break_statement] = STATE(1210), + [sym_continue_statement] = STATE(1210), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1210), + [sym_nonlocal_statement] = STATE(1210), + [sym_exec_statement] = STATE(1210), + [sym_type_alias_statement] = STATE(1210), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18390,59 +18394,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [97] = { - [sym__simple_statements] = STATE(515), - [sym_import_statement] = STATE(1209), - [sym_future_import_statement] = STATE(1209), - [sym_import_from_statement] = STATE(1209), - [sym_print_statement] = STATE(1209), - [sym_assert_statement] = STATE(1209), - [sym_expression_statement] = STATE(1209), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1209), - [sym_delete_statement] = STATE(1209), - [sym_raise_statement] = STATE(1209), - [sym_pass_statement] = STATE(1209), - [sym_break_statement] = STATE(1209), - [sym_continue_statement] = STATE(1209), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1209), - [sym_nonlocal_statement] = STATE(1209), - [sym_exec_statement] = STATE(1209), - [sym_type_alias_statement] = STATE(1209), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym__simple_statements] = STATE(364), + [sym_import_statement] = STATE(1163), + [sym_future_import_statement] = STATE(1163), + [sym_import_from_statement] = STATE(1163), + [sym_print_statement] = STATE(1163), + [sym_assert_statement] = STATE(1163), + [sym_expression_statement] = STATE(1163), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1163), + [sym_delete_statement] = STATE(1163), + [sym_raise_statement] = STATE(1163), + [sym_pass_statement] = STATE(1163), + [sym_break_statement] = STATE(1163), + [sym_continue_statement] = STATE(1163), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1163), + [sym_nonlocal_statement] = STATE(1163), + [sym_exec_statement] = STATE(1163), + [sym_type_alias_statement] = STATE(1163), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18484,59 +18488,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [98] = { - [sym__simple_statements] = STATE(550), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym__simple_statements] = STATE(532), + [sym_import_statement] = STATE(1210), + [sym_future_import_statement] = STATE(1210), + [sym_import_from_statement] = STATE(1210), + [sym_print_statement] = STATE(1210), + [sym_assert_statement] = STATE(1210), + [sym_expression_statement] = STATE(1210), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1210), + [sym_delete_statement] = STATE(1210), + [sym_raise_statement] = STATE(1210), + [sym_pass_statement] = STATE(1210), + [sym_break_statement] = STATE(1210), + [sym_continue_statement] = STATE(1210), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1210), + [sym_nonlocal_statement] = STATE(1210), + [sym_exec_statement] = STATE(1210), + [sym_type_alias_statement] = STATE(1210), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18578,59 +18582,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [99] = { - [sym__simple_statements] = STATE(476), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym__simple_statements] = STATE(487), + [sym_import_statement] = STATE(1210), + [sym_future_import_statement] = STATE(1210), + [sym_import_from_statement] = STATE(1210), + [sym_print_statement] = STATE(1210), + [sym_assert_statement] = STATE(1210), + [sym_expression_statement] = STATE(1210), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1210), + [sym_delete_statement] = STATE(1210), + [sym_raise_statement] = STATE(1210), + [sym_pass_statement] = STATE(1210), + [sym_break_statement] = STATE(1210), + [sym_continue_statement] = STATE(1210), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1210), + [sym_nonlocal_statement] = STATE(1210), + [sym_exec_statement] = STATE(1210), + [sym_type_alias_statement] = STATE(1210), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18672,59 +18676,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [100] = { - [sym__simple_statements] = STATE(348), - [sym_import_statement] = STATE(1149), - [sym_future_import_statement] = STATE(1149), - [sym_import_from_statement] = STATE(1149), - [sym_print_statement] = STATE(1149), - [sym_assert_statement] = STATE(1149), - [sym_expression_statement] = STATE(1149), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1149), - [sym_delete_statement] = STATE(1149), - [sym_raise_statement] = STATE(1149), - [sym_pass_statement] = STATE(1149), - [sym_break_statement] = STATE(1149), - [sym_continue_statement] = STATE(1149), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1149), - [sym_nonlocal_statement] = STATE(1149), - [sym_exec_statement] = STATE(1149), - [sym_type_alias_statement] = STATE(1149), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym__simple_statements] = STATE(550), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18766,59 +18770,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [101] = { - [sym__simple_statements] = STATE(595), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym__simple_statements] = STATE(432), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18860,59 +18864,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [102] = { - [sym__simple_statements] = STATE(509), - [sym_import_statement] = STATE(1209), - [sym_future_import_statement] = STATE(1209), - [sym_import_from_statement] = STATE(1209), - [sym_print_statement] = STATE(1209), - [sym_assert_statement] = STATE(1209), - [sym_expression_statement] = STATE(1209), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1209), - [sym_delete_statement] = STATE(1209), - [sym_raise_statement] = STATE(1209), - [sym_pass_statement] = STATE(1209), - [sym_break_statement] = STATE(1209), - [sym_continue_statement] = STATE(1209), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1209), - [sym_nonlocal_statement] = STATE(1209), - [sym_exec_statement] = STATE(1209), - [sym_type_alias_statement] = STATE(1209), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym__simple_statements] = STATE(339), + [sym_import_statement] = STATE(1144), + [sym_future_import_statement] = STATE(1144), + [sym_import_from_statement] = STATE(1144), + [sym_print_statement] = STATE(1144), + [sym_assert_statement] = STATE(1144), + [sym_expression_statement] = STATE(1144), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1144), + [sym_delete_statement] = STATE(1144), + [sym_raise_statement] = STATE(1144), + [sym_pass_statement] = STATE(1144), + [sym_break_statement] = STATE(1144), + [sym_continue_statement] = STATE(1144), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1144), + [sym_nonlocal_statement] = STATE(1144), + [sym_exec_statement] = STATE(1144), + [sym_type_alias_statement] = STATE(1144), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18954,59 +18958,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [103] = { - [sym__simple_statements] = STATE(542), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym__simple_statements] = STATE(472), + [sym_import_statement] = STATE(1210), + [sym_future_import_statement] = STATE(1210), + [sym_import_from_statement] = STATE(1210), + [sym_print_statement] = STATE(1210), + [sym_assert_statement] = STATE(1210), + [sym_expression_statement] = STATE(1210), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1210), + [sym_delete_statement] = STATE(1210), + [sym_raise_statement] = STATE(1210), + [sym_pass_statement] = STATE(1210), + [sym_break_statement] = STATE(1210), + [sym_continue_statement] = STATE(1210), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1210), + [sym_nonlocal_statement] = STATE(1210), + [sym_exec_statement] = STATE(1210), + [sym_type_alias_statement] = STATE(1210), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19048,59 +19052,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [104] = { - [sym__simple_statements] = STATE(488), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym__simple_statements] = STATE(593), + [sym_import_statement] = STATE(1210), + [sym_future_import_statement] = STATE(1210), + [sym_import_from_statement] = STATE(1210), + [sym_print_statement] = STATE(1210), + [sym_assert_statement] = STATE(1210), + [sym_expression_statement] = STATE(1210), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1210), + [sym_delete_statement] = STATE(1210), + [sym_raise_statement] = STATE(1210), + [sym_pass_statement] = STATE(1210), + [sym_break_statement] = STATE(1210), + [sym_continue_statement] = STATE(1210), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1210), + [sym_nonlocal_statement] = STATE(1210), + [sym_exec_statement] = STATE(1210), + [sym_type_alias_statement] = STATE(1210), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19142,59 +19146,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [105] = { - [sym__simple_statements] = STATE(526), - [sym_import_statement] = STATE(1209), - [sym_future_import_statement] = STATE(1209), - [sym_import_from_statement] = STATE(1209), - [sym_print_statement] = STATE(1209), - [sym_assert_statement] = STATE(1209), - [sym_expression_statement] = STATE(1209), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1209), - [sym_delete_statement] = STATE(1209), - [sym_raise_statement] = STATE(1209), - [sym_pass_statement] = STATE(1209), - [sym_break_statement] = STATE(1209), - [sym_continue_statement] = STATE(1209), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1209), - [sym_nonlocal_statement] = STATE(1209), - [sym_exec_statement] = STATE(1209), - [sym_type_alias_statement] = STATE(1209), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym__simple_statements] = STATE(542), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19236,59 +19240,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [106] = { - [sym__simple_statements] = STATE(544), - [sym_import_statement] = STATE(1209), - [sym_future_import_statement] = STATE(1209), - [sym_import_from_statement] = STATE(1209), - [sym_print_statement] = STATE(1209), - [sym_assert_statement] = STATE(1209), - [sym_expression_statement] = STATE(1209), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1209), - [sym_delete_statement] = STATE(1209), - [sym_raise_statement] = STATE(1209), - [sym_pass_statement] = STATE(1209), - [sym_break_statement] = STATE(1209), - [sym_continue_statement] = STATE(1209), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1209), - [sym_nonlocal_statement] = STATE(1209), - [sym_exec_statement] = STATE(1209), - [sym_type_alias_statement] = STATE(1209), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym__simple_statements] = STATE(587), + [sym_import_statement] = STATE(1210), + [sym_future_import_statement] = STATE(1210), + [sym_import_from_statement] = STATE(1210), + [sym_print_statement] = STATE(1210), + [sym_assert_statement] = STATE(1210), + [sym_expression_statement] = STATE(1210), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1210), + [sym_delete_statement] = STATE(1210), + [sym_raise_statement] = STATE(1210), + [sym_pass_statement] = STATE(1210), + [sym_break_statement] = STATE(1210), + [sym_continue_statement] = STATE(1210), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1210), + [sym_nonlocal_statement] = STATE(1210), + [sym_exec_statement] = STATE(1210), + [sym_type_alias_statement] = STATE(1210), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19330,59 +19334,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [107] = { - [sym__simple_statements] = STATE(535), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym__simple_statements] = STATE(508), + [sym_import_statement] = STATE(1210), + [sym_future_import_statement] = STATE(1210), + [sym_import_from_statement] = STATE(1210), + [sym_print_statement] = STATE(1210), + [sym_assert_statement] = STATE(1210), + [sym_expression_statement] = STATE(1210), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1210), + [sym_delete_statement] = STATE(1210), + [sym_raise_statement] = STATE(1210), + [sym_pass_statement] = STATE(1210), + [sym_break_statement] = STATE(1210), + [sym_continue_statement] = STATE(1210), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1210), + [sym_nonlocal_statement] = STATE(1210), + [sym_exec_statement] = STATE(1210), + [sym_type_alias_statement] = STATE(1210), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19424,59 +19428,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [108] = { - [sym__simple_statements] = STATE(402), - [sym_import_statement] = STATE(1209), - [sym_future_import_statement] = STATE(1209), - [sym_import_from_statement] = STATE(1209), - [sym_print_statement] = STATE(1209), - [sym_assert_statement] = STATE(1209), - [sym_expression_statement] = STATE(1209), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1209), - [sym_delete_statement] = STATE(1209), - [sym_raise_statement] = STATE(1209), - [sym_pass_statement] = STATE(1209), - [sym_break_statement] = STATE(1209), - [sym_continue_statement] = STATE(1209), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1209), - [sym_nonlocal_statement] = STATE(1209), - [sym_exec_statement] = STATE(1209), - [sym_type_alias_statement] = STATE(1209), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym__simple_statements] = STATE(535), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19518,59 +19522,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [109] = { - [sym__simple_statements] = STATE(1004), - [sym_import_statement] = STATE(1207), - [sym_future_import_statement] = STATE(1207), - [sym_import_from_statement] = STATE(1207), - [sym_print_statement] = STATE(1207), - [sym_assert_statement] = STATE(1207), - [sym_expression_statement] = STATE(1207), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1207), - [sym_delete_statement] = STATE(1207), - [sym_raise_statement] = STATE(1207), - [sym_pass_statement] = STATE(1207), - [sym_break_statement] = STATE(1207), - [sym_continue_statement] = STATE(1207), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1207), - [sym_nonlocal_statement] = STATE(1207), - [sym_exec_statement] = STATE(1207), - [sym_type_alias_statement] = STATE(1207), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym__simple_statements] = STATE(386), + [sym_import_statement] = STATE(1210), + [sym_future_import_statement] = STATE(1210), + [sym_import_from_statement] = STATE(1210), + [sym_print_statement] = STATE(1210), + [sym_assert_statement] = STATE(1210), + [sym_expression_statement] = STATE(1210), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1210), + [sym_delete_statement] = STATE(1210), + [sym_raise_statement] = STATE(1210), + [sym_pass_statement] = STATE(1210), + [sym_break_statement] = STATE(1210), + [sym_continue_statement] = STATE(1210), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1210), + [sym_nonlocal_statement] = STATE(1210), + [sym_exec_statement] = STATE(1210), + [sym_type_alias_statement] = STATE(1210), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19612,59 +19616,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [110] = { - [sym__simple_statements] = STATE(567), - [sym_import_statement] = STATE(1209), - [sym_future_import_statement] = STATE(1209), - [sym_import_from_statement] = STATE(1209), - [sym_print_statement] = STATE(1209), - [sym_assert_statement] = STATE(1209), - [sym_expression_statement] = STATE(1209), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1209), - [sym_delete_statement] = STATE(1209), - [sym_raise_statement] = STATE(1209), - [sym_pass_statement] = STATE(1209), - [sym_break_statement] = STATE(1209), - [sym_continue_statement] = STATE(1209), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1209), - [sym_nonlocal_statement] = STATE(1209), - [sym_exec_statement] = STATE(1209), - [sym_type_alias_statement] = STATE(1209), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym__simple_statements] = STATE(529), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19706,59 +19710,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [111] = { - [sym__simple_statements] = STATE(363), - [sym_import_statement] = STATE(1156), - [sym_future_import_statement] = STATE(1156), - [sym_import_from_statement] = STATE(1156), - [sym_print_statement] = STATE(1156), - [sym_assert_statement] = STATE(1156), - [sym_expression_statement] = STATE(1156), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1156), - [sym_delete_statement] = STATE(1156), - [sym_raise_statement] = STATE(1156), - [sym_pass_statement] = STATE(1156), - [sym_break_statement] = STATE(1156), - [sym_continue_statement] = STATE(1156), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1156), - [sym_nonlocal_statement] = STATE(1156), - [sym_exec_statement] = STATE(1156), - [sym_type_alias_statement] = STATE(1156), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym__simple_statements] = STATE(294), + [sym_import_statement] = STATE(1210), + [sym_future_import_statement] = STATE(1210), + [sym_import_from_statement] = STATE(1210), + [sym_print_statement] = STATE(1210), + [sym_assert_statement] = STATE(1210), + [sym_expression_statement] = STATE(1210), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1210), + [sym_delete_statement] = STATE(1210), + [sym_raise_statement] = STATE(1210), + [sym_pass_statement] = STATE(1210), + [sym_break_statement] = STATE(1210), + [sym_continue_statement] = STATE(1210), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1210), + [sym_nonlocal_statement] = STATE(1210), + [sym_exec_statement] = STATE(1210), + [sym_type_alias_statement] = STATE(1210), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19800,59 +19804,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [112] = { - [sym__simple_statements] = STATE(529), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym__simple_statements] = STATE(591), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19894,59 +19898,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [113] = { - [sym__simple_statements] = STATE(275), - [sym_import_statement] = STATE(1209), - [sym_future_import_statement] = STATE(1209), - [sym_import_from_statement] = STATE(1209), - [sym_print_statement] = STATE(1209), - [sym_assert_statement] = STATE(1209), - [sym_expression_statement] = STATE(1209), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1209), - [sym_delete_statement] = STATE(1209), - [sym_raise_statement] = STATE(1209), - [sym_pass_statement] = STATE(1209), - [sym_break_statement] = STATE(1209), - [sym_continue_statement] = STATE(1209), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1209), - [sym_nonlocal_statement] = STATE(1209), - [sym_exec_statement] = STATE(1209), - [sym_type_alias_statement] = STATE(1209), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym__simple_statements] = STATE(393), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19988,59 +19992,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [114] = { - [sym__simple_statements] = STATE(365), - [sym_import_statement] = STATE(1178), - [sym_future_import_statement] = STATE(1178), - [sym_import_from_statement] = STATE(1178), - [sym_print_statement] = STATE(1178), - [sym_assert_statement] = STATE(1178), - [sym_expression_statement] = STATE(1178), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1178), - [sym_delete_statement] = STATE(1178), - [sym_raise_statement] = STATE(1178), - [sym_pass_statement] = STATE(1178), - [sym_break_statement] = STATE(1178), - [sym_continue_statement] = STATE(1178), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1178), - [sym_nonlocal_statement] = STATE(1178), - [sym_exec_statement] = STATE(1178), - [sym_type_alias_statement] = STATE(1178), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym__simple_statements] = STATE(978), + [sym_import_statement] = STATE(1208), + [sym_future_import_statement] = STATE(1208), + [sym_import_from_statement] = STATE(1208), + [sym_print_statement] = STATE(1208), + [sym_assert_statement] = STATE(1208), + [sym_expression_statement] = STATE(1208), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1208), + [sym_delete_statement] = STATE(1208), + [sym_raise_statement] = STATE(1208), + [sym_pass_statement] = STATE(1208), + [sym_break_statement] = STATE(1208), + [sym_continue_statement] = STATE(1208), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1208), + [sym_nonlocal_statement] = STATE(1208), + [sym_exec_statement] = STATE(1208), + [sym_type_alias_statement] = STATE(1208), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20082,59 +20086,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [115] = { - [sym__simple_statements] = STATE(575), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym__simple_statements] = STATE(489), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20176,59 +20180,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [116] = { - [sym__simple_statements] = STATE(492), - [sym_import_statement] = STATE(1209), - [sym_future_import_statement] = STATE(1209), - [sym_import_from_statement] = STATE(1209), - [sym_print_statement] = STATE(1209), - [sym_assert_statement] = STATE(1209), - [sym_expression_statement] = STATE(1209), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1209), - [sym_delete_statement] = STATE(1209), - [sym_raise_statement] = STATE(1209), - [sym_pass_statement] = STATE(1209), - [sym_break_statement] = STATE(1209), - [sym_continue_statement] = STATE(1209), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1209), - [sym_nonlocal_statement] = STATE(1209), - [sym_exec_statement] = STATE(1209), - [sym_type_alias_statement] = STATE(1209), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym__simple_statements] = STATE(534), + [sym_import_statement] = STATE(1210), + [sym_future_import_statement] = STATE(1210), + [sym_import_from_statement] = STATE(1210), + [sym_print_statement] = STATE(1210), + [sym_assert_statement] = STATE(1210), + [sym_expression_statement] = STATE(1210), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1210), + [sym_delete_statement] = STATE(1210), + [sym_raise_statement] = STATE(1210), + [sym_pass_statement] = STATE(1210), + [sym_break_statement] = STATE(1210), + [sym_continue_statement] = STATE(1210), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1210), + [sym_nonlocal_statement] = STATE(1210), + [sym_exec_statement] = STATE(1210), + [sym_type_alias_statement] = STATE(1210), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20270,59 +20274,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [117] = { - [sym__simple_statements] = STATE(556), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym__simple_statements] = STATE(288), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20364,59 +20368,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [118] = { - [sym__simple_statements] = STATE(495), - [sym_import_statement] = STATE(1209), - [sym_future_import_statement] = STATE(1209), - [sym_import_from_statement] = STATE(1209), - [sym_print_statement] = STATE(1209), - [sym_assert_statement] = STATE(1209), - [sym_expression_statement] = STATE(1209), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1209), - [sym_delete_statement] = STATE(1209), - [sym_raise_statement] = STATE(1209), - [sym_pass_statement] = STATE(1209), - [sym_break_statement] = STATE(1209), - [sym_continue_statement] = STATE(1209), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1209), - [sym_nonlocal_statement] = STATE(1209), - [sym_exec_statement] = STATE(1209), - [sym_type_alias_statement] = STATE(1209), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym__simple_statements] = STATE(559), + [sym_import_statement] = STATE(1210), + [sym_future_import_statement] = STATE(1210), + [sym_import_from_statement] = STATE(1210), + [sym_print_statement] = STATE(1210), + [sym_assert_statement] = STATE(1210), + [sym_expression_statement] = STATE(1210), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1210), + [sym_delete_statement] = STATE(1210), + [sym_raise_statement] = STATE(1210), + [sym_pass_statement] = STATE(1210), + [sym_break_statement] = STATE(1210), + [sym_continue_statement] = STATE(1210), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1210), + [sym_nonlocal_statement] = STATE(1210), + [sym_exec_statement] = STATE(1210), + [sym_type_alias_statement] = STATE(1210), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20458,59 +20462,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [119] = { - [sym__simple_statements] = STATE(323), - [sym_import_statement] = STATE(1156), - [sym_future_import_statement] = STATE(1156), - [sym_import_from_statement] = STATE(1156), - [sym_print_statement] = STATE(1156), - [sym_assert_statement] = STATE(1156), - [sym_expression_statement] = STATE(1156), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1156), - [sym_delete_statement] = STATE(1156), - [sym_raise_statement] = STATE(1156), - [sym_pass_statement] = STATE(1156), - [sym_break_statement] = STATE(1156), - [sym_continue_statement] = STATE(1156), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1156), - [sym_nonlocal_statement] = STATE(1156), - [sym_exec_statement] = STATE(1156), - [sym_type_alias_statement] = STATE(1156), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym__simple_statements] = STATE(579), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20552,59 +20556,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [120] = { - [sym__simple_statements] = STATE(439), + [sym__simple_statements] = STATE(338), [sym_import_statement] = STATE(1138), [sym_future_import_statement] = STATE(1138), [sym_import_from_statement] = STATE(1138), [sym_print_statement] = STATE(1138), [sym_assert_statement] = STATE(1138), [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), + [sym_named_expression] = STATE(993), [sym_return_statement] = STATE(1138), [sym_delete_statement] = STATE(1138), [sym_raise_statement] = STATE(1138), [sym_pass_statement] = STATE(1138), [sym_break_statement] = STATE(1138), [sym_continue_statement] = STATE(1138), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), [sym_global_statement] = STATE(1138), [sym_nonlocal_statement] = STATE(1138), [sym_exec_statement] = STATE(1138), [sym_type_alias_statement] = STATE(1138), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20646,59 +20650,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [121] = { - [sym__simple_statements] = STATE(561), - [sym_import_statement] = STATE(1209), - [sym_future_import_statement] = STATE(1209), - [sym_import_from_statement] = STATE(1209), - [sym_print_statement] = STATE(1209), - [sym_assert_statement] = STATE(1209), - [sym_expression_statement] = STATE(1209), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1209), - [sym_delete_statement] = STATE(1209), - [sym_raise_statement] = STATE(1209), - [sym_pass_statement] = STATE(1209), - [sym_break_statement] = STATE(1209), - [sym_continue_statement] = STATE(1209), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1209), - [sym_nonlocal_statement] = STATE(1209), - [sym_exec_statement] = STATE(1209), - [sym_type_alias_statement] = STATE(1209), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym__simple_statements] = STATE(490), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20740,59 +20744,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [122] = { - [sym__simple_statements] = STATE(482), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym__simple_statements] = STATE(572), + [sym_import_statement] = STATE(1210), + [sym_future_import_statement] = STATE(1210), + [sym_import_from_statement] = STATE(1210), + [sym_print_statement] = STATE(1210), + [sym_assert_statement] = STATE(1210), + [sym_expression_statement] = STATE(1210), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1210), + [sym_delete_statement] = STATE(1210), + [sym_raise_statement] = STATE(1210), + [sym_pass_statement] = STATE(1210), + [sym_break_statement] = STATE(1210), + [sym_continue_statement] = STATE(1210), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1210), + [sym_nonlocal_statement] = STATE(1210), + [sym_exec_statement] = STATE(1210), + [sym_type_alias_statement] = STATE(1210), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20834,59 +20838,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [123] = { - [sym__simple_statements] = STATE(522), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym__simple_statements] = STATE(366), + [sym_import_statement] = STATE(1182), + [sym_future_import_statement] = STATE(1182), + [sym_import_from_statement] = STATE(1182), + [sym_print_statement] = STATE(1182), + [sym_assert_statement] = STATE(1182), + [sym_expression_statement] = STATE(1182), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1182), + [sym_delete_statement] = STATE(1182), + [sym_raise_statement] = STATE(1182), + [sym_pass_statement] = STATE(1182), + [sym_break_statement] = STATE(1182), + [sym_continue_statement] = STATE(1182), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1182), + [sym_nonlocal_statement] = STATE(1182), + [sym_exec_statement] = STATE(1182), + [sym_type_alias_statement] = STATE(1182), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20928,59 +20932,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [124] = { - [sym__simple_statements] = STATE(518), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym__simple_statements] = STATE(464), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21022,59 +21026,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [125] = { - [sym__simple_statements] = STATE(496), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym__simple_statements] = STATE(518), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21116,59 +21120,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [126] = { - [sym__simple_statements] = STATE(543), - [sym_import_statement] = STATE(1209), - [sym_future_import_statement] = STATE(1209), - [sym_import_from_statement] = STATE(1209), - [sym_print_statement] = STATE(1209), - [sym_assert_statement] = STATE(1209), - [sym_expression_statement] = STATE(1209), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1209), - [sym_delete_statement] = STATE(1209), - [sym_raise_statement] = STATE(1209), - [sym_pass_statement] = STATE(1209), - [sym_break_statement] = STATE(1209), - [sym_continue_statement] = STATE(1209), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1209), - [sym_nonlocal_statement] = STATE(1209), - [sym_exec_statement] = STATE(1209), - [sym_type_alias_statement] = STATE(1209), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym__simple_statements] = STATE(401), + [sym_import_statement] = STATE(1210), + [sym_future_import_statement] = STATE(1210), + [sym_import_from_statement] = STATE(1210), + [sym_print_statement] = STATE(1210), + [sym_assert_statement] = STATE(1210), + [sym_expression_statement] = STATE(1210), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1210), + [sym_delete_statement] = STATE(1210), + [sym_raise_statement] = STATE(1210), + [sym_pass_statement] = STATE(1210), + [sym_break_statement] = STATE(1210), + [sym_continue_statement] = STATE(1210), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1210), + [sym_nonlocal_statement] = STATE(1210), + [sym_exec_statement] = STATE(1210), + [sym_type_alias_statement] = STATE(1210), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21210,59 +21214,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [127] = { - [sym__simple_statements] = STATE(357), - [sym_import_statement] = STATE(1149), - [sym_future_import_statement] = STATE(1149), - [sym_import_from_statement] = STATE(1149), - [sym_print_statement] = STATE(1149), - [sym_assert_statement] = STATE(1149), - [sym_expression_statement] = STATE(1149), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1149), - [sym_delete_statement] = STATE(1149), - [sym_raise_statement] = STATE(1149), - [sym_pass_statement] = STATE(1149), - [sym_break_statement] = STATE(1149), - [sym_continue_statement] = STATE(1149), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1149), - [sym_nonlocal_statement] = STATE(1149), - [sym_exec_statement] = STATE(1149), - [sym_type_alias_statement] = STATE(1149), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym__simple_statements] = STATE(328), + [sym_import_statement] = STATE(1182), + [sym_future_import_statement] = STATE(1182), + [sym_import_from_statement] = STATE(1182), + [sym_print_statement] = STATE(1182), + [sym_assert_statement] = STATE(1182), + [sym_expression_statement] = STATE(1182), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1182), + [sym_delete_statement] = STATE(1182), + [sym_raise_statement] = STATE(1182), + [sym_pass_statement] = STATE(1182), + [sym_break_statement] = STATE(1182), + [sym_continue_statement] = STATE(1182), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1182), + [sym_nonlocal_statement] = STATE(1182), + [sym_exec_statement] = STATE(1182), + [sym_type_alias_statement] = STATE(1182), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21304,59 +21308,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [128] = { - [sym__simple_statements] = STATE(419), - [sym_import_statement] = STATE(1209), - [sym_future_import_statement] = STATE(1209), - [sym_import_from_statement] = STATE(1209), - [sym_print_statement] = STATE(1209), - [sym_assert_statement] = STATE(1209), - [sym_expression_statement] = STATE(1209), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1209), - [sym_delete_statement] = STATE(1209), - [sym_raise_statement] = STATE(1209), - [sym_pass_statement] = STATE(1209), - [sym_break_statement] = STATE(1209), - [sym_continue_statement] = STATE(1209), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1209), - [sym_nonlocal_statement] = STATE(1209), - [sym_exec_statement] = STATE(1209), - [sym_type_alias_statement] = STATE(1209), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym__simple_statements] = STATE(584), + [sym_import_statement] = STATE(1210), + [sym_future_import_statement] = STATE(1210), + [sym_import_from_statement] = STATE(1210), + [sym_print_statement] = STATE(1210), + [sym_assert_statement] = STATE(1210), + [sym_expression_statement] = STATE(1210), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1210), + [sym_delete_statement] = STATE(1210), + [sym_raise_statement] = STATE(1210), + [sym_pass_statement] = STATE(1210), + [sym_break_statement] = STATE(1210), + [sym_continue_statement] = STATE(1210), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1210), + [sym_nonlocal_statement] = STATE(1210), + [sym_exec_statement] = STATE(1210), + [sym_type_alias_statement] = STATE(1210), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21398,59 +21402,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [129] = { - [sym__simple_statements] = STATE(358), - [sym_import_statement] = STATE(1140), - [sym_future_import_statement] = STATE(1140), - [sym_import_from_statement] = STATE(1140), - [sym_print_statement] = STATE(1140), - [sym_assert_statement] = STATE(1140), - [sym_expression_statement] = STATE(1140), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1140), - [sym_delete_statement] = STATE(1140), - [sym_raise_statement] = STATE(1140), - [sym_pass_statement] = STATE(1140), - [sym_break_statement] = STATE(1140), - [sym_continue_statement] = STATE(1140), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1140), - [sym_nonlocal_statement] = STATE(1140), - [sym_exec_statement] = STATE(1140), - [sym_type_alias_statement] = STATE(1140), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym__simple_statements] = STATE(545), + [sym_import_statement] = STATE(1210), + [sym_future_import_statement] = STATE(1210), + [sym_import_from_statement] = STATE(1210), + [sym_print_statement] = STATE(1210), + [sym_assert_statement] = STATE(1210), + [sym_expression_statement] = STATE(1210), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1210), + [sym_delete_statement] = STATE(1210), + [sym_raise_statement] = STATE(1210), + [sym_pass_statement] = STATE(1210), + [sym_break_statement] = STATE(1210), + [sym_continue_statement] = STATE(1210), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1210), + [sym_nonlocal_statement] = STATE(1210), + [sym_exec_statement] = STATE(1210), + [sym_type_alias_statement] = STATE(1210), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21492,59 +21496,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [130] = { - [sym__simple_statements] = STATE(520), - [sym_import_statement] = STATE(1209), - [sym_future_import_statement] = STATE(1209), - [sym_import_from_statement] = STATE(1209), - [sym_print_statement] = STATE(1209), - [sym_assert_statement] = STATE(1209), - [sym_expression_statement] = STATE(1209), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1209), - [sym_delete_statement] = STATE(1209), - [sym_raise_statement] = STATE(1209), - [sym_pass_statement] = STATE(1209), - [sym_break_statement] = STATE(1209), - [sym_continue_statement] = STATE(1209), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1209), - [sym_nonlocal_statement] = STATE(1209), - [sym_exec_statement] = STATE(1209), - [sym_type_alias_statement] = STATE(1209), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym__simple_statements] = STATE(373), + [sym_import_statement] = STATE(1163), + [sym_future_import_statement] = STATE(1163), + [sym_import_from_statement] = STATE(1163), + [sym_print_statement] = STATE(1163), + [sym_assert_statement] = STATE(1163), + [sym_expression_statement] = STATE(1163), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1163), + [sym_delete_statement] = STATE(1163), + [sym_raise_statement] = STATE(1163), + [sym_pass_statement] = STATE(1163), + [sym_break_statement] = STATE(1163), + [sym_continue_statement] = STATE(1163), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1163), + [sym_nonlocal_statement] = STATE(1163), + [sym_exec_statement] = STATE(1163), + [sym_type_alias_statement] = STATE(1163), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21586,31 +21590,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [131] = { - [sym_named_expression] = STATE(905), - [sym_expression] = STATE(903), - [sym_primary_expression] = STATE(630), - [sym_not_operator] = STATE(905), - [sym_boolean_operator] = STATE(905), - [sym_binary_operator] = STATE(622), - [sym_unary_operator] = STATE(622), - [sym_comparison_operator] = STATE(905), - [sym_lambda] = STATE(905), - [sym_attribute] = STATE(622), - [sym_subscript] = STATE(622), - [sym_call] = STATE(622), - [sym_list] = STATE(622), - [sym_set] = STATE(622), - [sym_tuple] = STATE(622), - [sym_dictionary] = STATE(622), - [sym_list_comprehension] = STATE(622), - [sym_dictionary_comprehension] = STATE(622), - [sym_set_comprehension] = STATE(622), - [sym_generator_expression] = STATE(622), - [sym_parenthesized_expression] = STATE(622), - [sym_conditional_expression] = STATE(905), - [sym_concatenated_string] = STATE(622), - [sym_string] = STATE(607), - [sym_await] = STATE(905), + [sym_named_expression] = STATE(904), + [sym_expression] = STATE(902), + [sym_primary_expression] = STATE(620), + [sym_not_operator] = STATE(904), + [sym_boolean_operator] = STATE(904), + [sym_binary_operator] = STATE(619), + [sym_unary_operator] = STATE(619), + [sym_comparison_operator] = STATE(904), + [sym_lambda] = STATE(904), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(619), + [sym_list] = STATE(619), + [sym_set] = STATE(619), + [sym_tuple] = STATE(619), + [sym_dictionary] = STATE(619), + [sym_list_comprehension] = STATE(619), + [sym_dictionary_comprehension] = STATE(619), + [sym_set_comprehension] = STATE(619), + [sym_generator_expression] = STATE(619), + [sym_parenthesized_expression] = STATE(619), + [sym_conditional_expression] = STATE(904), + [sym_concatenated_string] = STATE(619), + [sym_string] = STATE(604), + [sym_await] = STATE(904), [sym_identifier] = ACTIONS(274), [anon_sym_DOT] = ACTIONS(276), [anon_sym_LPAREN] = ACTIONS(278), @@ -21679,44 +21683,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(315), }, [132] = { - [sym_named_expression] = STATE(974), - [sym_expression] = STATE(1012), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_attribute] = STATE(795), - [sym_subscript] = STATE(795), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), - [sym_identifier] = ACTIONS(379), + [sym_named_expression] = STATE(993), + [sym_expression] = STATE(997), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_attribute] = STATE(801), + [sym_subscript] = STATE(801), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), + [sym_identifier] = ACTIONS(391), [anon_sym_DOT] = ACTIONS(276), [anon_sym_LPAREN] = ACTIONS(568), [anon_sym_COMMA] = ACTIONS(280), [anon_sym_STAR] = ACTIONS(276), - [anon_sym_print] = ACTIONS(381), + [anon_sym_print] = ACTIONS(393), [anon_sym_GT_GT] = ACTIONS(276), [anon_sym_COLON_EQ] = ACTIONS(287), [anon_sym_if] = ACTIONS(276), [anon_sym_COLON] = ACTIONS(289), - [anon_sym_async] = ACTIONS(381), + [anon_sym_async] = ACTIONS(393), [anon_sym_in] = ACTIONS(276), - [anon_sym_match] = ACTIONS(381), + [anon_sym_match] = ACTIONS(393), [anon_sym_PIPE] = ACTIONS(276), [anon_sym_DASH] = ACTIONS(570), [anon_sym_PLUS] = ACTIONS(570), @@ -21724,8 +21728,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(276), [anon_sym_EQ] = ACTIONS(289), - [anon_sym_exec] = ACTIONS(381), - [anon_sym_type] = ACTIONS(381), + [anon_sym_exec] = ACTIONS(393), + [anon_sym_type] = ACTIONS(393), [anon_sym_AT] = ACTIONS(276), [anon_sym_not] = ACTIONS(69), [anon_sym_and] = ACTIONS(276), @@ -21762,7 +21766,7 @@ 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(385), + [anon_sym_await] = ACTIONS(397), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), @@ -21772,58 +21776,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [133] = { - [sym_import_statement] = STATE(1404), - [sym_future_import_statement] = STATE(1404), - [sym_import_from_statement] = STATE(1404), - [sym_print_statement] = STATE(1404), - [sym_assert_statement] = STATE(1404), - [sym_expression_statement] = STATE(1404), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1404), - [sym_delete_statement] = STATE(1404), - [sym_raise_statement] = STATE(1404), - [sym_pass_statement] = STATE(1404), - [sym_break_statement] = STATE(1404), - [sym_continue_statement] = STATE(1404), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1404), - [sym_nonlocal_statement] = STATE(1404), - [sym_exec_statement] = STATE(1404), - [sym_type_alias_statement] = STATE(1404), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym_import_statement] = STATE(1405), + [sym_future_import_statement] = STATE(1405), + [sym_import_from_statement] = STATE(1405), + [sym_print_statement] = STATE(1405), + [sym_assert_statement] = STATE(1405), + [sym_expression_statement] = STATE(1405), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1405), + [sym_delete_statement] = STATE(1405), + [sym_raise_statement] = STATE(1405), + [sym_pass_statement] = STATE(1405), + [sym_break_statement] = STATE(1405), + [sym_continue_statement] = STATE(1405), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1405), + [sym_nonlocal_statement] = STATE(1405), + [sym_exec_statement] = STATE(1405), + [sym_type_alias_statement] = STATE(1405), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21864,58 +21868,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [134] = { - [sym_import_statement] = STATE(1404), - [sym_future_import_statement] = STATE(1404), - [sym_import_from_statement] = STATE(1404), - [sym_print_statement] = STATE(1404), - [sym_assert_statement] = STATE(1404), - [sym_expression_statement] = STATE(1404), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1404), - [sym_delete_statement] = STATE(1404), - [sym_raise_statement] = STATE(1404), - [sym_pass_statement] = STATE(1404), - [sym_break_statement] = STATE(1404), - [sym_continue_statement] = STATE(1404), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1404), - [sym_nonlocal_statement] = STATE(1404), - [sym_exec_statement] = STATE(1404), - [sym_type_alias_statement] = STATE(1404), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym_import_statement] = STATE(1405), + [sym_future_import_statement] = STATE(1405), + [sym_import_from_statement] = STATE(1405), + [sym_print_statement] = STATE(1405), + [sym_assert_statement] = STATE(1405), + [sym_expression_statement] = STATE(1405), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1405), + [sym_delete_statement] = STATE(1405), + [sym_raise_statement] = STATE(1405), + [sym_pass_statement] = STATE(1405), + [sym_break_statement] = STATE(1405), + [sym_continue_statement] = STATE(1405), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1405), + [sym_nonlocal_statement] = STATE(1405), + [sym_exec_statement] = STATE(1405), + [sym_type_alias_statement] = STATE(1405), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21956,58 +21960,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [135] = { - [sym_import_statement] = STATE(1404), - [sym_future_import_statement] = STATE(1404), - [sym_import_from_statement] = STATE(1404), - [sym_print_statement] = STATE(1404), - [sym_assert_statement] = STATE(1404), - [sym_expression_statement] = STATE(1404), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1404), - [sym_delete_statement] = STATE(1404), - [sym_raise_statement] = STATE(1404), - [sym_pass_statement] = STATE(1404), - [sym_break_statement] = STATE(1404), - [sym_continue_statement] = STATE(1404), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1404), - [sym_nonlocal_statement] = STATE(1404), - [sym_exec_statement] = STATE(1404), - [sym_type_alias_statement] = STATE(1404), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym_import_statement] = STATE(1405), + [sym_future_import_statement] = STATE(1405), + [sym_import_from_statement] = STATE(1405), + [sym_print_statement] = STATE(1405), + [sym_assert_statement] = STATE(1405), + [sym_expression_statement] = STATE(1405), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1405), + [sym_delete_statement] = STATE(1405), + [sym_raise_statement] = STATE(1405), + [sym_pass_statement] = STATE(1405), + [sym_break_statement] = STATE(1405), + [sym_continue_statement] = STATE(1405), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1405), + [sym_nonlocal_statement] = STATE(1405), + [sym_exec_statement] = STATE(1405), + [sym_type_alias_statement] = STATE(1405), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -22048,58 +22052,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [136] = { - [sym_import_statement] = STATE(1404), - [sym_future_import_statement] = STATE(1404), - [sym_import_from_statement] = STATE(1404), - [sym_print_statement] = STATE(1404), - [sym_assert_statement] = STATE(1404), - [sym_expression_statement] = STATE(1404), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1404), - [sym_delete_statement] = STATE(1404), - [sym_raise_statement] = STATE(1404), - [sym_pass_statement] = STATE(1404), - [sym_break_statement] = STATE(1404), - [sym_continue_statement] = STATE(1404), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1404), - [sym_nonlocal_statement] = STATE(1404), - [sym_exec_statement] = STATE(1404), - [sym_type_alias_statement] = STATE(1404), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym_import_statement] = STATE(1405), + [sym_future_import_statement] = STATE(1405), + [sym_import_from_statement] = STATE(1405), + [sym_print_statement] = STATE(1405), + [sym_assert_statement] = STATE(1405), + [sym_expression_statement] = STATE(1405), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1405), + [sym_delete_statement] = STATE(1405), + [sym_raise_statement] = STATE(1405), + [sym_pass_statement] = STATE(1405), + [sym_break_statement] = STATE(1405), + [sym_continue_statement] = STATE(1405), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1405), + [sym_nonlocal_statement] = STATE(1405), + [sym_exec_statement] = STATE(1405), + [sym_type_alias_statement] = STATE(1405), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -22140,58 +22144,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [137] = { - [sym_import_statement] = STATE(1404), - [sym_future_import_statement] = STATE(1404), - [sym_import_from_statement] = STATE(1404), - [sym_print_statement] = STATE(1404), - [sym_assert_statement] = STATE(1404), - [sym_expression_statement] = STATE(1404), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1404), - [sym_delete_statement] = STATE(1404), - [sym_raise_statement] = STATE(1404), - [sym_pass_statement] = STATE(1404), - [sym_break_statement] = STATE(1404), - [sym_continue_statement] = STATE(1404), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1404), - [sym_nonlocal_statement] = STATE(1404), - [sym_exec_statement] = STATE(1404), - [sym_type_alias_statement] = STATE(1404), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym_import_statement] = STATE(1405), + [sym_future_import_statement] = STATE(1405), + [sym_import_from_statement] = STATE(1405), + [sym_print_statement] = STATE(1405), + [sym_assert_statement] = STATE(1405), + [sym_expression_statement] = STATE(1405), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1405), + [sym_delete_statement] = STATE(1405), + [sym_raise_statement] = STATE(1405), + [sym_pass_statement] = STATE(1405), + [sym_break_statement] = STATE(1405), + [sym_continue_statement] = STATE(1405), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1405), + [sym_nonlocal_statement] = STATE(1405), + [sym_exec_statement] = STATE(1405), + [sym_type_alias_statement] = STATE(1405), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -22232,58 +22236,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [138] = { - [sym_import_statement] = STATE(1404), - [sym_future_import_statement] = STATE(1404), - [sym_import_from_statement] = STATE(1404), - [sym_print_statement] = STATE(1404), - [sym_assert_statement] = STATE(1404), - [sym_expression_statement] = STATE(1404), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1404), - [sym_delete_statement] = STATE(1404), - [sym_raise_statement] = STATE(1404), - [sym_pass_statement] = STATE(1404), - [sym_break_statement] = STATE(1404), - [sym_continue_statement] = STATE(1404), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1404), - [sym_nonlocal_statement] = STATE(1404), - [sym_exec_statement] = STATE(1404), - [sym_type_alias_statement] = STATE(1404), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym_import_statement] = STATE(1405), + [sym_future_import_statement] = STATE(1405), + [sym_import_from_statement] = STATE(1405), + [sym_print_statement] = STATE(1405), + [sym_assert_statement] = STATE(1405), + [sym_expression_statement] = STATE(1405), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1405), + [sym_delete_statement] = STATE(1405), + [sym_raise_statement] = STATE(1405), + [sym_pass_statement] = STATE(1405), + [sym_break_statement] = STATE(1405), + [sym_continue_statement] = STATE(1405), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1405), + [sym_nonlocal_statement] = STATE(1405), + [sym_exec_statement] = STATE(1405), + [sym_type_alias_statement] = STATE(1405), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -22324,58 +22328,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [139] = { - [sym_import_statement] = STATE(1404), - [sym_future_import_statement] = STATE(1404), - [sym_import_from_statement] = STATE(1404), - [sym_print_statement] = STATE(1404), - [sym_assert_statement] = STATE(1404), - [sym_expression_statement] = STATE(1404), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1404), - [sym_delete_statement] = STATE(1404), - [sym_raise_statement] = STATE(1404), - [sym_pass_statement] = STATE(1404), - [sym_break_statement] = STATE(1404), - [sym_continue_statement] = STATE(1404), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1404), - [sym_nonlocal_statement] = STATE(1404), - [sym_exec_statement] = STATE(1404), - [sym_type_alias_statement] = STATE(1404), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym_import_statement] = STATE(1405), + [sym_future_import_statement] = STATE(1405), + [sym_import_from_statement] = STATE(1405), + [sym_print_statement] = STATE(1405), + [sym_assert_statement] = STATE(1405), + [sym_expression_statement] = STATE(1405), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1405), + [sym_delete_statement] = STATE(1405), + [sym_raise_statement] = STATE(1405), + [sym_pass_statement] = STATE(1405), + [sym_break_statement] = STATE(1405), + [sym_continue_statement] = STATE(1405), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1405), + [sym_nonlocal_statement] = STATE(1405), + [sym_exec_statement] = STATE(1405), + [sym_type_alias_statement] = STATE(1405), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -22416,58 +22420,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [140] = { - [sym_import_statement] = STATE(1404), - [sym_future_import_statement] = STATE(1404), - [sym_import_from_statement] = STATE(1404), - [sym_print_statement] = STATE(1404), - [sym_assert_statement] = STATE(1404), - [sym_expression_statement] = STATE(1404), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1404), - [sym_delete_statement] = STATE(1404), - [sym_raise_statement] = STATE(1404), - [sym_pass_statement] = STATE(1404), - [sym_break_statement] = STATE(1404), - [sym_continue_statement] = STATE(1404), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1404), - [sym_nonlocal_statement] = STATE(1404), - [sym_exec_statement] = STATE(1404), - [sym_type_alias_statement] = STATE(1404), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym_import_statement] = STATE(1405), + [sym_future_import_statement] = STATE(1405), + [sym_import_from_statement] = STATE(1405), + [sym_print_statement] = STATE(1405), + [sym_assert_statement] = STATE(1405), + [sym_expression_statement] = STATE(1405), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1405), + [sym_delete_statement] = STATE(1405), + [sym_raise_statement] = STATE(1405), + [sym_pass_statement] = STATE(1405), + [sym_break_statement] = STATE(1405), + [sym_continue_statement] = STATE(1405), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1405), + [sym_nonlocal_statement] = STATE(1405), + [sym_exec_statement] = STATE(1405), + [sym_type_alias_statement] = STATE(1405), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -22508,58 +22512,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [141] = { - [sym_import_statement] = STATE(1404), - [sym_future_import_statement] = STATE(1404), - [sym_import_from_statement] = STATE(1404), - [sym_print_statement] = STATE(1404), - [sym_assert_statement] = STATE(1404), - [sym_expression_statement] = STATE(1404), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1404), - [sym_delete_statement] = STATE(1404), - [sym_raise_statement] = STATE(1404), - [sym_pass_statement] = STATE(1404), - [sym_break_statement] = STATE(1404), - [sym_continue_statement] = STATE(1404), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1404), - [sym_nonlocal_statement] = STATE(1404), - [sym_exec_statement] = STATE(1404), - [sym_type_alias_statement] = STATE(1404), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym_import_statement] = STATE(1405), + [sym_future_import_statement] = STATE(1405), + [sym_import_from_statement] = STATE(1405), + [sym_print_statement] = STATE(1405), + [sym_assert_statement] = STATE(1405), + [sym_expression_statement] = STATE(1405), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1405), + [sym_delete_statement] = STATE(1405), + [sym_raise_statement] = STATE(1405), + [sym_pass_statement] = STATE(1405), + [sym_break_statement] = STATE(1405), + [sym_continue_statement] = STATE(1405), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1405), + [sym_nonlocal_statement] = STATE(1405), + [sym_exec_statement] = STATE(1405), + [sym_type_alias_statement] = STATE(1405), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -22600,58 +22604,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [142] = { - [sym_import_statement] = STATE(1404), - [sym_future_import_statement] = STATE(1404), - [sym_import_from_statement] = STATE(1404), - [sym_print_statement] = STATE(1404), - [sym_assert_statement] = STATE(1404), - [sym_expression_statement] = STATE(1404), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1404), - [sym_delete_statement] = STATE(1404), - [sym_raise_statement] = STATE(1404), - [sym_pass_statement] = STATE(1404), - [sym_break_statement] = STATE(1404), - [sym_continue_statement] = STATE(1404), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1404), - [sym_nonlocal_statement] = STATE(1404), - [sym_exec_statement] = STATE(1404), - [sym_type_alias_statement] = STATE(1404), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym_import_statement] = STATE(1405), + [sym_future_import_statement] = STATE(1405), + [sym_import_from_statement] = STATE(1405), + [sym_print_statement] = STATE(1405), + [sym_assert_statement] = STATE(1405), + [sym_expression_statement] = STATE(1405), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1405), + [sym_delete_statement] = STATE(1405), + [sym_raise_statement] = STATE(1405), + [sym_pass_statement] = STATE(1405), + [sym_break_statement] = STATE(1405), + [sym_continue_statement] = STATE(1405), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1405), + [sym_nonlocal_statement] = STATE(1405), + [sym_exec_statement] = STATE(1405), + [sym_type_alias_statement] = STATE(1405), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -22692,58 +22696,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [143] = { - [sym_import_statement] = STATE(1404), - [sym_future_import_statement] = STATE(1404), - [sym_import_from_statement] = STATE(1404), - [sym_print_statement] = STATE(1404), - [sym_assert_statement] = STATE(1404), - [sym_expression_statement] = STATE(1404), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1404), - [sym_delete_statement] = STATE(1404), - [sym_raise_statement] = STATE(1404), - [sym_pass_statement] = STATE(1404), - [sym_break_statement] = STATE(1404), - [sym_continue_statement] = STATE(1404), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1404), - [sym_nonlocal_statement] = STATE(1404), - [sym_exec_statement] = STATE(1404), - [sym_type_alias_statement] = STATE(1404), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym_import_statement] = STATE(1405), + [sym_future_import_statement] = STATE(1405), + [sym_import_from_statement] = STATE(1405), + [sym_print_statement] = STATE(1405), + [sym_assert_statement] = STATE(1405), + [sym_expression_statement] = STATE(1405), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1405), + [sym_delete_statement] = STATE(1405), + [sym_raise_statement] = STATE(1405), + [sym_pass_statement] = STATE(1405), + [sym_break_statement] = STATE(1405), + [sym_continue_statement] = STATE(1405), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1405), + [sym_nonlocal_statement] = STATE(1405), + [sym_exec_statement] = STATE(1405), + [sym_type_alias_statement] = STATE(1405), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -22784,58 +22788,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [144] = { - [sym_import_statement] = STATE(1404), - [sym_future_import_statement] = STATE(1404), - [sym_import_from_statement] = STATE(1404), - [sym_print_statement] = STATE(1404), - [sym_assert_statement] = STATE(1404), - [sym_expression_statement] = STATE(1404), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1404), - [sym_delete_statement] = STATE(1404), - [sym_raise_statement] = STATE(1404), - [sym_pass_statement] = STATE(1404), - [sym_break_statement] = STATE(1404), - [sym_continue_statement] = STATE(1404), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1404), - [sym_nonlocal_statement] = STATE(1404), - [sym_exec_statement] = STATE(1404), - [sym_type_alias_statement] = STATE(1404), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym_import_statement] = STATE(1405), + [sym_future_import_statement] = STATE(1405), + [sym_import_from_statement] = STATE(1405), + [sym_print_statement] = STATE(1405), + [sym_assert_statement] = STATE(1405), + [sym_expression_statement] = STATE(1405), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1405), + [sym_delete_statement] = STATE(1405), + [sym_raise_statement] = STATE(1405), + [sym_pass_statement] = STATE(1405), + [sym_break_statement] = STATE(1405), + [sym_continue_statement] = STATE(1405), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1405), + [sym_nonlocal_statement] = STATE(1405), + [sym_exec_statement] = STATE(1405), + [sym_type_alias_statement] = STATE(1405), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -22876,58 +22880,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [145] = { - [sym_import_statement] = STATE(1404), - [sym_future_import_statement] = STATE(1404), - [sym_import_from_statement] = STATE(1404), - [sym_print_statement] = STATE(1404), - [sym_assert_statement] = STATE(1404), - [sym_expression_statement] = STATE(1404), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1404), - [sym_delete_statement] = STATE(1404), - [sym_raise_statement] = STATE(1404), - [sym_pass_statement] = STATE(1404), - [sym_break_statement] = STATE(1404), - [sym_continue_statement] = STATE(1404), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1404), - [sym_nonlocal_statement] = STATE(1404), - [sym_exec_statement] = STATE(1404), - [sym_type_alias_statement] = STATE(1404), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym_import_statement] = STATE(1405), + [sym_future_import_statement] = STATE(1405), + [sym_import_from_statement] = STATE(1405), + [sym_print_statement] = STATE(1405), + [sym_assert_statement] = STATE(1405), + [sym_expression_statement] = STATE(1405), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1405), + [sym_delete_statement] = STATE(1405), + [sym_raise_statement] = STATE(1405), + [sym_pass_statement] = STATE(1405), + [sym_break_statement] = STATE(1405), + [sym_continue_statement] = STATE(1405), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1405), + [sym_nonlocal_statement] = STATE(1405), + [sym_exec_statement] = STATE(1405), + [sym_type_alias_statement] = STATE(1405), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -22968,58 +22972,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [146] = { - [sym_import_statement] = STATE(1404), - [sym_future_import_statement] = STATE(1404), - [sym_import_from_statement] = STATE(1404), - [sym_print_statement] = STATE(1404), - [sym_assert_statement] = STATE(1404), - [sym_expression_statement] = STATE(1404), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1404), - [sym_delete_statement] = STATE(1404), - [sym_raise_statement] = STATE(1404), - [sym_pass_statement] = STATE(1404), - [sym_break_statement] = STATE(1404), - [sym_continue_statement] = STATE(1404), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1404), - [sym_nonlocal_statement] = STATE(1404), - [sym_exec_statement] = STATE(1404), - [sym_type_alias_statement] = STATE(1404), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym_import_statement] = STATE(1405), + [sym_future_import_statement] = STATE(1405), + [sym_import_from_statement] = STATE(1405), + [sym_print_statement] = STATE(1405), + [sym_assert_statement] = STATE(1405), + [sym_expression_statement] = STATE(1405), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1405), + [sym_delete_statement] = STATE(1405), + [sym_raise_statement] = STATE(1405), + [sym_pass_statement] = STATE(1405), + [sym_break_statement] = STATE(1405), + [sym_continue_statement] = STATE(1405), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1405), + [sym_nonlocal_statement] = STATE(1405), + [sym_exec_statement] = STATE(1405), + [sym_type_alias_statement] = STATE(1405), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -23060,58 +23064,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [147] = { - [sym_import_statement] = STATE(1404), - [sym_future_import_statement] = STATE(1404), - [sym_import_from_statement] = STATE(1404), - [sym_print_statement] = STATE(1404), - [sym_assert_statement] = STATE(1404), - [sym_expression_statement] = STATE(1404), - [sym_named_expression] = STATE(974), - [sym_return_statement] = STATE(1404), - [sym_delete_statement] = STATE(1404), - [sym_raise_statement] = STATE(1404), - [sym_pass_statement] = STATE(1404), - [sym_break_statement] = STATE(1404), - [sym_continue_statement] = STATE(1404), - [sym_list_splat] = STATE(1397), - [sym_dictionary_splat] = STATE(1397), - [sym_global_statement] = STATE(1404), - [sym_nonlocal_statement] = STATE(1404), - [sym_exec_statement] = STATE(1404), - [sym_type_alias_statement] = STATE(1404), - [sym_expression_list] = STATE(1396), - [sym_pattern] = STATE(887), - [sym_tuple_pattern] = STATE(878), - [sym_list_pattern] = STATE(878), - [sym_list_splat_pattern] = STATE(878), - [sym_expression] = STATE(1037), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_assignment] = STATE(1396), - [sym_augmented_assignment] = STATE(1396), - [sym_pattern_list] = STATE(898), - [sym_yield] = STATE(1396), - [sym_attribute] = STATE(444), - [sym_subscript] = STATE(444), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), + [sym_import_statement] = STATE(1405), + [sym_future_import_statement] = STATE(1405), + [sym_import_from_statement] = STATE(1405), + [sym_print_statement] = STATE(1405), + [sym_assert_statement] = STATE(1405), + [sym_expression_statement] = STATE(1405), + [sym_named_expression] = STATE(993), + [sym_return_statement] = STATE(1405), + [sym_delete_statement] = STATE(1405), + [sym_raise_statement] = STATE(1405), + [sym_pass_statement] = STATE(1405), + [sym_break_statement] = STATE(1405), + [sym_continue_statement] = STATE(1405), + [sym_list_splat] = STATE(1398), + [sym_dictionary_splat] = STATE(1398), + [sym_global_statement] = STATE(1405), + [sym_nonlocal_statement] = STATE(1405), + [sym_exec_statement] = STATE(1405), + [sym_type_alias_statement] = STATE(1405), + [sym_expression_list] = STATE(1397), + [sym_pattern] = STATE(891), + [sym_tuple_pattern] = STATE(880), + [sym_list_pattern] = STATE(880), + [sym_list_splat_pattern] = STATE(880), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_assignment] = STATE(1397), + [sym_augmented_assignment] = STATE(1397), + [sym_pattern_list] = STATE(900), + [sym_yield] = STATE(1397), + [sym_attribute] = STATE(415), + [sym_subscript] = STATE(415), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -23151,31 +23155,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [148] = { - [sym_named_expression] = STATE(905), - [sym_expression] = STATE(903), - [sym_primary_expression] = STATE(630), - [sym_not_operator] = STATE(905), - [sym_boolean_operator] = STATE(905), - [sym_binary_operator] = STATE(622), - [sym_unary_operator] = STATE(622), - [sym_comparison_operator] = STATE(905), - [sym_lambda] = STATE(905), - [sym_attribute] = STATE(622), - [sym_subscript] = STATE(622), - [sym_call] = STATE(622), - [sym_list] = STATE(622), - [sym_set] = STATE(622), - [sym_tuple] = STATE(622), - [sym_dictionary] = STATE(622), - [sym_list_comprehension] = STATE(622), - [sym_dictionary_comprehension] = STATE(622), - [sym_set_comprehension] = STATE(622), - [sym_generator_expression] = STATE(622), - [sym_parenthesized_expression] = STATE(622), - [sym_conditional_expression] = STATE(905), - [sym_concatenated_string] = STATE(622), - [sym_string] = STATE(607), - [sym_await] = STATE(905), + [sym_named_expression] = STATE(904), + [sym_expression] = STATE(902), + [sym_primary_expression] = STATE(620), + [sym_not_operator] = STATE(904), + [sym_boolean_operator] = STATE(904), + [sym_binary_operator] = STATE(619), + [sym_unary_operator] = STATE(619), + [sym_comparison_operator] = STATE(904), + [sym_lambda] = STATE(904), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(619), + [sym_list] = STATE(619), + [sym_set] = STATE(619), + [sym_tuple] = STATE(619), + [sym_dictionary] = STATE(619), + [sym_list_comprehension] = STATE(619), + [sym_dictionary_comprehension] = STATE(619), + [sym_set_comprehension] = STATE(619), + [sym_generator_expression] = STATE(619), + [sym_parenthesized_expression] = STATE(619), + [sym_conditional_expression] = STATE(904), + [sym_concatenated_string] = STATE(619), + [sym_string] = STATE(604), + [sym_await] = STATE(904), [sym_identifier] = ACTIONS(274), [anon_sym_DOT] = ACTIONS(276), [anon_sym_LPAREN] = ACTIONS(278), @@ -23234,31 +23238,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(315), }, [149] = { - [sym_named_expression] = STATE(905), - [sym_expression] = STATE(903), - [sym_primary_expression] = STATE(621), - [sym_not_operator] = STATE(905), - [sym_boolean_operator] = STATE(905), - [sym_binary_operator] = STATE(622), - [sym_unary_operator] = STATE(622), - [sym_comparison_operator] = STATE(905), - [sym_lambda] = STATE(905), - [sym_attribute] = STATE(622), - [sym_subscript] = STATE(622), - [sym_call] = STATE(622), - [sym_list] = STATE(622), - [sym_set] = STATE(622), - [sym_tuple] = STATE(622), - [sym_dictionary] = STATE(622), - [sym_list_comprehension] = STATE(622), - [sym_dictionary_comprehension] = STATE(622), - [sym_set_comprehension] = STATE(622), - [sym_generator_expression] = STATE(622), - [sym_parenthesized_expression] = STATE(622), - [sym_conditional_expression] = STATE(905), - [sym_concatenated_string] = STATE(622), - [sym_string] = STATE(607), - [sym_await] = STATE(905), + [sym_named_expression] = STATE(904), + [sym_expression] = STATE(902), + [sym_primary_expression] = STATE(618), + [sym_not_operator] = STATE(904), + [sym_boolean_operator] = STATE(904), + [sym_binary_operator] = STATE(619), + [sym_unary_operator] = STATE(619), + [sym_comparison_operator] = STATE(904), + [sym_lambda] = STATE(904), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(619), + [sym_list] = STATE(619), + [sym_set] = STATE(619), + [sym_tuple] = STATE(619), + [sym_dictionary] = STATE(619), + [sym_list_comprehension] = STATE(619), + [sym_dictionary_comprehension] = STATE(619), + [sym_set_comprehension] = STATE(619), + [sym_generator_expression] = STATE(619), + [sym_parenthesized_expression] = STATE(619), + [sym_conditional_expression] = STATE(904), + [sym_concatenated_string] = STATE(619), + [sym_string] = STATE(604), + [sym_await] = STATE(904), [sym_identifier] = ACTIONS(602), [anon_sym_DOT] = ACTIONS(276), [anon_sym_LPAREN] = ACTIONS(604), @@ -23316,44 +23320,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(315), }, [150] = { - [sym_named_expression] = STATE(974), - [sym_expression] = STATE(1012), - [sym_primary_expression] = STATE(710), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(974), - [sym_lambda] = STATE(974), - [sym_attribute] = STATE(795), - [sym_subscript] = STATE(795), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(974), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(683), - [sym_await] = STATE(974), - [sym_identifier] = ACTIONS(379), + [sym_named_expression] = STATE(993), + [sym_expression] = STATE(997), + [sym_primary_expression] = STATE(696), + [sym_not_operator] = STATE(993), + [sym_boolean_operator] = STATE(993), + [sym_binary_operator] = STATE(801), + [sym_unary_operator] = STATE(801), + [sym_comparison_operator] = STATE(993), + [sym_lambda] = STATE(993), + [sym_attribute] = STATE(801), + [sym_subscript] = STATE(801), + [sym_call] = STATE(801), + [sym_list] = STATE(801), + [sym_set] = STATE(801), + [sym_tuple] = STATE(801), + [sym_dictionary] = STATE(801), + [sym_list_comprehension] = STATE(801), + [sym_dictionary_comprehension] = STATE(801), + [sym_set_comprehension] = STATE(801), + [sym_generator_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_conditional_expression] = STATE(993), + [sym_concatenated_string] = STATE(801), + [sym_string] = STATE(702), + [sym_await] = STATE(993), + [sym_identifier] = ACTIONS(391), [anon_sym_DOT] = ACTIONS(276), [anon_sym_from] = ACTIONS(276), [anon_sym_LPAREN] = ACTIONS(568), [anon_sym_COMMA] = ACTIONS(303), [anon_sym_STAR] = ACTIONS(276), - [anon_sym_print] = ACTIONS(381), + [anon_sym_print] = ACTIONS(393), [anon_sym_GT_GT] = ACTIONS(303), [anon_sym_COLON_EQ] = ACTIONS(287), [anon_sym_if] = ACTIONS(276), - [anon_sym_async] = ACTIONS(381), + [anon_sym_async] = ACTIONS(393), [anon_sym_in] = ACTIONS(276), - [anon_sym_match] = ACTIONS(381), + [anon_sym_match] = ACTIONS(393), [anon_sym_PIPE] = ACTIONS(303), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), @@ -23361,8 +23365,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(303), [anon_sym_EQ] = ACTIONS(276), - [anon_sym_exec] = ACTIONS(381), - [anon_sym_type] = ACTIONS(381), + [anon_sym_exec] = ACTIONS(393), + [anon_sym_type] = ACTIONS(393), [anon_sym_AT] = ACTIONS(303), [anon_sym_not] = ACTIONS(69), [anon_sym_and] = ACTIONS(276), @@ -23386,7 +23390,7 @@ 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(385), + [anon_sym_await] = ACTIONS(397), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), @@ -23396,31 +23400,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [151] = { - [sym_named_expression] = STATE(905), - [sym_expression] = STATE(903), - [sym_primary_expression] = STATE(621), - [sym_not_operator] = STATE(905), - [sym_boolean_operator] = STATE(905), - [sym_binary_operator] = STATE(622), - [sym_unary_operator] = STATE(622), - [sym_comparison_operator] = STATE(905), - [sym_lambda] = STATE(905), - [sym_attribute] = STATE(622), - [sym_subscript] = STATE(622), - [sym_call] = STATE(622), - [sym_list] = STATE(622), - [sym_set] = STATE(622), - [sym_tuple] = STATE(622), - [sym_dictionary] = STATE(622), - [sym_list_comprehension] = STATE(622), - [sym_dictionary_comprehension] = STATE(622), - [sym_set_comprehension] = STATE(622), - [sym_generator_expression] = STATE(622), - [sym_parenthesized_expression] = STATE(622), - [sym_conditional_expression] = STATE(905), - [sym_concatenated_string] = STATE(622), - [sym_string] = STATE(607), - [sym_await] = STATE(905), + [sym_named_expression] = STATE(904), + [sym_expression] = STATE(902), + [sym_primary_expression] = STATE(618), + [sym_not_operator] = STATE(904), + [sym_boolean_operator] = STATE(904), + [sym_binary_operator] = STATE(619), + [sym_unary_operator] = STATE(619), + [sym_comparison_operator] = STATE(904), + [sym_lambda] = STATE(904), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(619), + [sym_list] = STATE(619), + [sym_set] = STATE(619), + [sym_tuple] = STATE(619), + [sym_dictionary] = STATE(619), + [sym_list_comprehension] = STATE(619), + [sym_dictionary_comprehension] = STATE(619), + [sym_set_comprehension] = STATE(619), + [sym_generator_expression] = STATE(619), + [sym_parenthesized_expression] = STATE(619), + [sym_conditional_expression] = STATE(904), + [sym_concatenated_string] = STATE(619), + [sym_string] = STATE(604), + [sym_await] = STATE(904), [sym_identifier] = ACTIONS(602), [anon_sym_DOT] = ACTIONS(276), [anon_sym_LPAREN] = ACTIONS(604), @@ -23475,31 +23479,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(315), }, [152] = { - [sym_named_expression] = STATE(905), - [sym_expression] = STATE(903), - [sym_primary_expression] = STATE(621), - [sym_not_operator] = STATE(905), - [sym_boolean_operator] = STATE(905), - [sym_binary_operator] = STATE(622), - [sym_unary_operator] = STATE(622), - [sym_comparison_operator] = STATE(905), - [sym_lambda] = STATE(905), - [sym_attribute] = STATE(622), - [sym_subscript] = STATE(622), - [sym_call] = STATE(622), - [sym_list] = STATE(622), - [sym_set] = STATE(622), - [sym_tuple] = STATE(622), - [sym_dictionary] = STATE(622), - [sym_list_comprehension] = STATE(622), - [sym_dictionary_comprehension] = STATE(622), - [sym_set_comprehension] = STATE(622), - [sym_generator_expression] = STATE(622), - [sym_parenthesized_expression] = STATE(622), - [sym_conditional_expression] = STATE(905), - [sym_concatenated_string] = STATE(622), - [sym_string] = STATE(607), - [sym_await] = STATE(905), + [sym_named_expression] = STATE(904), + [sym_expression] = STATE(902), + [sym_primary_expression] = STATE(618), + [sym_not_operator] = STATE(904), + [sym_boolean_operator] = STATE(904), + [sym_binary_operator] = STATE(619), + [sym_unary_operator] = STATE(619), + [sym_comparison_operator] = STATE(904), + [sym_lambda] = STATE(904), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(619), + [sym_list] = STATE(619), + [sym_set] = STATE(619), + [sym_tuple] = STATE(619), + [sym_dictionary] = STATE(619), + [sym_list_comprehension] = STATE(619), + [sym_dictionary_comprehension] = STATE(619), + [sym_set_comprehension] = STATE(619), + [sym_generator_expression] = STATE(619), + [sym_parenthesized_expression] = STATE(619), + [sym_conditional_expression] = STATE(904), + [sym_concatenated_string] = STATE(619), + [sym_string] = STATE(604), + [sym_await] = STATE(904), [sym_identifier] = ACTIONS(602), [anon_sym_DOT] = ACTIONS(276), [anon_sym_LPAREN] = ACTIONS(604), @@ -23555,29 +23559,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [153] = { [sym_named_expression] = STATE(1053), - [sym_expression] = STATE(1054), - [sym_primary_expression] = STATE(740), + [sym_expression] = STATE(1043), + [sym_primary_expression] = STATE(735), [sym_not_operator] = STATE(1053), [sym_boolean_operator] = STATE(1053), - [sym_binary_operator] = STATE(813), - [sym_unary_operator] = STATE(813), + [sym_binary_operator] = STATE(812), + [sym_unary_operator] = STATE(812), [sym_comparison_operator] = STATE(1053), [sym_lambda] = STATE(1053), - [sym_attribute] = STATE(813), - [sym_subscript] = STATE(813), - [sym_call] = STATE(813), - [sym_list] = STATE(813), - [sym_set] = STATE(813), - [sym_tuple] = STATE(813), - [sym_dictionary] = STATE(813), - [sym_list_comprehension] = STATE(813), - [sym_dictionary_comprehension] = STATE(813), - [sym_set_comprehension] = STATE(813), - [sym_generator_expression] = STATE(813), - [sym_parenthesized_expression] = STATE(813), + [sym_attribute] = STATE(812), + [sym_subscript] = STATE(812), + [sym_call] = STATE(812), + [sym_list] = STATE(812), + [sym_set] = STATE(812), + [sym_tuple] = STATE(812), + [sym_dictionary] = STATE(812), + [sym_list_comprehension] = STATE(812), + [sym_dictionary_comprehension] = STATE(812), + [sym_set_comprehension] = STATE(812), + [sym_generator_expression] = STATE(812), + [sym_parenthesized_expression] = STATE(812), [sym_conditional_expression] = STATE(1053), - [sym_concatenated_string] = STATE(813), - [sym_string] = STATE(739), + [sym_concatenated_string] = STATE(812), + [sym_string] = STATE(741), [sym_await] = STATE(1053), [sym_identifier] = ACTIONS(622), [anon_sym_DOT] = ACTIONS(276), @@ -23633,31 +23637,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(646), }, [154] = { - [sym_named_expression] = STATE(905), - [sym_expression] = STATE(903), - [sym_primary_expression] = STATE(630), - [sym_not_operator] = STATE(905), - [sym_boolean_operator] = STATE(905), - [sym_binary_operator] = STATE(622), - [sym_unary_operator] = STATE(622), - [sym_comparison_operator] = STATE(905), - [sym_lambda] = STATE(905), - [sym_attribute] = STATE(622), - [sym_subscript] = STATE(622), - [sym_call] = STATE(622), - [sym_list] = STATE(622), - [sym_set] = STATE(622), - [sym_tuple] = STATE(622), - [sym_dictionary] = STATE(622), - [sym_list_comprehension] = STATE(622), - [sym_dictionary_comprehension] = STATE(622), - [sym_set_comprehension] = STATE(622), - [sym_generator_expression] = STATE(622), - [sym_parenthesized_expression] = STATE(622), - [sym_conditional_expression] = STATE(905), - [sym_concatenated_string] = STATE(622), - [sym_string] = STATE(607), - [sym_await] = STATE(905), + [sym_named_expression] = STATE(904), + [sym_expression] = STATE(902), + [sym_primary_expression] = STATE(620), + [sym_not_operator] = STATE(904), + [sym_boolean_operator] = STATE(904), + [sym_binary_operator] = STATE(619), + [sym_unary_operator] = STATE(619), + [sym_comparison_operator] = STATE(904), + [sym_lambda] = STATE(904), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(619), + [sym_list] = STATE(619), + [sym_set] = STATE(619), + [sym_tuple] = STATE(619), + [sym_dictionary] = STATE(619), + [sym_list_comprehension] = STATE(619), + [sym_dictionary_comprehension] = STATE(619), + [sym_set_comprehension] = STATE(619), + [sym_generator_expression] = STATE(619), + [sym_parenthesized_expression] = STATE(619), + [sym_conditional_expression] = STATE(904), + [sym_concatenated_string] = STATE(619), + [sym_string] = STATE(604), + [sym_await] = STATE(904), [sym_identifier] = ACTIONS(274), [anon_sym_DOT] = ACTIONS(276), [anon_sym_LPAREN] = ACTIONS(278), @@ -23738,30 +23742,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(81), 1, sym__string_start, - STATE(683), 1, - sym_string, - STATE(710), 1, + STATE(696), 1, sym_primary_expression, - STATE(887), 1, + STATE(702), 1, + sym_string, + STATE(891), 1, sym_pattern, - STATE(898), 1, + STATE(900), 1, sym_pattern_list, - STATE(1022), 1, + STATE(1038), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, sym_float, - STATE(444), 2, + STATE(415), 2, sym_attribute, sym_subscript, - STATE(1397), 2, + STATE(1398), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(878), 3, + STATE(880), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, @@ -23776,13 +23780,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1362), 5, + STATE(1365), 5, sym_expression_list, sym_assignment, sym_augmented_assignment, sym__right_hand_side, sym_yield, - STATE(974), 7, + STATE(993), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -23790,7 +23794,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(795), 13, + STATE(801), 13, sym_binary_operator, sym_unary_operator, sym_call, @@ -23829,30 +23833,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(81), 1, sym__string_start, - STATE(683), 1, - sym_string, - STATE(710), 1, + STATE(696), 1, sym_primary_expression, - STATE(887), 1, + STATE(702), 1, + sym_string, + STATE(891), 1, sym_pattern, - STATE(898), 1, + STATE(900), 1, sym_pattern_list, - STATE(1022), 1, + STATE(1038), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, sym_float, - STATE(444), 2, + STATE(415), 2, sym_attribute, sym_subscript, - STATE(1397), 2, + STATE(1398), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(878), 3, + STATE(880), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, @@ -23867,13 +23871,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1409), 5, + STATE(1408), 5, sym_expression_list, sym_assignment, sym_augmented_assignment, sym__right_hand_side, sym_yield, - STATE(974), 7, + STATE(993), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -23881,7 +23885,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(795), 13, + STATE(801), 13, sym_binary_operator, sym_unary_operator, sym_call, @@ -23920,30 +23924,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(81), 1, sym__string_start, - STATE(683), 1, - sym_string, - STATE(710), 1, + STATE(696), 1, sym_primary_expression, - STATE(887), 1, + STATE(702), 1, + sym_string, + STATE(891), 1, sym_pattern, - STATE(898), 1, + STATE(900), 1, sym_pattern_list, - STATE(1022), 1, + STATE(1038), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, sym_float, - STATE(444), 2, + STATE(415), 2, sym_attribute, sym_subscript, - STATE(1397), 2, + STATE(1398), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(878), 3, + STATE(880), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, @@ -23958,13 +23962,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1411), 5, + STATE(1410), 5, sym_expression_list, sym_assignment, sym_augmented_assignment, sym__right_hand_side, sym_yield, - STATE(974), 7, + STATE(993), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -23972,7 +23976,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(795), 13, + STATE(801), 13, sym_binary_operator, sym_unary_operator, sym_call, @@ -24011,18 +24015,18 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(648), 1, anon_sym_from, - STATE(607), 1, + STATE(604), 1, sym_string, - STATE(630), 1, + STATE(620), 1, sym_primary_expression, - STATE(928), 1, + STATE(922), 1, sym_expression, - STATE(1043), 1, + STATE(1034), 1, sym_expression_list, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1373), 2, + STATE(1413), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(301), 3, @@ -24048,7 +24052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - STATE(905), 7, + STATE(904), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -24056,7 +24060,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -24072,7 +24076,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [464] = 28, + [464] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -24088,58 +24092,57 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(654), 1, anon_sym_LPAREN, ACTIONS(656), 1, - anon_sym_RPAREN, - ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(662), 1, + ACTIONS(660), 1, anon_sym_LBRACK, + ACTIONS(662), 1, + anon_sym_RBRACK, ACTIONS(664), 1, anon_sym_yield, ACTIONS(666), 1, anon_sym_await, - STATE(607), 1, + STATE(604), 1, sym_string, - STATE(621), 1, + STATE(618), 1, sym_primary_expression, - STATE(947), 1, + STATE(941), 1, sym_expression, - STATE(1167), 1, + STATE(1137), 1, sym_pattern, - STATE(1219), 1, - sym_yield, - STATE(1445), 1, - sym__collection_elements, - STATE(1446), 1, + STATE(1434), 1, sym__patterns, + STATE(1441), 1, + sym__collection_elements, ACTIONS(309), 2, sym_ellipsis, sym_float, STATE(797), 2, sym_attribute, sym_subscript, - STATE(1118), 2, - sym_list_splat, - sym_parenthesized_list_splat, ACTIONS(610), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(878), 3, + STATE(880), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, + STATE(1122), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(660), 5, + ACTIONS(658), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(905), 7, + STATE(904), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -24147,7 +24150,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(622), 13, + STATE(619), 13, sym_binary_operator, sym_unary_operator, sym_call, @@ -24161,7 +24164,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [581] = 28, + [579] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -24176,9 +24179,9 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(654), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(656), 1, anon_sym_STAR, - ACTIONS(662), 1, + ACTIONS(660), 1, anon_sym_LBRACK, ACTIONS(664), 1, anon_sym_yield, @@ -24186,34 +24189,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(668), 1, anon_sym_RPAREN, - STATE(607), 1, + STATE(604), 1, sym_string, - STATE(621), 1, + STATE(618), 1, sym_primary_expression, - STATE(950), 1, + STATE(951), 1, sym_expression, - STATE(1167), 1, + STATE(1137), 1, sym_pattern, - STATE(1279), 1, + STATE(1221), 1, sym_yield, - STATE(1440), 1, - sym__collection_elements, - STATE(1446), 1, + STATE(1448), 1, sym__patterns, + STATE(1450), 1, + sym__collection_elements, ACTIONS(309), 2, sym_ellipsis, sym_float, STATE(797), 2, sym_attribute, sym_subscript, - STATE(1118), 2, + STATE(1122), 2, sym_list_splat, sym_parenthesized_list_splat, ACTIONS(610), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(878), 3, + STATE(880), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, @@ -24222,13 +24225,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(660), 5, + ACTIONS(658), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(905), 7, + STATE(904), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -24236,7 +24239,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(622), 13, + STATE(619), 13, sym_binary_operator, sym_unary_operator, sym_call, @@ -24250,7 +24253,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [698] = 27, + [696] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -24265,27 +24268,33 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(654), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(656), 1, anon_sym_STAR, - ACTIONS(662), 1, + ACTIONS(660), 1, anon_sym_LBRACK, ACTIONS(664), 1, anon_sym_yield, ACTIONS(666), 1, anon_sym_await, ACTIONS(670), 1, - anon_sym_RBRACK, - STATE(607), 1, + anon_sym_RPAREN, + STATE(604), 1, sym_string, - STATE(621), 1, + STATE(618), 1, sym_primary_expression, - STATE(944), 1, + STATE(951), 1, sym_expression, - STATE(1167), 1, + STATE(1137), 1, sym_pattern, - STATE(1429), 1, + STATE(1221), 1, + sym_yield, + STATE(1323), 1, + sym_parenthesized_list_splat, + STATE(1324), 1, + sym_list_splat, + STATE(1448), 1, sym__patterns, - STATE(1528), 1, + STATE(1450), 1, sym__collection_elements, ACTIONS(309), 2, sym_ellipsis, @@ -24297,26 +24306,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(878), 3, + STATE(880), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, - STATE(1118), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(660), 5, + ACTIONS(658), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(905), 7, + STATE(904), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -24324,7 +24329,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(622), 13, + STATE(619), 13, sym_binary_operator, sym_unary_operator, sym_call, @@ -24338,7 +24343,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [813] = 27, + [815] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -24353,27 +24358,29 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(654), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(656), 1, anon_sym_STAR, - ACTIONS(662), 1, + ACTIONS(660), 1, anon_sym_LBRACK, ACTIONS(664), 1, anon_sym_yield, ACTIONS(666), 1, anon_sym_await, ACTIONS(672), 1, - anon_sym_RBRACK, - STATE(607), 1, + anon_sym_RPAREN, + STATE(604), 1, sym_string, - STATE(621), 1, + STATE(618), 1, sym_primary_expression, - STATE(953), 1, + STATE(940), 1, sym_expression, - STATE(1167), 1, + STATE(1137), 1, sym_pattern, - STATE(1412), 1, + STATE(1303), 1, + sym_yield, + STATE(1442), 1, sym__collection_elements, - STATE(1429), 1, + STATE(1448), 1, sym__patterns, ACTIONS(309), 2, sym_ellipsis, @@ -24381,30 +24388,29 @@ static const uint16_t ts_small_parse_table[] = { STATE(797), 2, sym_attribute, sym_subscript, + STATE(1122), 2, + sym_list_splat, + sym_parenthesized_list_splat, ACTIONS(610), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(878), 3, + STATE(880), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, - STATE(1118), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(660), 5, + ACTIONS(658), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(905), 7, + STATE(904), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -24412,7 +24418,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(622), 13, + STATE(619), 13, sym_binary_operator, sym_unary_operator, sym_call, @@ -24426,7 +24432,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [928] = 29, + [932] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -24441,34 +24447,28 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(654), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(656), 1, anon_sym_STAR, - ACTIONS(662), 1, + ACTIONS(660), 1, anon_sym_LBRACK, ACTIONS(664), 1, anon_sym_yield, ACTIONS(666), 1, anon_sym_await, ACTIONS(674), 1, - anon_sym_RPAREN, - STATE(607), 1, + anon_sym_RBRACK, + STATE(604), 1, sym_string, - STATE(621), 1, + STATE(618), 1, sym_primary_expression, - STATE(947), 1, + STATE(952), 1, sym_expression, - STATE(1167), 1, + STATE(1137), 1, sym_pattern, - STATE(1219), 1, - sym_yield, - STATE(1320), 1, - sym_parenthesized_list_splat, - STATE(1321), 1, - sym_list_splat, - STATE(1445), 1, - sym__collection_elements, - STATE(1446), 1, + STATE(1434), 1, sym__patterns, + STATE(1530), 1, + sym__collection_elements, ACTIONS(309), 2, sym_ellipsis, sym_float, @@ -24479,22 +24479,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(878), 3, + STATE(880), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, + STATE(1122), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(660), 5, + ACTIONS(658), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(905), 7, + STATE(904), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -24502,7 +24506,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(622), 13, + STATE(619), 13, sym_binary_operator, sym_unary_operator, sym_call, @@ -24531,9 +24535,9 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(654), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(656), 1, anon_sym_STAR, - ACTIONS(662), 1, + ACTIONS(660), 1, anon_sym_LBRACK, ACTIONS(664), 1, anon_sym_yield, @@ -24541,17 +24545,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(676), 1, anon_sym_RBRACK, - STATE(607), 1, + STATE(604), 1, sym_string, - STATE(621), 1, + STATE(618), 1, sym_primary_expression, - STATE(944), 1, + STATE(952), 1, sym_expression, - STATE(1167), 1, + STATE(1137), 1, sym_pattern, - STATE(1429), 1, + STATE(1434), 1, sym__patterns, - STATE(1528), 1, + STATE(1530), 1, sym__collection_elements, ACTIONS(309), 2, sym_ellipsis, @@ -24563,11 +24567,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(878), 3, + STATE(880), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, - STATE(1118), 3, + STATE(1122), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, @@ -24576,13 +24580,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(660), 5, + ACTIONS(658), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(905), 7, + STATE(904), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -24590,7 +24594,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(622), 13, + STATE(619), 13, sym_binary_operator, sym_unary_operator, sym_call, @@ -24604,7 +24608,413 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [1162] = 27, + [1162] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(301), 1, + anon_sym_TILDE, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(678), 1, + sym_identifier, + ACTIONS(680), 1, + anon_sym_LPAREN, + ACTIONS(682), 1, + anon_sym_STAR, + ACTIONS(688), 1, + anon_sym_in, + ACTIONS(690), 1, + anon_sym_LBRACK, + STATE(604), 1, + sym_string, + STATE(874), 1, + sym_pattern, + STATE(885), 1, + sym_primary_expression, + ACTIONS(291), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + STATE(768), 2, + sym_attribute, + sym_subscript, + STATE(880), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(684), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(619), 13, + 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, + ACTIONS(686), 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, + [1262] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(301), 1, + anon_sym_TILDE, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(678), 1, + sym_identifier, + ACTIONS(680), 1, + anon_sym_LPAREN, + ACTIONS(682), 1, + anon_sym_STAR, + ACTIONS(690), 1, + anon_sym_LBRACK, + ACTIONS(694), 1, + anon_sym_in, + STATE(604), 1, + sym_string, + STATE(874), 1, + sym_pattern, + STATE(885), 1, + sym_primary_expression, + ACTIONS(291), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + STATE(768), 2, + sym_attribute, + sym_subscript, + STATE(880), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(684), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(619), 13, + 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, + ACTIONS(692), 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, + [1362] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(283), 1, + anon_sym_STAR, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(949), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + STATE(1018), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + ACTIONS(696), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [1466] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(283), 1, + anon_sym_STAR, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(949), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + STATE(1018), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + ACTIONS(698), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [1570] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(283), 1, + anon_sym_STAR, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(949), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + STATE(1018), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + ACTIONS(698), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [1674] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -24627,23 +25037,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(664), 1, anon_sym_yield, - ACTIONS(678), 1, + ACTIONS(700), 1, anon_sym_LPAREN, - ACTIONS(680), 1, + ACTIONS(702), 1, anon_sym_COMMA, - ACTIONS(682), 1, + ACTIONS(704), 1, anon_sym_RBRACE, - STATE(607), 1, + STATE(604), 1, sym_string, - STATE(621), 1, + STATE(618), 1, sym_primary_expression, - STATE(913), 1, + STATE(932), 1, sym_expression, - STATE(1039), 1, + STATE(1020), 1, + sym_pair, + STATE(1228), 1, + sym_dictionary_splat, + STATE(1524), 1, + sym__collection_elements, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(610), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1122), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(606), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [1788] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(283), 1, + anon_sym_STAR, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(602), 1, + sym_identifier, + ACTIONS(612), 1, + anon_sym_LBRACK, + ACTIONS(614), 1, + anon_sym_not, + ACTIONS(616), 1, + anon_sym_lambda, + ACTIONS(618), 1, + anon_sym_await, + ACTIONS(664), 1, + anon_sym_yield, + ACTIONS(700), 1, + anon_sym_LPAREN, + ACTIONS(706), 1, + anon_sym_COMMA, + ACTIONS(708), 1, + anon_sym_RBRACE, + STATE(604), 1, + sym_string, + STATE(618), 1, + sym_primary_expression, + STATE(927), 1, + sym_expression, + STATE(1021), 1, sym_pair, STATE(1265), 1, sym_dictionary_splat, - STATE(1426), 1, + STATE(1429), 1, sym__collection_elements, ACTIONS(309), 2, sym_ellipsis, @@ -24652,7 +25149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1118), 3, + STATE(1122), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, @@ -24667,7 +25164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(905), 7, + STATE(904), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -24675,500 +25172,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(622), 15, - 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, - [1276] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(283), 1, - anon_sym_STAR, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(618), 1, - anon_sym_await, - ACTIONS(664), 1, - anon_sym_yield, - ACTIONS(678), 1, - anon_sym_LPAREN, - ACTIONS(684), 1, - anon_sym_COMMA, - ACTIONS(686), 1, - anon_sym_RBRACE, - STATE(607), 1, - sym_string, - STATE(621), 1, - sym_primary_expression, - STATE(929), 1, - sym_expression, - STATE(1050), 1, - sym_pair, - STATE(1294), 1, - sym_dictionary_splat, - STATE(1439), 1, - sym__collection_elements, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1118), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(606), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [1390] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(283), 1, - anon_sym_STAR, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(941), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(1052), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - ACTIONS(688), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [1494] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(301), 1, - anon_sym_TILDE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(690), 1, - sym_identifier, - ACTIONS(692), 1, - anon_sym_LPAREN, - ACTIONS(694), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_in, - ACTIONS(702), 1, - anon_sym_LBRACK, - STATE(607), 1, - sym_string, - STATE(877), 1, - sym_pattern, - STATE(883), 1, - sym_primary_expression, - ACTIONS(291), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(770), 2, - sym_attribute, - sym_subscript, - STATE(878), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(696), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(622), 13, - 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, - ACTIONS(698), 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, - [1594] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(301), 1, - anon_sym_TILDE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(690), 1, - sym_identifier, - ACTIONS(692), 1, - anon_sym_LPAREN, - ACTIONS(694), 1, - anon_sym_STAR, - ACTIONS(702), 1, - anon_sym_LBRACK, - ACTIONS(706), 1, - anon_sym_in, - STATE(607), 1, - sym_string, - STATE(877), 1, - sym_pattern, - STATE(883), 1, - sym_primary_expression, - ACTIONS(291), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(770), 2, - sym_attribute, - sym_subscript, - STATE(878), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(696), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(622), 13, - 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, - ACTIONS(704), 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, - [1694] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(283), 1, - anon_sym_STAR, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(941), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(1052), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - ACTIONS(708), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [1798] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(283), 1, - anon_sym_STAR, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(941), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(1052), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - ACTIONS(688), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25207,23 +25211,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(664), 1, anon_sym_yield, - ACTIONS(678), 1, + ACTIONS(700), 1, anon_sym_LPAREN, ACTIONS(710), 1, anon_sym_COMMA, ACTIONS(712), 1, anon_sym_RBRACE, - STATE(607), 1, + STATE(604), 1, sym_string, - STATE(621), 1, + STATE(618), 1, sym_primary_expression, - STATE(932), 1, + STATE(920), 1, sym_expression, - STATE(1023), 1, + STATE(1029), 1, sym_pair, - STATE(1226), 1, + STATE(1298), 1, sym_dictionary_splat, - STATE(1522), 1, + STATE(1444), 1, sym__collection_elements, ACTIONS(309), 2, sym_ellipsis, @@ -25232,7 +25236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1118), 3, + STATE(1122), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, @@ -25247,7 +25251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(905), 7, + STATE(904), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -25255,7 +25259,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25271,64 +25275,62 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [2016] = 24, + [2016] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(283), 1, - anon_sym_STAR, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(293), 1, + anon_sym_LBRACK, ACTIONS(295), 1, anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, ACTIONS(315), 1, sym__string_start, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(678), 1, - anon_sym_LPAREN, + ACTIONS(664), 1, + anon_sym_yield, ACTIONS(714), 1, - sym_identifier, - ACTIONS(716), 1, - anon_sym_RPAREN, + anon_sym_LPAREN, ACTIONS(718), 1, - anon_sym_COMMA, - ACTIONS(722), 1, - anon_sym_await, - STATE(607), 1, + anon_sym_STAR, + STATE(604), 1, sym_string, - STATE(621), 1, + STATE(620), 1, sym_primary_expression, - STATE(942), 1, + STATE(1025), 1, sym_expression, - STATE(1262), 1, - sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(610), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1261), 3, + ACTIONS(716), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(1136), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, + sym_parenthesized_list_splat, + sym_yield, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(720), 5, + ACTIONS(285), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(905), 7, + STATE(904), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -25336,7 +25338,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25352,7 +25354,87 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [2121] = 24, + [2117] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(283), 1, + anon_sym_STAR, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(664), 1, + anon_sym_yield, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(956), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + STATE(1413), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1110), 3, + sym_expression_list, + sym_yield, + sym__f_expression, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [2220] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -25369,23 +25451,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(616), 1, anon_sym_lambda, - ACTIONS(678), 1, + ACTIONS(700), 1, anon_sym_LPAREN, - ACTIONS(714), 1, + ACTIONS(720), 1, sym_identifier, ACTIONS(722), 1, - anon_sym_await, - ACTIONS(724), 1, anon_sym_RPAREN, - ACTIONS(726), 1, + ACTIONS(724), 1, anon_sym_COMMA, - STATE(607), 1, + ACTIONS(728), 1, + anon_sym_await, + STATE(604), 1, sym_string, - STATE(621), 1, + STATE(618), 1, sym_primary_expression, - STATE(948), 1, + STATE(943), 1, sym_expression, - STATE(1216), 1, + STATE(1218), 1, sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, @@ -25394,7 +25476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1218), 3, + STATE(1220), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -25403,13 +25485,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(720), 5, + ACTIONS(726), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(905), 7, + STATE(904), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -25417,7 +25499,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25433,7 +25515,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [2226] = 22, + [2325] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(274), 1, @@ -25452,15 +25534,15 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(664), 1, anon_sym_yield, - ACTIONS(728), 1, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(732), 1, + ACTIONS(718), 1, anon_sym_STAR, - STATE(607), 1, + STATE(604), 1, sym_string, - STATE(630), 1, + STATE(620), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1025), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, @@ -25469,11 +25551,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(730), 3, + ACTIONS(716), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - STATE(1137), 3, + STATE(1136), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, @@ -25488,7 +25570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(905), 7, + STATE(904), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -25496,7 +25578,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25512,11 +25594,17 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [2327] = 22, + [2426] = 23, ACTIONS(3), 1, sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, ACTIONS(274), 1, sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(283), 1, + anon_sym_STAR, ACTIONS(293), 1, anon_sym_LBRACK, ACTIONS(295), 1, @@ -25531,31 +25619,26 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(664), 1, anon_sym_yield, - ACTIONS(728), 1, - anon_sym_LPAREN, - ACTIONS(732), 1, - anon_sym_STAR, - STATE(607), 1, + STATE(604), 1, sym_string, - STATE(630), 1, + STATE(620), 1, sym_primary_expression, - STATE(1044), 1, + STATE(956), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, + STATE(1413), 2, + sym_list_splat, + sym_dictionary_splat, ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(730), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(1137), 3, - sym_list_splat, - sym_parenthesized_list_splat, + STATE(1104), 3, + sym_expression_list, sym_yield, + sym__f_expression, ACTIONS(311), 4, sym_integer, sym_true, @@ -25567,7 +25650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(905), 7, + STATE(904), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -25575,7 +25658,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25591,7 +25674,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [2428] = 24, + [2529] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -25606,31 +25689,31 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(283), 1, anon_sym_STAR, - ACTIONS(379), 1, + ACTIONS(391), 1, sym_identifier, - ACTIONS(385), 1, + ACTIONS(397), 1, anon_sym_await, ACTIONS(568), 1, anon_sym_LPAREN, ACTIONS(572), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(730), 1, anon_sym_from, - STATE(683), 1, - sym_string, - STATE(710), 1, + STATE(696), 1, sym_primary_expression, - STATE(969), 1, + STATE(702), 1, + sym_string, + STATE(1042), 1, sym_expression, - STATE(1253), 1, + STATE(1380), 1, sym_expression_list, ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(736), 2, + ACTIONS(650), 2, sym__newline, anon_sym_SEMI, - STATE(1397), 2, + STATE(1398), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(47), 3, @@ -25642,13 +25725,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(381), 5, + ACTIONS(393), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(974), 7, + STATE(993), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -25656,86 +25739,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(795), 15, - 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, - [2533] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(664), 1, - anon_sym_yield, - ACTIONS(728), 1, - anon_sym_LPAREN, - ACTIONS(732), 1, - anon_sym_STAR, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1044), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(738), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(1137), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, + STATE(801), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25758,42 +25762,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(283), 1, anon_sym_STAR, - ACTIONS(293), 1, - anon_sym_LBRACK, ACTIONS(295), 1, anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, ACTIONS(315), 1, sym__string_start, - ACTIONS(716), 1, - anon_sym_RPAREN, - ACTIONS(718), 1, - anon_sym_COMMA, - ACTIONS(728), 1, + ACTIONS(612), 1, + anon_sym_LBRACK, + ACTIONS(614), 1, + anon_sym_not, + ACTIONS(616), 1, + anon_sym_lambda, + ACTIONS(700), 1, anon_sym_LPAREN, - ACTIONS(740), 1, + ACTIONS(720), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(728), 1, anon_sym_await, - STATE(607), 1, + ACTIONS(732), 1, + anon_sym_RPAREN, + ACTIONS(734), 1, + anon_sym_COMMA, + STATE(604), 1, sym_string, - STATE(630), 1, + STATE(618), 1, sym_primary_expression, - STATE(1086), 1, + STATE(950), 1, sym_expression, - STATE(1262), 1, + STATE(1264), 1, sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(610), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1261), 3, + STATE(1263), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -25802,13 +25806,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(742), 5, + ACTIONS(726), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(905), 7, + STATE(904), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -25816,7 +25820,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25849,23 +25853,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(616), 1, anon_sym_lambda, - ACTIONS(678), 1, + ACTIONS(700), 1, anon_sym_LPAREN, - ACTIONS(714), 1, + ACTIONS(720), 1, sym_identifier, - ACTIONS(722), 1, + ACTIONS(728), 1, anon_sym_await, - ACTIONS(746), 1, + ACTIONS(736), 1, anon_sym_RPAREN, - ACTIONS(748), 1, + ACTIONS(738), 1, anon_sym_COMMA, - STATE(607), 1, + STATE(604), 1, sym_string, - STATE(621), 1, + STATE(618), 1, sym_primary_expression, - STATE(945), 1, + STATE(946), 1, sym_expression, - STATE(1229), 1, + STATE(1231), 1, sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, @@ -25874,7 +25878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1231), 3, + STATE(1233), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -25883,13 +25887,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(720), 5, + ACTIONS(726), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(905), 7, + STATE(904), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -25897,7 +25901,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25913,168 +25917,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [2844] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(283), 1, - anon_sym_STAR, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(664), 1, - anon_sym_yield, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(961), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(1373), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1119), 3, - sym_expression_list, - sym_yield, - sym__f_expression, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [2947] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(283), 1, - anon_sym_STAR, - ACTIONS(379), 1, - sym_identifier, - ACTIONS(385), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACK, - ACTIONS(750), 1, - anon_sym_from, - STATE(683), 1, - sym_string, - STATE(710), 1, - sym_primary_expression, - STATE(1035), 1, - sym_expression, - STATE(1348), 1, - sym_expression_list, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(650), 2, - sym__newline, - anon_sym_SEMI, - STATE(1397), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(381), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(974), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(795), 15, - 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, - [3052] = 25, + [2844] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -26093,28 +25936,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(664), 1, anon_sym_yield, - ACTIONS(678), 1, + ACTIONS(700), 1, anon_sym_LPAREN, - ACTIONS(732), 1, + ACTIONS(718), 1, anon_sym_STAR, - ACTIONS(752), 1, + ACTIONS(740), 1, anon_sym_RPAREN, - STATE(607), 1, + STATE(604), 1, sym_string, - STATE(621), 1, + STATE(618), 1, sym_primary_expression, - STATE(911), 1, + STATE(913), 1, sym_expression, - STATE(1280), 1, + STATE(1282), 1, sym_yield, - STATE(1300), 1, + STATE(1302), 1, sym_with_item, - STATE(1432), 1, + STATE(1439), 1, sym__collection_elements, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1118), 2, + STATE(1122), 2, sym_list_splat, sym_parenthesized_list_splat, ACTIONS(610), 3, @@ -26132,7 +25975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(905), 7, + STATE(904), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -26140,7 +25983,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26156,15 +25999,92 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [3159] = 23, + [2951] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(283), 1, + anon_sym_STAR, + ACTIONS(391), 1, + sym_identifier, + ACTIONS(397), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(572), 1, + anon_sym_LBRACK, + ACTIONS(742), 1, + anon_sym_from, + STATE(696), 1, + sym_primary_expression, + STATE(702), 1, + sym_string, + STATE(972), 1, + sym_expression, + STATE(1259), 1, + sym_expression_list, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(744), 2, + sym__newline, + anon_sym_SEMI, + STATE(1398), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(393), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(993), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(801), 15, + 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, + [3056] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, ACTIONS(283), 1, anon_sym_STAR, ACTIONS(293), 1, @@ -26175,32 +26095,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(305), 1, anon_sym_lambda, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(714), 1, + anon_sym_LPAREN, + ACTIONS(732), 1, + anon_sym_RPAREN, + ACTIONS(734), 1, + anon_sym_COMMA, + ACTIONS(746), 1, + sym_identifier, + ACTIONS(750), 1, + anon_sym_await, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(1077), 1, + sym_expression, + STATE(1264), 1, + sym_parenthesized_list_splat, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1263), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(748), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [3161] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, ACTIONS(313), 1, anon_sym_await, ACTIONS(315), 1, sym__string_start, ACTIONS(664), 1, anon_sym_yield, - STATE(607), 1, + ACTIONS(714), 1, + anon_sym_LPAREN, + ACTIONS(718), 1, + anon_sym_STAR, + STATE(604), 1, sym_string, - STATE(630), 1, + STATE(620), 1, sym_primary_expression, - STATE(961), 1, + STATE(1025), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1373), 2, - sym_list_splat, - sym_dictionary_splat, ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1100), 3, - sym_expression_list, + ACTIONS(752), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(1136), 3, + sym_list_splat, + sym_parenthesized_list_splat, sym_yield, - sym__f_expression, ACTIONS(311), 4, sym_integer, sym_true, @@ -26212,7 +26216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(905), 7, + STATE(904), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -26220,7 +26224,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26236,7 +26240,86 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [3262] = 21, + [3262] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(602), 1, + sym_identifier, + ACTIONS(612), 1, + anon_sym_LBRACK, + ACTIONS(614), 1, + anon_sym_not, + ACTIONS(616), 1, + anon_sym_lambda, + ACTIONS(618), 1, + anon_sym_await, + ACTIONS(664), 1, + anon_sym_yield, + ACTIONS(700), 1, + anon_sym_LPAREN, + ACTIONS(718), 1, + anon_sym_STAR, + ACTIONS(754), 1, + anon_sym_RBRACK, + STATE(604), 1, + sym_string, + STATE(618), 1, + sym_primary_expression, + STATE(952), 1, + sym_expression, + STATE(1530), 1, + sym__collection_elements, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(610), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1122), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(606), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [3364] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -26253,29 +26336,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(618), 1, anon_sym_await, - ACTIONS(758), 1, + ACTIONS(760), 1, anon_sym_lambda, - STATE(607), 1, + STATE(604), 1, sym_string, - STATE(621), 1, + STATE(618), 1, sym_primary_expression, - STATE(963), 1, + STATE(959), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1045), 2, + STATE(1032), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, ACTIONS(610), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(754), 3, + ACTIONS(756), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(756), 3, + ACTIONS(758), 3, anon_sym_if, anon_sym_async, anon_sym_for, @@ -26289,7 +26372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(905), 7, + STATE(904), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -26297,86 +26380,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(622), 15, - 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, - [3360] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(283), 1, - anon_sym_STAR, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(728), 1, - anon_sym_LPAREN, - ACTIONS(740), 1, - sym_identifier, - ACTIONS(744), 1, - anon_sym_await, - ACTIONS(760), 1, - anon_sym_RPAREN, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1115), 1, - sym_expression, - STATE(1366), 1, - sym_parenthesized_list_splat, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1363), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(742), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26409,21 +26413,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(315), 1, sym__string_start, - ACTIONS(728), 1, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(740), 1, + ACTIONS(746), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(750), 1, anon_sym_await, ACTIONS(762), 1, anon_sym_RPAREN, - STATE(607), 1, + STATE(604), 1, sym_string, - STATE(630), 1, + STATE(620), 1, sym_primary_expression, - STATE(1115), 1, + STATE(1108), 1, sym_expression, - STATE(1366), 1, + STATE(1370), 1, sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, @@ -26432,7 +26436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1363), 3, + STATE(1368), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -26441,13 +26445,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(742), 5, + ACTIONS(748), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(905), 7, + STATE(904), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -26455,7 +26459,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26471,166 +26475,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [3564] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(618), 1, - anon_sym_await, - ACTIONS(664), 1, - anon_sym_yield, - ACTIONS(678), 1, - anon_sym_LPAREN, - ACTIONS(732), 1, - anon_sym_STAR, - ACTIONS(752), 1, - anon_sym_RPAREN, - STATE(607), 1, - sym_string, - STATE(621), 1, - sym_primary_expression, - STATE(940), 1, - sym_expression, - STATE(1280), 1, - sym_yield, - STATE(1432), 1, - sym__collection_elements, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(1118), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(606), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [3668] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(618), 1, - anon_sym_await, - ACTIONS(664), 1, - anon_sym_yield, - ACTIONS(678), 1, - anon_sym_LPAREN, - ACTIONS(732), 1, - anon_sym_STAR, - ACTIONS(764), 1, - anon_sym_RBRACK, - STATE(607), 1, - sym_string, - STATE(621), 1, - sym_primary_expression, - STATE(954), 1, - sym_expression, - STATE(1428), 1, - sym__collection_elements, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1118), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(606), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [3770] = 23, + [3564] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -26647,21 +26492,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(315), 1, sym__string_start, - ACTIONS(728), 1, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(740), 1, + ACTIONS(746), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(750), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(764), 1, anon_sym_RPAREN, - STATE(607), 1, + STATE(604), 1, sym_string, - STATE(630), 1, + STATE(620), 1, sym_primary_expression, - STATE(1115), 1, + STATE(1108), 1, sym_expression, - STATE(1366), 1, + STATE(1370), 1, sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, @@ -26670,7 +26515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1363), 3, + STATE(1368), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -26679,13 +26524,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(742), 5, + ACTIONS(748), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(905), 7, + STATE(904), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -26693,7 +26538,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26709,62 +26554,62 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [3872] = 23, + [3666] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(295), 1, anon_sym_LBRACE, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(315), 1, sym__string_start, - ACTIONS(283), 1, - anon_sym_STAR, - ACTIONS(379), 1, + ACTIONS(602), 1, sym_identifier, - ACTIONS(385), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, + ACTIONS(612), 1, anon_sym_LBRACK, - STATE(683), 1, + ACTIONS(614), 1, + anon_sym_not, + ACTIONS(616), 1, + anon_sym_lambda, + ACTIONS(618), 1, + anon_sym_await, + ACTIONS(664), 1, + anon_sym_yield, + ACTIONS(700), 1, + anon_sym_LPAREN, + ACTIONS(718), 1, + anon_sym_STAR, + ACTIONS(766), 1, + anon_sym_RBRACK, + STATE(604), 1, sym_string, - STATE(710), 1, + STATE(618), 1, sym_primary_expression, - STATE(1036), 1, + STATE(942), 1, sym_expression, - STATE(1383), 1, - sym_expression_list, - ACTIONS(75), 2, + STATE(1433), 1, + sym__collection_elements, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(768), 2, - sym__newline, - anon_sym_SEMI, - STATE(1397), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(47), 3, + ACTIONS(610), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + STATE(1122), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(381), 5, + ACTIONS(606), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(974), 7, + STATE(904), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -26772,7 +26617,166 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(795), 15, + STATE(619), 15, + 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, + [3768] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(602), 1, + sym_identifier, + ACTIONS(612), 1, + anon_sym_LBRACK, + ACTIONS(614), 1, + anon_sym_not, + ACTIONS(616), 1, + anon_sym_lambda, + ACTIONS(618), 1, + anon_sym_await, + ACTIONS(664), 1, + anon_sym_yield, + ACTIONS(700), 1, + anon_sym_LPAREN, + ACTIONS(718), 1, + anon_sym_STAR, + ACTIONS(768), 1, + anon_sym_RBRACK, + STATE(604), 1, + sym_string, + STATE(618), 1, + sym_primary_expression, + STATE(941), 1, + sym_expression, + STATE(1441), 1, + sym__collection_elements, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(610), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1122), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(606), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [3870] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(602), 1, + sym_identifier, + ACTIONS(612), 1, + anon_sym_LBRACK, + ACTIONS(614), 1, + anon_sym_not, + ACTIONS(616), 1, + anon_sym_lambda, + ACTIONS(618), 1, + anon_sym_await, + ACTIONS(664), 1, + anon_sym_yield, + ACTIONS(700), 1, + anon_sym_LPAREN, + ACTIONS(718), 1, + anon_sym_STAR, + ACTIONS(740), 1, + anon_sym_RPAREN, + STATE(604), 1, + sym_string, + STATE(618), 1, + sym_primary_expression, + STATE(954), 1, + sym_expression, + STATE(1282), 1, + sym_yield, + STATE(1439), 1, + sym__collection_elements, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + STATE(1122), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(610), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(606), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26799,9 +26803,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(379), 1, + ACTIONS(391), 1, sym_identifier, - ACTIONS(385), 1, + ACTIONS(397), 1, anon_sym_await, ACTIONS(568), 1, anon_sym_LPAREN, @@ -26813,19 +26817,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(774), 1, anon_sym_STAR_STAR, - STATE(683), 1, - sym_string, - STATE(710), 1, + STATE(696), 1, sym_primary_expression, - STATE(1019), 1, + STATE(702), 1, + sym_string, + STATE(1022), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(688), 2, + ACTIONS(698), 2, sym__newline, anon_sym_SEMI, - STATE(1212), 2, + STATE(1213), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(47), 3, @@ -26837,13 +26841,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(381), 5, + ACTIONS(393), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(974), 7, + STATE(993), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -26851,7 +26855,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(795), 15, + STATE(801), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26867,7 +26871,166 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [4076] = 23, + [4076] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(602), 1, + sym_identifier, + ACTIONS(612), 1, + anon_sym_LBRACK, + ACTIONS(614), 1, + anon_sym_not, + ACTIONS(616), 1, + anon_sym_lambda, + ACTIONS(618), 1, + anon_sym_await, + ACTIONS(664), 1, + anon_sym_yield, + ACTIONS(700), 1, + anon_sym_LPAREN, + ACTIONS(718), 1, + anon_sym_STAR, + ACTIONS(740), 1, + anon_sym_RPAREN, + STATE(604), 1, + sym_string, + STATE(618), 1, + sym_primary_expression, + STATE(951), 1, + sym_expression, + STATE(1221), 1, + sym_yield, + STATE(1450), 1, + sym__collection_elements, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + STATE(1122), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(610), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(606), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [4180] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(602), 1, + sym_identifier, + ACTIONS(612), 1, + anon_sym_LBRACK, + ACTIONS(614), 1, + anon_sym_not, + ACTIONS(616), 1, + anon_sym_lambda, + ACTIONS(618), 1, + anon_sym_await, + ACTIONS(664), 1, + anon_sym_yield, + ACTIONS(700), 1, + anon_sym_LPAREN, + ACTIONS(718), 1, + anon_sym_STAR, + ACTIONS(766), 1, + anon_sym_RBRACK, + STATE(604), 1, + sym_string, + STATE(618), 1, + sym_primary_expression, + STATE(952), 1, + sym_expression, + STATE(1530), 1, + sym__collection_elements, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(610), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1122), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(606), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [4282] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -26884,21 +27047,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(315), 1, sym__string_start, - ACTIONS(728), 1, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(740), 1, + ACTIONS(746), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(750), 1, anon_sym_await, ACTIONS(776), 1, anon_sym_RPAREN, - STATE(607), 1, + STATE(604), 1, sym_string, - STATE(630), 1, + STATE(620), 1, sym_primary_expression, - STATE(1115), 1, + STATE(1108), 1, sym_expression, - STATE(1366), 1, + STATE(1370), 1, sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, @@ -26907,7 +27070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1363), 3, + STATE(1368), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -26916,13 +27079,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(742), 5, + ACTIONS(748), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(905), 7, + STATE(904), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -26930,7 +27093,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26946,164 +27109,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [4178] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(618), 1, - anon_sym_await, - ACTIONS(664), 1, - anon_sym_yield, - ACTIONS(678), 1, - anon_sym_LPAREN, - ACTIONS(732), 1, - anon_sym_STAR, - ACTIONS(778), 1, - anon_sym_RPAREN, - STATE(607), 1, - sym_string, - STATE(621), 1, - sym_primary_expression, - STATE(950), 1, - sym_expression, - STATE(1279), 1, - sym_yield, - STATE(1440), 1, - sym__collection_elements, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(1118), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(606), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [4282] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(604), 1, - anon_sym_LPAREN, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(618), 1, - anon_sym_await, - ACTIONS(758), 1, - anon_sym_lambda, - STATE(607), 1, - sym_string, - STATE(621), 1, - sym_primary_expression, - STATE(963), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(1045), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(780), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(782), 3, - anon_sym_if, - anon_sym_async, - anon_sym_for, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(606), 4, - anon_sym_print, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [4380] = 23, + [4384] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -27120,21 +27126,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(315), 1, sym__string_start, - ACTIONS(728), 1, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(740), 1, + ACTIONS(746), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(750), 1, anon_sym_await, - ACTIONS(784), 1, + ACTIONS(778), 1, anon_sym_RPAREN, - STATE(607), 1, + STATE(604), 1, sym_string, - STATE(630), 1, + STATE(620), 1, sym_primary_expression, - STATE(1115), 1, + STATE(1108), 1, sym_expression, - STATE(1366), 1, + STATE(1370), 1, sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, @@ -27143,7 +27149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1363), 3, + STATE(1368), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -27152,13 +27158,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(742), 5, + ACTIONS(748), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(905), 7, + STATE(904), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -27166,7 +27172,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27182,7 +27188,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [4482] = 23, + [4486] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -27193,9 +27199,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(379), 1, + ACTIONS(391), 1, sym_identifier, - ACTIONS(385), 1, + ACTIONS(397), 1, anon_sym_await, ACTIONS(568), 1, anon_sym_LPAREN, @@ -27207,19 +27213,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(774), 1, anon_sym_STAR_STAR, - STATE(683), 1, - sym_string, - STATE(710), 1, + STATE(696), 1, sym_primary_expression, - STATE(1019), 1, + STATE(702), 1, + sym_string, + STATE(1022), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(688), 2, + ACTIONS(698), 2, sym__newline, anon_sym_SEMI, - STATE(1212), 2, + STATE(1213), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(47), 3, @@ -27231,13 +27237,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(381), 5, + ACTIONS(393), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(974), 7, + STATE(993), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -27245,7 +27251,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(795), 15, + STATE(801), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27261,165 +27267,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [4584] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(283), 1, - anon_sym_STAR, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(728), 1, - anon_sym_LPAREN, - ACTIONS(740), 1, - sym_identifier, - ACTIONS(744), 1, - anon_sym_await, - ACTIONS(786), 1, - anon_sym_RPAREN, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1115), 1, - sym_expression, - STATE(1366), 1, - sym_parenthesized_list_splat, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1363), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(742), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [4686] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(283), 1, - anon_sym_STAR, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(728), 1, - anon_sym_LPAREN, - ACTIONS(740), 1, - sym_identifier, - ACTIONS(744), 1, - anon_sym_await, - ACTIONS(788), 1, - anon_sym_RPAREN, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1115), 1, - sym_expression, - STATE(1366), 1, - sym_parenthesized_list_splat, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1363), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(742), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [4788] = 25, + [4588] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -27438,29 +27286,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(664), 1, anon_sym_yield, - ACTIONS(678), 1, + ACTIONS(700), 1, anon_sym_LPAREN, - ACTIONS(732), 1, + ACTIONS(718), 1, anon_sym_STAR, - ACTIONS(752), 1, + ACTIONS(780), 1, anon_sym_RPAREN, - STATE(607), 1, + STATE(604), 1, sym_string, - STATE(621), 1, + STATE(618), 1, sym_primary_expression, - STATE(947), 1, + STATE(940), 1, sym_expression, - STATE(1219), 1, + STATE(1303), 1, sym_yield, - STATE(1320), 1, - sym_parenthesized_list_splat, - STATE(1321), 1, - sym_list_splat, - STATE(1445), 1, + STATE(1442), 1, sym__collection_elements, ACTIONS(309), 2, sym_ellipsis, sym_float, + STATE(1122), 2, + sym_list_splat, + sym_parenthesized_list_splat, ACTIONS(610), 3, anon_sym_DASH, anon_sym_PLUS, @@ -27476,7 +27323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(905), 7, + STATE(904), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -27484,7 +27331,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27500,7 +27347,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [4894] = 23, + [4692] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -27511,9 +27358,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(379), 1, + ACTIONS(391), 1, sym_identifier, - ACTIONS(385), 1, + ACTIONS(397), 1, anon_sym_await, ACTIONS(568), 1, anon_sym_LPAREN, @@ -27523,21 +27370,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(774), 1, anon_sym_STAR_STAR, - ACTIONS(790), 1, + ACTIONS(782), 1, anon_sym_from, - STATE(683), 1, - sym_string, - STATE(710), 1, + STATE(696), 1, sym_primary_expression, - STATE(1019), 1, + STATE(702), 1, + sym_string, + STATE(1022), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(708), 2, + ACTIONS(696), 2, sym__newline, anon_sym_SEMI, - STATE(1212), 2, + STATE(1213), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(47), 3, @@ -27549,13 +27396,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(381), 5, + ACTIONS(393), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(974), 7, + STATE(993), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -27563,7 +27410,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(795), 15, + STATE(801), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27579,7 +27426,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [4996] = 23, + [4794] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -27596,21 +27443,338 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(315), 1, sym__string_start, - ACTIONS(728), 1, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(740), 1, + ACTIONS(746), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(750), 1, + anon_sym_await, + ACTIONS(784), 1, + anon_sym_RPAREN, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(1108), 1, + sym_expression, + STATE(1370), 1, + sym_parenthesized_list_splat, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1368), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(748), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [4896] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(283), 1, + anon_sym_STAR, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(714), 1, + anon_sym_LPAREN, + ACTIONS(746), 1, + sym_identifier, + ACTIONS(750), 1, + anon_sym_await, + ACTIONS(786), 1, + anon_sym_RPAREN, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(1108), 1, + sym_expression, + STATE(1370), 1, + sym_parenthesized_list_splat, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1368), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(748), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [4998] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(283), 1, + anon_sym_STAR, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(714), 1, + anon_sym_LPAREN, + ACTIONS(746), 1, + sym_identifier, + ACTIONS(750), 1, + anon_sym_await, + ACTIONS(788), 1, + anon_sym_RPAREN, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(1108), 1, + sym_expression, + STATE(1370), 1, + sym_parenthesized_list_splat, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1368), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(748), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [5100] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(602), 1, + sym_identifier, + ACTIONS(612), 1, + anon_sym_LBRACK, + ACTIONS(614), 1, + anon_sym_not, + ACTIONS(616), 1, + anon_sym_lambda, + ACTIONS(618), 1, + anon_sym_await, + ACTIONS(664), 1, + anon_sym_yield, + ACTIONS(700), 1, + anon_sym_LPAREN, + ACTIONS(718), 1, + anon_sym_STAR, + ACTIONS(790), 1, + anon_sym_RPAREN, + STATE(604), 1, + sym_string, + STATE(618), 1, + sym_primary_expression, + STATE(951), 1, + sym_expression, + STATE(1221), 1, + sym_yield, + STATE(1450), 1, + sym__collection_elements, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + STATE(1122), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(610), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(606), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [5204] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(283), 1, + anon_sym_STAR, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(714), 1, + anon_sym_LPAREN, + ACTIONS(746), 1, + sym_identifier, + ACTIONS(750), 1, anon_sym_await, ACTIONS(792), 1, anon_sym_RPAREN, - STATE(607), 1, + STATE(604), 1, sym_string, - STATE(630), 1, + STATE(620), 1, sym_primary_expression, - STATE(1115), 1, + STATE(1108), 1, sym_expression, - STATE(1366), 1, + STATE(1370), 1, sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, @@ -27619,7 +27783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1363), 3, + STATE(1368), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -27628,13 +27792,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(742), 5, + ACTIONS(748), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(905), 7, + STATE(904), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -27642,7 +27806,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27658,7 +27822,86 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [5098] = 23, + [5306] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(283), 1, + anon_sym_STAR, + ACTIONS(391), 1, + sym_identifier, + ACTIONS(397), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(572), 1, + anon_sym_LBRACK, + STATE(696), 1, + sym_primary_expression, + STATE(702), 1, + sym_string, + STATE(1033), 1, + sym_expression, + STATE(1388), 1, + sym_expression_list, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(794), 2, + sym__newline, + anon_sym_SEMI, + STATE(1398), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(393), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(993), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(801), 15, + 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, + [5408] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -27677,19 +27920,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(664), 1, anon_sym_yield, - ACTIONS(678), 1, + ACTIONS(700), 1, anon_sym_LPAREN, - ACTIONS(732), 1, + ACTIONS(718), 1, anon_sym_STAR, - ACTIONS(794), 1, - anon_sym_RBRACK, - STATE(607), 1, + ACTIONS(790), 1, + anon_sym_RPAREN, + STATE(604), 1, sym_string, - STATE(621), 1, + STATE(618), 1, sym_primary_expression, - STATE(944), 1, + STATE(951), 1, sym_expression, - STATE(1528), 1, + STATE(1221), 1, + sym_yield, + STATE(1323), 1, + sym_parenthesized_list_splat, + STATE(1324), 1, + sym_list_splat, + STATE(1450), 1, sym__collection_elements, ACTIONS(309), 2, sym_ellipsis, @@ -27698,10 +27947,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1118), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, ACTIONS(311), 4, sym_integer, sym_true, @@ -27713,7 +27958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(905), 7, + STATE(904), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -27721,7 +27966,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27737,7 +27982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [5200] = 23, + [5514] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -27754,21 +27999,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(315), 1, sym__string_start, - ACTIONS(728), 1, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(740), 1, + ACTIONS(746), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(750), 1, anon_sym_await, ACTIONS(796), 1, anon_sym_RPAREN, - STATE(607), 1, + STATE(604), 1, sym_string, - STATE(630), 1, + STATE(620), 1, sym_primary_expression, - STATE(1115), 1, + STATE(1108), 1, sym_expression, - STATE(1366), 1, + STATE(1370), 1, sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, @@ -27777,7 +28022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1363), 3, + STATE(1368), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -27786,13 +28031,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(742), 5, + ACTIONS(748), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(905), 7, + STATE(904), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -27800,7 +28045,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27816,7 +28061,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [5302] = 23, + [5616] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -27833,21 +28078,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(315), 1, sym__string_start, - ACTIONS(728), 1, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(740), 1, + ACTIONS(746), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(750), 1, anon_sym_await, ACTIONS(798), 1, anon_sym_RPAREN, - STATE(607), 1, + STATE(604), 1, sym_string, - STATE(630), 1, + STATE(620), 1, sym_primary_expression, - STATE(1115), 1, + STATE(1108), 1, sym_expression, - STATE(1366), 1, + STATE(1370), 1, sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, @@ -27856,7 +28101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1363), 3, + STATE(1368), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -27865,13 +28110,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(742), 5, + ACTIONS(748), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(905), 7, + STATE(904), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -27879,7 +28124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27895,7 +28140,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [5404] = 23, + [5718] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -27912,21 +28157,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(315), 1, sym__string_start, - ACTIONS(728), 1, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(740), 1, + ACTIONS(746), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(750), 1, anon_sym_await, ACTIONS(800), 1, anon_sym_RPAREN, - STATE(607), 1, + STATE(604), 1, sym_string, - STATE(630), 1, + STATE(620), 1, sym_primary_expression, - STATE(1115), 1, + STATE(1108), 1, sym_expression, - STATE(1366), 1, + STATE(1370), 1, sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, @@ -27935,7 +28180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1363), 3, + STATE(1368), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -27944,13 +28189,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(742), 5, + ACTIONS(748), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(905), 7, + STATE(904), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -27958,7 +28203,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27974,324 +28219,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [5506] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(283), 1, - anon_sym_STAR, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(728), 1, - anon_sym_LPAREN, - ACTIONS(740), 1, - sym_identifier, - ACTIONS(744), 1, - anon_sym_await, - ACTIONS(802), 1, - anon_sym_RPAREN, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1115), 1, - sym_expression, - STATE(1366), 1, - sym_parenthesized_list_splat, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1363), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(742), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [5608] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(283), 1, - anon_sym_STAR, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(728), 1, - anon_sym_LPAREN, - ACTIONS(740), 1, - sym_identifier, - ACTIONS(744), 1, - anon_sym_await, - ACTIONS(804), 1, - anon_sym_RPAREN, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1115), 1, - sym_expression, - STATE(1366), 1, - sym_parenthesized_list_splat, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1363), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(742), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [5710] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(618), 1, - anon_sym_await, - ACTIONS(664), 1, - anon_sym_yield, - ACTIONS(678), 1, - anon_sym_LPAREN, - ACTIONS(732), 1, - anon_sym_STAR, - ACTIONS(806), 1, - anon_sym_RPAREN, - STATE(607), 1, - sym_string, - STATE(621), 1, - sym_primary_expression, - STATE(947), 1, - sym_expression, - STATE(1219), 1, - sym_yield, - STATE(1445), 1, - sym__collection_elements, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(1118), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(606), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [5814] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(283), 1, - anon_sym_STAR, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(728), 1, - anon_sym_LPAREN, - ACTIONS(740), 1, - sym_identifier, - ACTIONS(744), 1, - anon_sym_await, - ACTIONS(808), 1, - anon_sym_RPAREN, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1115), 1, - sym_expression, - STATE(1366), 1, - sym_parenthesized_list_splat, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1363), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(742), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [5916] = 21, + [5820] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -28308,29 +28236,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(618), 1, anon_sym_await, - ACTIONS(758), 1, + ACTIONS(760), 1, anon_sym_lambda, - STATE(607), 1, + STATE(604), 1, sym_string, - STATE(621), 1, + STATE(618), 1, sym_primary_expression, - STATE(963), 1, + STATE(959), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1045), 2, + STATE(1032), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, ACTIONS(610), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(810), 3, + ACTIONS(802), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(812), 3, + ACTIONS(804), 3, anon_sym_if, anon_sym_async, anon_sym_for, @@ -28344,7 +28272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(905), 7, + STATE(904), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -28352,7 +28280,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28368,86 +28296,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [6014] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(618), 1, - anon_sym_await, - ACTIONS(664), 1, - anon_sym_yield, - ACTIONS(678), 1, - anon_sym_LPAREN, - ACTIONS(732), 1, - anon_sym_STAR, - ACTIONS(814), 1, - anon_sym_RBRACK, - STATE(607), 1, - sym_string, - STATE(621), 1, - sym_primary_expression, - STATE(953), 1, - sym_expression, - STATE(1412), 1, - sym__collection_elements, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1118), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(606), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [6116] = 23, + [5918] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -28464,21 +28313,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(315), 1, sym__string_start, - ACTIONS(728), 1, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(740), 1, + ACTIONS(746), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(750), 1, anon_sym_await, - ACTIONS(816), 1, + ACTIONS(806), 1, anon_sym_RPAREN, - STATE(607), 1, + STATE(604), 1, sym_string, - STATE(630), 1, + STATE(620), 1, sym_primary_expression, - STATE(1115), 1, + STATE(1108), 1, sym_expression, - STATE(1366), 1, + STATE(1370), 1, sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, @@ -28487,7 +28336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1363), 3, + STATE(1368), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -28496,13 +28345,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(742), 5, + ACTIONS(748), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(905), 7, + STATE(904), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -28510,7 +28359,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28526,168 +28375,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [6218] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(618), 1, - anon_sym_await, - ACTIONS(664), 1, - anon_sym_yield, - ACTIONS(678), 1, - anon_sym_LPAREN, - ACTIONS(732), 1, - anon_sym_STAR, - ACTIONS(806), 1, - anon_sym_RPAREN, - STATE(607), 1, - sym_string, - STATE(621), 1, - sym_primary_expression, - STATE(947), 1, - sym_expression, - STATE(1219), 1, - sym_yield, - STATE(1320), 1, - sym_parenthesized_list_splat, - STATE(1321), 1, - sym_list_splat, - STATE(1445), 1, - sym__collection_elements, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(606), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [6324] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(618), 1, - anon_sym_await, - ACTIONS(664), 1, - anon_sym_yield, - ACTIONS(678), 1, - anon_sym_LPAREN, - ACTIONS(732), 1, - anon_sym_STAR, - ACTIONS(752), 1, - anon_sym_RPAREN, - STATE(607), 1, - sym_string, - STATE(621), 1, - sym_primary_expression, - STATE(947), 1, - sym_expression, - STATE(1219), 1, - sym_yield, - STATE(1445), 1, - sym__collection_elements, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(1118), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(606), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [6428] = 21, + [6020] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -28704,18 +28392,413 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(618), 1, anon_sym_await, - ACTIONS(758), 1, + ACTIONS(760), 1, anon_sym_lambda, - STATE(607), 1, + STATE(604), 1, sym_string, - STATE(621), 1, + STATE(618), 1, sym_primary_expression, - STATE(963), 1, + STATE(959), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1045), 2, + STATE(1032), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(610), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(808), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(810), 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(606), 4, + anon_sym_print, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [6118] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(283), 1, + anon_sym_STAR, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(714), 1, + anon_sym_LPAREN, + ACTIONS(746), 1, + sym_identifier, + ACTIONS(750), 1, + anon_sym_await, + ACTIONS(812), 1, + anon_sym_RPAREN, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(1108), 1, + sym_expression, + STATE(1370), 1, + sym_parenthesized_list_splat, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1368), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(748), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [6220] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(283), 1, + anon_sym_STAR, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(714), 1, + anon_sym_LPAREN, + ACTIONS(746), 1, + sym_identifier, + ACTIONS(750), 1, + anon_sym_await, + ACTIONS(814), 1, + anon_sym_RPAREN, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(1108), 1, + sym_expression, + STATE(1370), 1, + sym_parenthesized_list_splat, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1368), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(748), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [6322] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(602), 1, + sym_identifier, + ACTIONS(612), 1, + anon_sym_LBRACK, + ACTIONS(614), 1, + anon_sym_not, + ACTIONS(616), 1, + anon_sym_lambda, + ACTIONS(618), 1, + anon_sym_await, + ACTIONS(664), 1, + anon_sym_yield, + ACTIONS(700), 1, + anon_sym_LPAREN, + ACTIONS(718), 1, + anon_sym_STAR, + ACTIONS(740), 1, + anon_sym_RPAREN, + STATE(604), 1, + sym_string, + STATE(618), 1, + sym_primary_expression, + STATE(951), 1, + sym_expression, + STATE(1221), 1, + sym_yield, + STATE(1323), 1, + sym_parenthesized_list_splat, + STATE(1324), 1, + sym_list_splat, + STATE(1450), 1, + sym__collection_elements, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(610), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(606), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [6428] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(283), 1, + anon_sym_STAR, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(714), 1, + anon_sym_LPAREN, + ACTIONS(746), 1, + sym_identifier, + ACTIONS(750), 1, + anon_sym_await, + ACTIONS(816), 1, + anon_sym_RPAREN, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(1108), 1, + sym_expression, + STATE(1370), 1, + sym_parenthesized_list_splat, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1368), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(748), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [6530] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(602), 1, + sym_identifier, + ACTIONS(604), 1, + anon_sym_LPAREN, + ACTIONS(612), 1, + anon_sym_LBRACK, + ACTIONS(614), 1, + anon_sym_not, + ACTIONS(618), 1, + anon_sym_await, + ACTIONS(760), 1, + anon_sym_lambda, + STATE(604), 1, + sym_string, + STATE(618), 1, + sym_primary_expression, + STATE(959), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + STATE(1032), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, ACTIONS(610), 3, @@ -28740,7 +28823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(905), 7, + STATE(904), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -28748,86 +28831,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(622), 15, - 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, - [6526] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(618), 1, - anon_sym_await, - ACTIONS(664), 1, - anon_sym_yield, - ACTIONS(678), 1, - anon_sym_LPAREN, - ACTIONS(732), 1, - anon_sym_STAR, - ACTIONS(764), 1, - anon_sym_RBRACK, - STATE(607), 1, - sym_string, - STATE(621), 1, - sym_primary_expression, - STATE(944), 1, - sym_expression, - STATE(1528), 1, - sym__collection_elements, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1118), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(606), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28901,84 +28905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_type_conversion, - [6689] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(283), 1, - anon_sym_STAR, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(728), 1, - anon_sym_LPAREN, - ACTIONS(740), 1, - sym_identifier, - ACTIONS(744), 1, - anon_sym_await, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1115), 1, - sym_expression, - STATE(1366), 1, - sym_parenthesized_list_splat, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1363), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(742), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [6788] = 3, + [6689] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(828), 17, @@ -29036,7 +28963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_type_conversion, - [6849] = 22, + [6750] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(274), 1, @@ -29055,17 +28982,17 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(664), 1, anon_sym_yield, - ACTIONS(728), 1, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(730), 1, + ACTIONS(716), 1, anon_sym_RPAREN, - ACTIONS(732), 1, + ACTIONS(718), 1, anon_sym_STAR, - STATE(607), 1, + STATE(604), 1, sym_string, - STATE(630), 1, + STATE(620), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1025), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, @@ -29074,7 +29001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1137), 3, + STATE(1136), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, @@ -29089,7 +29016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(905), 7, + STATE(904), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -29097,7 +29024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29113,84 +29040,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [6948] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(664), 1, - anon_sym_yield, - ACTIONS(728), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, - anon_sym_RPAREN, - ACTIONS(732), 1, - anon_sym_STAR, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1044), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1137), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [7047] = 3, + [6849] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(832), 17, @@ -29248,65 +29098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_type_conversion, - [7108] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(832), 17, - anon_sym_as, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(830), 36, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - sym_type_conversion, - [7169] = 3, + [6910] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(836), 17, @@ -29364,7 +29156,277 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_type_conversion, - [7230] = 3, + [6971] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(664), 1, + anon_sym_yield, + ACTIONS(714), 1, + anon_sym_LPAREN, + ACTIONS(716), 1, + anon_sym_RPAREN, + ACTIONS(718), 1, + anon_sym_STAR, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(1025), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1136), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [7070] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(836), 17, + anon_sym_as, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(834), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + sym_type_conversion, + [7131] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(832), 17, + anon_sym_as, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(830), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + sym_type_conversion, + [7192] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(283), 1, + anon_sym_STAR, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(714), 1, + anon_sym_LPAREN, + ACTIONS(746), 1, + sym_identifier, + ACTIONS(750), 1, + anon_sym_await, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(1108), 1, + sym_expression, + STATE(1370), 1, + sym_parenthesized_list_splat, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1368), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(748), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [7291] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(840), 17, @@ -29422,128 +29484,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_type_conversion, - [7291] = 3, + [7352] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(828), 17, - anon_sym_as, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(826), 36, - anon_sym_DOT, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - sym_type_conversion, - [7352] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(846), 1, - anon_sym_else, - ACTIONS(848), 1, - anon_sym_except_STAR, - ACTIONS(850), 1, - anon_sym_finally, - STATE(386), 1, - sym_else_clause, - STATE(539), 1, - sym_finally_clause, - STATE(271), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(844), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(293), 1, anon_sym_LBRACK, + ACTIONS(295), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(718), 1, + anon_sym_STAR, + ACTIONS(842), 1, + anon_sym_COLON, + ACTIONS(844), 1, + anon_sym_RBRACK, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(1082), 1, + sym_expression, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(842), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + STATE(1372), 2, + sym_list_splat, + sym_slice, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [7424] = 22, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [7450] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(718), 1, + anon_sym_STAR, + ACTIONS(842), 1, + anon_sym_COLON, + ACTIONS(846), 1, + anon_sym_RBRACK, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(1082), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + STATE(1372), 2, + sym_list_splat, + sym_slice, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [7548] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -29566,18 +29659,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - STATE(607), 1, + STATE(604), 1, sym_string, - STATE(630), 1, + STATE(620), 1, sym_primary_expression, - STATE(1074), 1, + STATE(1088), 1, sym_expression, - STATE(1472), 1, + STATE(1481), 1, sym_expression_list, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1373), 2, + STATE(1413), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(301), 3, @@ -29595,7 +29688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(905), 7, + STATE(904), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -29603,7 +29696,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29619,122 +29712,59 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [7522] = 9, + [7646] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(846), 1, - anon_sym_else, - ACTIONS(850), 1, - anon_sym_finally, - ACTIONS(856), 1, - anon_sym_except, - STATE(455), 1, - sym_else_clause, - STATE(504), 1, - sym_finally_clause, - STATE(268), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(854), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(852), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [7594] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, ACTIONS(283), 1, anon_sym_STAR, - ACTIONS(379), 1, - sym_identifier, - ACTIONS(385), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, + ACTIONS(293), 1, anon_sym_LBRACK, - STATE(683), 1, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + STATE(604), 1, sym_string, - STATE(710), 1, + STATE(620), 1, sym_primary_expression, - STATE(1021), 1, + STATE(1087), 1, sym_expression, - STATE(1390), 1, + STATE(1474), 1, sym_expression_list, - ACTIONS(75), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1397), 2, + STATE(1413), 2, sym_list_splat, sym_dictionary_splat, - ACTIONS(47), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(381), 5, + ACTIONS(285), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(974), 7, + STATE(904), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -29742,7 +29772,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(795), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29758,322 +29788,159 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [7692] = 9, + [7744] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(846), 1, - anon_sym_else, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(718), 1, + anon_sym_STAR, + ACTIONS(842), 1, + anon_sym_COLON, ACTIONS(848), 1, - anon_sym_except_STAR, + anon_sym_RBRACK, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(1082), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + STATE(1372), 2, + sym_list_splat, + sym_slice, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [7842] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(718), 1, + anon_sym_STAR, + ACTIONS(842), 1, + anon_sym_COLON, ACTIONS(850), 1, - anon_sym_finally, - STATE(455), 1, - sym_else_clause, - STATE(504), 1, - sym_finally_clause, - STATE(271), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(854), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + anon_sym_RBRACK, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(1082), 1, + sym_expression, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(852), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + STATE(1372), 2, + sym_list_splat, + sym_slice, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [7764] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(858), 1, - anon_sym_else, - ACTIONS(860), 1, - anon_sym_except, - ACTIONS(862), 1, - anon_sym_finally, - STATE(395), 1, - sym_else_clause, - STATE(507), 1, - sym_finally_clause, - STATE(282), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(854), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(852), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(285), 5, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [7836] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(858), 1, - anon_sym_else, - ACTIONS(862), 1, - anon_sym_finally, - ACTIONS(864), 1, - anon_sym_except_STAR, - STATE(395), 1, - sym_else_clause, - STATE(507), 1, - sym_finally_clause, - STATE(283), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(854), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(852), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [7908] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(858), 1, - anon_sym_else, - ACTIONS(862), 1, - anon_sym_finally, - ACTIONS(864), 1, - anon_sym_except_STAR, - STATE(456), 1, - sym_else_clause, - STATE(524), 1, - sym_finally_clause, - STATE(283), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(844), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(842), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [7980] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(858), 1, - anon_sym_else, - ACTIONS(860), 1, - anon_sym_except, - ACTIONS(862), 1, - anon_sym_finally, - STATE(456), 1, - sym_else_clause, - STATE(524), 1, - sym_finally_clause, - STATE(282), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(844), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(842), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [8052] = 21, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [7940] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(274), 1, @@ -30092,15 +29959,15 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(664), 1, anon_sym_yield, - ACTIONS(728), 1, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(732), 1, + ACTIONS(718), 1, anon_sym_STAR, - STATE(607), 1, + STATE(604), 1, sym_string, - STATE(630), 1, + STATE(620), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1025), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, @@ -30109,7 +29976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1137), 3, + STATE(1136), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, @@ -30124,7 +29991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(905), 7, + STATE(904), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -30132,7 +29999,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30148,7 +30015,83 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [8148] = 22, + [8036] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(718), 1, + anon_sym_STAR, + ACTIONS(842), 1, + anon_sym_COLON, + ACTIONS(852), 1, + anon_sym_RBRACK, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(1082), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + STATE(1372), 2, + sym_list_splat, + sym_slice, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [8134] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -30171,18 +30114,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - STATE(607), 1, + STATE(604), 1, sym_string, - STATE(630), 1, + STATE(620), 1, sym_primary_expression, - STATE(1079), 1, + STATE(1083), 1, sym_expression, - STATE(1500), 1, + STATE(1502), 1, sym_expression_list, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1373), 2, + STATE(1413), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(301), 3, @@ -30200,7 +30143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(905), 7, + STATE(904), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -30208,7 +30151,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30224,251 +30167,23 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [8246] = 22, + [8232] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(283), 1, - anon_sym_STAR, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1080), 1, - sym_expression, - STATE(1479), 1, - sym_expression_list, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(1373), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [8344] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(732), 1, - anon_sym_STAR, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(868), 1, - anon_sym_RBRACK, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1073), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(1369), 2, - sym_list_splat, - sym_slice, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [8442] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(732), 1, - anon_sym_STAR, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(870), 1, - anon_sym_RBRACK, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1073), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(1369), 2, - sym_list_splat, - sym_slice, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [8540] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(846), 1, + ACTIONS(858), 1, anon_sym_else, - ACTIONS(850), 1, - anon_sym_finally, - ACTIONS(856), 1, + ACTIONS(860), 1, anon_sym_except, - STATE(386), 1, + ACTIONS(862), 1, + anon_sym_finally, + STATE(428), 1, sym_else_clause, - STATE(539), 1, + STATE(526), 1, sym_finally_clause, - STATE(268), 2, + STATE(291), 2, sym_except_clause, aux_sym_try_statement_repeat1, - ACTIONS(844), 12, + ACTIONS(856), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -30481,7 +30196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(842), 33, + ACTIONS(854), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -30515,311 +30230,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [8612] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(732), 1, - anon_sym_STAR, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(872), 1, - anon_sym_RBRACK, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1073), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(1369), 2, - sym_list_splat, - sym_slice, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [8710] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(732), 1, - anon_sym_STAR, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(874), 1, - anon_sym_RBRACK, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1073), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(1369), 2, - sym_list_splat, - sym_slice, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [8808] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(732), 1, - anon_sym_STAR, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(876), 1, - anon_sym_RBRACK, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1073), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(1369), 2, - sym_list_splat, - sym_slice, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [8906] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(732), 1, - anon_sym_STAR, - ACTIONS(866), 1, - anon_sym_COLON, - ACTIONS(878), 1, - anon_sym_RBRACK, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1073), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(1369), 2, - sym_list_splat, - sym_slice, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [9004] = 22, + [8304] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -30842,18 +30253,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - STATE(607), 1, + STATE(604), 1, sym_string, - STATE(630), 1, + STATE(620), 1, sym_primary_expression, - STATE(1062), 1, + STATE(1079), 1, sym_expression, - STATE(1455), 1, + STATE(1463), 1, sym_expression_list, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1373), 2, + STATE(1413), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(301), 3, @@ -30871,7 +30282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(905), 7, + STATE(904), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -30879,7 +30290,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30895,7 +30306,146 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [9102] = 22, + [8402] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(868), 1, + anon_sym_else, + ACTIONS(870), 1, + anon_sym_except_STAR, + ACTIONS(872), 1, + anon_sym_finally, + STATE(420), 1, + sym_else_clause, + STATE(577), 1, + sym_finally_clause, + STATE(274), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(864), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(866), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [8474] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(283), 1, + anon_sym_STAR, + ACTIONS(391), 1, + sym_identifier, + ACTIONS(397), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(572), 1, + anon_sym_LBRACK, + STATE(696), 1, + sym_primary_expression, + STATE(702), 1, + sym_string, + STATE(1035), 1, + sym_expression, + STATE(1393), 1, + sym_expression_list, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + STATE(1398), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(393), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(993), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(801), 15, + 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, + [8572] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(274), 1, @@ -30914,22 +30464,287 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - ACTIONS(732), 1, + ACTIONS(718), 1, anon_sym_STAR, - ACTIONS(866), 1, + ACTIONS(842), 1, + anon_sym_COLON, + ACTIONS(874), 1, + anon_sym_RBRACK, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(1082), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + STATE(1372), 2, + sym_list_splat, + sym_slice, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [8670] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(858), 1, + anon_sym_else, + ACTIONS(862), 1, + anon_sym_finally, + ACTIONS(876), 1, + anon_sym_except_STAR, + STATE(440), 1, + sym_else_clause, + STATE(537), 1, + sym_finally_clause, + STATE(292), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(864), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(866), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [8742] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(858), 1, + anon_sym_else, + ACTIONS(860), 1, + anon_sym_except, + ACTIONS(862), 1, + anon_sym_finally, + STATE(440), 1, + sym_else_clause, + STATE(537), 1, + sym_finally_clause, + STATE(291), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(864), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(866), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [8814] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(868), 1, + anon_sym_else, + ACTIONS(872), 1, + anon_sym_finally, + ACTIONS(878), 1, + anon_sym_except, + STATE(420), 1, + sym_else_clause, + STATE(577), 1, + sym_finally_clause, + STATE(275), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(864), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(866), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [8886] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(718), 1, + anon_sym_STAR, + ACTIONS(842), 1, anon_sym_COLON, ACTIONS(880), 1, anon_sym_RBRACK, - STATE(607), 1, + STATE(604), 1, sym_string, - STATE(630), 1, + STATE(620), 1, sym_primary_expression, - STATE(1073), 1, + STATE(1082), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1369), 2, + STATE(1372), 2, sym_list_splat, sym_slice, ACTIONS(301), 3, @@ -30947,7 +30762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(905), 7, + STATE(904), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -30955,7 +30770,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30971,7 +30786,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [9200] = 22, + [8984] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(274), 1, @@ -30990,22 +30805,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - ACTIONS(732), 1, + ACTIONS(718), 1, anon_sym_STAR, - ACTIONS(866), 1, + ACTIONS(842), 1, anon_sym_COLON, ACTIONS(882), 1, anon_sym_RBRACK, - STATE(607), 1, + STATE(604), 1, sym_string, - STATE(630), 1, + STATE(620), 1, sym_primary_expression, - STATE(1073), 1, + STATE(1082), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1369), 2, + STATE(1372), 2, sym_list_splat, sym_slice, ACTIONS(301), 3, @@ -31023,7 +30838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(905), 7, + STATE(904), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -31031,7 +30846,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31047,7 +30862,133 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [9298] = 22, + [9082] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(868), 1, + anon_sym_else, + ACTIONS(870), 1, + anon_sym_except_STAR, + ACTIONS(872), 1, + anon_sym_finally, + STATE(480), 1, + sym_else_clause, + STATE(512), 1, + sym_finally_clause, + STATE(274), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(856), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(854), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [9154] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(868), 1, + anon_sym_else, + ACTIONS(872), 1, + anon_sym_finally, + ACTIONS(878), 1, + anon_sym_except, + STATE(480), 1, + sym_else_clause, + STATE(512), 1, + sym_finally_clause, + STATE(275), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(856), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(854), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [9226] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(274), 1, @@ -31066,22 +31007,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - ACTIONS(732), 1, + ACTIONS(718), 1, anon_sym_STAR, - ACTIONS(866), 1, + ACTIONS(842), 1, anon_sym_COLON, ACTIONS(884), 1, anon_sym_RBRACK, - STATE(607), 1, + STATE(604), 1, sym_string, - STATE(630), 1, + STATE(620), 1, sym_primary_expression, - STATE(1073), 1, + STATE(1082), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1369), 2, + STATE(1372), 2, sym_list_splat, sym_slice, ACTIONS(301), 3, @@ -31099,7 +31040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(905), 7, + STATE(904), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -31107,7 +31048,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31123,9 +31064,74 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + [9324] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(858), 1, + anon_sym_else, + ACTIONS(862), 1, + anon_sym_finally, + ACTIONS(876), 1, + anon_sym_except_STAR, + STATE(428), 1, + sym_else_clause, + STATE(526), 1, + sym_finally_clause, + STATE(292), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(856), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(854), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, [9396] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, ACTIONS(274), 1, sym_identifier, ACTIONS(278), 1, @@ -31142,22 +31148,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - ACTIONS(732), 1, - anon_sym_STAR, - ACTIONS(866), 1, - anon_sym_COLON, - STATE(607), 1, + ACTIONS(886), 1, + anon_sym_RBRACE, + STATE(604), 1, sym_string, - STATE(630), 1, + STATE(620), 1, sym_primary_expression, - STATE(1024), 1, + STATE(1170), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1228), 2, - sym_list_splat, - sym_slice, + STATE(1348), 2, + sym_dictionary_splat, + sym_pair, ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, @@ -31173,7 +31177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(905), 7, + STATE(904), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -31181,7 +31185,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31218,18 +31222,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - ACTIONS(886), 1, + ACTIONS(888), 1, anon_sym_RBRACE, - STATE(607), 1, + STATE(604), 1, sym_string, - STATE(630), 1, + STATE(620), 1, sym_primary_expression, - STATE(1131), 1, + STATE(1170), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1379), 2, + STATE(1348), 2, sym_dictionary_splat, sym_pair, ACTIONS(301), 3, @@ -31247,7 +31251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(905), 7, + STATE(904), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -31255,7 +31259,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31274,54 +31278,54 @@ static const uint16_t ts_small_parse_table[] = { [9586] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(379), 1, + ACTIONS(274), 1, sym_identifier, - ACTIONS(385), 1, - anon_sym_await, - ACTIONS(568), 1, + ACTIONS(278), 1, anon_sym_LPAREN, - ACTIONS(572), 1, + ACTIONS(293), 1, anon_sym_LBRACK, - ACTIONS(772), 1, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(718), 1, anon_sym_STAR, - ACTIONS(774), 1, - anon_sym_STAR_STAR, - STATE(683), 1, + ACTIONS(842), 1, + anon_sym_COLON, + STATE(604), 1, sym_string, - STATE(710), 1, + STATE(620), 1, sym_primary_expression, - STATE(1019), 1, + STATE(1082), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1212), 2, + STATE(1372), 2, sym_list_splat, - sym_dictionary_splat, - ACTIONS(47), 3, + sym_slice, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(381), 5, + ACTIONS(285), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(974), 7, + STATE(904), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -31329,7 +31333,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(795), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31364,20 +31368,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - ACTIONS(732), 1, + ACTIONS(718), 1, anon_sym_STAR, - ACTIONS(866), 1, + ACTIONS(842), 1, anon_sym_COLON, - STATE(607), 1, + STATE(604), 1, sym_string, - STATE(630), 1, + STATE(620), 1, sym_primary_expression, - STATE(1073), 1, + STATE(1019), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1369), 2, + STATE(1229), 2, sym_list_splat, sym_slice, ACTIONS(301), 3, @@ -31395,7 +31399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(905), 7, + STATE(904), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -31403,7 +31407,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31428,8 +31432,6 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(278), 1, anon_sym_LPAREN, - ACTIONS(283), 1, - anon_sym_STAR, ACTIONS(293), 1, anon_sym_LBRACK, ACTIONS(295), 1, @@ -31442,18 +31444,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - STATE(607), 1, + ACTIONS(890), 1, + anon_sym_RBRACE, + STATE(604), 1, sym_string, - STATE(630), 1, + STATE(620), 1, sym_primary_expression, - STATE(941), 1, + STATE(1170), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1052), 2, - sym_list_splat, + STATE(1348), 2, sym_dictionary_splat, + sym_pair, ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, @@ -31469,7 +31473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(905), 7, + STATE(904), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -31477,7 +31481,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31496,10 +31500,14 @@ static const uint16_t ts_small_parse_table[] = { [9871] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, ACTIONS(274), 1, sym_identifier, ACTIONS(278), 1, anon_sym_LPAREN, + ACTIONS(283), 1, + anon_sym_STAR, ACTIONS(293), 1, anon_sym_LBRACK, ACTIONS(295), 1, @@ -31512,22 +31520,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - ACTIONS(732), 1, - anon_sym_STAR, - ACTIONS(866), 1, - anon_sym_COLON, - STATE(607), 1, + STATE(604), 1, sym_string, - STATE(630), 1, + STATE(620), 1, sym_primary_expression, - STATE(1025), 1, + STATE(949), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1224), 2, + STATE(1018), 2, sym_list_splat, - sym_slice, + sym_dictionary_splat, ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, @@ -31543,7 +31547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(905), 7, + STATE(904), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -31551,7 +31555,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31588,18 +31592,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - ACTIONS(888), 1, + ACTIONS(892), 1, anon_sym_RBRACE, - STATE(607), 1, + STATE(604), 1, sym_string, - STATE(630), 1, + STATE(620), 1, sym_primary_expression, - STATE(1131), 1, + STATE(1170), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1379), 2, + STATE(1348), 2, sym_dictionary_splat, sym_pair, ACTIONS(301), 3, @@ -31617,7 +31621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(905), 7, + STATE(904), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -31625,7 +31629,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31642,228 +31646,6 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, [10061] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(732), 1, - anon_sym_STAR, - ACTIONS(866), 1, - anon_sym_COLON, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1047), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(1264), 2, - sym_list_splat, - sym_slice, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [10156] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(890), 1, - anon_sym_RBRACE, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1131), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(1379), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [10251] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(892), 1, - anon_sym_RBRACE, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1131), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(1379), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [10346] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -31886,16 +31668,16 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(894), 1, anon_sym_RBRACE, - STATE(607), 1, + STATE(604), 1, sym_string, - STATE(630), 1, + STATE(620), 1, sym_primary_expression, - STATE(1131), 1, + STATE(1170), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1379), 2, + STATE(1348), 2, sym_dictionary_splat, sym_pair, ACTIONS(301), 3, @@ -31913,7 +31695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(905), 7, + STATE(904), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -31921,7 +31703,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31937,166 +31719,18 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [10441] = 21, + [10156] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, + ACTIONS(280), 1, + anon_sym_COMMA, + ACTIONS(287), 1, + anon_sym_COLON_EQ, ACTIONS(896), 1, - anon_sym_RBRACE, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1131), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(1379), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [10536] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, + anon_sym_for, ACTIONS(898), 1, - anon_sym_RBRACE, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1131), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(1379), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [10631] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(280), 1, - anon_sym_COMMA, - ACTIONS(287), 1, - anon_sym_COLON_EQ, + anon_sym_with, ACTIONS(900), 1, - anon_sym_for, - ACTIONS(902), 1, - anon_sym_with, - ACTIONS(904), 1, anon_sym_def, ACTIONS(289), 2, anon_sym_COLON, @@ -32148,7 +31782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [10704] = 21, + [10229] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -32169,18 +31803,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - ACTIONS(906), 1, + ACTIONS(902), 1, anon_sym_RBRACE, - STATE(607), 1, + STATE(604), 1, sym_string, - STATE(630), 1, + STATE(620), 1, sym_primary_expression, - STATE(1131), 1, + STATE(1170), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1379), 2, + STATE(1348), 2, sym_dictionary_splat, sym_pair, ACTIONS(301), 3, @@ -32198,7 +31832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(905), 7, + STATE(904), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -32206,7 +31840,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32222,92 +31856,18 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [10799] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(908), 1, - anon_sym_RBRACE, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1131), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(1379), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [10894] = 10, + [10324] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(280), 1, anon_sym_COMMA, ACTIONS(287), 1, anon_sym_COLON_EQ, - ACTIONS(910), 1, + ACTIONS(904), 1, anon_sym_for, - ACTIONS(912), 1, + ACTIONS(906), 1, anon_sym_with, - ACTIONS(914), 1, + ACTIONS(908), 1, anon_sym_def, ACTIONS(289), 2, anon_sym_COLON, @@ -32359,64 +31919,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [10967] = 5, + [10397] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(920), 1, - anon_sym_except, - STATE(268), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(918), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, + ACTIONS(51), 1, anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(391), 1, + sym_identifier, + ACTIONS(397), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(572), 1, + anon_sym_LBRACK, + ACTIONS(772), 1, + anon_sym_STAR, + ACTIONS(774), 1, anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + STATE(696), 1, + sym_primary_expression, + STATE(702), 1, + sym_string, + STATE(1022), 1, + sym_expression, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(916), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + STATE(1213), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [11029] = 20, + ACTIONS(393), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(993), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(801), 15, + 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, + [10492] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -32437,16 +32014,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - STATE(607), 1, + ACTIONS(910), 1, + anon_sym_RBRACE, + STATE(604), 1, sym_string, - STATE(630), 1, + STATE(620), 1, sym_primary_expression, - STATE(1131), 1, + STATE(1170), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1379), 2, + STATE(1348), 2, sym_dictionary_splat, sym_pair, ACTIONS(301), 3, @@ -32464,7 +32043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(905), 7, + STATE(904), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -32472,7 +32051,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32488,7 +32067,81 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [11121] = 20, + [10587] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(912), 1, + anon_sym_RBRACE, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(1170), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + STATE(1348), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [10682] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(274), 1, @@ -32507,20 +32160,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - ACTIONS(925), 1, + ACTIONS(718), 1, + anon_sym_STAR, + ACTIONS(842), 1, anon_sym_COLON, - STATE(607), 1, + STATE(604), 1, sym_string, - STATE(630), 1, + STATE(620), 1, sym_primary_expression, - STATE(1077), 1, + STATE(1030), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(923), 2, - anon_sym_COMMA, - anon_sym_RBRACK, + STATE(1266), 2, + sym_list_splat, + sym_slice, ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, @@ -32536,7 +32191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(905), 7, + STATE(904), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -32544,7 +32199,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32560,137 +32215,521 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [11213] = 5, + [10777] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(931), 1, - anon_sym_except_STAR, - STATE(271), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(929), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(53), 1, anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(914), 1, + anon_sym_RBRACE, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(1170), 1, + sym_expression, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(927), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + STATE(1348), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [11275] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(846), 1, - anon_sym_else, - ACTIONS(938), 1, - anon_sym_elif, - STATE(276), 1, - aux_sym_if_statement_repeat1, - STATE(453), 1, - sym_elif_clause, - STATE(560), 1, - sym_else_clause, - ACTIONS(936), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(934), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(285), 5, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [10872] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 1, sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(718), 1, + anon_sym_STAR, + ACTIONS(842), 1, + anon_sym_COLON, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(1055), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + STATE(1294), 2, + sym_list_splat, + sym_slice, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, sym_true, sym_false, sym_none, - [11343] = 8, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [10967] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(846), 1, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(718), 1, + anon_sym_STAR, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(1024), 1, + sym_expression, + STATE(1142), 1, + sym_list_splat, + STATE(1446), 1, + sym_type, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [11061] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(718), 1, + anon_sym_STAR, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(1024), 1, + sym_expression, + STATE(1142), 1, + sym_list_splat, + STATE(1491), 1, + sym_type, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [11155] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(280), 1, + anon_sym_COMMA, + ACTIONS(287), 1, + anon_sym_COLON_EQ, + ACTIONS(916), 1, + sym__string_start, + STATE(1309), 1, + sym_string, + ACTIONS(289), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(307), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(276), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(303), 16, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [11225] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(718), 1, + anon_sym_STAR, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(1024), 1, + sym_expression, + STATE(1142), 1, + sym_list_splat, + STATE(1487), 1, + sym_type, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [11319] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(718), 1, + anon_sym_STAR, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(1024), 1, + sym_expression, + STATE(1142), 1, + sym_list_splat, + STATE(1436), 1, + sym_type, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [11413] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(858), 1, anon_sym_else, - ACTIONS(938), 1, + ACTIONS(922), 1, anon_sym_elif, - STATE(302), 1, + STATE(303), 1, aux_sym_if_statement_repeat1, - STATE(453), 1, + STATE(445), 1, sym_elif_clause, STATE(562), 1, sym_else_clause, - ACTIONS(942), 12, + ACTIONS(920), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -32703,6 +32742,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, + ACTIONS(918), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [11481] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(928), 1, + anon_sym_except_STAR, + STATE(274), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(924), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(926), 35, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [11543] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(935), 1, + anon_sym_except, + STATE(275), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(931), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(933), 35, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [11605] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(868), 1, + anon_sym_else, + ACTIONS(942), 1, + anon_sym_elif, + STATE(278), 1, + aux_sym_if_statement_repeat1, + STATE(477), 1, + sym_elif_clause, + STATE(566), 1, + sym_else_clause, + ACTIONS(938), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, ACTIONS(940), 33, anon_sym_import, anon_sym_from, @@ -32737,18 +32950,78 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [11411] = 8, + [11673] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(858), 1, + ACTIONS(868), 1, anon_sym_else, - ACTIONS(948), 1, + ACTIONS(942), 1, anon_sym_elif, - STATE(313), 1, + STATE(304), 1, aux_sym_if_statement_repeat1, - STATE(481), 1, + STATE(477), 1, sym_elif_clause, - STATE(572), 1, + STATE(575), 1, + sym_else_clause, + ACTIONS(920), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(918), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [11741] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(868), 1, + anon_sym_else, + ACTIONS(942), 1, + anon_sym_elif, + STATE(304), 1, + aux_sym_if_statement_repeat1, + STATE(477), 1, + sym_elif_clause, + STATE(576), 1, sym_else_clause, ACTIONS(944), 12, sym__string_start, @@ -32797,22 +33070,664 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [11479] = 8, + [11809] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(718), 1, + anon_sym_STAR, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(1024), 1, + sym_expression, + STATE(1142), 1, + sym_list_splat, + STATE(1187), 1, + sym_type, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [11903] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(950), 1, + anon_sym_COLON, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(1067), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(948), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [11995] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(1170), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + STATE(1348), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [12087] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(858), 1, anon_sym_else, - ACTIONS(948), 1, + ACTIONS(922), 1, anon_sym_elif, - STATE(280), 1, + STATE(290), 1, aux_sym_if_statement_repeat1, - STATE(481), 1, + STATE(445), 1, sym_elif_clause, - STATE(537), 1, + STATE(560), 1, sym_else_clause, - ACTIONS(950), 12, + ACTIONS(938), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(940), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [12155] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(718), 1, + anon_sym_STAR, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(1024), 1, + sym_expression, + STATE(1142), 1, + sym_list_splat, + STATE(1492), 1, + sym_type, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [12249] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(718), 1, + anon_sym_STAR, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(1024), 1, + sym_expression, + STATE(1142), 1, + sym_list_splat, + STATE(1312), 1, + sym_type, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [12343] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(718), 1, + anon_sym_STAR, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(1024), 1, + sym_expression, + STATE(1142), 1, + sym_list_splat, + STATE(1489), 1, + sym_type, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [12437] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(718), 1, + anon_sym_STAR, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(1024), 1, + sym_expression, + STATE(1142), 1, + sym_list_splat, + STATE(1437), 1, + sym_type, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [12531] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(718), 1, + anon_sym_STAR, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(1024), 1, + sym_expression, + STATE(1142), 1, + sym_list_splat, + STATE(1447), 1, + sym_type, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [12625] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(858), 1, + anon_sym_else, + ACTIONS(922), 1, + anon_sym_elif, + STATE(273), 1, + aux_sym_if_statement_repeat1, + STATE(445), 1, + sym_elif_clause, + STATE(558), 1, + sym_else_clause, + ACTIONS(954), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -32857,16 +33772,89 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [11547] = 8, + [12693] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(846), 1, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(391), 1, + sym_identifier, + ACTIONS(397), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(572), 1, + anon_sym_LBRACK, + ACTIONS(956), 1, + anon_sym_STAR, + STATE(696), 1, + sym_primary_expression, + STATE(702), 1, + sym_string, + STATE(1089), 1, + sym_expression, + STATE(1219), 1, + sym_type, + STATE(1223), 1, + sym_list_splat, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(393), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(993), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(801), 15, + 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, + [12787] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(858), 1, anon_sym_else, - ACTIONS(938), 1, + ACTIONS(922), 1, anon_sym_elif, - STATE(302), 1, + STATE(303), 1, aux_sym_if_statement_repeat1, - STATE(453), 1, + STATE(445), 1, sym_elif_clause, STATE(521), 1, sym_else_clause, @@ -32917,68 +33905,121 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [11615] = 9, + [12855] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(280), 1, - anon_sym_COMMA, - ACTIONS(287), 1, - anon_sym_COLON_EQ, - ACTIONS(954), 1, + ACTIONS(958), 1, + anon_sym_except, + STATE(291), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(931), 12, + sym__dedent, sym__string_start, - STATE(1306), 1, - sym_string, - ACTIONS(289), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(307), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(276), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(303), 16, - sym__newline, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(933), 35, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [11685] = 20, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [12917] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(961), 1, + anon_sym_except_STAR, + STATE(292), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(924), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(926), 35, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [12979] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(274), 1, @@ -32997,18 +34038,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - ACTIONS(958), 1, + ACTIONS(966), 1, anon_sym_COLON, - STATE(607), 1, + STATE(604), 1, sym_string, - STATE(630), 1, + STATE(620), 1, sym_primary_expression, - STATE(1071), 1, + STATE(1069), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(956), 2, + ACTIONS(964), 2, anon_sym_COMMA, anon_sym_RBRACK, ACTIONS(301), 3, @@ -33026,7 +34067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(905), 7, + STATE(904), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -33034,7 +34075,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33050,22 +34091,22 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [11777] = 8, + [13071] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_else, - ACTIONS(938), 1, + ACTIONS(942), 1, anon_sym_elif, - STATE(273), 1, + STATE(277), 1, aux_sym_if_statement_repeat1, - STATE(453), 1, + STATE(477), 1, sym_elif_clause, - STATE(585), 1, + STATE(506), 1, sym_else_clause, - ACTIONS(950), 12, - sym__dedent, + ACTIONS(954), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -33110,311 +34151,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [11845] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(858), 1, - anon_sym_else, - ACTIONS(948), 1, - anon_sym_elif, - STATE(313), 1, - aux_sym_if_statement_repeat1, - STATE(481), 1, - sym_elif_clause, - STATE(579), 1, - sym_else_clause, - ACTIONS(942), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(940), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [11913] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(858), 1, - anon_sym_else, - ACTIONS(948), 1, - anon_sym_elif, - STATE(274), 1, - aux_sym_if_statement_repeat1, - STATE(481), 1, - sym_elif_clause, - STATE(574), 1, - sym_else_clause, - ACTIONS(936), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(934), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [11981] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(960), 1, - anon_sym_except, - STATE(282), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(918), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(916), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [12043] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(963), 1, - anon_sym_except_STAR, - STATE(283), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(929), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(927), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [12105] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(604), 1, - anon_sym_LPAREN, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(618), 1, - anon_sym_await, - ACTIONS(758), 1, - anon_sym_lambda, - STATE(607), 1, - sym_string, - STATE(621), 1, - sym_primary_expression, - STATE(962), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(1046), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(606), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [12194] = 19, + [13139] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -33425,89 +34162,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(379), 1, + ACTIONS(391), 1, sym_identifier, - ACTIONS(385), 1, + ACTIONS(397), 1, anon_sym_await, ACTIONS(568), 1, anon_sym_LPAREN, ACTIONS(572), 1, anon_sym_LBRACK, - STATE(683), 1, - sym_string, - STATE(710), 1, + STATE(696), 1, sym_primary_expression, - STATE(1064), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(966), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(381), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(974), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(795), 15, - 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, - [12283] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(379), 1, - sym_identifier, - ACTIONS(385), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACK, - STATE(683), 1, + STATE(702), 1, sym_string, - STATE(710), 1, - sym_primary_expression, - STATE(1064), 1, + STATE(1070), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, @@ -33524,13 +34191,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(381), 5, + ACTIONS(393), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(974), 7, + STATE(993), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -33538,7 +34205,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(795), 15, + STATE(801), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33554,7 +34221,688 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [12372] = 20, + [13228] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(970), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(972), 37, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_case, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [13285] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(974), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(976), 37, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_case, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [13342] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(1115), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(978), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [13431] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(391), 1, + sym_identifier, + ACTIONS(397), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(572), 1, + anon_sym_LBRACK, + STATE(696), 1, + sym_primary_expression, + STATE(702), 1, + sym_string, + STATE(1070), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(980), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(393), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(993), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(801), 15, + 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, + [13520] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(1114), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(982), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [13609] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(970), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(972), 37, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_case, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [13666] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(1109), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(984), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [13755] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(990), 1, + anon_sym_elif, + STATE(303), 1, + aux_sym_if_statement_repeat1, + STATE(445), 1, + sym_elif_clause, + ACTIONS(988), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(986), 34, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [13818] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(993), 1, + anon_sym_elif, + STATE(304), 1, + aux_sym_if_statement_repeat1, + STATE(477), 1, + sym_elif_clause, + ACTIONS(988), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(986), 34, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [13881] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(622), 1, + sym_identifier, + ACTIONS(624), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(634), 1, + anon_sym_LBRACE, + ACTIONS(636), 1, + anon_sym_not, + ACTIONS(638), 1, + anon_sym_lambda, + ACTIONS(644), 1, + anon_sym_await, + ACTIONS(646), 1, + sym__string_start, + ACTIONS(996), 1, + anon_sym_RPAREN, + STATE(735), 1, + sym_primary_expression, + STATE(741), 1, + sym_string, + STATE(1049), 1, + sym_expression, + STATE(1234), 1, + sym_with_item, + ACTIONS(640), 2, + sym_ellipsis, + sym_float, + ACTIONS(630), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(642), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(626), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(1053), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(812), 15, + 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, + [13972] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(974), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(976), 37, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_case, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [14029] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(622), 1, @@ -33571,17 +34919,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(646), 1, sym__string_start, - ACTIONS(970), 1, + ACTIONS(998), 1, anon_sym_LPAREN, - STATE(739), 1, - sym_string, - STATE(740), 1, + STATE(735), 1, sym_primary_expression, - STATE(1026), 1, + STATE(741), 1, + sym_string, + STATE(1049), 1, sym_expression, - STATE(1237), 1, + STATE(1239), 1, sym_with_item, - STATE(1480), 1, + STATE(1445), 1, sym_with_clause, ACTIONS(640), 2, sym_ellipsis, @@ -33609,7 +34957,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(813), 15, + STATE(812), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33625,7 +34973,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [12463] = 19, + [14120] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -33642,88 +34990,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(618), 1, anon_sym_await, - ACTIONS(758), 1, + ACTIONS(760), 1, anon_sym_lambda, - STATE(607), 1, + STATE(604), 1, sym_string, - STATE(621), 1, - sym_primary_expression, - STATE(963), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(989), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(606), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [12552] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(604), 1, - anon_sym_LPAREN, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(618), 1, - anon_sym_await, - ACTIONS(758), 1, - anon_sym_lambda, - STATE(607), 1, - sym_string, - STATE(621), 1, + STATE(618), 1, sym_primary_expression, STATE(959), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1017), 2, + STATE(1032), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, ACTIONS(610), 3, @@ -33741,7 +35019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(905), 7, + STATE(904), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -33749,7 +35027,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33765,13 +35043,151 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [12641] = 20, + [14209] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(602), 1, + sym_identifier, + ACTIONS(604), 1, + anon_sym_LPAREN, + ACTIONS(612), 1, + anon_sym_LBRACK, + ACTIONS(614), 1, + anon_sym_not, + ACTIONS(618), 1, + anon_sym_await, + ACTIONS(760), 1, + anon_sym_lambda, + STATE(604), 1, + sym_string, + STATE(618), 1, + sym_primary_expression, + STATE(959), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + STATE(1014), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(610), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(606), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [14298] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(602), 1, + sym_identifier, + ACTIONS(604), 1, + anon_sym_LPAREN, + ACTIONS(612), 1, + anon_sym_LBRACK, + ACTIONS(614), 1, + anon_sym_not, + ACTIONS(618), 1, + anon_sym_await, + ACTIONS(760), 1, + anon_sym_lambda, + STATE(604), 1, + sym_string, + STATE(618), 1, + sym_primary_expression, + STATE(963), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + STATE(1028), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(610), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(606), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [14387] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(622), 1, sym_identifier, - ACTIONS(624), 1, - anon_sym_LPAREN, ACTIONS(632), 1, anon_sym_LBRACK, ACTIONS(634), 1, @@ -33784,16 +35200,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(646), 1, sym__string_start, - ACTIONS(972), 1, - anon_sym_RPAREN, - STATE(739), 1, - sym_string, - STATE(740), 1, + ACTIONS(998), 1, + anon_sym_LPAREN, + STATE(735), 1, sym_primary_expression, - STATE(1026), 1, + STATE(741), 1, + sym_string, + STATE(1049), 1, sym_expression, - STATE(1232), 1, + STATE(1239), 1, sym_with_item, + STATE(1460), 1, + sym_with_clause, ACTIONS(640), 2, sym_ellipsis, sym_float, @@ -33820,7 +35238,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(813), 15, + STATE(812), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33836,10 +35254,10 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [12732] = 3, + [14478] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(976), 12, + ACTIONS(1002), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -33852,7 +35270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(974), 37, + ACTIONS(1000), 37, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -33890,137 +35308,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [12789] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(978), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(980), 37, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_case, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [12846] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(604), 1, - anon_sym_LPAREN, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(618), 1, - anon_sym_await, - ACTIONS(758), 1, - anon_sym_lambda, - STATE(607), 1, - sym_string, - STATE(621), 1, - sym_primary_expression, - STATE(963), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(999), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(606), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [12935] = 20, + [14535] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(622), 1, sym_identifier, - ACTIONS(624), 1, - anon_sym_LPAREN, ACTIONS(632), 1, anon_sym_LBRACK, ACTIONS(634), 1, @@ -34033,16 +35325,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(646), 1, sym__string_start, - ACTIONS(982), 1, - anon_sym_RPAREN, - STATE(739), 1, - sym_string, - STATE(740), 1, + ACTIONS(998), 1, + anon_sym_LPAREN, + STATE(735), 1, sym_primary_expression, - STATE(1026), 1, + STATE(741), 1, + sym_string, + STATE(1049), 1, sym_expression, - STATE(1232), 1, + STATE(1239), 1, sym_with_item, + STATE(1468), 1, + sym_with_clause, ACTIONS(640), 2, sym_ellipsis, sym_float, @@ -34069,7 +35363,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(813), 15, + STATE(812), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34085,155 +35379,68 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [13026] = 20, + [14626] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, + ACTIONS(1002), 12, sym__string_start, - ACTIONS(732), 1, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1000), 37, + anon_sym_import, + anon_sym_from, anon_sym_STAR, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1101), 1, - sym_expression, - STATE(1382), 1, - sym_list_splat, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, 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_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, anon_sym_match, + anon_sym_case, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [13117] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, + anon_sym_class, anon_sym_not, - ACTIONS(305), 1, anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1117), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(984), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, + anon_sym_yield, sym_integer, + sym_identifier, + anon_sym_await, sym_true, sym_false, sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [13206] = 8, + [14683] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(280), 1, anon_sym_COMMA, ACTIONS(287), 1, anon_sym_COLON_EQ, - ACTIONS(986), 1, + ACTIONS(1004), 1, sym_identifier, ACTIONS(289), 2, anon_sym_COLON, @@ -34285,7 +35492,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_is, - [13273] = 19, + [14750] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1008), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1006), 37, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_case, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [14807] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -34296,24 +35557,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(379), 1, + ACTIONS(391), 1, sym_identifier, - ACTIONS(385), 1, + ACTIONS(397), 1, anon_sym_await, ACTIONS(568), 1, anon_sym_LPAREN, ACTIONS(572), 1, anon_sym_LBRACK, - STATE(683), 1, - sym_string, - STATE(710), 1, + STATE(696), 1, sym_primary_expression, - STATE(1064), 1, + STATE(702), 1, + sym_string, + STATE(1070), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(988), 2, + ACTIONS(1010), 2, sym__newline, anon_sym_SEMI, ACTIONS(47), 3, @@ -34325,13 +35586,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(381), 5, + ACTIONS(393), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(974), 7, + STATE(993), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -34339,7 +35600,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(795), 15, + STATE(801), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34355,7 +35616,273 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [13362] = 19, + [14896] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1012), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1014), 37, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_case, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [14953] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(391), 1, + sym_identifier, + ACTIONS(397), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(572), 1, + anon_sym_LBRACK, + STATE(696), 1, + sym_primary_expression, + STATE(702), 1, + sym_string, + STATE(1070), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(1016), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(393), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(993), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(801), 15, + 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, + [15042] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(622), 1, + sym_identifier, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(634), 1, + anon_sym_LBRACE, + ACTIONS(636), 1, + anon_sym_not, + ACTIONS(638), 1, + anon_sym_lambda, + ACTIONS(644), 1, + anon_sym_await, + ACTIONS(646), 1, + sym__string_start, + ACTIONS(998), 1, + anon_sym_LPAREN, + STATE(735), 1, + sym_primary_expression, + STATE(741), 1, + sym_string, + STATE(1049), 1, + sym_expression, + STATE(1239), 1, + sym_with_item, + STATE(1484), 1, + sym_with_clause, + ACTIONS(640), 2, + sym_ellipsis, + sym_float, + ACTIONS(630), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(642), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(626), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(1053), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(812), 15, + 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, + [15133] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(718), 1, + anon_sym_STAR, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(1105), 1, + sym_expression, + STATE(1385), 1, + sym_list_splat, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [15224] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -34372,18 +35899,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(618), 1, anon_sym_await, - ACTIONS(758), 1, + ACTIONS(760), 1, anon_sym_lambda, - STATE(607), 1, + STATE(604), 1, sym_string, - STATE(621), 1, + STATE(618), 1, sym_primary_expression, - STATE(963), 1, + STATE(959), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1045), 2, + STATE(990), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, ACTIONS(610), 3, @@ -34401,7 +35928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(905), 7, + STATE(904), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -34409,7 +35936,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34425,11 +35952,13 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [13451] = 20, + [15313] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(622), 1, sym_identifier, + ACTIONS(624), 1, + anon_sym_LPAREN, ACTIONS(632), 1, anon_sym_LBRACK, ACTIONS(634), 1, @@ -34442,1853 +35971,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(646), 1, sym__string_start, - ACTIONS(970), 1, - anon_sym_LPAREN, - STATE(739), 1, - sym_string, - STATE(740), 1, - sym_primary_expression, - STATE(1026), 1, - sym_expression, - STATE(1237), 1, - sym_with_item, - STATE(1466), 1, - sym_with_clause, - ACTIONS(640), 2, - sym_ellipsis, - sym_float, - ACTIONS(630), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(642), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(626), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(1053), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(813), 15, - 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, - [13542] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(379), 1, - sym_identifier, - ACTIONS(385), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACK, - STATE(683), 1, - sym_string, - STATE(710), 1, - sym_primary_expression, - STATE(1064), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(990), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(381), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(974), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(795), 15, - 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, - [13631] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_elif, - STATE(302), 1, - aux_sym_if_statement_repeat1, - STATE(453), 1, - sym_elif_clause, - ACTIONS(994), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(992), 34, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [13694] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(999), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1001), 37, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_case, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [13751] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1123), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(1003), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [13840] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1007), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1005), 37, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_case, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [13897] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1007), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1005), 37, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_case, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [13954] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1122), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(1009), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [14043] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1011), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1013), 37, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_case, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [14100] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1105), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(1015), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [14189] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(622), 1, - sym_identifier, - ACTIONS(632), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, - anon_sym_LBRACE, - ACTIONS(636), 1, - anon_sym_not, - ACTIONS(638), 1, - anon_sym_lambda, - ACTIONS(644), 1, - anon_sym_await, - ACTIONS(646), 1, - sym__string_start, - ACTIONS(970), 1, - anon_sym_LPAREN, - STATE(739), 1, - sym_string, - STATE(740), 1, - sym_primary_expression, - STATE(1026), 1, - sym_expression, - STATE(1237), 1, - sym_with_item, - STATE(1458), 1, - sym_with_clause, - ACTIONS(640), 2, - sym_ellipsis, - sym_float, - ACTIONS(630), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(642), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(626), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(1053), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(813), 15, - 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, - [14280] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(974), 37, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_case, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [14337] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(978), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(980), 37, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_case, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [14394] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1017), 1, - anon_sym_elif, - STATE(313), 1, - aux_sym_if_statement_repeat1, - STATE(481), 1, - sym_elif_clause, - ACTIONS(994), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(992), 34, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [14457] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(999), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1001), 37, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_case, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [14514] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1011), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1013), 37, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_case, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [14571] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(622), 1, - sym_identifier, - ACTIONS(632), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, - anon_sym_LBRACE, - ACTIONS(636), 1, - anon_sym_not, - ACTIONS(638), 1, - anon_sym_lambda, - ACTIONS(644), 1, - anon_sym_await, - ACTIONS(646), 1, - sym__string_start, - ACTIONS(970), 1, - anon_sym_LPAREN, - STATE(739), 1, - sym_string, - STATE(740), 1, - sym_primary_expression, - STATE(1026), 1, - sym_expression, - STATE(1237), 1, - sym_with_item, - STATE(1441), 1, - sym_with_clause, - ACTIONS(640), 2, - sym_ellipsis, - sym_float, - ACTIONS(630), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(642), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(626), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(1053), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(813), 15, - 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, - [14662] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(828), 16, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(826), 32, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_SEMI, - [14718] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1007), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1005), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - 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, - [14774] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(974), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - 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, - [14830] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1007), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1005), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - 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, - [14886] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(978), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(980), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - 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, - [14942] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(999), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1001), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - 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, - [14998] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1020), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1022), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - 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, - [15054] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1051), 1, - sym_expression, - STATE(1443), 1, - sym_type, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [15142] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 13, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_except_STAR, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(974), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [15198] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1028), 1, - anon_sym_case, - STATE(326), 2, - sym_case_block, - aux_sym_cases_repeat1, - ACTIONS(1026), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1024), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [15258] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(832), 16, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(830), 32, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_SEMI, - [15314] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1038), 1, - anon_sym_COLON_EQ, - ACTIONS(1040), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(1033), 3, + ACTIONS(1018), 1, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1042), 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(1031), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - ACTIONS(1036), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - [15378] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(824), 16, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(822), 32, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_SEMI, - [15434] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(832), 16, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(830), 32, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_SEMI, - [15490] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(978), 13, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_except_STAR, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + STATE(735), 1, + sym_primary_expression, + STATE(741), 1, + sym_string, + STATE(1049), 1, + sym_expression, + STATE(1234), 1, + sym_with_item, + ACTIONS(640), 2, sym_ellipsis, sym_float, - ACTIONS(980), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(630), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(642), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [15546] = 3, + ACTIONS(626), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(1053), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(812), 15, + 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, + [15404] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1046), 13, + ACTIONS(1012), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, - anon_sym_except_STAR, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, @@ -36298,7 +36039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1044), 35, + ACTIONS(1014), 37, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -36311,6 +36052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_async, anon_sym_for, @@ -36319,6 +36061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_with, anon_sym_match, + anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -36334,10 +36077,204 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [15602] = 3, + [15461] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1011), 13, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(602), 1, + sym_identifier, + ACTIONS(604), 1, + anon_sym_LPAREN, + ACTIONS(612), 1, + anon_sym_LBRACK, + ACTIONS(614), 1, + anon_sym_not, + ACTIONS(618), 1, + anon_sym_await, + ACTIONS(760), 1, + anon_sym_lambda, + STATE(604), 1, + sym_string, + STATE(618), 1, + sym_primary_expression, + STATE(964), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + STATE(1031), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(610), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(606), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [15550] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(1093), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(1020), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [15639] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1008), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1006), 37, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_case, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [15696] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1022), 13, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -36351,7 +36288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1013), 35, + ACTIONS(1024), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -36387,7 +36324,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [15658] = 3, + [15752] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(836), 16, @@ -36440,13 +36377,225 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_SEMI, - [15714] = 3, + [15808] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(976), 12, + ACTIONS(1002), 13, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, + anon_sym_except_STAR, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1000), 35, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [15864] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(974), 13, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_except_STAR, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(976), 35, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [15920] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(970), 13, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_except_STAR, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(972), 35, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [15976] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1008), 13, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_except_STAR, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1006), 35, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [16032] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1028), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, @@ -36456,7 +36605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(974), 36, + ACTIONS(1026), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -36493,63 +36642,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [15770] = 3, + [16088] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1007), 13, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_except_STAR, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1005), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [15826] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(978), 12, + ACTIONS(974), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -36562,7 +36658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(980), 36, + ACTIONS(976), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -36599,65 +36695,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [15882] = 3, + [16144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1011), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1013), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - 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, - [15938] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(999), 13, - sym__dedent, + ACTIONS(1012), 13, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_except_STAR, anon_sym_DASH, @@ -36669,7 +36712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1001), 35, + ACTIONS(1014), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -36705,63 +36748,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [15994] = 3, + [16200] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(978), 13, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_except_STAR, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(980), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [16050] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(999), 12, + ACTIONS(1002), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -36774,7 +36764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1001), 36, + ACTIONS(1000), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -36811,10 +36801,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [16106] = 3, + [16256] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1007), 13, + ACTIONS(1032), 13, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -36828,7 +36818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1005), 35, + ACTIONS(1030), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -36864,52 +36854,1230 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [16162] = 19, + [16312] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, + ACTIONS(1036), 12, + sym__dedent, sym__string_start, - STATE(607), 1, - sym_string, - STATE(630), 1, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1034), 36, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + 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, + [16368] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1040), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1038), 36, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + 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, + [16424] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(970), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(972), 36, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + 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, + [16480] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1044), 13, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_except_STAR, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1042), 35, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [16536] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1050), 1, + anon_sym_case, + STATE(376), 2, + sym_case_block, + aux_sym_cases_repeat1, + ACTIONS(1048), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1046), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [16596] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1054), 1, + anon_sym_COMMA, + ACTIONS(1059), 1, + anon_sym_COLON_EQ, + ACTIONS(1061), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(1063), 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(1057), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1052), 16, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [16660] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(970), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(972), 36, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + 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, + [16716] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1008), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1006), 36, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + 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, + [16772] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1002), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1000), 36, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + 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, + [16828] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1069), 1, + anon_sym_case, + STATE(348), 2, + sym_case_block, + aux_sym_cases_repeat1, + ACTIONS(1065), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1067), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [16888] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(280), 1, + anon_sym_COMMA, + ACTIONS(287), 1, + anon_sym_COLON_EQ, + ACTIONS(289), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(307), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(276), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(303), 16, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [16952] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1012), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1014), 36, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + 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, + [17008] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(840), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(838), 32, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_SEMI, + [17064] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1012), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1014), 36, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + 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, + [17120] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(974), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(976), 36, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + 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, + [17176] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1008), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1006), 36, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + 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, + [17232] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(970), 13, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_except_STAR, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(972), 35, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [17288] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1044), 13, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_except_STAR, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1042), 35, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [17344] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1072), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1074), 36, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + 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, + [17400] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1076), 13, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_except_STAR, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1078), 35, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [17456] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1040), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1038), 36, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + 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, + [17512] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1002), 13, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_except_STAR, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1000), 35, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [17568] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(622), 1, + sym_identifier, + ACTIONS(624), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(634), 1, + anon_sym_LBRACE, + ACTIONS(636), 1, + anon_sym_not, + ACTIONS(638), 1, + anon_sym_lambda, + ACTIONS(644), 1, + anon_sym_await, + ACTIONS(646), 1, + sym__string_start, + ACTIONS(1080), 1, + anon_sym_COLON, + STATE(735), 1, sym_primary_expression, - STATE(1051), 1, + STATE(741), 1, + sym_string, + STATE(1091), 1, sym_expression, - STATE(1487), 1, - sym_type, - ACTIONS(309), 2, + ACTIONS(640), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(630), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(642), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(285), 5, + ACTIONS(626), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(905), 7, + STATE(1053), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -36917,7 +38085,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(622), 15, + STATE(812), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36933,323 +38101,10 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [16250] = 19, + [17656] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1051), 1, - sym_expression, - STATE(1434), 1, - sym_type, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [16338] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(379), 1, - sym_identifier, - ACTIONS(385), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACK, - STATE(683), 1, - sym_string, - STATE(710), 1, - sym_primary_expression, - STATE(1069), 1, - sym_expression, - STATE(1217), 1, - sym_type, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(381), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(974), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(795), 15, - 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, - [16426] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1011), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1013), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - 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, - [16482] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1051), 1, - sym_expression, - STATE(1489), 1, - sym_type, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [16570] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1020), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1022), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - 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, - [16626] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 13, + ACTIONS(1012), 13, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -37263,7 +38118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(974), 35, + ACTIONS(1014), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -37299,60 +38154,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [16682] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1011), 13, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_except_STAR, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1013), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [16738] = 3, + [17712] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(828), 16, @@ -37405,139 +38207,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_SEMI, - [16794] = 5, + [17768] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1052), 1, - anon_sym_case, - STATE(326), 2, - sym_case_block, - aux_sym_cases_repeat1, - ACTIONS(1050), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1048), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [16854] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1051), 1, - sym_expression, - STATE(1310), 1, - sym_type, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [16942] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1054), 1, - anon_sym_case, - STATE(354), 2, - sym_case_block, - aux_sym_cases_repeat1, - ACTIONS(1026), 12, + ACTIONS(1036), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -37550,57 +38223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1024), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [17002] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1059), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1057), 36, + ACTIONS(1034), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -37637,7 +38260,327 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [17058] = 7, + [17824] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1082), 1, + anon_sym_case, + STATE(348), 2, + sym_case_block, + aux_sym_cases_repeat1, + ACTIONS(1048), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1046), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [17884] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1032), 13, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_except_STAR, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1030), 35, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [17940] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(832), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(830), 32, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_SEMI, + [17996] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(974), 13, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_except_STAR, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(976), 35, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [18052] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1008), 13, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_except_STAR, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1006), 35, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [18108] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1028), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1026), 36, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + 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, + [18164] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(562), 1, @@ -37694,611 +38637,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - [17122] = 3, + [18228] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1063), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1061), 36, - anon_sym_import, - anon_sym_from, + ACTIONS(832), 16, anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - 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, - [17178] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1067), 13, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_except_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1065), 35, - anon_sym_import, + 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(830), 32, + sym__newline, + anon_sym_DOT, anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [17234] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1059), 12, - sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1057), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - 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, - [17290] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1051), 1, - sym_expression, - STATE(1192), 1, - sym_type, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [17378] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1051), 1, - sym_expression, - STATE(1436), 1, - sym_type, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [17466] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1051), 1, - sym_expression, - STATE(1485), 1, - sym_type, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [17554] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1063), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1061), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - 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, - [17610] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1051), 1, - sym_expression, - STATE(1490), 1, - sym_type, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [17698] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1067), 13, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_except_STAR, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1065), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [17754] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1071), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1069), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - 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, - [17810] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1073), 1, anon_sym_COMMA, - ACTIONS(1076), 1, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_SEMI, + [18284] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1084), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1086), 36, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + 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, + [18340] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1088), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1090), 36, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + 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, + [18396] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1095), 1, anon_sym_COLON_EQ, - ACTIONS(1078), 2, + ACTIONS(1097), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(1080), 13, + ACTIONS(1092), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1099), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -38312,24 +38822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1036), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1031), 16, - sym__newline, + ACTIONS(1052), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_if, @@ -38344,15 +38837,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_SEMI, - [17874] = 3, + ACTIONS(1057), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + [18460] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1084), 13, + ACTIONS(1101), 1, + anon_sym_case, + STATE(376), 2, + sym_case_block, + aux_sym_cases_repeat1, + ACTIONS(1065), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, - anon_sym_except_STAR, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, @@ -38362,7 +38874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1082), 35, + ACTIONS(1067), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -38375,12 +38887,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_match, anon_sym_def, @@ -38398,116 +38908,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [17930] = 3, + [18520] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1069), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - 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, - [17986] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1084), 13, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_except_STAR, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1082), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [18042] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(840), 16, + ACTIONS(824), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_PIPE, @@ -38524,7 +38928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(838), 32, + ACTIONS(822), 32, sym__newline, anon_sym_DOT, anon_sym_from, @@ -38557,65 +38961,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_SEMI, - [18098] = 3, + [18576] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1086), 12, + ACTIONS(1076), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1088), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - 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, - [18154] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1046), 13, - sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_except_STAR, anon_sym_DASH, @@ -38627,7 +38978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1044), 35, + ACTIONS(1078), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -38663,10 +39014,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [18210] = 3, + [18632] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1086), 12, + ACTIONS(1072), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -38679,7 +39030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1088), 36, + ACTIONS(1074), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -38716,7 +39067,166 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [18266] = 19, + [18688] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1022), 13, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_except_STAR, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1024), 35, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [18744] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1084), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1086), 36, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + 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, + [18800] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(836), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(834), 32, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_SEMI, + [18856] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(622), 1, @@ -38735,13 +39245,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(646), 1, sym__string_start, - STATE(739), 1, - sym_string, - STATE(740), 1, + STATE(735), 1, sym_primary_expression, - STATE(1026), 1, + STATE(741), 1, + sym_string, + STATE(1049), 1, sym_expression, - STATE(1232), 1, + STATE(1234), 1, sym_with_item, ACTIONS(640), 2, sym_ellipsis, @@ -38769,7 +39279,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(813), 15, + STATE(812), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38785,65 +39295,81 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [18354] = 3, + [18944] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(999), 13, - sym__string_start, - ts_builtin_sym_end, + ACTIONS(622), 1, + sym_identifier, + ACTIONS(624), 1, anon_sym_LPAREN, - anon_sym_except_STAR, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(632), 1, anon_sym_LBRACK, + ACTIONS(634), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(636), 1, + anon_sym_not, + ACTIONS(638), 1, + anon_sym_lambda, + ACTIONS(644), 1, + anon_sym_await, + ACTIONS(646), 1, + sym__string_start, + ACTIONS(1104), 1, + anon_sym_COLON, + STATE(735), 1, + sym_primary_expression, + STATE(741), 1, + sym_string, + STATE(1081), 1, + sym_expression, + ACTIONS(640), 2, sym_ellipsis, sym_float, - ACTIONS(1001), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(630), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(642), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [18410] = 3, + ACTIONS(626), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(1053), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(812), 15, + 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, + [19032] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1090), 12, + ACTIONS(1088), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -38854,7 +39380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1092), 36, + ACTIONS(1090), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -38891,494 +39417,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [18466] = 3, + [19088] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1090), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1092), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, + ACTIONS(868), 1, anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [18522] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1096), 13, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_except_STAR, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1094), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [18578] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1051), 1, - sym_expression, - STATE(1442), 1, - sym_type, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [18666] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(622), 1, - sym_identifier, - ACTIONS(624), 1, - anon_sym_LPAREN, - ACTIONS(632), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, - anon_sym_LBRACE, - ACTIONS(636), 1, - anon_sym_not, - ACTIONS(638), 1, - anon_sym_lambda, - ACTIONS(644), 1, - anon_sym_await, - ACTIONS(646), 1, - sym__string_start, - ACTIONS(1098), 1, - anon_sym_COLON, - STATE(739), 1, - sym_string, - STATE(740), 1, - sym_primary_expression, - STATE(1082), 1, - sym_expression, - ACTIONS(640), 2, - sym_ellipsis, - sym_float, - ACTIONS(630), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(642), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(626), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(1053), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(813), 15, - 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, - [18754] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1096), 13, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_except_STAR, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1094), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [18810] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(622), 1, - sym_identifier, - ACTIONS(624), 1, - anon_sym_LPAREN, - ACTIONS(632), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, - anon_sym_LBRACE, - ACTIONS(636), 1, - anon_sym_not, - ACTIONS(638), 1, - anon_sym_lambda, - ACTIONS(644), 1, - anon_sym_await, - ACTIONS(646), 1, - sym__string_start, - ACTIONS(1100), 1, - anon_sym_COLON, - STATE(739), 1, - sym_string, - STATE(740), 1, - sym_primary_expression, - STATE(1061), 1, - sym_expression, - ACTIONS(640), 2, - sym_ellipsis, - sym_float, - ACTIONS(630), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(642), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(626), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(1053), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(813), 15, - 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, - [18898] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1102), 1, - anon_sym_case, - STATE(354), 2, - sym_case_block, - aux_sym_cases_repeat1, - ACTIONS(1050), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1048), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [18958] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(280), 1, - anon_sym_COMMA, - ACTIONS(287), 1, - anon_sym_COLON_EQ, - ACTIONS(289), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(307), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(276), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(303), 16, - sym__newline, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [19022] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(850), 1, - anon_sym_finally, - STATE(501), 1, - sym_finally_clause, + STATE(510), 1, + sym_else_clause, ACTIONS(1106), 12, - sym__dedent, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -39389,7 +39437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1104), 33, + ACTIONS(1108), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -39423,50 +39471,50 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [19081] = 18, + [19147] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(274), 1, + ACTIONS(622), 1, sym_identifier, - ACTIONS(278), 1, + ACTIONS(624), 1, anon_sym_LPAREN, - ACTIONS(293), 1, + ACTIONS(632), 1, anon_sym_LBRACK, - ACTIONS(295), 1, + ACTIONS(634), 1, anon_sym_LBRACE, - ACTIONS(299), 1, + ACTIONS(636), 1, anon_sym_not, - ACTIONS(305), 1, + ACTIONS(638), 1, anon_sym_lambda, - ACTIONS(313), 1, + ACTIONS(644), 1, anon_sym_await, - ACTIONS(315), 1, + ACTIONS(646), 1, sym__string_start, - STATE(607), 1, - sym_string, - STATE(630), 1, + STATE(735), 1, sym_primary_expression, - STATE(922), 1, + STATE(741), 1, + sym_string, + STATE(1052), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(640), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(630), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(642), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(285), 5, + ACTIONS(626), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(905), 7, + STATE(1053), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -39474,7 +39522,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(622), 15, + STATE(812), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39490,7 +39538,141 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [19166] = 18, + [19232] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(622), 1, + sym_identifier, + ACTIONS(624), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(634), 1, + anon_sym_LBRACE, + ACTIONS(636), 1, + anon_sym_not, + ACTIONS(638), 1, + anon_sym_lambda, + ACTIONS(644), 1, + anon_sym_await, + ACTIONS(646), 1, + sym__string_start, + STATE(735), 1, + sym_primary_expression, + STATE(741), 1, + sym_string, + STATE(1045), 1, + sym_expression, + ACTIONS(640), 2, + sym_ellipsis, + sym_float, + ACTIONS(630), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(642), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(626), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(1053), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(812), 15, + 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, + [19317] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(622), 1, + sym_identifier, + ACTIONS(624), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(634), 1, + anon_sym_LBRACE, + ACTIONS(636), 1, + anon_sym_not, + ACTIONS(638), 1, + anon_sym_lambda, + ACTIONS(644), 1, + anon_sym_await, + ACTIONS(646), 1, + sym__string_start, + STATE(735), 1, + sym_primary_expression, + STATE(741), 1, + sym_string, + STATE(1094), 1, + sym_expression, + ACTIONS(640), 2, + sym_ellipsis, + sym_float, + ACTIONS(630), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(642), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(626), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(1053), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(812), 15, + 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, + [19402] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -39501,19 +39683,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(379), 1, + ACTIONS(391), 1, sym_identifier, - ACTIONS(385), 1, + ACTIONS(397), 1, anon_sym_await, ACTIONS(568), 1, anon_sym_LPAREN, ACTIONS(572), 1, anon_sym_LBRACK, - STATE(683), 1, - sym_string, - STATE(710), 1, + STATE(696), 1, sym_primary_expression, - STATE(1040), 1, + STATE(702), 1, + sym_string, + STATE(982), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, @@ -39527,13 +39709,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(381), 5, + ACTIONS(393), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(974), 7, + STATE(993), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -39541,7 +39723,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(795), 15, + STATE(801), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39557,50 +39739,50 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [19251] = 18, + [19487] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(299), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(305), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, + ACTIONS(81), 1, sym__string_start, - STATE(607), 1, - sym_string, - STATE(630), 1, + ACTIONS(391), 1, + sym_identifier, + ACTIONS(397), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(572), 1, + anon_sym_LBRACK, + STATE(696), 1, sym_primary_expression, - STATE(1144), 1, + STATE(702), 1, + sym_string, + STATE(1068), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(285), 5, + ACTIONS(393), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(905), 7, + STATE(993), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -39608,7 +39790,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(622), 15, + STATE(801), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39624,150 +39806,16 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [19336] = 18, + [19572] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1155), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [19421] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(604), 1, - anon_sym_LPAREN, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(618), 1, - anon_sym_await, - STATE(607), 1, - sym_string, - STATE(621), 1, - sym_primary_expression, - STATE(918), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(606), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [19506] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1040), 1, + ACTIONS(1097), 1, anon_sym_EQ, - ACTIONS(1033), 3, + ACTIONS(1092), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1031), 14, + ACTIONS(1052), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_if, @@ -39782,7 +39830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - ACTIONS(1042), 14, + ACTIONS(1099), 14, anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -39797,7 +39845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1036), 15, + ACTIONS(1057), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_PIPE, @@ -39813,4463 +39861,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - [19567] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(622), 1, - sym_identifier, - ACTIONS(624), 1, - anon_sym_LPAREN, - ACTIONS(632), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, - anon_sym_LBRACE, - ACTIONS(636), 1, - anon_sym_not, - ACTIONS(638), 1, - anon_sym_lambda, - ACTIONS(644), 1, - anon_sym_await, - ACTIONS(646), 1, - sym__string_start, - STATE(739), 1, - sym_string, - STATE(740), 1, - sym_primary_expression, - STATE(1107), 1, - sym_expression, - ACTIONS(640), 2, - sym_ellipsis, - sym_float, - ACTIONS(630), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(642), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(626), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(1053), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(813), 15, - 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, - [19652] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1150), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [19737] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(862), 1, - anon_sym_finally, - STATE(555), 1, - sym_finally_clause, - ACTIONS(1108), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1110), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [19796] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(379), 1, - sym_identifier, - ACTIONS(385), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACK, - STATE(683), 1, - sym_string, - STATE(710), 1, - sym_primary_expression, - STATE(1078), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(381), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(974), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(795), 15, - 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, - [19881] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(379), 1, - sym_identifier, - ACTIONS(385), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACK, - STATE(683), 1, - sym_string, - STATE(710), 1, - sym_primary_expression, - STATE(1006), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(381), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(974), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(795), 15, - 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, - [19966] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1112), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1114), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [20021] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(1116), 1, - sym_identifier, - ACTIONS(1120), 1, - anon_sym_await, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(943), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(392), 2, - sym_attribute, - sym_subscript, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1118), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 13, - 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, - [20108] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(622), 1, - sym_identifier, - ACTIONS(624), 1, - anon_sym_LPAREN, - ACTIONS(632), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, - anon_sym_LBRACE, - ACTIONS(636), 1, - anon_sym_not, - ACTIONS(638), 1, - anon_sym_lambda, - ACTIONS(644), 1, - anon_sym_await, - ACTIONS(646), 1, - sym__string_start, - STATE(739), 1, - sym_string, - STATE(740), 1, - sym_primary_expression, - STATE(1057), 1, - sym_expression, - ACTIONS(640), 2, - sym_ellipsis, - sym_float, - ACTIONS(630), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(642), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(626), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(1053), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(813), 15, - 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, - [20193] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(604), 1, - anon_sym_LPAREN, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(618), 1, - anon_sym_await, - STATE(607), 1, - sym_string, - STATE(621), 1, - sym_primary_expression, - STATE(1008), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(606), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [20278] = 5, + [19633] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(858), 1, anon_sym_else, - STATE(500), 1, + STATE(554), 1, sym_else_clause, - ACTIONS(1122), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1124), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [20337] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(379), 1, - sym_identifier, - ACTIONS(385), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACK, - STATE(683), 1, - sym_string, - STATE(710), 1, - sym_primary_expression, - STATE(972), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(381), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(974), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(795), 15, - 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, - [20422] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(604), 1, - anon_sym_LPAREN, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(618), 1, - anon_sym_await, - STATE(607), 1, - sym_string, - STATE(621), 1, - sym_primary_expression, - STATE(925), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(606), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [20507] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(949), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [20592] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(604), 1, - anon_sym_LPAREN, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(618), 1, - anon_sym_await, - STATE(607), 1, - sym_string, - STATE(621), 1, - sym_primary_expression, - STATE(908), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(606), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [20677] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(943), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [20762] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(604), 1, - anon_sym_LPAREN, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(618), 1, - anon_sym_await, - STATE(607), 1, - sym_string, - STATE(621), 1, - sym_primary_expression, - STATE(916), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(606), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [20847] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(604), 1, - anon_sym_LPAREN, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(618), 1, - anon_sym_await, - STATE(607), 1, - sym_string, - STATE(621), 1, - sym_primary_expression, - STATE(917), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(606), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [20932] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(938), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [21017] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(939), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [21102] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(604), 1, - anon_sym_LPAREN, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(618), 1, - anon_sym_await, - STATE(607), 1, - sym_string, - STATE(621), 1, - sym_primary_expression, - STATE(1048), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(606), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [21187] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(379), 1, - sym_identifier, - ACTIONS(385), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACK, - STATE(683), 1, - sym_string, - STATE(710), 1, - sym_primary_expression, - STATE(1108), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(381), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(974), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(795), 15, - 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, - [21272] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(379), 1, - sym_identifier, - ACTIONS(385), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACK, - STATE(683), 1, - sym_string, - STATE(710), 1, - sym_primary_expression, - STATE(1041), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(381), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(974), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(795), 15, - 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, - [21357] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(858), 1, - anon_sym_else, - STATE(525), 1, - sym_else_clause, - ACTIONS(1126), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1128), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [21416] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(622), 1, - sym_identifier, - ACTIONS(624), 1, - anon_sym_LPAREN, - ACTIONS(632), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, - anon_sym_LBRACE, - ACTIONS(636), 1, - anon_sym_not, - ACTIONS(638), 1, - anon_sym_lambda, - ACTIONS(644), 1, - anon_sym_await, - ACTIONS(646), 1, - sym__string_start, - STATE(739), 1, - sym_string, - STATE(740), 1, - sym_primary_expression, - STATE(1130), 1, - sym_expression, - ACTIONS(640), 2, - sym_ellipsis, - sym_float, - ACTIONS(630), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(642), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(626), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(1053), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(813), 15, - 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, - [21501] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(937), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [21586] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(935), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [21671] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1130), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1132), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [21726] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(379), 1, - sym_identifier, - ACTIONS(385), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACK, - STATE(683), 1, - sym_string, - STATE(710), 1, - sym_primary_expression, - STATE(1049), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(381), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(974), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(795), 15, - 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, - [21811] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(858), 1, - anon_sym_else, - STATE(503), 1, - sym_else_clause, - ACTIONS(1134), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1136), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [21870] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(379), 1, - sym_identifier, - ACTIONS(385), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACK, - STATE(683), 1, - sym_string, - STATE(710), 1, - sym_primary_expression, - STATE(1190), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(381), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(974), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(795), 15, - 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, - [21955] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1140), 1, - anon_sym_COMMA, - ACTIONS(1147), 1, - anon_sym_EQ, - ACTIONS(1145), 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(1143), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1138), 16, - sym__newline, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [22016] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(901), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [22101] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(924), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [22186] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1159), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [22271] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(846), 1, - anon_sym_else, - STATE(559), 1, - sym_else_clause, - ACTIONS(1151), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1149), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [22330] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(604), 1, - anon_sym_LPAREN, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(618), 1, - anon_sym_await, - STATE(607), 1, - sym_string, - STATE(621), 1, - sym_primary_expression, - STATE(919), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(606), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [22415] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(379), 1, - sym_identifier, - ACTIONS(385), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACK, - STATE(683), 1, - sym_string, - STATE(710), 1, - sym_primary_expression, - STATE(1110), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(381), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(974), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(795), 15, - 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, - [22500] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1157), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [22585] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(379), 1, - sym_identifier, - ACTIONS(385), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACK, - STATE(683), 1, - sym_string, - STATE(710), 1, - sym_primary_expression, - STATE(1102), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(381), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(974), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(795), 15, - 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, - [22670] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1154), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [22755] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1099), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [22840] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1083), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [22925] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(379), 1, - sym_identifier, - ACTIONS(385), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACK, - STATE(683), 1, - sym_string, - STATE(710), 1, - sym_primary_expression, - STATE(1013), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(381), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(974), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(795), 15, - 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, - [23010] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(858), 1, - anon_sym_else, - STATE(532), 1, - sym_else_clause, - ACTIONS(1151), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1149), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [23069] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1168), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [23154] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(858), 1, - anon_sym_else, - STATE(545), 1, - sym_else_clause, - ACTIONS(1153), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1155), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [23213] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(846), 1, - anon_sym_else, - STATE(548), 1, - sym_else_clause, - ACTIONS(1153), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1155), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [23272] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1197), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [23357] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1164), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [23442] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(379), 1, - sym_identifier, - ACTIONS(385), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACK, - STATE(683), 1, - sym_string, - STATE(710), 1, - sym_primary_expression, - STATE(973), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(381), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(974), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(795), 15, - 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, - [23527] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(379), 1, - sym_identifier, - ACTIONS(385), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACK, - STATE(683), 1, - sym_string, - STATE(710), 1, - sym_primary_expression, - STATE(1042), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(381), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(974), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(795), 15, - 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, - [23612] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1073), 1, - anon_sym_COMMA, - ACTIONS(1078), 1, - anon_sym_EQ, - ACTIONS(1080), 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(1036), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1031), 16, - sym__newline, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [23673] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(846), 1, - anon_sym_else, - STATE(573), 1, - sym_else_clause, - ACTIONS(1122), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1124), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [23732] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(379), 1, - sym_identifier, - ACTIONS(385), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACK, - STATE(683), 1, - sym_string, - STATE(710), 1, - sym_primary_expression, - STATE(1066), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(381), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(974), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(795), 15, - 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, - [23817] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1206), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [23902] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(379), 1, - sym_identifier, - ACTIONS(385), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACK, - STATE(683), 1, - sym_string, - STATE(710), 1, - sym_primary_expression, - STATE(965), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(381), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(974), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(795), 15, - 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, - [23987] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(604), 1, - anon_sym_LPAREN, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(618), 1, - anon_sym_await, - STATE(607), 1, - sym_string, - STATE(621), 1, - sym_primary_expression, - STATE(931), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(606), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [24072] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1126), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [24157] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1127), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [24242] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1166), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [24327] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1159), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1157), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [24382] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(846), 1, - anon_sym_else, - STATE(546), 1, - sym_else_clause, - ACTIONS(1134), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1136), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [24441] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(850), 1, - anon_sym_finally, - STATE(541), 1, - sym_finally_clause, - ACTIONS(1108), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1110), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [24500] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(862), 1, - anon_sym_finally, - STATE(565), 1, - sym_finally_clause, ACTIONS(1106), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1104), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [24559] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1139), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [24644] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(379), 1, - sym_identifier, - ACTIONS(385), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACK, - STATE(683), 1, - sym_string, - STATE(710), 1, - sym_primary_expression, - STATE(988), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(381), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(974), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(795), 15, - 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, - [24729] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(379), 1, - sym_identifier, - ACTIONS(385), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACK, - STATE(683), 1, - sym_string, - STATE(710), 1, - sym_primary_expression, - STATE(1016), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(381), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(974), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(795), 15, - 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, - [24814] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1142), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [24899] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(858), 1, - anon_sym_else, - STATE(568), 1, - sym_else_clause, - ACTIONS(1161), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1163), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [24958] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(622), 1, - sym_identifier, - ACTIONS(624), 1, - anon_sym_LPAREN, - ACTIONS(632), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, - anon_sym_LBRACE, - ACTIONS(636), 1, - anon_sym_not, - ACTIONS(638), 1, - anon_sym_lambda, - ACTIONS(644), 1, - anon_sym_await, - ACTIONS(646), 1, - sym__string_start, - STATE(739), 1, - sym_string, - STATE(740), 1, - sym_primary_expression, - STATE(1027), 1, - sym_expression, - ACTIONS(640), 2, - sym_ellipsis, - sym_float, - ACTIONS(630), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(642), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(626), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(1053), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(813), 15, - 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, - [25043] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1112), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -44282,7 +39881,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1114), 35, + ACTIONS(1108), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [19692] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(391), 1, + sym_identifier, + ACTIONS(397), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(572), 1, + anon_sym_LBRACK, + STATE(696), 1, + sym_primary_expression, + STATE(702), 1, + sym_string, + STATE(1119), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(393), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(993), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(801), 15, + 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, + [19777] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1110), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1112), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -44318,342 +40034,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [25098] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(622), 1, - sym_identifier, - ACTIONS(624), 1, - anon_sym_LPAREN, - ACTIONS(632), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, - anon_sym_LBRACE, - ACTIONS(636), 1, - anon_sym_not, - ACTIONS(638), 1, - anon_sym_lambda, - ACTIONS(644), 1, - anon_sym_await, - ACTIONS(646), 1, - sym__string_start, - STATE(739), 1, - sym_string, - STATE(740), 1, - sym_primary_expression, - STATE(1028), 1, - sym_expression, - ACTIONS(640), 2, - sym_ellipsis, - sym_float, - ACTIONS(630), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(642), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(626), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(1053), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(813), 15, - 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, - [25183] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(622), 1, - sym_identifier, - ACTIONS(624), 1, - anon_sym_LPAREN, - ACTIONS(632), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, - anon_sym_LBRACE, - ACTIONS(636), 1, - anon_sym_not, - ACTIONS(638), 1, - anon_sym_lambda, - ACTIONS(644), 1, - anon_sym_await, - ACTIONS(646), 1, - sym__string_start, - STATE(739), 1, - sym_string, - STATE(740), 1, - sym_primary_expression, - STATE(1029), 1, - sym_expression, - ACTIONS(640), 2, - sym_ellipsis, - sym_float, - ACTIONS(630), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(642), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(626), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(1053), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(813), 15, - 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, - [25268] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(379), 1, - sym_identifier, - ACTIONS(385), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACK, - STATE(683), 1, - sym_string, - STATE(710), 1, - sym_primary_expression, - STATE(1098), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(381), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(974), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(795), 15, - 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, - [25353] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(379), 1, - sym_identifier, - ACTIONS(385), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACK, - STATE(683), 1, - sym_string, - STATE(710), 1, - sym_primary_expression, - STATE(975), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(381), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(974), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(795), 15, - 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, - [25438] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(622), 1, - sym_identifier, - ACTIONS(624), 1, - anon_sym_LPAREN, - ACTIONS(632), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, - anon_sym_LBRACE, - ACTIONS(636), 1, - anon_sym_not, - ACTIONS(638), 1, - anon_sym_lambda, - ACTIONS(644), 1, - anon_sym_await, - ACTIONS(646), 1, - sym__string_start, - STATE(739), 1, - sym_string, - STATE(740), 1, - sym_primary_expression, - STATE(1031), 1, - sym_expression, - ACTIONS(640), 2, - sym_ellipsis, - sym_float, - ACTIONS(630), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(642), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(626), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(1053), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(813), 15, - 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, - [25523] = 18, + [19832] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(274), 1, @@ -44672,641 +40053,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - STATE(607), 1, + STATE(604), 1, sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1199), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [25608] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1167), 1, - anon_sym_COMMA, - ACTIONS(1174), 1, - anon_sym_EQ, - ACTIONS(1172), 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(1170), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1165), 16, - sym__newline, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [25669] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(622), 1, - sym_identifier, - ACTIONS(624), 1, - anon_sym_LPAREN, - ACTIONS(632), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, - anon_sym_LBRACE, - ACTIONS(636), 1, - anon_sym_not, - ACTIONS(638), 1, - anon_sym_lambda, - ACTIONS(644), 1, - anon_sym_await, - ACTIONS(646), 1, - sym__string_start, - STATE(739), 1, - sym_string, - STATE(740), 1, - sym_primary_expression, - STATE(1032), 1, - sym_expression, - ACTIONS(640), 2, - sym_ellipsis, - sym_float, - ACTIONS(630), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(642), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(626), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(1053), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(813), 15, - 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, - [25754] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(622), 1, - sym_identifier, - ACTIONS(624), 1, - anon_sym_LPAREN, - ACTIONS(632), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, - anon_sym_LBRACE, - ACTIONS(636), 1, - anon_sym_not, - ACTIONS(638), 1, - anon_sym_lambda, - ACTIONS(644), 1, - anon_sym_await, - ACTIONS(646), 1, - sym__string_start, - STATE(739), 1, - sym_string, - STATE(740), 1, - sym_primary_expression, - STATE(1033), 1, - sym_expression, - ACTIONS(640), 2, - sym_ellipsis, - sym_float, - ACTIONS(630), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(642), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(626), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(1053), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(813), 15, - 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, - [25839] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1065), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [25924] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(607), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(952), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [26009] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(604), 1, - anon_sym_LPAREN, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(618), 1, - anon_sym_await, - STATE(607), 1, - sym_string, - STATE(621), 1, - sym_primary_expression, - STATE(901), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(606), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(905), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(622), 15, - 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, - [26094] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(846), 1, - anon_sym_else, - STATE(517), 1, - sym_else_clause, - ACTIONS(1161), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1163), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [26153] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(622), 1, - sym_identifier, - ACTIONS(624), 1, - anon_sym_LPAREN, - ACTIONS(632), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, - anon_sym_LBRACE, - ACTIONS(636), 1, - anon_sym_not, - ACTIONS(638), 1, - anon_sym_lambda, - ACTIONS(644), 1, - anon_sym_await, - ACTIONS(646), 1, - sym__string_start, - STATE(739), 1, - sym_string, - STATE(740), 1, - sym_primary_expression, - STATE(1034), 1, - sym_expression, - ACTIONS(640), 2, - sym_ellipsis, - sym_float, - ACTIONS(630), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(642), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(626), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(1053), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(813), 15, - 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, - [26238] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(846), 1, - anon_sym_else, - STATE(513), 1, - sym_else_clause, - ACTIONS(1126), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1128), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [26297] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(607), 1, - sym_string, - STATE(630), 1, + STATE(620), 1, sym_primary_expression, STATE(915), 1, sym_expression, @@ -45328,7 +40077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(905), 7, + STATE(904), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -45336,7 +40085,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45352,7 +40101,196 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [26382] = 18, + [19917] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + anon_sym_COMMA, + ACTIONS(1123), 1, + anon_sym_EQ, + ACTIONS(1121), 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(1119), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1114), 16, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [19978] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(905), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [20063] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(602), 1, + sym_identifier, + ACTIONS(604), 1, + anon_sym_LPAREN, + ACTIONS(612), 1, + anon_sym_LBRACK, + ACTIONS(614), 1, + anon_sym_not, + ACTIONS(616), 1, + anon_sym_lambda, + ACTIONS(618), 1, + anon_sym_await, + STATE(604), 1, + sym_string, + STATE(618), 1, + sym_primary_expression, + STATE(1041), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(610), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(606), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [20148] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -45363,19 +40301,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(379), 1, + ACTIONS(391), 1, sym_identifier, - ACTIONS(385), 1, + ACTIONS(397), 1, anon_sym_await, ACTIONS(568), 1, anon_sym_LPAREN, ACTIONS(572), 1, anon_sym_LBRACK, - STATE(683), 1, - sym_string, - STATE(710), 1, + STATE(696), 1, sym_primary_expression, - STATE(1124), 1, + STATE(702), 1, + sym_string, + STATE(1008), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, @@ -45389,13 +40327,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(381), 5, + ACTIONS(393), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(974), 7, + STATE(993), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -45403,7 +40341,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(795), 15, + STATE(801), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45419,10 +40357,14 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [26467] = 3, + [20233] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1159), 12, + ACTIONS(868), 1, + anon_sym_else, + STATE(571), 1, + sym_else_clause, + ACTIONS(1125), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -45435,7 +40377,2837 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1157), 35, + ACTIONS(1127), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [20292] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(602), 1, + sym_identifier, + ACTIONS(604), 1, + anon_sym_LPAREN, + ACTIONS(612), 1, + anon_sym_LBRACK, + ACTIONS(614), 1, + anon_sym_not, + ACTIONS(616), 1, + anon_sym_lambda, + ACTIONS(618), 1, + anon_sym_await, + STATE(604), 1, + sym_string, + STATE(618), 1, + sym_primary_expression, + STATE(923), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(610), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(606), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [20377] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(948), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [20462] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(602), 1, + sym_identifier, + ACTIONS(604), 1, + anon_sym_LPAREN, + ACTIONS(612), 1, + anon_sym_LBRACK, + ACTIONS(614), 1, + anon_sym_not, + ACTIONS(616), 1, + anon_sym_lambda, + ACTIONS(618), 1, + anon_sym_await, + STATE(604), 1, + sym_string, + STATE(618), 1, + sym_primary_expression, + STATE(911), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(610), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(606), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [20547] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(602), 1, + sym_identifier, + ACTIONS(604), 1, + anon_sym_LPAREN, + ACTIONS(612), 1, + anon_sym_LBRACK, + ACTIONS(614), 1, + anon_sym_not, + ACTIONS(616), 1, + anon_sym_lambda, + ACTIONS(618), 1, + anon_sym_await, + STATE(604), 1, + sym_string, + STATE(618), 1, + sym_primary_expression, + STATE(1004), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(610), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(606), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [20632] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1131), 1, + anon_sym_COMMA, + ACTIONS(1138), 1, + anon_sym_EQ, + ACTIONS(1136), 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(1134), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1129), 16, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [20693] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(1132), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [20778] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(938), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [20863] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(391), 1, + sym_identifier, + ACTIONS(397), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(572), 1, + anon_sym_LBRACK, + STATE(696), 1, + sym_primary_expression, + STATE(702), 1, + sym_string, + STATE(1050), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(393), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(993), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(801), 15, + 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, + [20948] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(1140), 1, + sym_identifier, + ACTIONS(1144), 1, + anon_sym_await, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(947), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + STATE(392), 2, + sym_attribute, + sym_subscript, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1142), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 13, + 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, + [21035] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(939), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [21120] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(1159), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [21205] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(602), 1, + sym_identifier, + ACTIONS(604), 1, + anon_sym_LPAREN, + ACTIONS(612), 1, + anon_sym_LBRACK, + ACTIONS(614), 1, + anon_sym_not, + ACTIONS(616), 1, + anon_sym_lambda, + ACTIONS(618), 1, + anon_sym_await, + STATE(604), 1, + sym_string, + STATE(618), 1, + sym_primary_expression, + STATE(919), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(610), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(606), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [21290] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(1160), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [21375] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1054), 1, + anon_sym_COMMA, + ACTIONS(1061), 1, + anon_sym_EQ, + ACTIONS(1063), 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(1057), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1052), 16, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [21436] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(1184), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [21521] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(935), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [21606] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(934), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [21691] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(868), 1, + anon_sym_else, + STATE(539), 1, + sym_else_clause, + ACTIONS(1146), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1148), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [21750] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(872), 1, + anon_sym_finally, + STATE(569), 1, + sym_finally_clause, + ACTIONS(1150), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1152), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [21809] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(1145), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [21894] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(1078), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [21979] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(1148), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [22064] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(928), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [22149] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(929), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [22234] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(1152), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [22319] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(391), 1, + sym_identifier, + ACTIONS(397), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(572), 1, + anon_sym_LBRACK, + STATE(696), 1, + sym_primary_expression, + STATE(702), 1, + sym_string, + STATE(1027), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(393), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(993), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(801), 15, + 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, + [22404] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(862), 1, + anon_sym_finally, + STATE(541), 1, + sym_finally_clause, + ACTIONS(1156), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1154), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [22463] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(858), 1, + anon_sym_else, + STATE(544), 1, + sym_else_clause, + ACTIONS(1160), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1158), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [22522] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(391), 1, + sym_identifier, + ACTIONS(397), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(572), 1, + anon_sym_LBRACK, + STATE(696), 1, + sym_primary_expression, + STATE(702), 1, + sym_string, + STATE(1101), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(393), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(993), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(801), 15, + 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, + [22607] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(622), 1, + sym_identifier, + ACTIONS(624), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(634), 1, + anon_sym_LBRACE, + ACTIONS(636), 1, + anon_sym_not, + ACTIONS(638), 1, + anon_sym_lambda, + ACTIONS(644), 1, + anon_sym_await, + ACTIONS(646), 1, + sym__string_start, + STATE(735), 1, + sym_primary_expression, + STATE(741), 1, + sym_string, + STATE(1046), 1, + sym_expression, + ACTIONS(640), 2, + sym_ellipsis, + sym_float, + ACTIONS(630), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(642), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(626), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(1053), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(812), 15, + 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, + [22692] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(858), 1, + anon_sym_else, + STATE(517), 1, + sym_else_clause, + ACTIONS(1125), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1127), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [22751] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(391), 1, + sym_identifier, + ACTIONS(397), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(572), 1, + anon_sym_LBRACK, + STATE(696), 1, + sym_primary_expression, + STATE(702), 1, + sym_string, + STATE(996), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(393), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(993), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(801), 15, + 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, + [22836] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(391), 1, + sym_identifier, + ACTIONS(397), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(572), 1, + anon_sym_LBRACK, + STATE(696), 1, + sym_primary_expression, + STATE(702), 1, + sym_string, + STATE(1204), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(393), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(993), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(801), 15, + 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, + [22921] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(622), 1, + sym_identifier, + ACTIONS(624), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(634), 1, + anon_sym_LBRACE, + ACTIONS(636), 1, + anon_sym_not, + ACTIONS(638), 1, + anon_sym_lambda, + ACTIONS(644), 1, + anon_sym_await, + ACTIONS(646), 1, + sym__string_start, + STATE(735), 1, + sym_primary_expression, + STATE(741), 1, + sym_string, + STATE(1112), 1, + sym_expression, + ACTIONS(640), 2, + sym_ellipsis, + sym_float, + ACTIONS(630), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(642), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(626), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(1053), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(812), 15, + 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, + [23006] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(391), 1, + sym_identifier, + ACTIONS(397), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(572), 1, + anon_sym_LBRACK, + STATE(696), 1, + sym_primary_expression, + STATE(702), 1, + sym_string, + STATE(987), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(393), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(993), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(801), 15, + 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, + [23091] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(622), 1, + sym_identifier, + ACTIONS(624), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(634), 1, + anon_sym_LBRACE, + ACTIONS(636), 1, + anon_sym_not, + ACTIONS(638), 1, + anon_sym_lambda, + ACTIONS(644), 1, + anon_sym_await, + ACTIONS(646), 1, + sym__string_start, + STATE(735), 1, + sym_primary_expression, + STATE(741), 1, + sym_string, + STATE(1047), 1, + sym_expression, + ACTIONS(640), 2, + sym_ellipsis, + sym_float, + ACTIONS(630), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(642), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(626), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(1053), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(812), 15, + 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, + [23176] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(622), 1, + sym_identifier, + ACTIONS(624), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(634), 1, + anon_sym_LBRACE, + ACTIONS(636), 1, + anon_sym_not, + ACTIONS(638), 1, + anon_sym_lambda, + ACTIONS(644), 1, + anon_sym_await, + ACTIONS(646), 1, + sym__string_start, + STATE(735), 1, + sym_primary_expression, + STATE(741), 1, + sym_string, + STATE(1048), 1, + sym_expression, + ACTIONS(640), 2, + sym_ellipsis, + sym_float, + ACTIONS(630), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(642), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(626), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(1053), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(812), 15, + 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, + [23261] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(622), 1, + sym_identifier, + ACTIONS(624), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(634), 1, + anon_sym_LBRACE, + ACTIONS(636), 1, + anon_sym_not, + ACTIONS(638), 1, + anon_sym_lambda, + ACTIONS(644), 1, + anon_sym_await, + ACTIONS(646), 1, + sym__string_start, + STATE(735), 1, + sym_primary_expression, + STATE(741), 1, + sym_string, + STATE(1051), 1, + sym_expression, + ACTIONS(640), 2, + sym_ellipsis, + sym_float, + ACTIONS(630), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(642), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(626), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(1053), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(812), 15, + 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, + [23346] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(862), 1, + anon_sym_finally, + STATE(509), 1, + sym_finally_clause, + ACTIONS(1150), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1152), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [23405] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(391), 1, + sym_identifier, + ACTIONS(397), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(572), 1, + anon_sym_LBRACK, + STATE(696), 1, + sym_primary_expression, + STATE(702), 1, + sym_string, + STATE(1102), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(393), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(993), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(801), 15, + 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, + [23490] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(947), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [23575] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(622), 1, + sym_identifier, + ACTIONS(624), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(634), 1, + anon_sym_LBRACE, + ACTIONS(636), 1, + anon_sym_not, + ACTIONS(638), 1, + anon_sym_lambda, + ACTIONS(644), 1, + anon_sym_await, + ACTIONS(646), 1, + sym__string_start, + STATE(735), 1, + sym_primary_expression, + STATE(741), 1, + sym_string, + STATE(1054), 1, + sym_expression, + ACTIONS(640), 2, + sym_ellipsis, + sym_float, + ACTIONS(630), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(642), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(626), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(1053), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(812), 15, + 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, + [23660] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(622), 1, + sym_identifier, + ACTIONS(624), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(634), 1, + anon_sym_LBRACE, + ACTIONS(636), 1, + anon_sym_not, + ACTIONS(638), 1, + anon_sym_lambda, + ACTIONS(644), 1, + anon_sym_await, + ACTIONS(646), 1, + sym__string_start, + STATE(735), 1, + sym_primary_expression, + STATE(741), 1, + sym_string, + STATE(1056), 1, + sym_expression, + ACTIONS(640), 2, + sym_ellipsis, + sym_float, + ACTIONS(630), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(642), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(626), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(1053), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(812), 15, + 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, + [23745] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1164), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1162), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45471,12 +43243,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26522] = 3, + [23800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1130), 12, - sym__dedent, + ACTIONS(1166), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -45487,7 +43259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1132), 35, + ACTIONS(1168), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45523,7 +43295,141 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26577] = 18, + [23855] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(1175), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [23940] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(1149), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [24025] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -45534,19 +43440,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(379), 1, + ACTIONS(391), 1, sym_identifier, - ACTIONS(385), 1, + ACTIONS(397), 1, anon_sym_await, ACTIONS(568), 1, anon_sym_LPAREN, ACTIONS(572), 1, anon_sym_LBRACK, - STATE(683), 1, - sym_string, - STATE(710), 1, + STATE(696), 1, sym_primary_expression, - STATE(1064), 1, + STATE(702), 1, + sym_string, + STATE(1011), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, @@ -45560,13 +43466,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(381), 5, + ACTIONS(393), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(974), 7, + STATE(993), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -45574,7 +43480,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(795), 15, + STATE(801), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45590,7 +43496,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [26662] = 18, + [24110] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(274), 1, @@ -45609,11 +43515,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - STATE(607), 1, + STATE(604), 1, sym_string, - STATE(630), 1, + STATE(620), 1, sym_primary_expression, - STATE(1151), 1, + STATE(1084), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, @@ -45633,7 +43539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(905), 7, + STATE(904), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -45641,7 +43547,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45657,7 +43563,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [26747] = 18, + [24195] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(274), 1, @@ -45676,11 +43582,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - STATE(607), 1, + STATE(604), 1, sym_string, - STATE(630), 1, + STATE(620), 1, sym_primary_expression, - STATE(1075), 1, + STATE(1106), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, @@ -45700,7 +43606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(905), 7, + STATE(904), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -45708,7 +43614,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45724,10 +43630,613 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [26832] = 3, + [24280] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1178), 12, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(1107), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [24365] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(602), 1, + sym_identifier, + ACTIONS(604), 1, + anon_sym_LPAREN, + ACTIONS(612), 1, + anon_sym_LBRACK, + ACTIONS(614), 1, + anon_sym_not, + ACTIONS(616), 1, + anon_sym_lambda, + ACTIONS(618), 1, + anon_sym_await, + STATE(604), 1, + sym_string, + STATE(618), 1, + sym_primary_expression, + STATE(917), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(610), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(606), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [24450] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(391), 1, + sym_identifier, + ACTIONS(397), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(572), 1, + anon_sym_LBRACK, + STATE(696), 1, + sym_primary_expression, + STATE(702), 1, + sym_string, + STATE(1100), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(393), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(993), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(801), 15, + 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, + [24535] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(391), 1, + sym_identifier, + ACTIONS(397), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(572), 1, + anon_sym_LBRACK, + STATE(696), 1, + sym_primary_expression, + STATE(702), 1, + sym_string, + STATE(1013), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(393), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(993), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(801), 15, + 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, + [24620] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(945), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [24705] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(1098), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [24790] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(602), 1, + sym_identifier, + ACTIONS(604), 1, + anon_sym_LPAREN, + ACTIONS(612), 1, + anon_sym_LBRACK, + ACTIONS(614), 1, + anon_sym_not, + ACTIONS(616), 1, + anon_sym_lambda, + ACTIONS(618), 1, + anon_sym_await, + STATE(604), 1, + sym_string, + STATE(618), 1, + sym_primary_expression, + STATE(910), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(610), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(606), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [24875] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(602), 1, + sym_identifier, + ACTIONS(604), 1, + anon_sym_LPAREN, + ACTIONS(612), 1, + anon_sym_LBRACK, + ACTIONS(614), 1, + anon_sym_not, + ACTIONS(616), 1, + anon_sym_lambda, + ACTIONS(618), 1, + anon_sym_await, + STATE(604), 1, + sym_string, + STATE(618), 1, + sym_primary_expression, + STATE(918), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(610), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(606), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [24960] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(1200), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [25045] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1110), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -45740,7 +44249,1546 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1176), 34, + ACTIONS(1112), 35, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [25100] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(391), 1, + sym_identifier, + ACTIONS(397), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(572), 1, + anon_sym_LBRACK, + STATE(696), 1, + sym_primary_expression, + STATE(702), 1, + sym_string, + STATE(1017), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(393), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(993), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(801), 15, + 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, + [25185] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(391), 1, + sym_identifier, + ACTIONS(397), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(572), 1, + anon_sym_LBRACK, + STATE(696), 1, + sym_primary_expression, + STATE(702), 1, + sym_string, + STATE(1016), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(393), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(993), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(801), 15, + 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, + [25270] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(858), 1, + anon_sym_else, + STATE(503), 1, + sym_else_clause, + ACTIONS(1172), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1170), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [25329] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(391), 1, + sym_identifier, + ACTIONS(397), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(572), 1, + anon_sym_LBRACK, + STATE(696), 1, + sym_primary_expression, + STATE(702), 1, + sym_string, + STATE(1037), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(393), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(993), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(801), 15, + 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, + [25414] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(858), 1, + anon_sym_else, + STATE(500), 1, + sym_else_clause, + ACTIONS(1176), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1174), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [25473] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(868), 1, + anon_sym_else, + STATE(555), 1, + sym_else_clause, + ACTIONS(1176), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1174), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [25532] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(1180), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [25617] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(1072), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [25702] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(391), 1, + sym_identifier, + ACTIONS(397), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(572), 1, + anon_sym_LBRACK, + STATE(696), 1, + sym_primary_expression, + STATE(702), 1, + sym_string, + STATE(979), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(393), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(993), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(801), 15, + 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, + [25787] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(602), 1, + sym_identifier, + ACTIONS(604), 1, + anon_sym_LPAREN, + ACTIONS(612), 1, + anon_sym_LBRACK, + ACTIONS(614), 1, + anon_sym_not, + ACTIONS(616), 1, + anon_sym_lambda, + ACTIONS(618), 1, + anon_sym_await, + STATE(604), 1, + sym_string, + STATE(618), 1, + sym_primary_expression, + STATE(905), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(610), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(606), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [25872] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(868), 1, + anon_sym_else, + STATE(561), 1, + sym_else_clause, + ACTIONS(1172), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1170), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [25931] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(868), 1, + anon_sym_else, + STATE(556), 1, + sym_else_clause, + ACTIONS(1160), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1158), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [25990] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(602), 1, + sym_identifier, + ACTIONS(604), 1, + anon_sym_LPAREN, + ACTIONS(612), 1, + anon_sym_LBRACK, + ACTIONS(614), 1, + anon_sym_not, + ACTIONS(616), 1, + anon_sym_lambda, + ACTIONS(618), 1, + anon_sym_await, + STATE(604), 1, + sym_string, + STATE(618), 1, + sym_primary_expression, + STATE(916), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(610), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(606), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [26075] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(1177), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [26160] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(858), 1, + anon_sym_else, + STATE(523), 1, + sym_else_clause, + ACTIONS(1146), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1148), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [26219] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1164), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1162), 35, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [26274] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(1189), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [26359] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(391), 1, + sym_identifier, + ACTIONS(397), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(572), 1, + anon_sym_LBRACK, + STATE(696), 1, + sym_primary_expression, + STATE(702), 1, + sym_string, + STATE(1073), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(393), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(993), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(801), 15, + 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, + [26444] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(872), 1, + anon_sym_finally, + STATE(514), 1, + sym_finally_clause, + ACTIONS(1156), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1154), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [26503] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(391), 1, + sym_identifier, + ACTIONS(397), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(572), 1, + anon_sym_LBRACK, + STATE(696), 1, + sym_primary_expression, + STATE(702), 1, + sym_string, + STATE(1117), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(393), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(993), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(801), 15, + 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, + [26588] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1166), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1168), 35, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [26643] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(1197), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [26728] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(391), 1, + sym_identifier, + ACTIONS(397), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(572), 1, + anon_sym_LBRACK, + STATE(696), 1, + sym_primary_expression, + STATE(702), 1, + sym_string, + STATE(1070), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(393), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(993), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(801), 15, + 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, + [26813] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + STATE(604), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + STATE(1161), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(904), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(619), 15, + 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, + [26898] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1180), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1178), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45775,418 +45823,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26886] = 3, + [26952] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1182), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1180), 34, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_case, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [26940] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1186), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1184), 34, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_case, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [26994] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1178), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1176), 34, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [27048] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1190), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1188), 34, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [27102] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1190), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1188), 34, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [27156] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1192), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1194), 34, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_case, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [27210] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1198), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1196), 34, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_case, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [27264] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1182), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1180), 34, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_case, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [27318] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1186), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -46216,9 +45856,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_match, - anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -46234,10 +45874,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27372] = 3, + [27006] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1192), 12, + ACTIONS(1188), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -46250,7 +45890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1194), 34, + ACTIONS(1186), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46285,10 +45925,112 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27426] = 3, + [27060] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1198), 12, + ACTIONS(1192), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1190), 34, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_case, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [27114] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1182), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1184), 34, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [27168] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1194), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -46336,160 +46078,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27480] = 3, + [27222] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1200), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1202), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [27533] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1204), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1206), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [27586] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1208), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1210), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [27639] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1214), 12, + ACTIONS(1194), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -46502,7 +46094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1212), 33, + ACTIONS(1196), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46521,6 +46113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_with, anon_sym_match, + anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -46536,7 +46129,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27692] = 3, + [27276] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1200), 12, @@ -46552,7 +46145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1202), 33, + ACTIONS(1198), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46571,6 +46164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_with, anon_sym_match, + anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -46586,10 +46180,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27745] = 3, + [27330] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1216), 12, + ACTIONS(1180), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -46602,7 +46196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1218), 33, + ACTIONS(1178), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46619,6 +46213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_match, anon_sym_def, @@ -46636,60 +46231,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27798] = 3, + [27384] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1108), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1110), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [27851] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1220), 12, + ACTIONS(1200), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -46702,7 +46247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1222), 33, + ACTIONS(1198), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46721,6 +46266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_with, anon_sym_match, + anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -46736,10 +46282,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27904] = 3, + [27438] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1224), 12, + ACTIONS(1188), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -46752,7 +46298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1226), 33, + ACTIONS(1186), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46771,6 +46317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_with, anon_sym_match, + anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -46786,10 +46333,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27957] = 3, + [27492] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1108), 12, + ACTIONS(1192), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -46802,7 +46349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1110), 33, + ACTIONS(1190), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46821,6 +46368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_with, anon_sym_match, + anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -46836,10 +46384,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28010] = 3, + [27546] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1228), 12, + ACTIONS(1202), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -46852,7 +46400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1230), 33, + ACTIONS(1204), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46886,10 +46434,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28063] = 3, + [27599] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 12, + ACTIONS(1206), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -46902,7 +46450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1234), 33, + ACTIONS(1208), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46936,3160 +46484,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28116] = 3, + [27652] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(844), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(842), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [28169] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(844), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(842), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [28222] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1238), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1236), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [28275] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1242), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1240), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [28328] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1244), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1246), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [28381] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1248), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1250), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [28434] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1238), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1236), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [28487] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1254), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1252), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [28540] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1258), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1256), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [28593] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1262), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1260), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [28646] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1264), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1266), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [28699] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1268), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [28752] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1274), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1272), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [28805] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1278), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1276), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [28858] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1106), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1104), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [28911] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1242), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1240), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [28964] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1280), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1282), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [29017] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1284), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1286), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [29070] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1290), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1288), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [29123] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1294), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1292), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [29176] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1296), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1298), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [29229] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1302), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [29282] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1306), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [29335] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1308), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1310), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [29388] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1314), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1312), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [29441] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1318), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1316), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [29494] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1322), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1320), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [29547] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1324), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1326), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [29600] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1328), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1330), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [29653] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1106), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1104), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [29706] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1334), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1332), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [29759] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1338), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1336), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [29812] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1220), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1222), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [29865] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1340), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1342), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [29918] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1344), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1346), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [29971] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1348), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1350), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [30024] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1216), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1218), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [30077] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1228), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1230), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [30130] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1348), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1350), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [30183] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1334), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1332), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [30236] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1308), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1310), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [30289] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1352), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1354), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [30342] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1356), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1358), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [30395] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1360), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1362), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [30448] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1278), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1276), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [30501] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1338), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1336), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [30554] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1340), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1342), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [30607] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1328), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1330), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [30660] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1360), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1362), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [30713] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1306), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [30766] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1366), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1364), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [30819] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1274), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1272), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [30872] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1370), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1368), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [30925] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1374), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1372), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [30978] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1248), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1250), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [31031] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1214), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1212), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [31084] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1284), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1286), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [31137] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1376), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1378), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [31190] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1254), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1252), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [31243] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1258), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1256), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [31296] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1262), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1260), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [31349] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1224), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1226), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [31402] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1268), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [31455] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1208), 12, + ACTIONS(1212), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -50136,60 +46534,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31508] = 3, + [27705] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1364), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [31561] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1264), 12, + ACTIONS(1216), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -50202,7 +46550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1266), 33, + ACTIONS(1214), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -50236,60 +46584,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31614] = 3, + [27758] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(854), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(852), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [31667] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1280), 12, + ACTIONS(1220), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -50302,7 +46600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1282), 33, + ACTIONS(1218), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -50336,110 +46634,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31720] = 3, + [27811] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1374), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1372), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [31773] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1370), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1368), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [31826] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(854), 12, + ACTIONS(1224), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -50452,7 +46650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(852), 33, + ACTIONS(1222), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -50486,160 +46684,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31879] = 3, + [27864] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1288), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [31932] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1294), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1292), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [31985] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1314), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1312), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [32038] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1204), 12, + ACTIONS(1228), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -50652,7 +46700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1206), 33, + ACTIONS(1226), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -50686,307 +46734,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [32091] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1324), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1326), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [32144] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1318), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1316), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [32197] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1356), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1358), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [32250] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1352), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1354), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [32303] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1344), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1346), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [32356] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1322), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1320), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [32409] = 3, + [27917] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1232), 12, @@ -51002,7 +46750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1234), 33, + ACTIONS(1230), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -51036,10 +46784,60 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [32462] = 3, + [27970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1296), 12, + ACTIONS(1234), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1236), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [28023] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1240), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -51052,7 +46850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1298), 33, + ACTIONS(1238), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -51086,12 +46884,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [32515] = 3, + [28076] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 12, - sym__dedent, + ACTIONS(1242), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -51102,7 +46900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1302), 33, + ACTIONS(1244), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -51136,10 +46934,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [32568] = 3, + [28129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 12, + ACTIONS(1248), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -51186,10 +46984,4060 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [32621] = 3, + [28182] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1376), 12, + ACTIONS(1250), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1252), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [28235] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1256), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1254), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [28288] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1156), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1154), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [28341] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(864), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(866), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [28394] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1258), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1260), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [28447] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1262), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1264), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [28500] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1266), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1268), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [28553] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1272), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1270), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [28606] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1276), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1274), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [28659] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1280), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1278), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [28712] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1284), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1282), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [28765] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1288), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1286), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [28818] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1292), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1290), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [28871] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1296), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1294), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [28924] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1300), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1298), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [28977] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(864), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(866), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [29030] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1156), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1154), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [29083] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1302), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1304), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [29136] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1306), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [29189] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1312), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1310), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [29242] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1316), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1314), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [29295] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1318), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1320), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [29348] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1322), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1324), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [29401] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1328), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1326), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [29454] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1328), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1326), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [29507] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1332), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1330), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [29560] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1336), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1334), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [29613] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1150), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1152), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [29666] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1300), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1298), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [29719] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1296), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1294), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [29772] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1338), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1340), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [29825] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1258), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1260), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [29878] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1266), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1268), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [29931] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1318), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1320), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [29984] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1344), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1342), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30037] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1346), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1348), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30090] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1302), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1304), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30143] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1292), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1290), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30196] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1350), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1352), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30249] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1284), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1282), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30302] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1322), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1324), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30355] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1338), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1340), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30408] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1354), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1356), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30461] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1358), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1360), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30514] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1250), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1252), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30567] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1212), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1210), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30620] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1344), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1342), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30673] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1216), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1214), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30726] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1234), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1236), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30779] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1220), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1218), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30832] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1364), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1362), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30885] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1224), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1222), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30938] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1368), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1366), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30991] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1228), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1226), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31044] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1232), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1230), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31097] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1240), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1238), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31150] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1364), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1362), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31203] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1372), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1370), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31256] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(856), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(854), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31309] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1248), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1246), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31362] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1256), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1254), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31415] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1272), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1270), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31468] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1276), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1274), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31521] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1372), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1370), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31574] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1280), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1278), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31627] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1368), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1366), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31680] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1288), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1286), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31733] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1150), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1152), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31786] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1242), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1244), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31839] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1350), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1352), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31892] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(856), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(854), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31945] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1306), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31998] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1374), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1376), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32051] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1206), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1208), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32104] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1312), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1310), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32157] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1358), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1360), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32210] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1316), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1314), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32263] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1332), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1330), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32316] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1354), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1356), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32369] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1346), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1348), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32422] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1336), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1334), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32475] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1380), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -51236,42 +51084,306 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [32674] = 19, + [32528] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1374), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1376), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32581] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1380), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1378), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32634] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1262), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1264), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32687] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1202), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1204), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32740] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, anon_sym_LBRACE, ACTIONS(315), 1, sym__string_start, + ACTIONS(678), 1, + sym_identifier, + ACTIONS(680), 1, + anon_sym_LPAREN, ACTIONS(690), 1, - sym_identifier, - ACTIONS(692), 1, - anon_sym_LPAREN, - ACTIONS(702), 1, anon_sym_LBRACK, - ACTIONS(1380), 1, - anon_sym_RPAREN, - ACTIONS(1382), 1, + ACTIONS(1384), 1, anon_sym_STAR, - STATE(607), 1, + STATE(604), 1, sym_string, - STATE(883), 1, - sym_primary_expression, - STATE(1167), 1, + STATE(874), 1, sym_pattern, - STATE(1446), 1, + STATE(885), 1, + sym_primary_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(1382), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(768), 2, + sym_attribute, + sym_subscript, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(880), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(684), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(619), 13, + 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, + [32822] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(678), 1, + sym_identifier, + ACTIONS(680), 1, + anon_sym_LPAREN, + ACTIONS(690), 1, + anon_sym_LBRACK, + ACTIONS(1384), 1, + anon_sym_STAR, + ACTIONS(1386), 1, + anon_sym_RPAREN, + STATE(604), 1, + sym_string, + STATE(885), 1, + sym_primary_expression, + STATE(1137), 1, + sym_pattern, + STATE(1448), 1, sym__patterns, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(770), 2, + STATE(768), 2, sym_attribute, sym_subscript, ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(878), 3, + STATE(880), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, @@ -51280,14 +51392,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(696), 6, + ACTIONS(684), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(622), 13, + STATE(619), 13, sym_binary_operator, sym_unary_operator, sym_call, @@ -51301,41 +51413,41 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [32758] = 18, + [32906] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, anon_sym_LBRACE, ACTIONS(315), 1, sym__string_start, - ACTIONS(690), 1, + ACTIONS(678), 1, sym_identifier, - ACTIONS(692), 1, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(702), 1, + ACTIONS(690), 1, anon_sym_LBRACK, - ACTIONS(1382), 1, + ACTIONS(1384), 1, anon_sym_STAR, - STATE(607), 1, + STATE(604), 1, sym_string, - STATE(877), 1, + STATE(874), 1, sym_pattern, - STATE(883), 1, + STATE(885), 1, sym_primary_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(1384), 2, + ACTIONS(1388), 2, anon_sym_RPAREN, anon_sym_RBRACK, - STATE(770), 2, + STATE(768), 2, sym_attribute, sym_subscript, ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(878), 3, + STATE(880), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, @@ -51344,14 +51456,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(696), 6, + ACTIONS(684), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(622), 13, + STATE(619), 13, sym_binary_operator, sym_unary_operator, sym_call, @@ -51365,149 +51477,22 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [32840] = 18, + [32988] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, + ACTIONS(1394), 1, sym__string_start, - ACTIONS(690), 1, - sym_identifier, - ACTIONS(692), 1, - anon_sym_LPAREN, - ACTIONS(702), 1, - anon_sym_LBRACK, - ACTIONS(1382), 1, - anon_sym_STAR, - STATE(607), 1, - sym_string, - STATE(877), 1, - sym_pattern, - STATE(883), 1, - sym_primary_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(1386), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(770), 2, - sym_attribute, - sym_subscript, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(878), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(696), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(622), 13, - 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, - [32922] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(690), 1, - sym_identifier, - ACTIONS(692), 1, - anon_sym_LPAREN, - ACTIONS(702), 1, - anon_sym_LBRACK, - ACTIONS(1382), 1, - anon_sym_STAR, - STATE(607), 1, - sym_string, - STATE(883), 1, - sym_primary_expression, - STATE(1221), 1, - sym_pattern, - STATE(1529), 1, - sym_pattern_list, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(770), 2, - sym_attribute, - sym_subscript, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(878), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(696), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(622), 13, - 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, - [33003] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1392), 1, - sym__string_start, - STATE(600), 2, + STATE(599), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1390), 6, + ACTIONS(1392), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1388), 34, + ACTIONS(1390), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -51542,22 +51527,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [33058] = 5, + [33043] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(678), 1, + sym_identifier, + ACTIONS(680), 1, + anon_sym_LPAREN, + ACTIONS(690), 1, + anon_sym_LBRACK, + ACTIONS(1384), 1, + anon_sym_STAR, + STATE(604), 1, + sym_string, + STATE(885), 1, + sym_primary_expression, + STATE(1260), 1, + sym_pattern, + STATE(1503), 1, + sym_pattern_list, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + STATE(768), 2, + sym_attribute, + sym_subscript, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(880), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(684), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(619), 13, + 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, + [33124] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(315), 1, sym__string_start, - STATE(600), 2, + STATE(599), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1397), 6, + ACTIONS(1399), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1395), 34, + ACTIONS(1397), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -51592,40 +51640,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [33113] = 18, + [33179] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, anon_sym_LBRACE, ACTIONS(315), 1, sym__string_start, - ACTIONS(690), 1, + ACTIONS(678), 1, sym_identifier, - ACTIONS(692), 1, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(702), 1, + ACTIONS(690), 1, anon_sym_LBRACK, - ACTIONS(1382), 1, + ACTIONS(1384), 1, anon_sym_STAR, - STATE(607), 1, + STATE(604), 1, sym_string, - STATE(883), 1, + STATE(885), 1, sym_primary_expression, - STATE(1263), 1, + STATE(1224), 1, sym_pattern, - STATE(1413), 1, + STATE(1531), 1, sym_pattern_list, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(770), 2, + STATE(768), 2, sym_attribute, sym_subscript, ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(878), 3, + STATE(880), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, @@ -51634,14 +51682,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(696), 6, + ACTIONS(684), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(622), 13, + STATE(619), 13, sym_binary_operator, sym_unary_operator, sym_call, @@ -51655,40 +51703,40 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [33194] = 18, + [33260] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, anon_sym_LBRACE, ACTIONS(315), 1, sym__string_start, - ACTIONS(690), 1, + ACTIONS(678), 1, sym_identifier, - ACTIONS(692), 1, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(702), 1, + ACTIONS(690), 1, anon_sym_LBRACK, - ACTIONS(1382), 1, + ACTIONS(1384), 1, anon_sym_STAR, - STATE(607), 1, + STATE(604), 1, sym_string, - STATE(883), 1, + STATE(885), 1, sym_primary_expression, - STATE(1305), 1, + STATE(1307), 1, sym_pattern, - STATE(1476), 1, + STATE(1483), 1, sym_pattern_list, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(770), 2, + STATE(768), 2, sym_attribute, sym_subscript, ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(878), 3, + STATE(880), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, @@ -51697,14 +51745,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(696), 6, + ACTIONS(684), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(622), 13, + STATE(619), 13, sym_binary_operator, sym_unary_operator, sym_call, @@ -51718,196 +51766,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [33275] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(690), 1, - sym_identifier, - ACTIONS(692), 1, - anon_sym_LPAREN, - ACTIONS(702), 1, - anon_sym_LBRACK, - ACTIONS(1382), 1, - anon_sym_STAR, - STATE(607), 1, - sym_string, - STATE(883), 1, - sym_primary_expression, - STATE(1259), 1, - sym_pattern, - STATE(1501), 1, - sym_pattern_list, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(770), 2, - sym_attribute, - sym_subscript, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(878), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(696), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(622), 13, - 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, - [33356] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(690), 1, - sym_identifier, - ACTIONS(692), 1, - anon_sym_LPAREN, - ACTIONS(702), 1, - anon_sym_LBRACK, - ACTIONS(1382), 1, - anon_sym_STAR, - STATE(607), 1, - sym_string, - STATE(883), 1, - sym_primary_expression, - STATE(1325), 1, - sym_pattern, - STATE(1461), 1, - sym_pattern_list, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(770), 2, - sym_attribute, - sym_subscript, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(878), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(696), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(622), 13, - 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, - [33437] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(690), 1, - sym_identifier, - ACTIONS(692), 1, - anon_sym_LPAREN, - ACTIONS(702), 1, - anon_sym_LBRACK, - ACTIONS(1382), 1, - anon_sym_STAR, - STATE(607), 1, - sym_string, - STATE(883), 1, - sym_primary_expression, - STATE(1223), 1, - sym_pattern, - STATE(1526), 1, - sym_pattern_list, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(770), 2, - sym_attribute, - sym_subscript, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(878), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(696), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(622), 13, - 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, - [33518] = 5, + [33341] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(315), 1, @@ -51915,14 +51774,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(601), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1036), 6, + ACTIONS(1057), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1031), 34, + ACTIONS(1052), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -51957,38 +51816,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [33573] = 17, + [33396] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, anon_sym_LBRACE, ACTIONS(315), 1, sym__string_start, - ACTIONS(690), 1, + ACTIONS(678), 1, sym_identifier, - ACTIONS(692), 1, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(702), 1, + ACTIONS(690), 1, anon_sym_LBRACK, - ACTIONS(1382), 1, + ACTIONS(1384), 1, anon_sym_STAR, - STATE(607), 1, + STATE(604), 1, sym_string, - STATE(877), 1, - sym_pattern, - STATE(883), 1, + STATE(885), 1, sym_primary_expression, + STATE(1331), 1, + sym_pattern, + STATE(1466), 1, + sym_pattern_list, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(770), 2, + STATE(768), 2, sym_attribute, sym_subscript, ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(878), 3, + STATE(880), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, @@ -51997,14 +51858,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(696), 6, + ACTIONS(684), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(622), 13, + STATE(619), 13, sym_binary_operator, sym_unary_operator, sym_call, @@ -52018,38 +51879,40 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [33651] = 17, + [33477] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, anon_sym_LBRACE, ACTIONS(315), 1, sym__string_start, - ACTIONS(690), 1, + ACTIONS(678), 1, sym_identifier, - ACTIONS(692), 1, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(702), 1, + ACTIONS(690), 1, anon_sym_LBRACK, - ACTIONS(1382), 1, + ACTIONS(1384), 1, anon_sym_STAR, - STATE(607), 1, + STATE(604), 1, sym_string, - STATE(883), 1, + STATE(885), 1, sym_primary_expression, - STATE(1215), 1, + STATE(1217), 1, sym_pattern, + STATE(1416), 1, + sym_pattern_list, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(770), 2, + STATE(768), 2, sym_attribute, sym_subscript, ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(878), 3, + STATE(880), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, @@ -52058,14 +51921,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(696), 6, + ACTIONS(684), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(622), 13, + STATE(619), 13, sym_binary_operator, sym_unary_operator, sym_call, @@ -52079,17 +51942,202 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [33729] = 3, + [33558] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1401), 6, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(678), 1, + sym_identifier, + ACTIONS(680), 1, + anon_sym_LPAREN, + ACTIONS(690), 1, + anon_sym_LBRACK, + ACTIONS(1384), 1, + anon_sym_STAR, + STATE(604), 1, + sym_string, + STATE(885), 1, + sym_primary_expression, + STATE(1225), 1, + sym_pattern, + STATE(1528), 1, + sym_pattern_list, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + STATE(768), 2, + sym_attribute, + sym_subscript, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(880), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(684), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(619), 13, + 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, + [33639] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(678), 1, + sym_identifier, + ACTIONS(680), 1, + anon_sym_LPAREN, + ACTIONS(690), 1, + anon_sym_LBRACK, + ACTIONS(1384), 1, + anon_sym_STAR, + STATE(604), 1, + sym_string, + STATE(885), 1, + sym_primary_expression, + STATE(1281), 1, + sym_pattern, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + STATE(768), 2, + sym_attribute, + sym_subscript, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(880), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(684), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(619), 13, + 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, + [33717] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(678), 1, + sym_identifier, + ACTIONS(680), 1, + anon_sym_LPAREN, + ACTIONS(690), 1, + anon_sym_LBRACK, + ACTIONS(1384), 1, + anon_sym_STAR, + STATE(604), 1, + sym_string, + STATE(874), 1, + sym_pattern, + STATE(885), 1, + sym_primary_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + STATE(768), 2, + sym_attribute, + sym_subscript, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(880), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(684), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(619), 13, + 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, + [33795] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1403), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1399), 35, + ACTIONS(1401), 35, sym__string_start, anon_sym_DOT, anon_sym_LPAREN, @@ -52125,17 +52173,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [33778] = 3, + [33844] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1405), 6, + ACTIONS(1407), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1403), 35, + ACTIONS(1405), 35, sym__string_start, anon_sym_DOT, anon_sym_LPAREN, @@ -52171,17 +52219,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [33827] = 3, + [33893] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1409), 6, + ACTIONS(1411), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1407), 34, + ACTIONS(1409), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -52216,17 +52264,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [33875] = 3, + [33941] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1413), 6, + ACTIONS(1415), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1411), 34, + ACTIONS(1413), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -52261,97 +52309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [33923] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1417), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1415), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [33971] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1421), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1419), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [34019] = 3, + [33989] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(276), 6, @@ -52396,17 +52354,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [34067] = 3, + [34037] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1425), 6, + ACTIONS(1419), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1423), 34, + ACTIONS(1417), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -52441,17 +52399,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [34115] = 3, + [34085] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1429), 6, + ACTIONS(1423), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1427), 34, + ACTIONS(1421), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -52486,17 +52444,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [34163] = 3, + [34133] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1421), 6, + ACTIONS(1419), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1419), 34, + ACTIONS(1417), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -52531,103 +52489,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [34211] = 3, + [34181] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1433), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1431), 34, + ACTIONS(1425), 1, anon_sym_DOT, + ACTIONS(1427), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, + ACTIONS(1431), 1, + anon_sym_as, + ACTIONS(1439), 1, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1443), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(1445), 1, anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [34259] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1435), 1, - anon_sym_DOT, - ACTIONS(1437), 1, - anon_sym_LPAREN, - ACTIONS(1441), 1, - anon_sym_as, ACTIONS(1449), 1, - anon_sym_PIPE, - ACTIONS(1453), 1, - anon_sym_LBRACK, - ACTIONS(1455), 1, - anon_sym_STAR_STAR, - ACTIONS(1459), 1, anon_sym_not, - ACTIONS(1461), 1, + ACTIONS(1451), 1, anon_sym_AMP, - ACTIONS(1463), 1, + ACTIONS(1453), 1, anon_sym_CARET, - ACTIONS(1467), 1, + ACTIONS(1457), 1, anon_sym_is, - STATE(869), 1, + STATE(872), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1443), 2, + ACTIONS(1433), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1445), 2, + ACTIONS(1435), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1451), 2, + ACTIONS(1441), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1465), 2, + ACTIONS(1455), 2, anon_sym_LT, anon_sym_GT, - STATE(634), 2, + STATE(612), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1457), 3, + ACTIONS(1447), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1447), 6, + ACTIONS(1437), 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(1439), 10, + ACTIONS(1429), 10, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -52638,17 +52551,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [34341] = 3, + [34263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1036), 6, + ACTIONS(1057), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1031), 34, + ACTIONS(1052), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -52683,199 +52596,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [34389] = 15, + [34311] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(278), 1, + ACTIONS(1425), 1, + anon_sym_DOT, + ACTIONS(1427), 1, anon_sym_LPAREN, - ACTIONS(293), 1, + ACTIONS(1431), 1, + anon_sym_EQ, + ACTIONS(1443), 1, anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, + ACTIONS(1465), 1, + anon_sym_PIPE, ACTIONS(1469), 1, - sym_identifier, - STATE(607), 1, - sym_string, - STATE(883), 1, - sym_primary_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(767), 2, - sym_attribute, - sym_subscript, - ACTIONS(301), 3, + anon_sym_STAR_STAR, + ACTIONS(1473), 1, + anon_sym_not, + ACTIONS(1475), 1, + anon_sym_AMP, + ACTIONS(1477), 1, + anon_sym_CARET, + ACTIONS(1481), 1, + anon_sym_is, + STATE(870), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1459), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1461), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1467), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1471), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1473), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(622), 13, - 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, + ACTIONS(1479), 2, + anon_sym_LT, + anon_sym_GT, + STATE(612), 2, + sym_argument_list, sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [34461] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1477), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1475), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, + ACTIONS(1471), 3, anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, + ACTIONS(1463), 6, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [34509] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1481), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1479), 34, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(1429), 10, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, sym_type_conversion, - [34557] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1477), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1475), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [34605] = 3, + [34393] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1485), 6, @@ -52920,2035 +52703,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [34653] = 3, + [34441] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1489), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1487), 34, - anon_sym_DOT, + ACTIONS(278), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(293), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [34701] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1493), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1491), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [34749] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1435), 1, - anon_sym_DOT, - ACTIONS(1437), 1, - anon_sym_LPAREN, - ACTIONS(1441), 1, - anon_sym_EQ, - ACTIONS(1453), 1, - anon_sym_LBRACK, - ACTIONS(1501), 1, - anon_sym_PIPE, - ACTIONS(1505), 1, - anon_sym_STAR_STAR, - ACTIONS(1509), 1, - anon_sym_not, - ACTIONS(1511), 1, - anon_sym_AMP, - ACTIONS(1513), 1, - anon_sym_CARET, - ACTIONS(1517), 1, - anon_sym_is, - STATE(871), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(1495), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1497), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1503), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1515), 2, - anon_sym_LT, - anon_sym_GT, - STATE(634), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1507), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1499), 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(1439), 10, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - sym_type_conversion, - [34831] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1413), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1411), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [34879] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1521), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1519), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [34927] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1525), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1523), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [34975] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1529), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1527), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [35023] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1533), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1531), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [35071] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1537), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1535), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [35119] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1541), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1539), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [35167] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1545), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1543), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [35215] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1493), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1491), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [35263] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1549), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1547), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [35311] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1553), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1551), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [35359] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1557), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1555), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [35407] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1561), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1559), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [35455] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1565), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1563), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [35503] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1569), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1567), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [35551] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1435), 1, - anon_sym_DOT, - ACTIONS(1437), 1, - anon_sym_LPAREN, - ACTIONS(1453), 1, - anon_sym_LBRACK, - ACTIONS(1505), 1, - anon_sym_STAR_STAR, - STATE(634), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1573), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1571), 28, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [35608] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1435), 1, - anon_sym_DOT, - ACTIONS(1437), 1, - anon_sym_LPAREN, - ACTIONS(1453), 1, - anon_sym_LBRACK, - ACTIONS(1501), 1, - anon_sym_PIPE, - ACTIONS(1505), 1, - anon_sym_STAR_STAR, - ACTIONS(1511), 1, - anon_sym_AMP, - ACTIONS(1513), 1, - anon_sym_CARET, - ACTIONS(1495), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1497), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1503), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(634), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1507), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1577), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1575), 18, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [35679] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1435), 1, - anon_sym_DOT, - ACTIONS(1437), 1, - anon_sym_LPAREN, - ACTIONS(1453), 1, - anon_sym_LBRACK, - ACTIONS(1505), 1, - anon_sym_STAR_STAR, - ACTIONS(1495), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1503), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(634), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1507), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1581), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1579), 23, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [35742] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1435), 1, - anon_sym_DOT, - ACTIONS(1437), 1, - anon_sym_LPAREN, - ACTIONS(1453), 1, - anon_sym_LBRACK, - ACTIONS(1505), 1, - anon_sym_STAR_STAR, - STATE(634), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1581), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1579), 28, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [35799] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1435), 1, - anon_sym_DOT, - ACTIONS(1437), 1, - anon_sym_LPAREN, - ACTIONS(1453), 1, - anon_sym_LBRACK, - ACTIONS(1455), 1, - anon_sym_STAR_STAR, - ACTIONS(1443), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1451), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(634), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1457), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1581), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1579), 23, - 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_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [35862] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1435), 1, - anon_sym_DOT, - ACTIONS(1437), 1, - anon_sym_LPAREN, - ACTIONS(1449), 1, - anon_sym_PIPE, - ACTIONS(1453), 1, - anon_sym_LBRACK, - ACTIONS(1455), 1, - anon_sym_STAR_STAR, - ACTIONS(1461), 1, - anon_sym_AMP, - ACTIONS(1463), 1, - anon_sym_CARET, - ACTIONS(1443), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1445), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1451), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(634), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1457), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1577), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1575), 18, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [35933] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1435), 1, - anon_sym_DOT, - ACTIONS(1437), 1, - anon_sym_LPAREN, - ACTIONS(1453), 1, - anon_sym_LBRACK, - ACTIONS(1455), 1, - anon_sym_STAR_STAR, - ACTIONS(1461), 1, - anon_sym_AMP, - ACTIONS(1463), 1, - anon_sym_CARET, - ACTIONS(1443), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1445), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1451), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(634), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1457), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1581), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1579), 19, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [36002] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1435), 1, - anon_sym_DOT, - ACTIONS(1437), 1, - anon_sym_LPAREN, - ACTIONS(1449), 1, - anon_sym_PIPE, - ACTIONS(1453), 1, - anon_sym_LBRACK, - ACTIONS(1455), 1, - anon_sym_STAR_STAR, - ACTIONS(1461), 1, - anon_sym_AMP, - ACTIONS(1463), 1, - anon_sym_CARET, - ACTIONS(1443), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1445), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1451), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(634), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1457), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1585), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1583), 18, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [36073] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1435), 1, - anon_sym_DOT, - ACTIONS(1437), 1, - anon_sym_LPAREN, - ACTIONS(1449), 1, - anon_sym_PIPE, - ACTIONS(1453), 1, - anon_sym_LBRACK, - ACTIONS(1455), 1, - anon_sym_STAR_STAR, - ACTIONS(1461), 1, - anon_sym_AMP, - ACTIONS(1463), 1, - anon_sym_CARET, - ACTIONS(1443), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1445), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1451), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(634), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1457), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1589), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1587), 18, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [36144] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1435), 1, - anon_sym_DOT, - ACTIONS(1437), 1, - anon_sym_LPAREN, - ACTIONS(1453), 1, - anon_sym_LBRACK, - ACTIONS(1455), 1, - anon_sym_STAR_STAR, - STATE(634), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1573), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1571), 28, - 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_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [36201] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1435), 1, - anon_sym_DOT, - ACTIONS(1437), 1, - anon_sym_LPAREN, - ACTIONS(1453), 1, - anon_sym_LBRACK, - ACTIONS(1505), 1, - anon_sym_STAR_STAR, - ACTIONS(1513), 1, - anon_sym_CARET, - ACTIONS(1495), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1497), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1503), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(634), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1507), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1581), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1579), 20, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [36268] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1435), 1, - anon_sym_DOT, - ACTIONS(1437), 1, - anon_sym_LPAREN, - ACTIONS(1453), 1, - anon_sym_LBRACK, - ACTIONS(1505), 1, - anon_sym_STAR_STAR, - STATE(634), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1581), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1579), 28, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [36325] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1435), 1, - anon_sym_DOT, - ACTIONS(1437), 1, - anon_sym_LPAREN, - ACTIONS(1453), 1, - anon_sym_LBRACK, - ACTIONS(1501), 1, - anon_sym_PIPE, - ACTIONS(1505), 1, - anon_sym_STAR_STAR, - ACTIONS(1511), 1, - anon_sym_AMP, - ACTIONS(1513), 1, - anon_sym_CARET, - ACTIONS(1495), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1497), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1503), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(634), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1507), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1585), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1583), 18, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [36396] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1435), 1, - anon_sym_DOT, - ACTIONS(1437), 1, - anon_sym_LPAREN, - ACTIONS(1453), 1, - anon_sym_LBRACK, - ACTIONS(1455), 1, - anon_sym_STAR_STAR, - ACTIONS(1463), 1, - anon_sym_CARET, - ACTIONS(1443), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1445), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1451), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(634), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1457), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1581), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1579), 20, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [36463] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1435), 1, - anon_sym_DOT, - ACTIONS(1437), 1, - anon_sym_LPAREN, - ACTIONS(1453), 1, - anon_sym_LBRACK, - ACTIONS(1501), 1, - anon_sym_PIPE, - ACTIONS(1505), 1, - anon_sym_STAR_STAR, - ACTIONS(1511), 1, - anon_sym_AMP, - ACTIONS(1513), 1, - anon_sym_CARET, - ACTIONS(1495), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1497), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1503), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(634), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1507), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1589), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1587), 18, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [36534] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1435), 1, - anon_sym_DOT, - ACTIONS(1437), 1, - anon_sym_LPAREN, - ACTIONS(1453), 1, - anon_sym_LBRACK, - ACTIONS(1455), 1, - anon_sym_STAR_STAR, - ACTIONS(1443), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(634), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1457), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1581), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1579), 25, - 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_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [36595] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1435), 1, - anon_sym_DOT, - ACTIONS(1437), 1, - anon_sym_LPAREN, - ACTIONS(1453), 1, - anon_sym_LBRACK, - ACTIONS(1505), 1, - anon_sym_STAR_STAR, - ACTIONS(1495), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1497), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1503), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(634), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1507), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1581), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1579), 21, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [36660] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1435), 1, - anon_sym_DOT, - ACTIONS(1437), 1, - anon_sym_LPAREN, - ACTIONS(1453), 1, - anon_sym_LBRACK, - ACTIONS(1455), 1, - anon_sym_STAR_STAR, - STATE(634), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1581), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1579), 28, - 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_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [36717] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1435), 1, - anon_sym_DOT, - ACTIONS(1437), 1, - anon_sym_LPAREN, - ACTIONS(1453), 1, - anon_sym_LBRACK, - ACTIONS(1505), 1, - anon_sym_STAR_STAR, - ACTIONS(1511), 1, - anon_sym_AMP, - ACTIONS(1513), 1, - anon_sym_CARET, - ACTIONS(1495), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1497), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1503), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(634), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1507), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1581), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1579), 19, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [36786] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1435), 1, - anon_sym_DOT, - ACTIONS(1437), 1, - anon_sym_LPAREN, - ACTIONS(1453), 1, - anon_sym_LBRACK, - ACTIONS(1505), 1, - anon_sym_STAR_STAR, - ACTIONS(1495), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(634), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1507), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1581), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1579), 25, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [36847] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1435), 1, - anon_sym_DOT, - ACTIONS(1437), 1, - anon_sym_LPAREN, - ACTIONS(1453), 1, - anon_sym_LBRACK, - ACTIONS(1455), 1, - anon_sym_STAR_STAR, - ACTIONS(1443), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1445), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1451), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(634), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1457), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1581), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1579), 21, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [36912] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1435), 1, - anon_sym_DOT, - ACTIONS(1437), 1, - anon_sym_LPAREN, - ACTIONS(1453), 1, - anon_sym_LBRACK, - ACTIONS(1455), 1, - anon_sym_STAR_STAR, - STATE(634), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1581), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1579), 28, - 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_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [36969] = 13, - ACTIONS(3), 1, - sym_comment, ACTIONS(295), 1, anon_sym_LBRACE, ACTIONS(315), 1, sym__string_start, - ACTIONS(604), 1, - anon_sym_LPAREN, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(1593), 1, - anon_sym_not, - STATE(607), 1, + ACTIONS(1487), 1, + sym_identifier, + STATE(604), 1, sym_string, - STATE(651), 1, + STATE(885), 1, sym_primary_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(610), 3, + STATE(767), 2, + sym_attribute, + sym_subscript, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 5, + ACTIONS(1489), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(311), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(1591), 6, + ACTIONS(1491), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(622), 15, + STATE(619), 13, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -54960,7 +52760,2245 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [37035] = 13, + [34513] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1495), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1493), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [34561] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1499), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1497), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [34609] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1503), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1501), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [34657] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1507), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1505), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [34705] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1511), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1509), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [34753] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1515), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1513), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [34801] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1519), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1517), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [34849] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1523), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1521), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [34897] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1527), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1525), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [34945] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1531), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1529), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [34993] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1415), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1413), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [35041] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1535), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1533), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [35089] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1539), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1537), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [35137] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1543), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1541), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [35185] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1547), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1545), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [35233] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1551), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1549), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [35281] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1555), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1553), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [35329] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1559), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1557), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [35377] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1563), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1561), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [35425] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1567), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1565), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [35473] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1571), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1569), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [35521] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1547), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1545), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [35569] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1495), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1493), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [35617] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1425), 1, + anon_sym_DOT, + ACTIONS(1427), 1, + anon_sym_LPAREN, + ACTIONS(1443), 1, + anon_sym_LBRACK, + ACTIONS(1469), 1, + anon_sym_STAR_STAR, + ACTIONS(1475), 1, + anon_sym_AMP, + ACTIONS(1477), 1, + anon_sym_CARET, + ACTIONS(1459), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1461), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1467), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(612), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1471), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1575), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1573), 19, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [35686] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1425), 1, + anon_sym_DOT, + ACTIONS(1427), 1, + anon_sym_LPAREN, + ACTIONS(1443), 1, + anon_sym_LBRACK, + ACTIONS(1445), 1, + anon_sym_STAR_STAR, + STATE(612), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1575), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1573), 28, + 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_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [35743] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1425), 1, + anon_sym_DOT, + ACTIONS(1427), 1, + anon_sym_LPAREN, + ACTIONS(1443), 1, + anon_sym_LBRACK, + ACTIONS(1465), 1, + anon_sym_PIPE, + ACTIONS(1469), 1, + anon_sym_STAR_STAR, + ACTIONS(1475), 1, + anon_sym_AMP, + ACTIONS(1477), 1, + anon_sym_CARET, + ACTIONS(1459), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1461), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1467), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(612), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1471), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1579), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1577), 18, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [35814] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1425), 1, + anon_sym_DOT, + ACTIONS(1427), 1, + anon_sym_LPAREN, + ACTIONS(1443), 1, + anon_sym_LBRACK, + ACTIONS(1465), 1, + anon_sym_PIPE, + ACTIONS(1469), 1, + anon_sym_STAR_STAR, + ACTIONS(1475), 1, + anon_sym_AMP, + ACTIONS(1477), 1, + anon_sym_CARET, + ACTIONS(1459), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1461), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1467), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(612), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1471), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1583), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1581), 18, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [35885] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1425), 1, + anon_sym_DOT, + ACTIONS(1427), 1, + anon_sym_LPAREN, + ACTIONS(1443), 1, + anon_sym_LBRACK, + ACTIONS(1469), 1, + anon_sym_STAR_STAR, + ACTIONS(1459), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1461), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1467), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(612), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1471), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1575), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1573), 21, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [35950] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1425), 1, + anon_sym_DOT, + ACTIONS(1427), 1, + anon_sym_LPAREN, + ACTIONS(1439), 1, + anon_sym_PIPE, + ACTIONS(1443), 1, + anon_sym_LBRACK, + ACTIONS(1445), 1, + anon_sym_STAR_STAR, + ACTIONS(1451), 1, + anon_sym_AMP, + ACTIONS(1453), 1, + anon_sym_CARET, + ACTIONS(1433), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1435), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1441), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(612), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1447), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1579), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1577), 18, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [36021] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1425), 1, + anon_sym_DOT, + ACTIONS(1427), 1, + anon_sym_LPAREN, + ACTIONS(1439), 1, + anon_sym_PIPE, + ACTIONS(1443), 1, + anon_sym_LBRACK, + ACTIONS(1445), 1, + anon_sym_STAR_STAR, + ACTIONS(1451), 1, + anon_sym_AMP, + ACTIONS(1453), 1, + anon_sym_CARET, + ACTIONS(1433), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1435), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1441), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(612), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1447), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1583), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1581), 18, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [36092] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1425), 1, + anon_sym_DOT, + ACTIONS(1427), 1, + anon_sym_LPAREN, + ACTIONS(1443), 1, + anon_sym_LBRACK, + ACTIONS(1469), 1, + anon_sym_STAR_STAR, + STATE(612), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1575), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1573), 28, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [36149] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1425), 1, + anon_sym_DOT, + ACTIONS(1427), 1, + anon_sym_LPAREN, + ACTIONS(1443), 1, + anon_sym_LBRACK, + ACTIONS(1469), 1, + anon_sym_STAR_STAR, + ACTIONS(1459), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(612), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1471), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1575), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1573), 25, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [36210] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1425), 1, + anon_sym_DOT, + ACTIONS(1427), 1, + anon_sym_LPAREN, + ACTIONS(1443), 1, + anon_sym_LBRACK, + ACTIONS(1465), 1, + anon_sym_PIPE, + ACTIONS(1469), 1, + anon_sym_STAR_STAR, + ACTIONS(1475), 1, + anon_sym_AMP, + ACTIONS(1477), 1, + anon_sym_CARET, + ACTIONS(1459), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1461), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1467), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(612), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1471), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1587), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1585), 18, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [36281] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1425), 1, + anon_sym_DOT, + ACTIONS(1427), 1, + anon_sym_LPAREN, + ACTIONS(1443), 1, + anon_sym_LBRACK, + ACTIONS(1469), 1, + anon_sym_STAR_STAR, + ACTIONS(1459), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1467), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(612), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1471), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1575), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1573), 23, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [36344] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1425), 1, + anon_sym_DOT, + ACTIONS(1427), 1, + anon_sym_LPAREN, + ACTIONS(1443), 1, + anon_sym_LBRACK, + ACTIONS(1469), 1, + anon_sym_STAR_STAR, + STATE(612), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1575), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1573), 28, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [36401] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1425), 1, + anon_sym_DOT, + ACTIONS(1427), 1, + anon_sym_LPAREN, + ACTIONS(1443), 1, + anon_sym_LBRACK, + ACTIONS(1469), 1, + anon_sym_STAR_STAR, + STATE(612), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1591), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1589), 28, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [36458] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1425), 1, + anon_sym_DOT, + ACTIONS(1427), 1, + anon_sym_LPAREN, + ACTIONS(1443), 1, + anon_sym_LBRACK, + ACTIONS(1445), 1, + anon_sym_STAR_STAR, + ACTIONS(1433), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(612), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1447), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1575), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1573), 25, + 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_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [36519] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1425), 1, + anon_sym_DOT, + ACTIONS(1427), 1, + anon_sym_LPAREN, + ACTIONS(1443), 1, + anon_sym_LBRACK, + ACTIONS(1445), 1, + anon_sym_STAR_STAR, + ACTIONS(1433), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1435), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1441), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(612), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1447), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1575), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1573), 21, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [36584] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1425), 1, + anon_sym_DOT, + ACTIONS(1427), 1, + anon_sym_LPAREN, + ACTIONS(1443), 1, + anon_sym_LBRACK, + ACTIONS(1445), 1, + anon_sym_STAR_STAR, + ACTIONS(1453), 1, + anon_sym_CARET, + ACTIONS(1433), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1435), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1441), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(612), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1447), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1575), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1573), 20, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [36651] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1425), 1, + anon_sym_DOT, + ACTIONS(1427), 1, + anon_sym_LPAREN, + ACTIONS(1443), 1, + anon_sym_LBRACK, + ACTIONS(1445), 1, + anon_sym_STAR_STAR, + STATE(612), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1591), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1589), 28, + 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_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [36708] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1425), 1, + anon_sym_DOT, + ACTIONS(1427), 1, + anon_sym_LPAREN, + ACTIONS(1439), 1, + anon_sym_PIPE, + ACTIONS(1443), 1, + anon_sym_LBRACK, + ACTIONS(1445), 1, + anon_sym_STAR_STAR, + ACTIONS(1451), 1, + anon_sym_AMP, + ACTIONS(1453), 1, + anon_sym_CARET, + ACTIONS(1433), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1435), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1441), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(612), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1447), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1587), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1585), 18, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [36779] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1425), 1, + anon_sym_DOT, + ACTIONS(1427), 1, + anon_sym_LPAREN, + ACTIONS(1443), 1, + anon_sym_LBRACK, + ACTIONS(1445), 1, + anon_sym_STAR_STAR, + STATE(612), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1575), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1573), 28, + 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_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [36836] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1425), 1, + anon_sym_DOT, + ACTIONS(1427), 1, + anon_sym_LPAREN, + ACTIONS(1443), 1, + anon_sym_LBRACK, + ACTIONS(1445), 1, + anon_sym_STAR_STAR, + ACTIONS(1433), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1441), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(612), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1447), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1575), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1573), 23, + 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_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [36899] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1425), 1, + anon_sym_DOT, + ACTIONS(1427), 1, + anon_sym_LPAREN, + ACTIONS(1443), 1, + anon_sym_LBRACK, + ACTIONS(1469), 1, + anon_sym_STAR_STAR, + ACTIONS(1477), 1, + anon_sym_CARET, + ACTIONS(1459), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1461), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1467), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(612), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1471), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1575), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1573), 20, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [36966] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1425), 1, + anon_sym_DOT, + ACTIONS(1427), 1, + anon_sym_LPAREN, + ACTIONS(1443), 1, + anon_sym_LBRACK, + ACTIONS(1445), 1, + anon_sym_STAR_STAR, + ACTIONS(1451), 1, + anon_sym_AMP, + ACTIONS(1453), 1, + anon_sym_CARET, + ACTIONS(1433), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1435), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1441), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(612), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1447), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1575), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1573), 19, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [37035] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1119), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1114), 33, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [37081] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(624), 1, @@ -54971,11 +55009,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(646), 1, sym__string_start, - ACTIONS(1597), 1, + ACTIONS(1595), 1, anon_sym_not, - STATE(739), 1, + STATE(741), 1, sym_string, - STATE(764), 1, + STATE(747), 1, sym_primary_expression, ACTIONS(640), 2, sym_ellipsis, @@ -54990,14 +55028,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(1595), 6, + ACTIONS(1593), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(813), 15, + STATE(812), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55013,19 +55051,214 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [37101] = 4, + [37147] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1038), 1, + ACTIONS(1597), 1, + sym__string_start, + STATE(670), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1392), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1390), 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_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [37197] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(604), 1, + anon_sym_LPAREN, + ACTIONS(612), 1, + anon_sym_LBRACK, + ACTIONS(1602), 1, + anon_sym_not, + STATE(604), 1, + sym_string, + STATE(663), 1, + sym_primary_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(610), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1600), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(619), 15, + 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, + [37263] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(1604), 1, + anon_sym_not, + STATE(604), 1, + sym_string, + STATE(655), 1, + sym_primary_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1600), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(619), 15, + 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, + [37329] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1606), 1, anon_sym_COLON_EQ, - ACTIONS(1036), 6, + ACTIONS(1057), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1052), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [37377] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1095), 1, + anon_sym_COLON_EQ, + ACTIONS(1057), 6, anon_sym_STAR, anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1031), 31, + ACTIONS(1052), 31, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -55057,16 +55290,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [37149] = 3, + [37425] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1143), 5, + ACTIONS(608), 1, + anon_sym_COLON_EQ, + ACTIONS(276), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(303), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [37473] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1134), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1138), 33, + ACTIONS(1129), 33, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -55100,60 +55377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [37195] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACK, - ACTIONS(1601), 1, - anon_sym_not, - STATE(683), 1, - sym_string, - STATE(738), 1, - sym_primary_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1599), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(795), 15, - 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, - [37261] = 4, + [37519] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(562), 1, @@ -55197,938 +55421,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [37309] = 5, + [37567] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1603), 1, - sym__string_start, - STATE(674), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1390), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1388), 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_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [37359] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1170), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1165), 33, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [37405] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(608), 1, - anon_sym_COLON_EQ, - ACTIONS(276), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_COLON, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(303), 31, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [37453] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1606), 1, - anon_sym_COLON_EQ, - ACTIONS(1036), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_COLON, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1031), 31, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [37501] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(646), 1, - sym__string_start, - STATE(674), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1397), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1395), 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_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [37551] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(315), 1, + ACTIONS(81), 1, sym__string_start, - ACTIONS(1608), 1, - anon_sym_not, - STATE(607), 1, - sym_string, - STATE(647), 1, - sym_primary_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1591), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(622), 15, - 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, - [37617] = 5, - ACTIONS(3), 1, - sym_comment, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(572), 1, + anon_sym_LBRACK, ACTIONS(1610), 1, - sym__string_start, - STATE(680), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1390), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1388), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [37666] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(1469), 1, - sym_identifier, - STATE(607), 1, - sym_string, - STATE(883), 1, - sym_primary_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(767), 2, - sym_attribute, - sym_subscript, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1473), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(622), 13, - 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, - [37733] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - STATE(607), 1, - sym_string, - STATE(656), 1, - sym_primary_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1591), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(622), 15, - 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, - [37796] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - sym__string_start, - STATE(692), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1036), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1031), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [37845] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(1613), 1, - sym_identifier, - STATE(607), 1, - sym_string, - STATE(883), 1, - sym_primary_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(881), 2, - sym_attribute, - sym_subscript, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1615), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(622), 13, - 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, - [37912] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACK, - STATE(683), 1, - sym_string, - STATE(734), 1, - sym_primary_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1599), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(795), 15, - 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, - [37975] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACK, - STATE(683), 1, - sym_string, - STATE(738), 1, - sym_primary_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1599), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(795), 15, - 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, - [38038] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - STATE(607), 1, - sym_string, - STATE(658), 1, - sym_primary_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1591), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(622), 15, - 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, - [38101] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACK, - STATE(683), 1, - sym_string, - STATE(733), 1, - sym_primary_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1599), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(795), 15, - 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, - [38164] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(604), 1, - anon_sym_LPAREN, - ACTIONS(612), 1, - anon_sym_LBRACK, - STATE(607), 1, - sym_string, - STATE(655), 1, - sym_primary_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1591), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(622), 15, - 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, - [38227] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - STATE(607), 1, - sym_string, - STATE(647), 1, - sym_primary_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1591), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(622), 15, - 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, - [38290] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACK, - STATE(683), 1, - sym_string, - STATE(732), 1, - sym_primary_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1599), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(795), 15, - 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, - [38353] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - sym__string_start, - STATE(680), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1397), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1395), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [38402] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACK, - STATE(683), 1, + STATE(702), 1, sym_string, STATE(742), 1, sym_primary_expression, @@ -56145,14 +55451,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(1599), 6, + ACTIONS(1608), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(795), 15, + STATE(801), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56168,373 +55474,61 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [38465] = 12, + [37633] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(624), 1, - anon_sym_LPAREN, - ACTIONS(632), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, - anon_sym_LBRACE, ACTIONS(646), 1, sym__string_start, - STATE(739), 1, + STATE(670), 2, sym_string, - STATE(763), 1, - sym_primary_expression, - ACTIONS(640), 2, - sym_ellipsis, - sym_float, - ACTIONS(630), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(642), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1595), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(813), 15, - 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, - [38528] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(624), 1, + aux_sym_concatenated_string_repeat1, + ACTIONS(1399), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1397), 31, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(632), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, - anon_sym_LBRACE, - ACTIONS(646), 1, - sym__string_start, - STATE(739), 1, - sym_string, - STATE(748), 1, - sym_primary_expression, - ACTIONS(640), 2, - sym_ellipsis, - sym_float, - ACTIONS(630), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(642), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1595), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(813), 15, - 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, - [38591] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, anon_sym_LBRACK, - STATE(683), 1, - sym_string, - STATE(736), 1, - sym_primary_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1599), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(795), 15, - 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, - [38654] = 12, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [37683] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - STATE(607), 1, - sym_string, - STATE(648), 1, - sym_primary_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1591), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(622), 15, - 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, - [38717] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - STATE(607), 1, - sym_string, - STATE(660), 1, - sym_primary_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1591), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(622), 15, - 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, - [38780] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(624), 1, - anon_sym_LPAREN, - ACTIONS(632), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, - anon_sym_LBRACE, - ACTIONS(646), 1, - sym__string_start, - STATE(739), 1, - sym_string, - STATE(752), 1, - sym_primary_expression, - ACTIONS(640), 2, - sym_ellipsis, - sym_float, - ACTIONS(630), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(642), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1595), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(813), 15, - 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, - [38843] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(624), 1, - anon_sym_LPAREN, - ACTIONS(632), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, - anon_sym_LBRACE, - ACTIONS(646), 1, - sym__string_start, - STATE(739), 1, - sym_string, - STATE(759), 1, - sym_primary_expression, - ACTIONS(640), 2, - sym_ellipsis, - sym_float, - ACTIONS(630), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(642), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1595), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(813), 15, - 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, - [38906] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1143), 5, + ACTIONS(1134), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1138), 32, + ACTIONS(1129), 32, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -56567,7 +55561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [38951] = 12, + [37728] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -56578,9 +55572,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(612), 1, anon_sym_LBRACK, - STATE(607), 1, + STATE(604), 1, sym_string, - STATE(654), 1, + STATE(665), 1, sym_primary_expression, ACTIONS(309), 2, sym_ellipsis, @@ -56595,14 +55589,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(1591), 6, + ACTIONS(1600), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56618,49 +55612,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [39014] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1170), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1165), 32, - 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_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [39059] = 12, + [37791] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(624), 1, @@ -56671,396 +55623,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(646), 1, sym__string_start, - STATE(739), 1, - sym_string, - STATE(754), 1, - sym_primary_expression, - ACTIONS(640), 2, - sym_ellipsis, - sym_float, - ACTIONS(630), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(642), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1595), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(813), 15, - 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, - [39122] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACK, - STATE(683), 1, - sym_string, - STATE(737), 1, - sym_primary_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1599), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(795), 15, - 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, - [39185] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(624), 1, - anon_sym_LPAREN, - ACTIONS(632), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, - anon_sym_LBRACE, - ACTIONS(646), 1, - sym__string_start, - STATE(739), 1, - sym_string, - STATE(753), 1, - sym_primary_expression, - ACTIONS(640), 2, - sym_ellipsis, - sym_float, - ACTIONS(630), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(642), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1595), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(813), 15, - 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, - [39248] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(624), 1, - anon_sym_LPAREN, - ACTIONS(632), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, - anon_sym_LBRACE, - ACTIONS(646), 1, - sym__string_start, - STATE(739), 1, - sym_string, - STATE(764), 1, - sym_primary_expression, - ACTIONS(640), 2, - sym_ellipsis, - sym_float, - ACTIONS(630), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(642), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1595), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(813), 15, - 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, - [39311] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - STATE(607), 1, - sym_string, - STATE(649), 1, - sym_primary_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1591), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(622), 15, - 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, - [39374] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACK, - STATE(683), 1, - sym_string, STATE(741), 1, - sym_primary_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1599), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(795), 15, - 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, - [39437] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1441), 1, - anon_sym_EQ, - ACTIONS(1617), 1, - anon_sym_DOT, - ACTIONS(1619), 1, - anon_sym_LPAREN, - ACTIONS(1627), 1, - anon_sym_PIPE, - ACTIONS(1631), 1, - anon_sym_LBRACK, - ACTIONS(1633), 1, - anon_sym_STAR_STAR, - ACTIONS(1637), 1, - anon_sym_not, - ACTIONS(1639), 1, - anon_sym_AMP, - ACTIONS(1641), 1, - anon_sym_CARET, - ACTIONS(1645), 1, - anon_sym_is, - STATE(879), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(1621), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1623), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1629), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1643), 2, - anon_sym_LT, - anon_sym_GT, - STATE(798), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1635), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1625), 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(1439), 7, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_if, - anon_sym_and, - anon_sym_or, - anon_sym_SEMI, - [39516] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(604), 1, - anon_sym_LPAREN, - ACTIONS(612), 1, - anon_sym_LBRACK, - STATE(607), 1, sym_string, - STATE(653), 1, + STATE(747), 1, sym_primary_expression, - ACTIONS(309), 2, + ACTIONS(640), 2, sym_ellipsis, sym_float, - ACTIONS(610), 3, + ACTIONS(630), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 5, + ACTIONS(642), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(1591), 6, + ACTIONS(1593), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(622), 15, + STATE(812), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57076,7 +55663,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [39579] = 12, + [37854] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(278), 1, @@ -57087,9 +55674,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(315), 1, sym__string_start, - STATE(607), 1, + STATE(604), 1, sym_string, - STATE(662), 1, + STATE(658), 1, sym_primary_expression, ACTIONS(309), 2, sym_ellipsis, @@ -57104,14 +55691,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(1591), 6, + ACTIONS(1600), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57127,58 +55714,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [39642] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - STATE(607), 1, - sym_string, - STATE(646), 1, - sym_primary_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1591), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(622), 15, - 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, - [39705] = 12, + [37917] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(624), 1, @@ -57189,7 +55725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(646), 1, sym__string_start, - STATE(739), 1, + STATE(741), 1, sym_string, STATE(750), 1, sym_primary_expression, @@ -57206,14 +55742,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(1595), 6, + ACTIONS(1593), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(813), 15, + STATE(812), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57229,160 +55765,51 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [39768] = 12, + [37980] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(624), 1, - anon_sym_LPAREN, - ACTIONS(632), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, - anon_sym_LBRACE, - ACTIONS(646), 1, + ACTIONS(1612), 1, sym__string_start, - STATE(739), 1, + STATE(685), 2, sym_string, - STATE(765), 1, - sym_primary_expression, - ACTIONS(640), 2, - sym_ellipsis, - sym_float, - ACTIONS(630), 3, + aux_sym_concatenated_string_repeat1, + ACTIONS(1392), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1390), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(642), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1595), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(813), 15, - 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, - [39831] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(624), 1, - anon_sym_LPAREN, - ACTIONS(632), 1, anon_sym_LBRACK, - ACTIONS(634), 1, - anon_sym_LBRACE, - ACTIONS(646), 1, - sym__string_start, - STATE(739), 1, - sym_string, - STATE(771), 1, - sym_primary_expression, - ACTIONS(640), 2, - sym_ellipsis, - sym_float, - ACTIONS(630), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(642), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1595), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(813), 15, - 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, - [39894] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACK, - STATE(683), 1, - sym_string, - STATE(745), 1, - sym_primary_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1599), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(795), 15, - 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, - [39957] = 12, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [38029] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -57393,9 +55820,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(612), 1, anon_sym_LBRACK, - STATE(607), 1, + STATE(604), 1, sym_string, - STATE(663), 1, + STATE(662), 1, sym_primary_expression, ACTIONS(309), 2, sym_ellipsis, @@ -57410,14 +55837,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(1591), 6, + ACTIONS(1600), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57433,109 +55860,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [40020] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(604), 1, - anon_sym_LPAREN, - ACTIONS(612), 1, - anon_sym_LBRACK, - STATE(607), 1, - sym_string, - STATE(650), 1, - sym_primary_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1591), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(622), 15, - 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, - [40083] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(624), 1, - anon_sym_LPAREN, - ACTIONS(632), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, - anon_sym_LBRACE, - ACTIONS(646), 1, - sym__string_start, - STATE(739), 1, - sym_string, - STATE(755), 1, - sym_primary_expression, - ACTIONS(640), 2, - sym_ellipsis, - sym_float, - ACTIONS(630), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(642), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1595), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(813), 15, - 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, - [40146] = 12, + [38092] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -57546,9 +55871,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(572), 1, anon_sym_LBRACK, - STATE(683), 1, + STATE(702), 1, sym_string, - STATE(746), 1, + STATE(733), 1, sym_primary_expression, ACTIONS(75), 2, sym_ellipsis, @@ -57563,14 +55888,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(1599), 6, + ACTIONS(1608), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(795), 15, + STATE(801), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57586,7 +55911,160 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [40209] = 12, + [38155] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(572), 1, + anon_sym_LBRACK, + STATE(702), 1, + sym_string, + STATE(736), 1, + sym_primary_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1608), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(801), 15, + 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, + [38218] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + STATE(604), 1, + sym_string, + STATE(648), 1, + sym_primary_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1600), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(619), 15, + 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, + [38281] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + STATE(604), 1, + sym_string, + STATE(649), 1, + sym_primary_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1600), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(619), 15, + 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, + [38344] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -57597,7 +56075,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(612), 1, anon_sym_LBRACK, - STATE(607), 1, + STATE(604), 1, + sym_string, + STATE(664), 1, + sym_primary_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(610), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1600), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(619), 15, + 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, + [38407] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(604), 1, + anon_sym_LPAREN, + ACTIONS(612), 1, + anon_sym_LBRACK, + STATE(604), 1, sym_string, STATE(651), 1, sym_primary_expression, @@ -57614,14 +56143,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(1591), 6, + ACTIONS(1600), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57637,7 +56166,363 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [40272] = 12, + [38470] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1119), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1114), 32, + 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_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [38515] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(572), 1, + anon_sym_LBRACK, + STATE(702), 1, + sym_string, + STATE(734), 1, + sym_primary_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1608), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(801), 15, + 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, + [38578] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(624), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(634), 1, + anon_sym_LBRACE, + ACTIONS(646), 1, + sym__string_start, + STATE(741), 1, + sym_string, + STATE(759), 1, + sym_primary_expression, + ACTIONS(640), 2, + sym_ellipsis, + sym_float, + ACTIONS(630), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(642), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1593), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(812), 15, + 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, + [38641] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1431), 1, + anon_sym_EQ, + ACTIONS(1615), 1, + anon_sym_DOT, + ACTIONS(1617), 1, + anon_sym_LPAREN, + ACTIONS(1625), 1, + anon_sym_PIPE, + ACTIONS(1629), 1, + anon_sym_LBRACK, + ACTIONS(1631), 1, + anon_sym_STAR_STAR, + ACTIONS(1635), 1, + anon_sym_not, + ACTIONS(1637), 1, + anon_sym_AMP, + ACTIONS(1639), 1, + anon_sym_CARET, + ACTIONS(1643), 1, + anon_sym_is, + STATE(881), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1619), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1621), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1627), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1641), 2, + anon_sym_LT, + anon_sym_GT, + STATE(792), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1633), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1623), 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(1429), 7, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_if, + anon_sym_and, + anon_sym_or, + anon_sym_SEMI, + [38720] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(624), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(634), 1, + anon_sym_LBRACE, + ACTIONS(646), 1, + sym__string_start, + STATE(741), 1, + sym_string, + STATE(762), 1, + sym_primary_expression, + ACTIONS(640), 2, + sym_ellipsis, + sym_float, + ACTIONS(630), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(642), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1593), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(812), 15, + 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, + [38783] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(624), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(634), 1, + anon_sym_LBRACE, + ACTIONS(646), 1, + sym__string_start, + STATE(741), 1, + sym_string, + STATE(761), 1, + sym_primary_expression, + ACTIONS(640), 2, + sym_ellipsis, + sym_float, + ACTIONS(630), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(642), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1593), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(812), 15, + 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, + [38846] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(624), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(634), 1, + anon_sym_LBRACE, + ACTIONS(646), 1, + sym__string_start, + STATE(741), 1, + sym_string, + STATE(770), 1, + sym_primary_expression, + ACTIONS(640), 2, + sym_ellipsis, + sym_float, + ACTIONS(630), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(642), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1593), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(812), 15, + 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, + [38909] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(278), 1, @@ -57648,31 +56533,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(315), 1, sym__string_start, - STATE(607), 1, + ACTIONS(1645), 1, + sym_identifier, + STATE(604), 1, sym_string, - STATE(664), 1, + STATE(885), 1, sym_primary_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, + STATE(877), 2, + sym_attribute, + sym_subscript, ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 5, + ACTIONS(311), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(1591), 6, + ACTIONS(1647), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(622), 15, + STATE(619), 13, + 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, + [38976] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, + sym__string_start, + STATE(685), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1399), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1397), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [39025] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, + sym__string_start, + STATE(701), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1057), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1052), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [39074] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(572), 1, + anon_sym_LBRACK, + STATE(702), 1, + sym_string, + STATE(738), 1, + sym_primary_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1608), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(801), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57688,7 +56714,58 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [40335] = 12, + [39137] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(572), 1, + anon_sym_LBRACK, + STATE(702), 1, + sym_string, + STATE(740), 1, + sym_primary_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1608), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(801), 15, + 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, + [39200] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -57699,7 +56776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(612), 1, anon_sym_LBRACK, - STATE(607), 1, + STATE(604), 1, sym_string, STATE(652), 1, sym_primary_expression, @@ -57716,14 +56793,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(1591), 6, + ACTIONS(1600), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57739,7 +56816,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [40398] = 12, + [39263] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -57750,7 +56827,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(572), 1, anon_sym_LBRACK, - STATE(683), 1, + STATE(702), 1, + sym_string, + STATE(743), 1, + sym_primary_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1608), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(801), 15, + 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, + [39326] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(572), 1, + anon_sym_LBRACK, + STATE(702), 1, sym_string, STATE(744), 1, sym_primary_expression, @@ -57767,14 +56895,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(1599), 6, + ACTIONS(1608), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(795), 15, + STATE(801), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57790,7 +56918,58 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [40461] = 12, + [39389] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(624), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(634), 1, + anon_sym_LBRACE, + ACTIONS(646), 1, + sym__string_start, + STATE(741), 1, + sym_string, + STATE(752), 1, + sym_primary_expression, + ACTIONS(640), 2, + sym_ellipsis, + sym_float, + ACTIONS(630), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(642), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1593), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(812), 15, + 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, + [39452] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(278), 1, @@ -57801,9 +56980,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(315), 1, sym__string_start, - STATE(607), 1, + STATE(604), 1, sym_string, - STATE(665), 1, + STATE(650), 1, sym_primary_expression, ACTIONS(309), 2, sym_ellipsis, @@ -57818,14 +56997,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(1591), 6, + ACTIONS(1600), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57841,7 +57020,313 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [40524] = 12, + [39515] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(624), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(634), 1, + anon_sym_LBRACE, + ACTIONS(646), 1, + sym__string_start, + STATE(741), 1, + sym_string, + STATE(769), 1, + sym_primary_expression, + ACTIONS(640), 2, + sym_ellipsis, + sym_float, + ACTIONS(630), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(642), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1593), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(812), 15, + 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, + [39578] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + STATE(604), 1, + sym_string, + STATE(666), 1, + sym_primary_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1600), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(619), 15, + 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, + [39641] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(572), 1, + anon_sym_LBRACK, + STATE(702), 1, + sym_string, + STATE(732), 1, + sym_primary_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1608), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(801), 15, + 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, + [39704] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(572), 1, + anon_sym_LBRACK, + STATE(702), 1, + sym_string, + STATE(742), 1, + sym_primary_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1608), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(801), 15, + 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, + [39767] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(572), 1, + anon_sym_LBRACK, + STATE(702), 1, + sym_string, + STATE(745), 1, + sym_primary_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1608), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(801), 15, + 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, + [39830] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(572), 1, + anon_sym_LBRACK, + STATE(702), 1, + sym_string, + STATE(746), 1, + sym_primary_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1608), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(801), 15, + 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, + [39893] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -57852,9 +57337,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(612), 1, anon_sym_LBRACK, - STATE(607), 1, + STATE(604), 1, sym_string, - STATE(661), 1, + STATE(663), 1, sym_primary_expression, ACTIONS(309), 2, sym_ellipsis, @@ -57869,14 +57354,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(1591), 6, + ACTIONS(1600), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57892,7 +57377,109 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [40587] = 12, + [39956] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(624), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(634), 1, + anon_sym_LBRACE, + ACTIONS(646), 1, + sym__string_start, + STATE(741), 1, + sym_string, + STATE(760), 1, + sym_primary_expression, + ACTIONS(640), 2, + sym_ellipsis, + sym_float, + ACTIONS(630), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(642), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1593), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(812), 15, + 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, + [40019] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + STATE(604), 1, + sym_string, + STATE(653), 1, + sym_primary_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1600), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(619), 15, + 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, + [40082] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -57903,7 +57490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(612), 1, anon_sym_LBRACK, - STATE(607), 1, + STATE(604), 1, sym_string, STATE(667), 1, sym_primary_expression, @@ -57920,14 +57507,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(1591), 6, + ACTIONS(1600), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57943,7 +57530,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [40650] = 12, + [40145] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -57954,7 +57541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(612), 1, anon_sym_LBRACK, - STATE(607), 1, + STATE(604), 1, sym_string, STATE(659), 1, sym_primary_expression, @@ -57971,14 +57558,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(1591), 6, + ACTIONS(1600), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57994,7 +57581,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [40713] = 12, + [40208] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -58005,9 +57592,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(612), 1, anon_sym_LBRACK, - STATE(607), 1, + STATE(604), 1, sym_string, - STATE(666), 1, + STATE(647), 1, sym_primary_expression, ACTIONS(309), 2, sym_ellipsis, @@ -58022,14 +57609,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(1591), 6, + ACTIONS(1600), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58045,7 +57632,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [40776] = 12, + [40271] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(278), 1, @@ -58056,7 +57643,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(315), 1, sym__string_start, - STATE(607), 1, + STATE(604), 1, + sym_string, + STATE(654), 1, + sym_primary_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1600), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(619), 15, + 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, + [40334] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + STATE(604), 1, sym_string, STATE(657), 1, sym_primary_expression, @@ -58073,14 +57711,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(1591), 6, + ACTIONS(1600), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(622), 15, + STATE(619), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58096,91 +57734,452 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [40839] = 11, + [40397] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1617), 1, - anon_sym_DOT, - ACTIONS(1619), 1, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(604), 1, anon_sym_LPAREN, - ACTIONS(1631), 1, + ACTIONS(612), 1, anon_sym_LBRACK, - ACTIONS(1633), 1, - anon_sym_STAR_STAR, - ACTIONS(1621), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1629), 2, + STATE(604), 1, + sym_string, + STATE(661), 1, + sym_primary_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(610), 3, anon_sym_DASH, anon_sym_PLUS, - STATE(798), 2, - sym_argument_list, + anon_sym_TILDE, + ACTIONS(311), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1600), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(619), 15, + 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, - ACTIONS(1581), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1635), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1579), 20, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [40899] = 14, + sym_parenthesized_expression, + sym_concatenated_string, + [40460] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1617), 1, - anon_sym_DOT, - ACTIONS(1619), 1, + ACTIONS(624), 1, anon_sym_LPAREN, - ACTIONS(1631), 1, + ACTIONS(632), 1, anon_sym_LBRACK, - ACTIONS(1633), 1, + ACTIONS(634), 1, + anon_sym_LBRACE, + ACTIONS(646), 1, + sym__string_start, + STATE(741), 1, + sym_string, + STATE(748), 1, + sym_primary_expression, + ACTIONS(640), 2, + sym_ellipsis, + sym_float, + ACTIONS(630), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(642), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1593), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(812), 15, + 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, + [40523] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + STATE(604), 1, + sym_string, + STATE(646), 1, + sym_primary_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1600), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(619), 15, + 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, + [40586] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(624), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(634), 1, + anon_sym_LBRACE, + ACTIONS(646), 1, + sym__string_start, + STATE(741), 1, + sym_string, + STATE(753), 1, + sym_primary_expression, + ACTIONS(640), 2, + sym_ellipsis, + sym_float, + ACTIONS(630), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(642), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1593), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(812), 15, + 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, + [40649] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + STATE(604), 1, + sym_string, + STATE(655), 1, + sym_primary_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1600), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(619), 15, + 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, + [40712] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + STATE(604), 1, + sym_string, + STATE(656), 1, + sym_primary_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1600), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(619), 15, + 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, + [40775] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(1487), 1, + sym_identifier, + STATE(604), 1, + sym_string, + STATE(885), 1, + sym_primary_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + STATE(767), 2, + sym_attribute, + sym_subscript, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1491), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(619), 13, + 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, + [40842] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(604), 1, + anon_sym_LPAREN, + ACTIONS(612), 1, + anon_sym_LBRACK, + STATE(604), 1, + sym_string, + STATE(660), 1, + sym_primary_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(610), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1600), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(619), 15, + 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, + [40905] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1615), 1, + anon_sym_DOT, + ACTIONS(1617), 1, + anon_sym_LPAREN, + ACTIONS(1629), 1, + anon_sym_LBRACK, + ACTIONS(1631), 1, anon_sym_STAR_STAR, + ACTIONS(1637), 1, + anon_sym_AMP, ACTIONS(1639), 1, - anon_sym_AMP, - ACTIONS(1641), 1, anon_sym_CARET, + ACTIONS(1619), 2, + anon_sym_STAR, + anon_sym_SLASH, ACTIONS(1621), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1623), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1629), 2, + ACTIONS(1627), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(798), 2, + STATE(792), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1581), 3, + ACTIONS(1575), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1635), 3, + ACTIONS(1633), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1579), 16, + ACTIONS(1573), 16, sym__newline, anon_sym_from, anon_sym_COMMA, @@ -58197,27 +58196,190 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [40965] = 8, + [40971] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1617), 1, + ACTIONS(1615), 1, anon_sym_DOT, - ACTIONS(1619), 1, + ACTIONS(1617), 1, anon_sym_LPAREN, - ACTIONS(1631), 1, + ACTIONS(1625), 1, + anon_sym_PIPE, + ACTIONS(1629), 1, anon_sym_LBRACK, - ACTIONS(1633), 1, + ACTIONS(1631), 1, anon_sym_STAR_STAR, - STATE(798), 2, + ACTIONS(1637), 1, + anon_sym_AMP, + ACTIONS(1639), 1, + anon_sym_CARET, + ACTIONS(1619), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1621), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1627), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(792), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1573), 5, + ACTIONS(1579), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1633), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1577), 15, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [41039] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1615), 1, + anon_sym_DOT, + ACTIONS(1617), 1, + anon_sym_LPAREN, + ACTIONS(1625), 1, + anon_sym_PIPE, + ACTIONS(1629), 1, + anon_sym_LBRACK, + ACTIONS(1631), 1, + anon_sym_STAR_STAR, + ACTIONS(1637), 1, + anon_sym_AMP, + ACTIONS(1639), 1, + anon_sym_CARET, + ACTIONS(1619), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1621), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1627), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(792), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1583), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1633), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1581), 15, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [41107] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1649), 1, + anon_sym_DOT, + ACTIONS(1651), 1, + anon_sym_LPAREN, + ACTIONS(1659), 1, + anon_sym_PIPE, + ACTIONS(1663), 1, + anon_sym_LBRACK, + ACTIONS(1665), 1, + anon_sym_STAR_STAR, + ACTIONS(1669), 1, + anon_sym_not, + ACTIONS(1671), 1, + anon_sym_AMP, + ACTIONS(1673), 1, + anon_sym_CARET, + ACTIONS(1677), 1, + anon_sym_is, + STATE(882), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1653), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1655), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1661), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1675), 2, + anon_sym_LT, + anon_sym_GT, + STATE(815), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1667), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1657), 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(1429), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + [41183] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1615), 1, + anon_sym_DOT, + ACTIONS(1617), 1, + anon_sym_LPAREN, + ACTIONS(1629), 1, + anon_sym_LBRACK, + ACTIONS(1631), 1, + anon_sym_STAR_STAR, + STATE(792), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1591), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1571), 25, + ACTIONS(1589), 25, sym__newline, anon_sym_from, anon_sym_COMMA, @@ -58243,15 +58405,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [41019] = 3, + [41237] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1401), 4, + ACTIONS(1403), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1399), 32, + ACTIONS(1401), 32, sym__string_start, anon_sym_DOT, anon_sym_LPAREN, @@ -58284,36 +58446,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [41063] = 8, + [41281] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1617), 1, + ACTIONS(1615), 1, anon_sym_DOT, - ACTIONS(1619), 1, + ACTIONS(1617), 1, anon_sym_LPAREN, - ACTIONS(1631), 1, + ACTIONS(1629), 1, anon_sym_LBRACK, - ACTIONS(1633), 1, + ACTIONS(1631), 1, anon_sym_STAR_STAR, - STATE(798), 2, + ACTIONS(1619), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1621), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1627), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(792), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1581), 5, - anon_sym_STAR, + ACTIONS(1575), 3, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1579), 25, + ACTIONS(1633), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1573), 18, sym__newline, anon_sym_from, anon_sym_COMMA, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [41343] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1407), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1405), 32, + sym__string_start, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, anon_sym_and, @@ -58329,99 +58537,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_SEMI, - [41117] = 8, + [41387] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1617), 1, + ACTIONS(1615), 1, anon_sym_DOT, - ACTIONS(1619), 1, - anon_sym_LPAREN, - ACTIONS(1631), 1, - anon_sym_LBRACK, - ACTIONS(1633), 1, - anon_sym_STAR_STAR, - STATE(798), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1581), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1579), 25, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [41171] = 15, - ACTIONS(3), 1, - sym_comment, ACTIONS(1617), 1, - anon_sym_DOT, - ACTIONS(1619), 1, anon_sym_LPAREN, - ACTIONS(1627), 1, - anon_sym_PIPE, - ACTIONS(1631), 1, + ACTIONS(1629), 1, anon_sym_LBRACK, - ACTIONS(1633), 1, + ACTIONS(1631), 1, anon_sym_STAR_STAR, ACTIONS(1639), 1, - anon_sym_AMP, - ACTIONS(1641), 1, anon_sym_CARET, - ACTIONS(1621), 2, + ACTIONS(1619), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1623), 2, + ACTIONS(1621), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1629), 2, + ACTIONS(1627), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(798), 2, + STATE(792), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1577), 3, + ACTIONS(1575), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1635), 3, + ACTIONS(1633), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1575), 15, + ACTIONS(1573), 17, sym__newline, anon_sym_from, anon_sym_COMMA, anon_sym_if, anon_sym_in, + anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -58429,20 +58588,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [41239] = 5, + [41451] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(646), 1, sym__string_start, - STATE(678), 2, + STATE(679), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1036), 4, + ACTIONS(1057), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1031), 29, + ACTIONS(1052), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -58472,243 +58631,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [41287] = 19, + [41499] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1647), 1, + ACTIONS(1615), 1, anon_sym_DOT, - ACTIONS(1649), 1, - anon_sym_LPAREN, - ACTIONS(1657), 1, - anon_sym_PIPE, - ACTIONS(1661), 1, - anon_sym_LBRACK, - ACTIONS(1663), 1, - anon_sym_STAR_STAR, - ACTIONS(1667), 1, - anon_sym_not, - ACTIONS(1669), 1, - anon_sym_AMP, - ACTIONS(1671), 1, - anon_sym_CARET, - ACTIONS(1675), 1, - anon_sym_is, - STATE(884), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(1651), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1653), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1659), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1673), 2, - anon_sym_LT, - anon_sym_GT, - STATE(818), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1665), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1655), 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(1439), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_and, - anon_sym_or, - [41363] = 12, - ACTIONS(3), 1, - sym_comment, ACTIONS(1617), 1, - anon_sym_DOT, - ACTIONS(1619), 1, anon_sym_LPAREN, + ACTIONS(1625), 1, + anon_sym_PIPE, + ACTIONS(1629), 1, + anon_sym_LBRACK, ACTIONS(1631), 1, - anon_sym_LBRACK, - ACTIONS(1633), 1, anon_sym_STAR_STAR, - ACTIONS(1621), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1623), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1629), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(798), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1581), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1635), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1579), 18, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, + ACTIONS(1637), 1, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [41425] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1617), 1, - anon_sym_DOT, - ACTIONS(1619), 1, - anon_sym_LPAREN, - ACTIONS(1631), 1, - anon_sym_LBRACK, - ACTIONS(1633), 1, - anon_sym_STAR_STAR, - ACTIONS(1641), 1, - anon_sym_CARET, - ACTIONS(1621), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1623), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1629), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(798), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1581), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1635), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1579), 17, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [41489] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1405), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1403), 32, - sym__string_start, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [41533] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1617), 1, - anon_sym_DOT, - ACTIONS(1619), 1, - anon_sym_LPAREN, - ACTIONS(1627), 1, - anon_sym_PIPE, - ACTIONS(1631), 1, - anon_sym_LBRACK, - ACTIONS(1633), 1, - anon_sym_STAR_STAR, ACTIONS(1639), 1, - anon_sym_AMP, - ACTIONS(1641), 1, anon_sym_CARET, - ACTIONS(1621), 2, + ACTIONS(1619), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1623), 2, + ACTIONS(1621), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1629), 2, + ACTIONS(1627), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(798), 2, + STATE(792), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1585), 3, + ACTIONS(1587), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1635), 3, + ACTIONS(1633), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1583), 15, + ACTIONS(1585), 15, sym__newline, anon_sym_from, anon_sym_COMMA, @@ -58724,52 +58684,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [41601] = 15, + [41567] = 8, ACTIONS(3), 1, sym_comment, + ACTIONS(1615), 1, + anon_sym_DOT, ACTIONS(1617), 1, - anon_sym_DOT, - ACTIONS(1619), 1, anon_sym_LPAREN, - ACTIONS(1627), 1, - anon_sym_PIPE, - ACTIONS(1631), 1, + ACTIONS(1629), 1, anon_sym_LBRACK, - ACTIONS(1633), 1, + ACTIONS(1631), 1, anon_sym_STAR_STAR, - ACTIONS(1639), 1, - anon_sym_AMP, - ACTIONS(1641), 1, - anon_sym_CARET, - ACTIONS(1621), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1623), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1629), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(798), 2, + STATE(792), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1589), 3, + ACTIONS(1575), 5, + anon_sym_STAR, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1635), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1587), 15, + ACTIONS(1573), 25, sym__newline, anon_sym_from, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -58777,32 +58730,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [41669] = 10, + [41621] = 10, ACTIONS(3), 1, sym_comment, + ACTIONS(1615), 1, + anon_sym_DOT, ACTIONS(1617), 1, - anon_sym_DOT, - ACTIONS(1619), 1, anon_sym_LPAREN, + ACTIONS(1629), 1, + anon_sym_LBRACK, ACTIONS(1631), 1, - anon_sym_LBRACK, - ACTIONS(1633), 1, anon_sym_STAR_STAR, - ACTIONS(1621), 2, + ACTIONS(1619), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(798), 2, + STATE(792), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1581), 3, + ACTIONS(1575), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1635), 3, + ACTIONS(1633), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1579), 22, + ACTIONS(1573), 22, sym__newline, anon_sym_from, anon_sym_COMMA, @@ -58825,442 +58778,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [41727] = 4, + [41679] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(303), 3, + ACTIONS(1615), 1, anon_sym_DOT, + ACTIONS(1617), 1, anon_sym_LPAREN, + ACTIONS(1629), 1, anon_sym_LBRACK, - ACTIONS(276), 13, + ACTIONS(1631), 1, + anon_sym_STAR_STAR, + ACTIONS(1619), 2, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1627), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(566), 19, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, + STATE(792), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1575), 3, 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, - [41772] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1647), 1, - anon_sym_DOT, - ACTIONS(1649), 1, - anon_sym_LPAREN, - ACTIONS(1661), 1, - anon_sym_LBRACK, - ACTIONS(1663), 1, - anon_sym_STAR_STAR, - ACTIONS(1671), 1, - anon_sym_CARET, - ACTIONS(1581), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1651), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1653), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1659), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(818), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1665), 3, + ACTIONS(1633), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1579), 17, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [41835] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1165), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1170), 13, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1172), 19, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [41880] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1647), 1, - anon_sym_DOT, - ACTIONS(1649), 1, - anon_sym_LPAREN, - ACTIONS(1657), 1, - anon_sym_PIPE, - ACTIONS(1661), 1, - anon_sym_LBRACK, - ACTIONS(1663), 1, - anon_sym_STAR_STAR, - ACTIONS(1669), 1, - anon_sym_AMP, - ACTIONS(1671), 1, - anon_sym_CARET, - ACTIONS(1589), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1651), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1653), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1659), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(818), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1665), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1587), 15, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [41947] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1138), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1143), 13, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1145), 19, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [41992] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1647), 1, - anon_sym_DOT, - ACTIONS(1649), 1, - anon_sym_LPAREN, - ACTIONS(1657), 1, - anon_sym_PIPE, - ACTIONS(1661), 1, - anon_sym_LBRACK, - ACTIONS(1663), 1, - anon_sym_STAR_STAR, - ACTIONS(1669), 1, - anon_sym_AMP, - ACTIONS(1671), 1, - anon_sym_CARET, - ACTIONS(1585), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1651), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1653), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1659), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(818), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1665), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1583), 15, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [42059] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1647), 1, - anon_sym_DOT, - ACTIONS(1649), 1, - anon_sym_LPAREN, - ACTIONS(1661), 1, - anon_sym_LBRACK, - ACTIONS(1663), 1, - anon_sym_STAR_STAR, - ACTIONS(1669), 1, - anon_sym_AMP, - ACTIONS(1671), 1, - anon_sym_CARET, - ACTIONS(1581), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1651), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1653), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1659), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(818), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1665), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1579), 16, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [42124] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1647), 1, - anon_sym_DOT, - ACTIONS(1649), 1, - anon_sym_LPAREN, - ACTIONS(1661), 1, - anon_sym_LBRACK, - ACTIONS(1663), 1, - anon_sym_STAR_STAR, - ACTIONS(1581), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1651), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(818), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1665), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1579), 22, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [42181] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1647), 1, - anon_sym_DOT, - ACTIONS(1649), 1, - anon_sym_LPAREN, - ACTIONS(1661), 1, - anon_sym_LBRACK, - ACTIONS(1663), 1, - anon_sym_STAR_STAR, - STATE(818), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1573), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1571), 25, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [42234] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - anon_sym_COLON_EQ, - ACTIONS(276), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(303), 29, + ACTIONS(1573), 20, sym__newline, - anon_sym_DOT, anon_sym_from, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [41739] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1615), 1, + anon_sym_DOT, + ACTIONS(1617), 1, anon_sym_LPAREN, + ACTIONS(1629), 1, + anon_sym_LBRACK, + ACTIONS(1631), 1, + anon_sym_STAR_STAR, + STATE(792), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1575), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1573), 25, + sym__newline, + anon_sym_from, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -59268,8 +58857,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, anon_sym_and, @@ -59286,16 +58873,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [42279] = 3, + [41793] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1405), 5, + ACTIONS(1649), 1, + anon_sym_DOT, + ACTIONS(1651), 1, + anon_sym_LPAREN, + ACTIONS(1659), 1, + anon_sym_PIPE, + ACTIONS(1663), 1, + anon_sym_LBRACK, + ACTIONS(1665), 1, + anon_sym_STAR_STAR, + ACTIONS(1671), 1, + anon_sym_AMP, + ACTIONS(1673), 1, + anon_sym_CARET, + ACTIONS(1587), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1653), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1655), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1661), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(815), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1667), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1585), 15, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [41860] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1649), 1, + anon_sym_DOT, + ACTIONS(1651), 1, + anon_sym_LPAREN, + ACTIONS(1659), 1, + anon_sym_PIPE, + ACTIONS(1663), 1, + anon_sym_LBRACK, + ACTIONS(1665), 1, + anon_sym_STAR_STAR, + ACTIONS(1671), 1, + anon_sym_AMP, + ACTIONS(1673), 1, + anon_sym_CARET, + ACTIONS(1583), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1653), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1655), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1661), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(815), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1667), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1581), 15, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [41927] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1407), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1403), 30, + ACTIONS(1405), 30, sym__newline, sym__string_start, anon_sym_DOT, @@ -59326,39 +59017,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [42322] = 5, + [41970] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(608), 1, - anon_sym_COLON_EQ, - ACTIONS(620), 1, - anon_sym_EQ, - ACTIONS(276), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(1649), 1, + anon_sym_DOT, + ACTIONS(1651), 1, + anon_sym_LPAREN, + ACTIONS(1663), 1, + anon_sym_LBRACK, + ACTIONS(1665), 1, + anon_sym_STAR_STAR, + ACTIONS(1575), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(303), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, + ACTIONS(1653), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1661), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, + STATE(815), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1667), 3, anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1573), 20, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -59368,26 +59065,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [42369] = 8, + [42029] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1647), 1, + ACTIONS(1114), 3, anon_sym_DOT, - ACTIONS(1649), 1, anon_sym_LPAREN, - ACTIONS(1661), 1, anon_sym_LBRACK, - ACTIONS(1663), 1, + ACTIONS(1119), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR_STAR, - STATE(818), 2, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1121), 19, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [42074] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1649), 1, + anon_sym_DOT, + ACTIONS(1651), 1, + anon_sym_LPAREN, + ACTIONS(1663), 1, + anon_sym_LBRACK, + ACTIONS(1665), 1, + anon_sym_STAR_STAR, + ACTIONS(1575), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1653), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(815), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1581), 4, + ACTIONS(1667), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1573), 22, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [42131] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1649), 1, + anon_sym_DOT, + ACTIONS(1651), 1, + anon_sym_LPAREN, + ACTIONS(1663), 1, + anon_sym_LBRACK, + ACTIONS(1665), 1, + anon_sym_STAR_STAR, + STATE(815), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1591), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1579), 25, + ACTIONS(1589), 25, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -59413,21 +59198,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [42422] = 5, + [42184] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1606), 1, anon_sym_COLON_EQ, - ACTIONS(1073), 3, + ACTIONS(1054), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1036), 4, + ACTIONS(1057), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1031), 27, + ACTIONS(1052), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -59455,320 +59240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [42469] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1606), 1, - anon_sym_COLON_EQ, - ACTIONS(1677), 1, - anon_sym_EQ, - ACTIONS(1036), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1031), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [42516] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1076), 1, - anon_sym_COLON_EQ, - ACTIONS(1036), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1031), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [42561] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1647), 1, - anon_sym_DOT, - ACTIONS(1649), 1, - anon_sym_LPAREN, - ACTIONS(1661), 1, - anon_sym_LBRACK, - ACTIONS(1663), 1, - anon_sym_STAR_STAR, - ACTIONS(1581), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1651), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1653), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1659), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(818), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1665), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1579), 18, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [42622] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1647), 1, - anon_sym_DOT, - ACTIONS(1649), 1, - anon_sym_LPAREN, - ACTIONS(1657), 1, - anon_sym_PIPE, - ACTIONS(1661), 1, - anon_sym_LBRACK, - ACTIONS(1663), 1, - anon_sym_STAR_STAR, - ACTIONS(1669), 1, - anon_sym_AMP, - ACTIONS(1671), 1, - anon_sym_CARET, - ACTIONS(1577), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1651), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1653), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1659), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(818), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1665), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1575), 15, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [42689] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1647), 1, - anon_sym_DOT, - ACTIONS(1649), 1, - anon_sym_LPAREN, - ACTIONS(1661), 1, - anon_sym_LBRACK, - ACTIONS(1663), 1, - anon_sym_STAR_STAR, - ACTIONS(1581), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1651), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1659), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(818), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1665), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1579), 20, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [42748] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1401), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1399), 30, - sym__newline, - sym__string_start, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [42791] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1031), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1036), 13, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1042), 19, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [42836] = 4, + [42231] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(303), 3, @@ -59809,7 +59281,326 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [42881] = 5, + [42276] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1403), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1401), 30, + sym__newline, + sym__string_start, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [42319] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1129), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1134), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1136), 19, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [42364] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1606), 1, + anon_sym_COLON_EQ, + ACTIONS(1679), 1, + anon_sym_EQ, + ACTIONS(1057), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1052), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [42411] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1649), 1, + anon_sym_DOT, + ACTIONS(1651), 1, + anon_sym_LPAREN, + ACTIONS(1663), 1, + anon_sym_LBRACK, + ACTIONS(1665), 1, + anon_sym_STAR_STAR, + ACTIONS(1575), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1653), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1655), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1661), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(815), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1667), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1573), 18, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [42472] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1649), 1, + anon_sym_DOT, + ACTIONS(1651), 1, + anon_sym_LPAREN, + ACTIONS(1659), 1, + anon_sym_PIPE, + ACTIONS(1663), 1, + anon_sym_LBRACK, + ACTIONS(1665), 1, + anon_sym_STAR_STAR, + ACTIONS(1671), 1, + anon_sym_AMP, + ACTIONS(1673), 1, + anon_sym_CARET, + ACTIONS(1579), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1653), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1655), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1661), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(815), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1667), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1577), 15, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [42539] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1649), 1, + anon_sym_DOT, + ACTIONS(1651), 1, + anon_sym_LPAREN, + ACTIONS(1663), 1, + anon_sym_LBRACK, + ACTIONS(1665), 1, + anon_sym_STAR_STAR, + STATE(815), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1575), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1573), 25, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [42592] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1649), 1, + anon_sym_DOT, + ACTIONS(1651), 1, + anon_sym_LPAREN, + ACTIONS(1663), 1, + anon_sym_LBRACK, + ACTIONS(1665), 1, + anon_sym_STAR_STAR, + ACTIONS(1673), 1, + anon_sym_CARET, + ACTIONS(1575), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1653), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1655), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1661), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(815), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1667), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1573), 17, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [42655] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(608), 1, @@ -59851,14 +59642,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [42928] = 4, + [42702] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1031), 3, + ACTIONS(303), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(1036), 13, + ACTIONS(276), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_PIPE, @@ -59872,7 +59663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1080), 19, + ACTIONS(566), 19, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -59892,26 +59683,241 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [42973] = 8, + [42747] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1647), 1, + ACTIONS(287), 1, + anon_sym_COLON_EQ, + ACTIONS(276), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(303), 29, + sym__newline, anon_sym_DOT, - ACTIONS(1649), 1, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(1661), 1, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(1663), 1, anon_sym_STAR_STAR, - STATE(818), 2, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [42792] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1059), 1, + anon_sym_COLON_EQ, + ACTIONS(1057), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1052), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [42837] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1052), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1057), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1099), 19, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [42882] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1052), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1057), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1063), 19, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [42927] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1649), 1, + anon_sym_DOT, + ACTIONS(1651), 1, + anon_sym_LPAREN, + ACTIONS(1663), 1, + anon_sym_LBRACK, + ACTIONS(1665), 1, + anon_sym_STAR_STAR, + ACTIONS(1671), 1, + anon_sym_AMP, + ACTIONS(1673), 1, + anon_sym_CARET, + ACTIONS(1575), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1653), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1655), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1661), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(815), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1581), 4, + ACTIONS(1667), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1573), 16, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [42992] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1649), 1, + anon_sym_DOT, + ACTIONS(1651), 1, + anon_sym_LPAREN, + ACTIONS(1663), 1, + anon_sym_LBRACK, + ACTIONS(1665), 1, + anon_sym_STAR_STAR, + STATE(815), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1575), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1579), 25, + ACTIONS(1573), 25, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -59937,16 +59943,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43026] = 3, + [43045] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1537), 5, + ACTIONS(608), 1, + anon_sym_COLON_EQ, + ACTIONS(620), 1, + anon_sym_EQ, + ACTIONS(276), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(303), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [43092] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1499), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1535), 29, + ACTIONS(1497), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -59976,46 +60024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [43068] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1421), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1419), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [43110] = 3, + [43134] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1485), 5, @@ -60054,7 +60063,515 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [43152] = 4, + [43176] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1523), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1521), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [43218] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1559), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1557), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [43260] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(276), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(303), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [43302] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1415), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1413), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [43344] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1527), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1525), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [43386] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1571), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1569), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [43428] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1567), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1565), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [43470] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1555), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1553), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [43512] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1547), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1545), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [43554] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1495), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1493), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [43596] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1531), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1529), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [43638] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1134), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1129), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [43680] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1681), 1, + anon_sym_COLON_EQ, + ACTIONS(1057), 5, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1052), 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_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [43724] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(628), 1, @@ -60094,16 +60611,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43196] = 3, + [43768] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1413), 5, + ACTIONS(1547), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1411), 29, + ACTIONS(1545), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -60133,16 +60650,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [43238] = 3, + [43810] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1521), 5, + ACTIONS(1551), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1519), 29, + ACTIONS(1549), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -60172,16 +60689,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [43280] = 3, + [43852] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1429), 5, + ACTIONS(1119), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1427), 29, + ACTIONS(1114), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -60211,16 +60728,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [43322] = 3, + [43894] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1561), 5, + ACTIONS(1543), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1559), 29, + ACTIONS(1541), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -60250,16 +60767,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [43364] = 3, + [43936] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1545), 5, + ACTIONS(1411), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1543), 29, + ACTIONS(1409), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -60289,16 +60806,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [43406] = 3, + [43978] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1541), 5, + ACTIONS(1563), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1539), 29, + ACTIONS(1561), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -60328,16 +60845,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [43448] = 3, + [44020] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1425), 5, + ACTIONS(1415), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1423), 29, + ACTIONS(1413), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -60367,16 +60884,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [43490] = 3, + [44062] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1525), 5, + ACTIONS(1495), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1523), 29, + ACTIONS(1493), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -60406,16 +60923,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [43532] = 3, + [44104] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1489), 5, + ACTIONS(1535), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1487), 29, + ACTIONS(1533), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -60445,487 +60962,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [43574] = 3, + [44146] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1533), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1531), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [43616] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1493), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1491), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [43658] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1549), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1547), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [43700] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1409), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1407), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [43742] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1417), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1415), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [43784] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1421), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1419), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [43826] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1565), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1563), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [43868] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1433), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1431), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [43910] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1413), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1411), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [43952] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1493), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1491), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [43994] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1036), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1031), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [44036] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1143), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1138), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [44078] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1073), 3, + ACTIONS(1054), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1036), 4, + ACTIONS(1057), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1031), 27, + ACTIONS(1052), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -60953,16 +61002,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44122] = 3, + [44190] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1529), 5, + ACTIONS(1539), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1527), 29, + ACTIONS(1537), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -60992,16 +61041,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [44164] = 3, + [44232] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1477), 5, + ACTIONS(1503), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1475), 29, + ACTIONS(1501), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -61031,19 +61080,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [44206] = 4, + [44274] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1167), 3, + ACTIONS(1131), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1170), 4, + ACTIONS(1134), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1165), 27, + ACTIONS(1129), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -61071,16 +61120,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44250] = 3, + [44318] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1170), 5, + ACTIONS(1057), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1165), 29, + ACTIONS(1052), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -61110,56 +61159,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [44292] = 4, + [44360] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1679), 1, - anon_sym_COLON_EQ, - ACTIONS(1036), 5, - anon_sym_STAR, - anon_sym_COLON, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1031), 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_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [44336] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1481), 5, + ACTIONS(1507), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1479), 29, + ACTIONS(1505), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -61189,16 +61198,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [44378] = 3, + [44402] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1553), 5, + ACTIONS(1511), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1551), 29, + ACTIONS(1509), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -61228,16 +61237,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [44420] = 3, + [44444] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1477), 5, + ACTIONS(1515), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1475), 29, + ACTIONS(1513), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -61267,136 +61276,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [44462] = 3, + [44486] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1569), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1567), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [44504] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1557), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1555), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [44546] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(276), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(303), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [44588] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1140), 3, + ACTIONS(1116), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1143), 4, + ACTIONS(1119), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1138), 27, + ACTIONS(1114), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -61424,15 +61316,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44632] = 3, + [44530] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1545), 4, + ACTIONS(1419), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1417), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [44572] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1423), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1421), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [44614] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1519), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1517), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [44656] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1419), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1417), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [44698] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1555), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1543), 29, + ACTIONS(1553), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -61462,15 +61510,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44673] = 3, + [44739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1477), 4, + ACTIONS(1423), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1475), 29, + ACTIONS(1421), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -61500,15 +61548,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44714] = 3, + [44780] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1541), 4, + ACTIONS(1057), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1539), 29, + ACTIONS(1052), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -61538,83 +61586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44755] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1036), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1031), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [44796] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1493), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1491), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [44837] = 3, + [44821] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(276), 4, @@ -61652,7 +61624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44878] = 3, + [44862] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1485), 4, @@ -61690,15 +61662,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44919] = 3, + [44903] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1413), 4, + ACTIONS(1411), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1411), 29, + ACTIONS(1409), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -61728,15 +61700,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44960] = 3, + [44944] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1529), 4, + ACTIONS(1499), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1527), 29, + ACTIONS(1497), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -61766,15 +61738,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45001] = 3, + [44985] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1413), 4, + ACTIONS(1503), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1411), 29, + ACTIONS(1501), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -61804,15 +61776,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45042] = 3, + [45026] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1561), 4, + ACTIONS(1507), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1559), 29, + ACTIONS(1505), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -61842,15 +61814,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45083] = 3, + [45067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1569), 4, + ACTIONS(1511), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1567), 29, + ACTIONS(1509), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -61880,15 +61852,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45124] = 3, + [45108] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1533), 4, + ACTIONS(1515), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1531), 29, + ACTIONS(1513), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -61918,15 +61890,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45165] = 3, + [45149] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1525), 4, + ACTIONS(1519), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1523), 29, + ACTIONS(1517), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -61956,23 +61928,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45206] = 3, + [45190] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1521), 4, + ACTIONS(1095), 1, + anon_sym_COLON_EQ, + ACTIONS(1679), 1, + anon_sym_EQ, + ACTIONS(1057), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1519), 29, + ACTIONS(1052), 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_PIPE, anon_sym_DASH, @@ -61994,83 +61968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45247] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1433), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1431), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [45288] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1537), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1535), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [45329] = 3, + [45235] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(840), 4, @@ -62108,15 +62006,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45370] = 3, + [45276] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1553), 4, + ACTIONS(1523), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1551), 29, + ACTIONS(1521), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -62146,769 +62044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45411] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(828), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(826), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [45452] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(828), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(826), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [45493] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1038), 1, - anon_sym_COLON_EQ, - ACTIONS(1677), 1, - anon_sym_EQ, - ACTIONS(1036), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1031), 27, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [45538] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1557), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1555), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [45579] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1481), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1479), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [45620] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1477), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1475), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [45661] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(832), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(830), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [45702] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1425), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1423), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [45743] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1493), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1491), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [45784] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(832), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(830), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [45825] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(836), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(834), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [45866] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1565), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1563), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [45907] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1417), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1415), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [45948] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(824), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(822), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [45989] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1549), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1547), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [46030] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1421), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1419), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [46071] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1409), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1407), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [46112] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1489), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1487), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [46153] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1421), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1419), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [46194] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1429), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1427), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [46235] = 5, + [45317] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(562), 1, @@ -62948,214 +62084,964 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [46280] = 20, + [45362] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1571), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1569), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [45403] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1539), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1537), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [45444] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1535), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1533), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [45485] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1415), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1413), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [45526] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1531), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1529), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [45567] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1527), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1525), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [45608] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1415), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1413), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [45649] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1567), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1565), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [45690] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1551), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1549), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [45731] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(824), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(822), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [45772] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1547), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1545), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [45813] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1419), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1417), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [45854] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1495), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1493), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [45895] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(832), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(830), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [45936] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(832), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(830), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [45977] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1547), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1545), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [46018] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1563), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1561), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [46059] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1559), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1557), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [46100] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(836), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(834), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [46141] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1543), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1541), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [46182] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(836), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(834), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [46223] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(828), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(826), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [46264] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1419), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1417), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [46305] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1495), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1493), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [46346] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(646), 1, sym__string_start, - ACTIONS(1681), 1, - sym_identifier, ACTIONS(1683), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(1685), 1, - anon_sym_STAR, + anon_sym_LPAREN, ACTIONS(1687), 1, - anon_sym_if, + anon_sym_STAR, ACTIONS(1689), 1, - anon_sym_COLON, - ACTIONS(1691), 1, - anon_sym_DASH, - ACTIONS(1693), 1, - sym_match_wildcard_pattern, - ACTIONS(1695), 1, - anon_sym_LBRACK, - ACTIONS(1697), 1, - anon_sym_LBRACE, - ACTIONS(1699), 1, - sym_integer, - ACTIONS(1701), 1, - sym_float, - STATE(933), 1, - sym_string, - STATE(1007), 1, - sym_concatenated_string, - STATE(1447), 1, - sym_pattern_class_name, - STATE(1038), 2, - sym__match_or_pattern, - sym_match_or_pattern, - ACTIONS(1703), 3, - sym_true, - sym_false, - sym_none, - STATE(1104), 4, - sym__match_pattern, - sym_match_as_pattern, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - STATE(1014), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [46354] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(646), 1, - sym__string_start, - ACTIONS(1681), 1, - sym_identifier, - ACTIONS(1683), 1, - anon_sym_LPAREN, - ACTIONS(1685), 1, - anon_sym_STAR, - ACTIONS(1691), 1, - anon_sym_DASH, - ACTIONS(1693), 1, - sym_match_wildcard_pattern, - ACTIONS(1695), 1, - anon_sym_LBRACK, - ACTIONS(1697), 1, - anon_sym_LBRACE, - ACTIONS(1699), 1, - sym_integer, - ACTIONS(1701), 1, - sym_float, - STATE(933), 1, - sym_string, - STATE(1007), 1, - sym_concatenated_string, - STATE(1447), 1, - sym_pattern_class_name, - STATE(1038), 2, - sym__match_or_pattern, - sym_match_or_pattern, - STATE(1336), 2, - sym__match_patterns, - sym_open_sequence_match_pattern, - STATE(1338), 2, - sym__match_pattern, - sym_match_as_pattern, - STATE(1359), 2, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - ACTIONS(1703), 3, - sym_true, - sym_false, - sym_none, - STATE(1014), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [46428] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(646), 1, - sym__string_start, - ACTIONS(1681), 1, - sym_identifier, - ACTIONS(1683), 1, - anon_sym_LPAREN, - ACTIONS(1685), 1, - anon_sym_STAR, - ACTIONS(1691), 1, - anon_sym_DASH, - ACTIONS(1693), 1, - sym_match_wildcard_pattern, - ACTIONS(1695), 1, - anon_sym_LBRACK, - ACTIONS(1697), 1, - anon_sym_LBRACE, - ACTIONS(1699), 1, - sym_integer, - ACTIONS(1701), 1, - sym_float, - STATE(933), 1, - sym_string, - STATE(1007), 1, - sym_concatenated_string, - STATE(1447), 1, - sym_pattern_class_name, - STATE(1038), 2, - sym__match_or_pattern, - sym_match_or_pattern, - STATE(1292), 2, - sym__match_patterns, - sym_open_sequence_match_pattern, - STATE(1338), 2, - sym__match_pattern, - sym_match_as_pattern, - STATE(1359), 2, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - ACTIONS(1703), 3, - sym_true, - sym_false, - sym_none, - STATE(1014), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [46502] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(646), 1, - sym__string_start, - ACTIONS(1681), 1, - sym_identifier, - ACTIONS(1683), 1, - anon_sym_LPAREN, - ACTIONS(1685), 1, - anon_sym_STAR, - ACTIONS(1691), 1, - anon_sym_DASH, - ACTIONS(1693), 1, - sym_match_wildcard_pattern, - ACTIONS(1695), 1, - anon_sym_LBRACK, - ACTIONS(1697), 1, - anon_sym_LBRACE, - ACTIONS(1699), 1, - sym_integer, - ACTIONS(1701), 1, - sym_float, - ACTIONS(1705), 1, anon_sym_if, - ACTIONS(1707), 1, + ACTIONS(1691), 1, anon_sym_COLON, - STATE(933), 1, + ACTIONS(1693), 1, + anon_sym_DASH, + ACTIONS(1695), 1, + sym_match_wildcard_pattern, + ACTIONS(1697), 1, + anon_sym_LBRACK, + ACTIONS(1699), 1, + anon_sym_LBRACE, + ACTIONS(1701), 1, + sym_integer, + ACTIONS(1703), 1, + sym_float, + STATE(908), 1, sym_string, - STATE(1007), 1, + STATE(1010), 1, sym_concatenated_string, - STATE(1447), 1, + STATE(1451), 1, sym_pattern_class_name, - STATE(1038), 2, + STATE(1044), 2, sym__match_or_pattern, sym_match_or_pattern, - ACTIONS(1703), 3, + ACTIONS(1705), 3, sym_true, sym_false, sym_none, - STATE(1104), 4, + STATE(1127), 4, sym__match_pattern, sym_match_as_pattern, sym__match_maybe_star_pattern, sym_match_star_pattern, - STATE(1014), 8, + STATE(1003), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -63164,50 +63050,106 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [46576] = 19, + [46420] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(646), 1, sym__string_start, - ACTIONS(1681), 1, - sym_identifier, ACTIONS(1683), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(1685), 1, + anon_sym_LPAREN, + ACTIONS(1687), 1, anon_sym_STAR, - ACTIONS(1691), 1, - anon_sym_DASH, ACTIONS(1693), 1, - sym_match_wildcard_pattern, + anon_sym_DASH, ACTIONS(1695), 1, - anon_sym_LBRACK, + sym_match_wildcard_pattern, ACTIONS(1697), 1, - anon_sym_LBRACE, + anon_sym_LBRACK, ACTIONS(1699), 1, - sym_integer, + anon_sym_LBRACE, ACTIONS(1701), 1, + sym_integer, + ACTIONS(1703), 1, sym_float, + STATE(908), 1, + sym_string, + STATE(1010), 1, + sym_concatenated_string, + STATE(1451), 1, + sym_pattern_class_name, + STATE(1044), 2, + sym__match_or_pattern, + sym_match_or_pattern, + STATE(1297), 2, + sym__match_patterns, + sym_open_sequence_match_pattern, + STATE(1347), 2, + sym__match_pattern, + sym_match_as_pattern, + STATE(1350), 2, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + ACTIONS(1705), 3, + sym_true, + sym_false, + sym_none, + STATE(1003), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [46494] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(646), 1, + sym__string_start, + ACTIONS(1683), 1, + sym_identifier, + ACTIONS(1685), 1, + anon_sym_LPAREN, + ACTIONS(1687), 1, + anon_sym_STAR, + ACTIONS(1693), 1, + anon_sym_DASH, + ACTIONS(1695), 1, + sym_match_wildcard_pattern, + ACTIONS(1697), 1, + anon_sym_LBRACK, + ACTIONS(1699), 1, + anon_sym_LBRACE, + ACTIONS(1701), 1, + sym_integer, + ACTIONS(1703), 1, + sym_float, + ACTIONS(1707), 1, + anon_sym_if, ACTIONS(1709), 1, - anon_sym_RBRACK, - STATE(933), 1, + anon_sym_COLON, + STATE(908), 1, sym_string, - STATE(1007), 1, + STATE(1010), 1, sym_concatenated_string, - STATE(1447), 1, + STATE(1451), 1, sym_pattern_class_name, - STATE(1038), 2, + STATE(1044), 2, sym__match_or_pattern, sym_match_or_pattern, - ACTIONS(1703), 3, + ACTIONS(1705), 3, sym_true, sym_false, sym_none, - STATE(1257), 4, + STATE(1127), 4, sym__match_pattern, sym_match_as_pattern, sym__match_maybe_star_pattern, sym_match_star_pattern, - STATE(1014), 8, + STATE(1003), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -63216,50 +63158,52 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [46647] = 19, + [46568] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(646), 1, sym__string_start, - ACTIONS(1681), 1, - sym_identifier, ACTIONS(1683), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(1685), 1, + anon_sym_LPAREN, + ACTIONS(1687), 1, anon_sym_STAR, - ACTIONS(1691), 1, - anon_sym_DASH, ACTIONS(1693), 1, - sym_match_wildcard_pattern, + anon_sym_DASH, ACTIONS(1695), 1, - anon_sym_LBRACK, + sym_match_wildcard_pattern, ACTIONS(1697), 1, - anon_sym_LBRACE, + anon_sym_LBRACK, ACTIONS(1699), 1, - sym_integer, + anon_sym_LBRACE, ACTIONS(1701), 1, + sym_integer, + ACTIONS(1703), 1, sym_float, - ACTIONS(1711), 1, - anon_sym_RBRACK, - STATE(933), 1, + STATE(908), 1, sym_string, - STATE(1007), 1, + STATE(1010), 1, sym_concatenated_string, - STATE(1447), 1, + STATE(1451), 1, sym_pattern_class_name, - STATE(1038), 2, + STATE(1044), 2, sym__match_or_pattern, sym_match_or_pattern, - ACTIONS(1703), 3, + STATE(1346), 2, + sym__match_patterns, + sym_open_sequence_match_pattern, + STATE(1347), 2, + sym__match_pattern, + sym_match_as_pattern, + STATE(1350), 2, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + ACTIONS(1705), 3, sym_true, sym_false, sym_none, - STATE(1104), 4, - sym__match_pattern, - sym_match_as_pattern, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - STATE(1014), 8, + STATE(1003), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -63268,207 +63212,50 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [46718] = 19, + [46642] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(646), 1, sym__string_start, - ACTIONS(1681), 1, - sym_identifier, ACTIONS(1683), 1, - anon_sym_LPAREN, - ACTIONS(1685), 1, - anon_sym_STAR, - ACTIONS(1691), 1, - anon_sym_DASH, - ACTIONS(1693), 1, - sym_match_wildcard_pattern, - ACTIONS(1695), 1, - anon_sym_LBRACK, - ACTIONS(1697), 1, - anon_sym_LBRACE, - ACTIONS(1699), 1, - sym_integer, - ACTIONS(1701), 1, - sym_float, - ACTIONS(1713), 1, - anon_sym_RBRACK, - STATE(933), 1, - sym_string, - STATE(1007), 1, - sym_concatenated_string, - STATE(1447), 1, - sym_pattern_class_name, - STATE(1038), 2, - sym__match_or_pattern, - sym_match_or_pattern, - ACTIONS(1703), 3, - sym_true, - sym_false, - sym_none, - STATE(1104), 4, - sym__match_pattern, - sym_match_as_pattern, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - STATE(1014), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [46789] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(646), 1, - sym__string_start, - ACTIONS(1681), 1, sym_identifier, - ACTIONS(1683), 1, - anon_sym_LPAREN, ACTIONS(1685), 1, - anon_sym_STAR, - ACTIONS(1691), 1, - anon_sym_DASH, - ACTIONS(1693), 1, - sym_match_wildcard_pattern, - ACTIONS(1695), 1, - anon_sym_LBRACK, - ACTIONS(1697), 1, - anon_sym_LBRACE, - ACTIONS(1699), 1, - sym_integer, - ACTIONS(1701), 1, - sym_float, - ACTIONS(1713), 1, - anon_sym_RPAREN, - STATE(933), 1, - sym_string, - STATE(1007), 1, - sym_concatenated_string, - STATE(1447), 1, - sym_pattern_class_name, - STATE(1038), 2, - sym__match_or_pattern, - sym_match_or_pattern, - ACTIONS(1703), 3, - sym_true, - sym_false, - sym_none, - STATE(1104), 4, - sym__match_pattern, - sym_match_as_pattern, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - STATE(1014), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [46860] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(646), 1, - sym__string_start, - ACTIONS(1681), 1, - sym_identifier, - ACTIONS(1683), 1, anon_sym_LPAREN, - ACTIONS(1685), 1, + ACTIONS(1687), 1, anon_sym_STAR, - ACTIONS(1691), 1, - anon_sym_DASH, ACTIONS(1693), 1, - sym_match_wildcard_pattern, - ACTIONS(1695), 1, - anon_sym_LBRACK, - ACTIONS(1697), 1, - anon_sym_LBRACE, - ACTIONS(1699), 1, - sym_integer, - ACTIONS(1701), 1, - sym_float, - ACTIONS(1709), 1, - anon_sym_RPAREN, - STATE(933), 1, - sym_string, - STATE(1007), 1, - sym_concatenated_string, - STATE(1447), 1, - sym_pattern_class_name, - STATE(1038), 2, - sym__match_or_pattern, - sym_match_or_pattern, - STATE(1385), 2, - sym__match_pattern, - sym_match_as_pattern, - STATE(1388), 2, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - ACTIONS(1703), 3, - sym_true, - sym_false, - sym_none, - STATE(1014), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [46933] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(646), 1, - sym__string_start, - ACTIONS(1681), 1, - sym_identifier, - ACTIONS(1683), 1, - anon_sym_LPAREN, - ACTIONS(1685), 1, - anon_sym_STAR, - ACTIONS(1691), 1, anon_sym_DASH, - ACTIONS(1693), 1, - sym_match_wildcard_pattern, ACTIONS(1695), 1, - anon_sym_LBRACK, + sym_match_wildcard_pattern, ACTIONS(1697), 1, - anon_sym_LBRACE, + anon_sym_LBRACK, ACTIONS(1699), 1, - sym_integer, + anon_sym_LBRACE, ACTIONS(1701), 1, + sym_integer, + ACTIONS(1703), 1, sym_float, ACTIONS(1711), 1, anon_sym_RPAREN, - STATE(933), 1, + STATE(908), 1, sym_string, - STATE(1007), 1, + STATE(1010), 1, sym_concatenated_string, - STATE(1447), 1, + STATE(1451), 1, sym_pattern_class_name, - STATE(1038), 2, + STATE(1044), 2, sym__match_or_pattern, sym_match_or_pattern, - ACTIONS(1703), 3, + ACTIONS(1705), 3, sym_true, sym_false, sym_none, - STATE(1104), 4, + STATE(1127), 4, sym__match_pattern, sym_match_as_pattern, sym__match_maybe_star_pattern, sym_match_star_pattern, - STATE(1014), 8, + STATE(1003), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -63477,152 +63264,311 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [47004] = 20, + [46713] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(646), 1, sym__string_start, ACTIONS(1683), 1, + sym_identifier, + ACTIONS(1685), 1, anon_sym_LPAREN, - ACTIONS(1691), 1, - anon_sym_DASH, + ACTIONS(1687), 1, + anon_sym_STAR, ACTIONS(1693), 1, - sym_match_wildcard_pattern, + anon_sym_DASH, ACTIONS(1695), 1, - anon_sym_LBRACK, + sym_match_wildcard_pattern, ACTIONS(1697), 1, - anon_sym_LBRACE, + anon_sym_LBRACK, ACTIONS(1699), 1, - sym_integer, + anon_sym_LBRACE, ACTIONS(1701), 1, + sym_integer, + ACTIONS(1703), 1, + sym_float, + ACTIONS(1713), 1, + anon_sym_RPAREN, + STATE(908), 1, + sym_string, + STATE(1010), 1, + sym_concatenated_string, + STATE(1451), 1, + sym_pattern_class_name, + STATE(1044), 2, + sym__match_or_pattern, + sym_match_or_pattern, + STATE(1390), 2, + sym__match_pattern, + sym_match_as_pattern, + STATE(1391), 2, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + ACTIONS(1705), 3, + sym_true, + sym_false, + sym_none, + STATE(1003), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [46786] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(646), 1, + sym__string_start, + ACTIONS(1683), 1, + sym_identifier, + ACTIONS(1685), 1, + anon_sym_LPAREN, + ACTIONS(1687), 1, + anon_sym_STAR, + ACTIONS(1693), 1, + anon_sym_DASH, + ACTIONS(1695), 1, + sym_match_wildcard_pattern, + ACTIONS(1697), 1, + anon_sym_LBRACK, + ACTIONS(1699), 1, + anon_sym_LBRACE, + ACTIONS(1701), 1, + sym_integer, + ACTIONS(1703), 1, + sym_float, + ACTIONS(1711), 1, + anon_sym_RBRACK, + STATE(908), 1, + sym_string, + STATE(1010), 1, + sym_concatenated_string, + STATE(1451), 1, + sym_pattern_class_name, + STATE(1044), 2, + sym__match_or_pattern, + sym_match_or_pattern, + ACTIONS(1705), 3, + sym_true, + sym_false, + sym_none, + STATE(1127), 4, + sym__match_pattern, + sym_match_as_pattern, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + STATE(1003), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [46857] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(646), 1, + sym__string_start, + ACTIONS(1683), 1, + sym_identifier, + ACTIONS(1685), 1, + anon_sym_LPAREN, + ACTIONS(1687), 1, + anon_sym_STAR, + ACTIONS(1693), 1, + anon_sym_DASH, + ACTIONS(1695), 1, + sym_match_wildcard_pattern, + ACTIONS(1697), 1, + anon_sym_LBRACK, + ACTIONS(1699), 1, + anon_sym_LBRACE, + ACTIONS(1701), 1, + sym_integer, + ACTIONS(1703), 1, + sym_float, + ACTIONS(1713), 1, + anon_sym_RBRACK, + STATE(908), 1, + sym_string, + STATE(1010), 1, + sym_concatenated_string, + STATE(1451), 1, + sym_pattern_class_name, + STATE(1044), 2, + sym__match_or_pattern, + sym_match_or_pattern, + ACTIONS(1705), 3, + sym_true, + sym_false, + sym_none, + STATE(1253), 4, + sym__match_pattern, + sym_match_as_pattern, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + STATE(1003), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [46928] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(646), 1, + sym__string_start, + ACTIONS(1683), 1, + sym_identifier, + ACTIONS(1685), 1, + anon_sym_LPAREN, + ACTIONS(1687), 1, + anon_sym_STAR, + ACTIONS(1693), 1, + anon_sym_DASH, + ACTIONS(1695), 1, + sym_match_wildcard_pattern, + ACTIONS(1697), 1, + anon_sym_LBRACK, + ACTIONS(1699), 1, + anon_sym_LBRACE, + ACTIONS(1701), 1, + sym_integer, + ACTIONS(1703), 1, sym_float, ACTIONS(1715), 1, + anon_sym_RPAREN, + STATE(908), 1, + sym_string, + STATE(1010), 1, + sym_concatenated_string, + STATE(1451), 1, + sym_pattern_class_name, + STATE(1044), 2, + sym__match_or_pattern, + sym_match_or_pattern, + ACTIONS(1705), 3, + sym_true, + sym_false, + sym_none, + STATE(1127), 4, + sym__match_pattern, + sym_match_as_pattern, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + STATE(1003), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [46999] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(646), 1, + sym__string_start, + ACTIONS(1683), 1, sym_identifier, + ACTIONS(1685), 1, + anon_sym_LPAREN, + ACTIONS(1687), 1, + anon_sym_STAR, + ACTIONS(1693), 1, + anon_sym_DASH, + ACTIONS(1695), 1, + sym_match_wildcard_pattern, + ACTIONS(1697), 1, + anon_sym_LBRACK, + ACTIONS(1699), 1, + anon_sym_LBRACE, + ACTIONS(1701), 1, + sym_integer, + ACTIONS(1703), 1, + sym_float, + ACTIONS(1715), 1, + anon_sym_RBRACK, + STATE(908), 1, + sym_string, + STATE(1010), 1, + sym_concatenated_string, + STATE(1451), 1, + sym_pattern_class_name, + STATE(1044), 2, + sym__match_or_pattern, + sym_match_or_pattern, + ACTIONS(1705), 3, + sym_true, + sym_false, + sym_none, + STATE(1127), 4, + sym__match_pattern, + sym_match_as_pattern, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + STATE(1003), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [47070] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(646), 1, + sym__string_start, + ACTIONS(1685), 1, + anon_sym_LPAREN, + ACTIONS(1693), 1, + anon_sym_DASH, + ACTIONS(1695), 1, + sym_match_wildcard_pattern, + ACTIONS(1697), 1, + anon_sym_LBRACK, + ACTIONS(1699), 1, + anon_sym_LBRACE, + ACTIONS(1701), 1, + sym_integer, + ACTIONS(1703), 1, + sym_float, ACTIONS(1717), 1, - anon_sym_RPAREN, - STATE(933), 1, - sym_string, - STATE(1007), 1, - sym_concatenated_string, - STATE(1295), 1, - sym_match_keyword_pattern, - STATE(1374), 1, - sym_match_positional_pattern, - STATE(1447), 1, - sym_pattern_class_name, - STATE(1038), 2, - sym__match_or_pattern, - sym_match_or_pattern, - STATE(1357), 2, - sym__match_pattern, - sym_match_as_pattern, - ACTIONS(1703), 3, - sym_true, - sym_false, - sym_none, - STATE(1014), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [47076] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(646), 1, - sym__string_start, - ACTIONS(1681), 1, - sym_identifier, - ACTIONS(1683), 1, - anon_sym_LPAREN, - ACTIONS(1685), 1, - anon_sym_STAR, - ACTIONS(1691), 1, - anon_sym_DASH, - ACTIONS(1693), 1, - sym_match_wildcard_pattern, - ACTIONS(1695), 1, - anon_sym_LBRACK, - ACTIONS(1697), 1, - anon_sym_LBRACE, - ACTIONS(1699), 1, - sym_integer, - ACTIONS(1701), 1, - sym_float, - STATE(933), 1, - sym_string, - STATE(1007), 1, - sym_concatenated_string, - STATE(1447), 1, - sym_pattern_class_name, - STATE(1038), 2, - sym__match_or_pattern, - sym_match_or_pattern, - ACTIONS(1703), 3, - sym_true, - sym_false, - sym_none, - STATE(1104), 4, - sym__match_pattern, - sym_match_as_pattern, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - STATE(1014), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [47144] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(646), 1, - sym__string_start, - ACTIONS(1683), 1, - anon_sym_LPAREN, - ACTIONS(1691), 1, - anon_sym_DASH, - ACTIONS(1693), 1, - sym_match_wildcard_pattern, - ACTIONS(1695), 1, - anon_sym_LBRACK, - ACTIONS(1697), 1, - anon_sym_LBRACE, - ACTIONS(1699), 1, - sym_integer, - ACTIONS(1701), 1, - sym_float, - ACTIONS(1715), 1, sym_identifier, ACTIONS(1719), 1, anon_sym_RPAREN, - STATE(933), 1, + STATE(908), 1, sym_string, - STATE(1007), 1, + STATE(1010), 1, sym_concatenated_string, - STATE(1323), 1, + STATE(1247), 1, sym_match_keyword_pattern, - STATE(1324), 1, + STATE(1373), 1, sym_match_positional_pattern, - STATE(1447), 1, + STATE(1451), 1, sym_pattern_class_name, - STATE(1038), 2, + STATE(1044), 2, sym__match_or_pattern, sym_match_or_pattern, - STATE(1357), 2, + STATE(1355), 2, sym__match_pattern, sym_match_as_pattern, - ACTIONS(1703), 3, + ACTIONS(1705), 3, sym_true, sym_false, sym_none, - STATE(1014), 8, + STATE(1003), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -63631,50 +63577,100 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [47216] = 20, + [47142] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(646), 1, sym__string_start, ACTIONS(1683), 1, + sym_identifier, + ACTIONS(1685), 1, anon_sym_LPAREN, - ACTIONS(1691), 1, - anon_sym_DASH, + ACTIONS(1687), 1, + anon_sym_STAR, ACTIONS(1693), 1, - sym_match_wildcard_pattern, + anon_sym_DASH, ACTIONS(1695), 1, - anon_sym_LBRACK, + sym_match_wildcard_pattern, ACTIONS(1697), 1, - anon_sym_LBRACE, + anon_sym_LBRACK, ACTIONS(1699), 1, - sym_integer, + anon_sym_LBRACE, ACTIONS(1701), 1, + sym_integer, + ACTIONS(1703), 1, sym_float, - ACTIONS(1715), 1, + STATE(908), 1, + sym_string, + STATE(1010), 1, + sym_concatenated_string, + STATE(1451), 1, + sym_pattern_class_name, + STATE(1044), 2, + sym__match_or_pattern, + sym_match_or_pattern, + ACTIONS(1705), 3, + sym_true, + sym_false, + sym_none, + STATE(1127), 4, + sym__match_pattern, + sym_match_as_pattern, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + STATE(1003), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [47210] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(646), 1, + sym__string_start, + ACTIONS(1685), 1, + anon_sym_LPAREN, + ACTIONS(1693), 1, + anon_sym_DASH, + ACTIONS(1695), 1, + sym_match_wildcard_pattern, + ACTIONS(1697), 1, + anon_sym_LBRACK, + ACTIONS(1699), 1, + anon_sym_LBRACE, + ACTIONS(1701), 1, + sym_integer, + ACTIONS(1703), 1, + sym_float, + ACTIONS(1717), 1, sym_identifier, ACTIONS(1721), 1, anon_sym_RPAREN, - STATE(933), 1, + STATE(908), 1, sym_string, - STATE(1007), 1, + STATE(1010), 1, sym_concatenated_string, - STATE(1246), 1, + STATE(1248), 1, sym_match_keyword_pattern, - STATE(1374), 1, + STATE(1373), 1, sym_match_positional_pattern, - STATE(1447), 1, + STATE(1451), 1, sym_pattern_class_name, - STATE(1038), 2, + STATE(1044), 2, sym__match_or_pattern, sym_match_or_pattern, - STATE(1357), 2, + STATE(1355), 2, sym__match_pattern, sym_match_as_pattern, - ACTIONS(1703), 3, + ACTIONS(1705), 3, sym_true, sym_false, sym_none, - STATE(1014), 8, + STATE(1003), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -63683,178 +63679,50 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [47288] = 18, + [47282] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(646), 1, sym__string_start, - ACTIONS(1681), 1, - sym_identifier, - ACTIONS(1683), 1, + ACTIONS(1685), 1, anon_sym_LPAREN, - ACTIONS(1691), 1, - anon_sym_DASH, ACTIONS(1693), 1, - sym_match_wildcard_pattern, - ACTIONS(1695), 1, - anon_sym_LBRACK, - ACTIONS(1697), 1, - anon_sym_LBRACE, - ACTIONS(1699), 1, - sym_integer, - ACTIONS(1701), 1, - sym_float, - STATE(933), 1, - sym_string, - STATE(1007), 1, - sym_concatenated_string, - STATE(1374), 1, - sym_match_positional_pattern, - STATE(1447), 1, - sym_pattern_class_name, - STATE(1038), 2, - sym__match_or_pattern, - sym_match_or_pattern, - STATE(1357), 2, - sym__match_pattern, - sym_match_as_pattern, - ACTIONS(1703), 3, - sym_true, - sym_false, - sym_none, - STATE(1014), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [47354] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(646), 1, - sym__string_start, - ACTIONS(1681), 1, - sym_identifier, - ACTIONS(1683), 1, - anon_sym_LPAREN, - ACTIONS(1691), 1, - anon_sym_DASH, - ACTIONS(1693), 1, - sym_match_wildcard_pattern, - ACTIONS(1695), 1, - anon_sym_LBRACK, - ACTIONS(1697), 1, - anon_sym_LBRACE, - ACTIONS(1699), 1, - sym_integer, - ACTIONS(1701), 1, - sym_float, - STATE(933), 1, - sym_string, - STATE(1007), 1, - sym_concatenated_string, - STATE(1447), 1, - sym_pattern_class_name, - STATE(1038), 2, - sym__match_or_pattern, - sym_match_or_pattern, - STATE(1377), 2, - sym__match_pattern, - sym_match_as_pattern, - ACTIONS(1703), 3, - sym_true, - sym_false, - sym_none, - STATE(1014), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [47417] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(646), 1, - sym__string_start, - ACTIONS(1681), 1, - sym_identifier, - ACTIONS(1683), 1, - anon_sym_LPAREN, - ACTIONS(1691), 1, - anon_sym_DASH, - ACTIONS(1693), 1, - sym_match_wildcard_pattern, - ACTIONS(1695), 1, - anon_sym_LBRACK, - ACTIONS(1697), 1, - anon_sym_LBRACE, - ACTIONS(1699), 1, - sym_integer, - ACTIONS(1701), 1, - sym_float, - STATE(933), 1, - sym_string, - STATE(1007), 1, - sym_concatenated_string, - STATE(1447), 1, - sym_pattern_class_name, - STATE(1038), 2, - sym__match_or_pattern, - sym_match_or_pattern, - STATE(1353), 2, - sym__match_pattern, - sym_match_as_pattern, - ACTIONS(1703), 3, - sym_true, - sym_false, - sym_none, - STATE(1014), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [47480] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(646), 1, - sym__string_start, - ACTIONS(1681), 1, - sym_identifier, - ACTIONS(1683), 1, - anon_sym_LPAREN, - ACTIONS(1691), 1, anon_sym_DASH, ACTIONS(1695), 1, - anon_sym_LBRACK, + sym_match_wildcard_pattern, ACTIONS(1697), 1, - anon_sym_LBRACE, + anon_sym_LBRACK, ACTIONS(1699), 1, - sym_integer, + anon_sym_LBRACE, ACTIONS(1701), 1, + sym_integer, + ACTIONS(1703), 1, sym_float, + ACTIONS(1717), 1, + sym_identifier, ACTIONS(1723), 1, - sym_match_wildcard_pattern, - STATE(933), 1, + anon_sym_RPAREN, + STATE(908), 1, sym_string, - STATE(1007), 1, + STATE(1010), 1, sym_concatenated_string, - STATE(1447), 1, + STATE(1329), 1, + sym_match_keyword_pattern, + STATE(1332), 1, + sym_match_positional_pattern, + STATE(1451), 1, sym_pattern_class_name, - ACTIONS(1703), 3, + STATE(1044), 2, + sym__match_or_pattern, + sym_match_or_pattern, + STATE(1355), 2, + sym__match_pattern, + sym_match_as_pattern, + ACTIONS(1705), 3, sym_true, sym_false, sym_none, - STATE(957), 8, + STATE(1003), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -63863,38 +63731,178 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [47535] = 15, + [47354] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(646), 1, sym__string_start, - ACTIONS(1681), 1, - sym_identifier, ACTIONS(1683), 1, + sym_identifier, + ACTIONS(1685), 1, anon_sym_LPAREN, - ACTIONS(1691), 1, + ACTIONS(1693), 1, anon_sym_DASH, ACTIONS(1695), 1, - anon_sym_LBRACK, + sym_match_wildcard_pattern, ACTIONS(1697), 1, - anon_sym_LBRACE, + anon_sym_LBRACK, ACTIONS(1699), 1, - sym_integer, + anon_sym_LBRACE, ACTIONS(1701), 1, + sym_integer, + ACTIONS(1703), 1, + sym_float, + STATE(908), 1, + sym_string, + STATE(1010), 1, + sym_concatenated_string, + STATE(1373), 1, + sym_match_positional_pattern, + STATE(1451), 1, + sym_pattern_class_name, + STATE(1044), 2, + sym__match_or_pattern, + sym_match_or_pattern, + STATE(1355), 2, + sym__match_pattern, + sym_match_as_pattern, + ACTIONS(1705), 3, + sym_true, + sym_false, + sym_none, + STATE(1003), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [47420] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(646), 1, + sym__string_start, + ACTIONS(1683), 1, + sym_identifier, + ACTIONS(1685), 1, + anon_sym_LPAREN, + ACTIONS(1693), 1, + anon_sym_DASH, + ACTIONS(1695), 1, + sym_match_wildcard_pattern, + ACTIONS(1697), 1, + anon_sym_LBRACK, + ACTIONS(1699), 1, + anon_sym_LBRACE, + ACTIONS(1701), 1, + sym_integer, + ACTIONS(1703), 1, + sym_float, + STATE(908), 1, + sym_string, + STATE(1010), 1, + sym_concatenated_string, + STATE(1451), 1, + sym_pattern_class_name, + STATE(1044), 2, + sym__match_or_pattern, + sym_match_or_pattern, + STATE(1358), 2, + sym__match_pattern, + sym_match_as_pattern, + ACTIONS(1705), 3, + sym_true, + sym_false, + sym_none, + STATE(1003), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [47483] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(646), 1, + sym__string_start, + ACTIONS(1683), 1, + sym_identifier, + ACTIONS(1685), 1, + anon_sym_LPAREN, + ACTIONS(1693), 1, + anon_sym_DASH, + ACTIONS(1695), 1, + sym_match_wildcard_pattern, + ACTIONS(1697), 1, + anon_sym_LBRACK, + ACTIONS(1699), 1, + anon_sym_LBRACE, + ACTIONS(1701), 1, + sym_integer, + ACTIONS(1703), 1, + sym_float, + STATE(908), 1, + sym_string, + STATE(1010), 1, + sym_concatenated_string, + STATE(1451), 1, + sym_pattern_class_name, + STATE(1044), 2, + sym__match_or_pattern, + sym_match_or_pattern, + STATE(1375), 2, + sym__match_pattern, + sym_match_as_pattern, + ACTIONS(1705), 3, + sym_true, + sym_false, + sym_none, + STATE(1003), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [47546] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(646), 1, + sym__string_start, + ACTIONS(1683), 1, + sym_identifier, + ACTIONS(1685), 1, + anon_sym_LPAREN, + ACTIONS(1693), 1, + anon_sym_DASH, + ACTIONS(1697), 1, + anon_sym_LBRACK, + ACTIONS(1699), 1, + anon_sym_LBRACE, + ACTIONS(1701), 1, + sym_integer, + ACTIONS(1703), 1, sym_float, ACTIONS(1725), 1, sym_match_wildcard_pattern, - STATE(933), 1, + STATE(908), 1, sym_string, - STATE(1007), 1, + STATE(1010), 1, sym_concatenated_string, - STATE(1447), 1, + STATE(1451), 1, sym_pattern_class_name, - ACTIONS(1703), 3, + ACTIONS(1705), 3, sym_true, sym_false, sym_none, - STATE(986), 8, + STATE(958), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -63903,92 +63911,68 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [47590] = 8, + [47601] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_not, - ACTIONS(1467), 1, - anon_sym_is, - ACTIONS(1729), 1, - anon_sym_as, - STATE(870), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(1465), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1447), 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(1727), 10, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - [47630] = 8, + ACTIONS(646), 1, + sym__string_start, + ACTIONS(1683), 1, + sym_identifier, + ACTIONS(1685), 1, + anon_sym_LPAREN, + ACTIONS(1693), 1, + anon_sym_DASH, + ACTIONS(1697), 1, + anon_sym_LBRACK, + ACTIONS(1699), 1, + anon_sym_LBRACE, + ACTIONS(1701), 1, + sym_integer, + ACTIONS(1703), 1, + sym_float, + ACTIONS(1727), 1, + sym_match_wildcard_pattern, + STATE(908), 1, + sym_string, + STATE(1010), 1, + sym_concatenated_string, + STATE(1451), 1, + sym_pattern_class_name, + ACTIONS(1705), 3, + sym_true, + sym_false, + sym_none, + STATE(1000), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [47656] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1733), 1, - anon_sym_as, - ACTIONS(1738), 1, - anon_sym_not, - ACTIONS(1744), 1, - anon_sym_is, - STATE(870), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(1741), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1735), 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(1731), 10, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - [47670] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1509), 1, - anon_sym_not, - ACTIONS(1517), 1, - anon_sym_is, - ACTIONS(1729), 1, + ACTIONS(1734), 1, anon_sym_EQ, - STATE(872), 1, + ACTIONS(1736), 1, + anon_sym_not, + ACTIONS(1742), 1, + anon_sym_is, + STATE(869), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1515), 2, + ACTIONS(1739), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1499), 6, + ACTIONS(1731), 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(1727), 10, + ACTIONS(1729), 10, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -63999,28 +63983,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, sym_type_conversion, - [47710] = 8, + [47696] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1733), 1, - anon_sym_EQ, - ACTIONS(1750), 1, + ACTIONS(1473), 1, anon_sym_not, - ACTIONS(1756), 1, + ACTIONS(1481), 1, anon_sym_is, - STATE(872), 1, + ACTIONS(1747), 1, + anon_sym_EQ, + STATE(869), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1753), 2, + ACTIONS(1479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1747), 6, + ACTIONS(1463), 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(1731), 10, + ACTIONS(1745), 10, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -64031,14 +64015,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, sym_type_conversion, - [47750] = 4, + [47736] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1761), 1, + ACTIONS(1734), 1, + anon_sym_as, + ACTIONS(1752), 1, + anon_sym_not, + ACTIONS(1758), 1, + anon_sym_is, + STATE(871), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1755), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1749), 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(1729), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + [47776] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1449), 1, + anon_sym_not, + ACTIONS(1457), 1, + anon_sym_is, + ACTIONS(1747), 1, + anon_sym_as, + STATE(871), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1455), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1437), 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(1745), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + [47816] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1763), 1, anon_sym_COMMA, STATE(873), 1, aux_sym__patterns_repeat1, - ACTIONS(1759), 18, + ACTIONS(1761), 18, anon_sym_RPAREN, anon_sym_COLON, anon_sym_in, @@ -64057,32 +64105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [47780] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(276), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1764), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(303), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [47809] = 2, + [47846] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1766), 19, @@ -64105,97 +64128,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [47834] = 2, + [47871] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1768), 19, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, + ACTIONS(1734), 1, 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, - [47859] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1770), 19, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [47884] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1080), 19, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [47909] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1637), 1, + ACTIONS(1771), 1, anon_sym_not, - ACTIONS(1645), 1, + ACTIONS(1777), 1, anon_sym_is, - ACTIONS(1729), 1, - anon_sym_EQ, - STATE(880), 1, + STATE(875), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1643), 2, + ACTIONS(1774), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1625), 6, + ACTIONS(1768), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(1727), 7, + ACTIONS(1729), 7, sym__newline, anon_sym_from, anon_sym_COMMA, @@ -64203,46 +64157,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_SEMI, - [47946] = 8, + [47908] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1733), 1, - anon_sym_EQ, - ACTIONS(1775), 1, - anon_sym_not, - ACTIONS(1781), 1, - anon_sym_is, - STATE(880), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(1778), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1772), 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(1731), 7, - sym__newline, - anon_sym_from, + ACTIONS(1780), 19, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, - anon_sym_and, - anon_sym_or, - anon_sym_SEMI, - [47983] = 4, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [47933] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1036), 2, + ACTIONS(1057), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1782), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1052), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [47962] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(276), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(1784), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(1031), 14, + ACTIONS(303), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -64257,26 +64230,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [48012] = 7, + [47991] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1789), 1, + ACTIONS(1786), 19, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [48016] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1063), 19, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [48041] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1635), 1, anon_sym_not, - ACTIONS(1795), 1, + ACTIONS(1643), 1, anon_sym_is, - STATE(882), 1, + ACTIONS(1747), 1, + anon_sym_EQ, + STATE(875), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1792), 2, + ACTIONS(1641), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1786), 6, + ACTIONS(1623), 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(1731), 7, + ACTIONS(1745), 7, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_if, + anon_sym_and, + anon_sym_or, + anon_sym_SEMI, + [48078] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1669), 1, + anon_sym_not, + ACTIONS(1677), 1, + anon_sym_is, + STATE(883), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1675), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1657), 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(1745), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -64284,59 +64332,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_and, anon_sym_or, - [48046] = 13, + [48112] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1435), 1, - anon_sym_DOT, - ACTIONS(1437), 1, - anon_sym_LPAREN, - ACTIONS(1453), 1, - anon_sym_LBRACK, - ACTIONS(1501), 1, - anon_sym_PIPE, - ACTIONS(1505), 1, - anon_sym_STAR_STAR, - ACTIONS(1511), 1, - anon_sym_AMP, - ACTIONS(1513), 1, - anon_sym_CARET, - ACTIONS(1495), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1497), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1503), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(634), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1507), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [48092] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1667), 1, + ACTIONS(1791), 1, anon_sym_not, - ACTIONS(1675), 1, + ACTIONS(1797), 1, anon_sym_is, - STATE(882), 1, + STATE(883), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1673), 2, + ACTIONS(1794), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1655), 6, + ACTIONS(1788), 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(1727), 7, + ACTIONS(1729), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -64344,14 +64359,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_and, anon_sym_or, - [48126] = 4, + [48146] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1798), 1, + ACTIONS(1800), 1, anon_sym_COMMA, STATE(873), 1, aux_sym__patterns_repeat1, - ACTIONS(1800), 16, + ACTIONS(1802), 16, anon_sym_COLON, anon_sym_in, anon_sym_EQ, @@ -64368,373 +64383,206 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [48154] = 12, + [48174] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1802), 1, - sym_identifier, - ACTIONS(1804), 1, + ACTIONS(1425), 1, + anon_sym_DOT, + ACTIONS(1427), 1, anon_sym_LPAREN, - ACTIONS(1806), 1, - anon_sym_STAR, - ACTIONS(1808), 1, - anon_sym_COLON, - ACTIONS(1810), 1, + ACTIONS(1443), 1, + anon_sym_LBRACK, + ACTIONS(1465), 1, + anon_sym_PIPE, + ACTIONS(1469), 1, anon_sym_STAR_STAR, - ACTIONS(1812), 1, + ACTIONS(1475), 1, + anon_sym_AMP, + ACTIONS(1477), 1, + anon_sym_CARET, + ACTIONS(1459), 2, + anon_sym_STAR, anon_sym_SLASH, - STATE(1214), 1, + ACTIONS(1461), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1467), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(612), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1471), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [48220] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1804), 1, + sym_identifier, + ACTIONS(1806), 1, + anon_sym_LPAREN, + ACTIONS(1808), 1, + anon_sym_STAR, + ACTIONS(1810), 1, + anon_sym_COLON, + ACTIONS(1812), 1, + anon_sym_STAR_STAR, + ACTIONS(1814), 1, + anon_sym_SLASH, + STATE(1336), 1, sym_parameter, - STATE(1414), 1, + STATE(1417), 1, sym__parameters, - STATE(1435), 1, + STATE(1449), 1, sym_lambda_parameters, - STATE(1349), 2, + STATE(1351), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1339), 6, + STATE(1343), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [48197] = 6, + [48263] = 12, ACTIONS(3), 1, sym_comment, + ACTIONS(1804), 1, + sym_identifier, + ACTIONS(1806), 1, + anon_sym_LPAREN, + ACTIONS(1808), 1, + anon_sym_STAR, + ACTIONS(1812), 1, + anon_sym_STAR_STAR, ACTIONS(1814), 1, - anon_sym_COMMA, + anon_sym_SLASH, ACTIONS(1816), 1, anon_sym_COLON, - ACTIONS(1818), 1, - anon_sym_EQ, - STATE(885), 1, - aux_sym__patterns_repeat1, - ACTIONS(1820), 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, - [48228] = 12, + STATE(1336), 1, + sym_parameter, + STATE(1417), 1, + sym__parameters, + STATE(1523), 1, + sym_lambda_parameters, + STATE(1351), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1343), 6, + sym_tuple_pattern, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [48306] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1802), 1, - sym_identifier, ACTIONS(1804), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(1806), 1, + anon_sym_LPAREN, + ACTIONS(1808), 1, anon_sym_STAR, - ACTIONS(1810), 1, - anon_sym_STAR_STAR, ACTIONS(1812), 1, + anon_sym_STAR_STAR, + ACTIONS(1814), 1, + anon_sym_SLASH, + ACTIONS(1818), 1, + anon_sym_COLON, + STATE(1336), 1, + sym_parameter, + STATE(1417), 1, + sym__parameters, + STATE(1438), 1, + sym_lambda_parameters, + STATE(1351), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1343), 6, + sym_tuple_pattern, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [48349] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1804), 1, + sym_identifier, + ACTIONS(1806), 1, + anon_sym_LPAREN, + ACTIONS(1808), 1, + anon_sym_STAR, + ACTIONS(1812), 1, + anon_sym_STAR_STAR, + ACTIONS(1814), 1, + anon_sym_SLASH, + ACTIONS(1820), 1, + anon_sym_COLON, + STATE(1336), 1, + sym_parameter, + STATE(1417), 1, + sym__parameters, + STATE(1432), 1, + sym_lambda_parameters, + STATE(1351), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1343), 6, + sym_tuple_pattern, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [48392] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1804), 1, + sym_identifier, + ACTIONS(1806), 1, + anon_sym_LPAREN, + ACTIONS(1808), 1, + anon_sym_STAR, + ACTIONS(1812), 1, + anon_sym_STAR_STAR, + ACTIONS(1814), 1, anon_sym_SLASH, ACTIONS(1822), 1, anon_sym_COLON, - STATE(1214), 1, + STATE(1336), 1, sym_parameter, - STATE(1414), 1, + STATE(1417), 1, sym__parameters, - STATE(1425), 1, + STATE(1428), 1, sym_lambda_parameters, - STATE(1349), 2, + STATE(1351), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1339), 6, + STATE(1343), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [48271] = 12, + [48435] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1802), 1, - sym_identifier, - ACTIONS(1804), 1, - anon_sym_LPAREN, - ACTIONS(1806), 1, - anon_sym_STAR, - ACTIONS(1810), 1, - anon_sym_STAR_STAR, - ACTIONS(1812), 1, - anon_sym_SLASH, ACTIONS(1824), 1, - anon_sym_COLON, - STATE(1214), 1, - sym_parameter, - STATE(1414), 1, - sym__parameters, - STATE(1444), 1, - sym_lambda_parameters, - STATE(1349), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(1339), 6, - sym_tuple_pattern, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [48314] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1802), 1, - sym_identifier, - ACTIONS(1804), 1, - anon_sym_LPAREN, - ACTIONS(1806), 1, - anon_sym_STAR, - ACTIONS(1810), 1, - anon_sym_STAR_STAR, - ACTIONS(1812), 1, - anon_sym_SLASH, + anon_sym_COMMA, ACTIONS(1826), 1, anon_sym_COLON, - STATE(1214), 1, - sym_parameter, - STATE(1414), 1, - sym__parameters, - STATE(1430), 1, - sym_lambda_parameters, - STATE(1349), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(1339), 6, - sym_tuple_pattern, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [48357] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1802), 1, - sym_identifier, - ACTIONS(1804), 1, - anon_sym_LPAREN, - ACTIONS(1806), 1, - anon_sym_STAR, - ACTIONS(1810), 1, - anon_sym_STAR_STAR, - ACTIONS(1812), 1, - anon_sym_SLASH, ACTIONS(1828), 1, - anon_sym_COLON, - STATE(1214), 1, - sym_parameter, - STATE(1414), 1, - sym__parameters, - STATE(1521), 1, - sym_lambda_parameters, - STATE(1349), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(1339), 6, - sym_tuple_pattern, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [48400] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(1691), 1, - anon_sym_DASH, - ACTIONS(1699), 1, - sym_integer, - ACTIONS(1701), 1, - sym_float, - ACTIONS(1830), 1, - sym_identifier, - ACTIONS(1832), 1, - anon_sym_RBRACE, - ACTIONS(1834), 1, - anon_sym_STAR_STAR, - STATE(1007), 1, - sym_concatenated_string, - STATE(1182), 1, - sym_string, - STATE(1367), 1, - sym_match_key_value_pattern, - STATE(1378), 1, - sym_match_double_star_pattern, - STATE(1473), 2, - sym_match_literal_pattern, - sym_match_value_pattern, - ACTIONS(1703), 3, - sym_true, - sym_false, - sym_none, - [48446] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(1691), 1, - anon_sym_DASH, - ACTIONS(1699), 1, - sym_integer, - ACTIONS(1701), 1, - sym_float, - ACTIONS(1830), 1, - sym_identifier, - ACTIONS(1834), 1, - anon_sym_STAR_STAR, - ACTIONS(1836), 1, - anon_sym_RBRACE, - STATE(1007), 1, - sym_concatenated_string, - STATE(1182), 1, - sym_string, - STATE(1222), 1, - sym_match_key_value_pattern, - STATE(1407), 1, - sym_match_double_star_pattern, - STATE(1473), 2, - sym_match_literal_pattern, - sym_match_value_pattern, - ACTIONS(1703), 3, - sym_true, - sym_false, - sym_none, - [48492] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(1691), 1, - anon_sym_DASH, - ACTIONS(1699), 1, - sym_integer, - ACTIONS(1701), 1, - sym_float, - ACTIONS(1830), 1, - sym_identifier, - ACTIONS(1834), 1, - anon_sym_STAR_STAR, - ACTIONS(1838), 1, - anon_sym_RBRACE, - STATE(1007), 1, - sym_concatenated_string, - STATE(1182), 1, - sym_string, - STATE(1365), 1, - sym_match_double_star_pattern, - STATE(1367), 1, - sym_match_key_value_pattern, - STATE(1473), 2, - sym_match_literal_pattern, - sym_match_value_pattern, - ACTIONS(1703), 3, - sym_true, - sym_false, - sym_none, - [48538] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1804), 1, - anon_sym_LPAREN, - ACTIONS(1806), 1, - anon_sym_STAR, - ACTIONS(1810), 1, - anon_sym_STAR_STAR, - ACTIONS(1812), 1, - anon_sym_SLASH, - ACTIONS(1840), 1, - sym_identifier, - ACTIONS(1842), 1, - anon_sym_RPAREN, - STATE(1230), 1, - sym_parameter, - STATE(1483), 1, - sym__parameters, - STATE(1298), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(1339), 6, - sym_tuple_pattern, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [48578] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1804), 1, - anon_sym_LPAREN, - ACTIONS(1806), 1, - anon_sym_STAR, - ACTIONS(1810), 1, - anon_sym_STAR_STAR, - ACTIONS(1812), 1, - anon_sym_SLASH, - ACTIONS(1840), 1, - sym_identifier, - ACTIONS(1844), 1, - anon_sym_RPAREN, - STATE(1276), 1, - sym_parameter, - STATE(1298), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(1339), 6, - sym_tuple_pattern, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [48615] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1802), 1, - sym_identifier, - ACTIONS(1804), 1, - anon_sym_LPAREN, - ACTIONS(1806), 1, - anon_sym_STAR, - ACTIONS(1810), 1, - anon_sym_STAR_STAR, - ACTIONS(1812), 1, - anon_sym_SLASH, - ACTIONS(1844), 1, - anon_sym_COLON, - STATE(1276), 1, - sym_parameter, - STATE(1349), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(1339), 6, - sym_tuple_pattern, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [48652] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1816), 1, - anon_sym_COLON, - ACTIONS(1818), 1, anon_sym_EQ, - ACTIONS(1820), 13, + STATE(884), 1, + aux_sym__patterns_repeat1, + ACTIONS(1830), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -64748,201 +64596,401 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [48677] = 10, + [48466] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1802), 1, - sym_identifier, - ACTIONS(1804), 1, - anon_sym_LPAREN, ACTIONS(1806), 1, + anon_sym_LPAREN, + ACTIONS(1808), 1, anon_sym_STAR, - ACTIONS(1810), 1, - anon_sym_STAR_STAR, ACTIONS(1812), 1, + anon_sym_STAR_STAR, + ACTIONS(1814), 1, anon_sym_SLASH, - ACTIONS(1846), 1, - anon_sym_COLON, - STATE(1276), 1, + ACTIONS(1832), 1, + sym_identifier, + ACTIONS(1834), 1, + anon_sym_RPAREN, + STATE(1232), 1, sym_parameter, - STATE(1349), 2, + STATE(1488), 1, + sym__parameters, + STATE(1306), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1339), 6, + STATE(1343), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [48714] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1804), 1, - anon_sym_LPAREN, - ACTIONS(1806), 1, - anon_sym_STAR, - ACTIONS(1810), 1, - anon_sym_STAR_STAR, - ACTIONS(1812), 1, - anon_sym_SLASH, - ACTIONS(1840), 1, - sym_identifier, - ACTIONS(1846), 1, - anon_sym_RPAREN, - STATE(1276), 1, - sym_parameter, - STATE(1298), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(1339), 6, - sym_tuple_pattern, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [48751] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1850), 1, - anon_sym_as, - ACTIONS(1848), 13, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_and, - anon_sym_or, - sym_type_conversion, - [48773] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1802), 1, - sym_identifier, - ACTIONS(1804), 1, - anon_sym_LPAREN, - ACTIONS(1806), 1, - anon_sym_STAR, - ACTIONS(1810), 1, - anon_sym_STAR_STAR, - ACTIONS(1812), 1, - anon_sym_SLASH, - STATE(1276), 1, - sym_parameter, - STATE(1349), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(1339), 6, - sym_tuple_pattern, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [48807] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1854), 1, - anon_sym_as, - ACTIONS(1852), 13, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_and, - anon_sym_or, - sym_type_conversion, - [48829] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1804), 1, - anon_sym_LPAREN, - ACTIONS(1806), 1, - anon_sym_STAR, - ACTIONS(1810), 1, - anon_sym_STAR_STAR, - ACTIONS(1812), 1, - anon_sym_SLASH, - ACTIONS(1840), 1, - sym_identifier, - STATE(1276), 1, - sym_parameter, - STATE(1298), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(1339), 6, - sym_tuple_pattern, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [48863] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1441), 1, - anon_sym_as, - ACTIONS(1439), 13, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_and, - anon_sym_or, - sym_type_conversion, - [48885] = 11, + [48506] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(315), 1, sym__string_start, - ACTIONS(1691), 1, + ACTIONS(1693), 1, anon_sym_DASH, - ACTIONS(1699), 1, - sym_integer, ACTIONS(1701), 1, + sym_integer, + ACTIONS(1703), 1, sym_float, - ACTIONS(1830), 1, + ACTIONS(1836), 1, sym_identifier, - STATE(1007), 1, + ACTIONS(1838), 1, + anon_sym_RBRACE, + ACTIONS(1840), 1, + anon_sym_STAR_STAR, + STATE(1010), 1, sym_concatenated_string, - STATE(1182), 1, + STATE(1183), 1, sym_string, - STATE(1367), 1, + STATE(1255), 1, sym_match_key_value_pattern, - STATE(1473), 2, + STATE(1411), 1, + sym_match_double_star_pattern, + STATE(1415), 2, sym_match_literal_pattern, sym_match_value_pattern, - ACTIONS(1703), 3, + ACTIONS(1705), 3, sym_true, sym_false, sym_none, - [48922] = 4, + [48552] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1858), 1, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(1693), 1, + anon_sym_DASH, + ACTIONS(1701), 1, + sym_integer, + ACTIONS(1703), 1, + sym_float, + ACTIONS(1836), 1, + sym_identifier, + ACTIONS(1840), 1, + anon_sym_STAR_STAR, + ACTIONS(1842), 1, + anon_sym_RBRACE, + STATE(1010), 1, + sym_concatenated_string, + STATE(1183), 1, + sym_string, + STATE(1371), 1, + sym_match_key_value_pattern, + STATE(1376), 1, + sym_match_double_star_pattern, + STATE(1415), 2, + sym_match_literal_pattern, + sym_match_value_pattern, + ACTIONS(1705), 3, + sym_true, + sym_false, + sym_none, + [48598] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(1693), 1, + anon_sym_DASH, + ACTIONS(1701), 1, + sym_integer, + ACTIONS(1703), 1, + sym_float, + ACTIONS(1836), 1, + sym_identifier, + ACTIONS(1840), 1, + anon_sym_STAR_STAR, + ACTIONS(1844), 1, + anon_sym_RBRACE, + STATE(1010), 1, + sym_concatenated_string, + STATE(1183), 1, + sym_string, + STATE(1362), 1, + sym_match_double_star_pattern, + STATE(1371), 1, + sym_match_key_value_pattern, + STATE(1415), 2, + sym_match_literal_pattern, + sym_match_value_pattern, + ACTIONS(1705), 3, + sym_true, + sym_false, + sym_none, + [48644] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1804), 1, + sym_identifier, + ACTIONS(1806), 1, + anon_sym_LPAREN, + ACTIONS(1808), 1, + anon_sym_STAR, + ACTIONS(1812), 1, + anon_sym_STAR_STAR, + ACTIONS(1814), 1, + anon_sym_SLASH, + ACTIONS(1846), 1, + anon_sym_COLON, + STATE(1278), 1, + sym_parameter, + STATE(1351), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1343), 6, + sym_tuple_pattern, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [48681] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1804), 1, + sym_identifier, + ACTIONS(1806), 1, + anon_sym_LPAREN, + ACTIONS(1808), 1, + anon_sym_STAR, + ACTIONS(1812), 1, + anon_sym_STAR_STAR, + ACTIONS(1814), 1, + anon_sym_SLASH, + ACTIONS(1848), 1, + anon_sym_COLON, + STATE(1278), 1, + sym_parameter, + STATE(1351), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1343), 6, + sym_tuple_pattern, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [48718] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1806), 1, + anon_sym_LPAREN, + ACTIONS(1808), 1, + anon_sym_STAR, + ACTIONS(1812), 1, + anon_sym_STAR_STAR, + ACTIONS(1814), 1, + anon_sym_SLASH, + ACTIONS(1832), 1, + sym_identifier, + ACTIONS(1846), 1, + anon_sym_RPAREN, + STATE(1278), 1, + sym_parameter, + STATE(1306), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1343), 6, + sym_tuple_pattern, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [48755] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1806), 1, + anon_sym_LPAREN, + ACTIONS(1808), 1, + anon_sym_STAR, + ACTIONS(1812), 1, + anon_sym_STAR_STAR, + ACTIONS(1814), 1, + anon_sym_SLASH, + ACTIONS(1832), 1, + sym_identifier, + ACTIONS(1848), 1, + anon_sym_RPAREN, + STATE(1278), 1, + sym_parameter, + STATE(1306), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1343), 6, + sym_tuple_pattern, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [48792] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1826), 1, + anon_sym_COLON, + ACTIONS(1828), 1, + anon_sym_EQ, + ACTIONS(1830), 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, + [48817] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1804), 1, + sym_identifier, + ACTIONS(1806), 1, + anon_sym_LPAREN, + ACTIONS(1808), 1, + anon_sym_STAR, + ACTIONS(1812), 1, + anon_sym_STAR_STAR, + ACTIONS(1814), 1, + anon_sym_SLASH, + STATE(1278), 1, + sym_parameter, + STATE(1351), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1343), 6, + sym_tuple_pattern, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [48851] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1852), 1, + anon_sym_as, + ACTIONS(1850), 13, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_and, + anon_sym_or, + sym_type_conversion, + [48873] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1806), 1, + anon_sym_LPAREN, + ACTIONS(1808), 1, + anon_sym_STAR, + ACTIONS(1812), 1, + anon_sym_STAR_STAR, + ACTIONS(1814), 1, + anon_sym_SLASH, + ACTIONS(1832), 1, + sym_identifier, + STATE(1278), 1, + sym_parameter, + STATE(1306), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1343), 6, + sym_tuple_pattern, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [48907] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1431), 1, + anon_sym_as, + ACTIONS(1429), 13, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_and, + anon_sym_or, + sym_type_conversion, + [48929] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1856), 1, + anon_sym_as, + ACTIONS(1854), 13, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_and, + anon_sym_or, + sym_type_conversion, + [48951] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(1693), 1, + anon_sym_DASH, + ACTIONS(1701), 1, + sym_integer, + ACTIONS(1703), 1, + sym_float, + ACTIONS(1836), 1, + sym_identifier, + STATE(1010), 1, + sym_concatenated_string, + STATE(1183), 1, + sym_string, + STATE(1371), 1, + sym_match_key_value_pattern, + STATE(1415), 2, + sym_match_literal_pattern, + sym_match_value_pattern, + ACTIONS(1705), 3, + sym_true, + sym_false, + sym_none, + [48988] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1860), 1, anon_sym_DOT, STATE(907), 1, aux_sym_match_value_pattern_repeat1, - ACTIONS(1856), 10, + ACTIONS(1858), 10, anon_sym_import, anon_sym_LPAREN, anon_sym_RPAREN, @@ -64953,103 +65001,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [48944] = 5, + [49010] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1863), 1, - anon_sym_as, - ACTIONS(1865), 1, - anon_sym_and, - ACTIONS(1867), 1, - anon_sym_or, - ACTIONS(1861), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [48967] = 9, - ACTIONS(1869), 1, - anon_sym_LBRACE2, - ACTIONS(1873), 1, - anon_sym_BSLASH, - ACTIONS(1875), 1, - sym_comment, - ACTIONS(1877), 1, - sym__string_end, - STATE(921), 1, - aux_sym_string_repeat1, - STATE(1088), 1, - sym_interpolation, - STATE(1089), 1, - sym_string_content, - STATE(990), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(1871), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [48998] = 9, - ACTIONS(1869), 1, - anon_sym_LBRACE2, - ACTIONS(1873), 1, - anon_sym_BSLASH, - ACTIONS(1875), 1, - sym_comment, - ACTIONS(1879), 1, - sym__string_end, - STATE(927), 1, - aux_sym_string_repeat1, - STATE(1088), 1, - sym_interpolation, - STATE(1089), 1, - sym_string_content, - STATE(990), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(1871), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [49029] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1865), 1, - anon_sym_and, - ACTIONS(1867), 1, - anon_sym_or, - ACTIONS(1881), 1, - anon_sym_RPAREN, - ACTIONS(1883), 1, - anon_sym_COMMA, - ACTIONS(1886), 1, - anon_sym_as, - ACTIONS(1888), 1, - anon_sym_if, - ACTIONS(1890), 1, - anon_sym_async, - ACTIONS(1892), 1, - anon_sym_for, - STATE(958), 1, - sym_for_in_clause, - STATE(1111), 1, - aux_sym__collection_elements_repeat1, - STATE(1421), 1, - sym__comprehension_clauses, - [49066] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1894), 1, - anon_sym_DOT, - ACTIONS(1896), 1, - anon_sym_LPAREN, - STATE(907), 1, - aux_sym_match_value_pattern_repeat1, - ACTIONS(1898), 8, + ACTIONS(646), 1, + sym__string_start, + STATE(679), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1863), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -65058,63 +65018,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [49089] = 12, + [49031] = 9, + ACTIONS(1865), 1, + anon_sym_LBRACE2, + ACTIONS(1869), 1, + anon_sym_BSLASH, + ACTIONS(1871), 1, + sym_comment, + ACTIONS(1873), 1, + sym__string_end, + STATE(912), 1, + aux_sym_string_repeat1, + STATE(1059), 1, + sym_string_content, + STATE(1092), 1, + sym_interpolation, + STATE(994), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(1867), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [49062] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, - anon_sym_and, - ACTIONS(1867), 1, - anon_sym_or, - ACTIONS(1888), 1, + ACTIONS(1877), 1, + anon_sym_as, + ACTIONS(1879), 1, anon_sym_if, - ACTIONS(1890), 1, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1875), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_async, - ACTIONS(1892), 1, anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + [49087] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1887), 1, + anon_sym_as, + ACTIONS(1885), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + [49110] = 9, + ACTIONS(1871), 1, + sym_comment, + ACTIONS(1889), 1, + anon_sym_LBRACE2, + ACTIONS(1895), 1, + anon_sym_BSLASH, + ACTIONS(1898), 1, + sym__string_end, + STATE(912), 1, + aux_sym_string_repeat1, + STATE(1059), 1, + sym_string_content, + STATE(1092), 1, + sym_interpolation, + STATE(994), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(1892), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [49141] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1879), 1, + anon_sym_if, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, ACTIONS(1900), 1, - anon_sym_COMMA, + anon_sym_RPAREN, ACTIONS(1902), 1, - anon_sym_COLON, - ACTIONS(1904), 1, - anon_sym_RBRACE, - STATE(958), 1, + anon_sym_COMMA, + ACTIONS(1905), 1, + anon_sym_as, + ACTIONS(1907), 1, + anon_sym_async, + ACTIONS(1909), 1, + anon_sym_for, + STATE(960), 1, sym_for_in_clause, - STATE(1111), 1, + STATE(1124), 1, aux_sym__collection_elements_repeat1, - STATE(1418), 1, + STATE(1423), 1, sym__comprehension_clauses, - [49126] = 9, - ACTIONS(1869), 1, + [49178] = 9, + ACTIONS(1865), 1, anon_sym_LBRACE2, - ACTIONS(1873), 1, + ACTIONS(1869), 1, anon_sym_BSLASH, - ACTIONS(1875), 1, + ACTIONS(1871), 1, sym_comment, - ACTIONS(1906), 1, + ACTIONS(1911), 1, sym__string_end, - STATE(921), 1, + STATE(924), 1, aux_sym_string_repeat1, - STATE(1088), 1, - sym_interpolation, - STATE(1089), 1, + STATE(1059), 1, sym_string_content, - STATE(990), 2, + STATE(1092), 1, + sym_interpolation, + STATE(994), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(1871), 3, + ACTIONS(1867), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [49157] = 5, + [49209] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1910), 1, + ACTIONS(1913), 1, anon_sym_if, - ACTIONS(1912), 1, + ACTIONS(1915), 1, anon_sym_and, - ACTIONS(1914), 1, + ACTIONS(1917), 1, anon_sym_or, - ACTIONS(1908), 8, + ACTIONS(1875), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -65123,14 +65164,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - [49180] = 4, + [49232] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(1881), 1, anon_sym_and, - ACTIONS(1918), 1, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1921), 1, anon_sym_as, - ACTIONS(1916), 9, + ACTIONS(1919), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + [49255] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1879), 1, + anon_sym_if, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1925), 1, + anon_sym_as, + ACTIONS(1923), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + [49280] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1929), 1, + anon_sym_as, + ACTIONS(1927), 9, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -65140,16 +65218,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_or, - [49201] = 5, + [49301] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(1881), 1, anon_sym_and, - ACTIONS(1867), 1, + ACTIONS(1883), 1, anon_sym_or, - ACTIONS(1918), 1, + ACTIONS(1929), 1, anon_sym_as, - ACTIONS(1916), 8, + ACTIONS(1927), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -65158,153 +65236,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [49224] = 5, + [49324] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, - anon_sym_and, - ACTIONS(1867), 1, - anon_sym_or, - ACTIONS(1922), 1, - anon_sym_as, - ACTIONS(1920), 8, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1879), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [49247] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1865), 1, + ACTIONS(1881), 1, anon_sym_and, - ACTIONS(1867), 1, + ACTIONS(1883), 1, anon_sym_or, - ACTIONS(1888), 1, - anon_sym_if, - ACTIONS(1926), 1, - anon_sym_as, - ACTIONS(1924), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(1907), 1, anon_sym_async, + ACTIONS(1909), 1, anon_sym_for, - anon_sym_RBRACK, + ACTIONS(1931), 1, + anon_sym_COMMA, + ACTIONS(1933), 1, + anon_sym_COLON, + ACTIONS(1935), 1, anon_sym_RBRACE, - [49272] = 9, - ACTIONS(1869), 1, + STATE(960), 1, + sym_for_in_clause, + STATE(1124), 1, + aux_sym__collection_elements_repeat1, + STATE(1495), 1, + sym__comprehension_clauses, + [49361] = 9, + ACTIONS(1865), 1, anon_sym_LBRACE2, - ACTIONS(1873), 1, + ACTIONS(1869), 1, anon_sym_BSLASH, - ACTIONS(1875), 1, + ACTIONS(1871), 1, sym_comment, - ACTIONS(1928), 1, + ACTIONS(1937), 1, sym__string_end, - STATE(909), 1, + STATE(912), 1, aux_sym_string_repeat1, - STATE(1088), 1, - sym_interpolation, - STATE(1089), 1, + STATE(1059), 1, sym_string_content, - STATE(990), 2, + STATE(1092), 1, + sym_interpolation, + STATE(994), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(1871), 3, + ACTIONS(1867), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [49303] = 9, - ACTIONS(1875), 1, - sym_comment, - ACTIONS(1930), 1, - anon_sym_LBRACE2, - ACTIONS(1936), 1, - anon_sym_BSLASH, - ACTIONS(1939), 1, - sym__string_end, - STATE(921), 1, - aux_sym_string_repeat1, - STATE(1088), 1, - sym_interpolation, - STATE(1089), 1, - sym_string_content, - STATE(990), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(1933), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [49334] = 5, + [49392] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1910), 1, + ACTIONS(1913), 1, anon_sym_if, - ACTIONS(1912), 1, + ACTIONS(1915), 1, anon_sym_and, - ACTIONS(1914), 1, + ACTIONS(1917), 1, anon_sym_or, - ACTIONS(1924), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [49357] = 9, - ACTIONS(1869), 1, - anon_sym_LBRACE2, - ACTIONS(1873), 1, - anon_sym_BSLASH, - ACTIONS(1875), 1, - sym_comment, ACTIONS(1941), 1, - sym__string_end, - STATE(914), 1, - aux_sym_string_repeat1, - STATE(1088), 1, - sym_interpolation, - STATE(1089), 1, - sym_string_content, - STATE(990), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(1871), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [49388] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1912), 1, - anon_sym_and, - ACTIONS(1914), 1, - anon_sym_or, - ACTIONS(1920), 9, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, + STATE(988), 1, + aux_sym_expression_list_repeat1, + ACTIONS(1939), 6, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_else, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - [49409] = 6, + [49419] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, - anon_sym_and, - ACTIONS(1867), 1, - anon_sym_or, - ACTIONS(1888), 1, + ACTIONS(1879), 1, anon_sym_if, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, ACTIONS(1945), 1, anon_sym_as, ACTIONS(1943), 7, @@ -65315,105 +65322,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [49434] = 9, - ACTIONS(1869), 1, + [49444] = 9, + ACTIONS(1865), 1, anon_sym_LBRACE2, - ACTIONS(1873), 1, + ACTIONS(1869), 1, anon_sym_BSLASH, - ACTIONS(1875), 1, + ACTIONS(1871), 1, sym_comment, ACTIONS(1947), 1, sym__string_end, - STATE(921), 1, + STATE(912), 1, aux_sym_string_repeat1, - STATE(1088), 1, - sym_interpolation, - STATE(1089), 1, + STATE(1059), 1, sym_string_content, - STATE(990), 2, + STATE(1092), 1, + sym_interpolation, + STATE(994), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(1871), 3, + ACTIONS(1867), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [49465] = 9, - ACTIONS(1869), 1, + [49475] = 9, + ACTIONS(1865), 1, anon_sym_LBRACE2, - ACTIONS(1873), 1, + ACTIONS(1869), 1, anon_sym_BSLASH, - ACTIONS(1875), 1, + ACTIONS(1871), 1, sym_comment, ACTIONS(1949), 1, sym__string_end, - STATE(921), 1, + STATE(909), 1, aux_sym_string_repeat1, - STATE(1088), 1, - sym_interpolation, - STATE(1089), 1, + STATE(1059), 1, sym_string_content, - STATE(990), 2, + STATE(1092), 1, + sym_interpolation, + STATE(994), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(1871), 3, + ACTIONS(1867), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [49496] = 7, + [49506] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1910), 1, - anon_sym_if, - ACTIONS(1912), 1, - anon_sym_and, - ACTIONS(1914), 1, - anon_sym_or, + ACTIONS(1951), 1, + anon_sym_DOT, ACTIONS(1953), 1, - anon_sym_COMMA, - STATE(993), 1, - aux_sym_expression_list_repeat1, - ACTIONS(1951), 6, + anon_sym_LPAREN, + STATE(930), 1, + aux_sym_match_value_pattern_repeat1, + ACTIONS(1955), 8, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [49529] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1879), 1, + anon_sym_if, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1907), 1, + anon_sym_async, + ACTIONS(1909), 1, + anon_sym_for, + ACTIONS(1931), 1, + anon_sym_COMMA, + ACTIONS(1933), 1, + anon_sym_COLON, + ACTIONS(1935), 1, + anon_sym_RBRACE, + STATE(960), 1, + sym_for_in_clause, + STATE(1124), 1, + aux_sym__collection_elements_repeat1, + STATE(1421), 1, + sym__comprehension_clauses, + [49566] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1913), 1, + anon_sym_if, + ACTIONS(1915), 1, + anon_sym_and, + ACTIONS(1917), 1, + anon_sym_or, + ACTIONS(1923), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - [49523] = 12, + [49589] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(1915), 1, anon_sym_and, - ACTIONS(1867), 1, + ACTIONS(1917), 1, anon_sym_or, - ACTIONS(1888), 1, - anon_sym_if, - ACTIONS(1890), 1, - anon_sym_async, - ACTIONS(1892), 1, - anon_sym_for, - ACTIONS(1900), 1, + ACTIONS(1919), 9, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(1902), 1, + anon_sym_if, anon_sym_COLON, - ACTIONS(1904), 1, + anon_sym_else, + anon_sym_RBRACK, anon_sym_RBRACE, - STATE(958), 1, - sym_for_in_clause, - STATE(1111), 1, - aux_sym__collection_elements_repeat1, - STATE(1491), 1, - sym__comprehension_clauses, - [49560] = 5, + anon_sym_EQ, + sym_type_conversion, + [49610] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1894), 1, + ACTIONS(1951), 1, anon_sym_DOT, - ACTIONS(1955), 1, + ACTIONS(1957), 1, anon_sym_LPAREN, - STATE(912), 1, + STATE(907), 1, aux_sym_match_value_pattern_repeat1, - ACTIONS(1957), 8, + ACTIONS(1959), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -65422,71 +65462,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [49583] = 6, + [49633] = 9, + ACTIONS(1865), 1, + anon_sym_LBRACE2, + ACTIONS(1869), 1, + anon_sym_BSLASH, + ACTIONS(1871), 1, + sym_comment, + ACTIONS(1961), 1, + sym__string_end, + STATE(933), 1, + aux_sym_string_repeat1, + STATE(1059), 1, + sym_string_content, + STATE(1092), 1, + sym_interpolation, + STATE(994), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(1867), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [49664] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, - anon_sym_and, - ACTIONS(1867), 1, - anon_sym_or, - ACTIONS(1888), 1, + ACTIONS(1879), 1, anon_sym_if, - ACTIONS(1959), 1, - anon_sym_as, - ACTIONS(1908), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [49608] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1865), 1, + ACTIONS(1881), 1, anon_sym_and, - ACTIONS(1867), 1, + ACTIONS(1883), 1, anon_sym_or, - ACTIONS(1888), 1, - anon_sym_if, - ACTIONS(1890), 1, + ACTIONS(1907), 1, anon_sym_async, - ACTIONS(1892), 1, + ACTIONS(1909), 1, anon_sym_for, - ACTIONS(1900), 1, + ACTIONS(1931), 1, anon_sym_COMMA, - ACTIONS(1902), 1, + ACTIONS(1933), 1, anon_sym_COLON, - ACTIONS(1904), 1, + ACTIONS(1935), 1, anon_sym_RBRACE, - STATE(958), 1, + STATE(960), 1, sym_for_in_clause, - STATE(1111), 1, + STATE(1124), 1, aux_sym__collection_elements_repeat1, - STATE(1506), 1, + STATE(1508), 1, sym__comprehension_clauses, - [49645] = 4, + [49701] = 9, + ACTIONS(1865), 1, + anon_sym_LBRACE2, + ACTIONS(1869), 1, + anon_sym_BSLASH, + ACTIONS(1871), 1, + sym_comment, + ACTIONS(1963), 1, + sym__string_end, + STATE(912), 1, + aux_sym_string_repeat1, + STATE(1059), 1, + sym_string_content, + STATE(1092), 1, + sym_interpolation, + STATE(994), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(1867), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [49732] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(646), 1, - sym__string_start, - STATE(678), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1961), 8, + ACTIONS(1913), 1, + anon_sym_if, + ACTIONS(1915), 1, + anon_sym_and, + ACTIONS(1917), 1, + anon_sym_or, + ACTIONS(1943), 8, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - anon_sym_PIPE, + anon_sym_else, anon_sym_RBRACK, anon_sym_RBRACE, - [49666] = 2, + anon_sym_EQ, + sym_type_conversion, + [49755] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1856), 11, + ACTIONS(1915), 1, + anon_sym_and, + ACTIONS(1917), 1, + anon_sym_or, + ACTIONS(1885), 9, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + [49776] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1858), 11, anon_sym_import, anon_sym_DOT, anon_sym_LPAREN, @@ -65498,54 +65581,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [49683] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1910), 1, - anon_sym_if, - ACTIONS(1912), 1, - anon_sym_and, - ACTIONS(1914), 1, - anon_sym_or, - ACTIONS(1943), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [49706] = 9, - ACTIONS(1869), 1, + [49793] = 9, + ACTIONS(1865), 1, anon_sym_LBRACE2, - ACTIONS(1873), 1, + ACTIONS(1869), 1, anon_sym_BSLASH, - ACTIONS(1875), 1, + ACTIONS(1871), 1, sym_comment, - ACTIONS(1963), 1, + ACTIONS(1965), 1, sym__string_end, - STATE(926), 1, + STATE(921), 1, aux_sym_string_repeat1, - STATE(1088), 1, - sym_interpolation, - STATE(1089), 1, + STATE(1059), 1, sym_string_content, - STATE(990), 2, + STATE(1092), 1, + sym_interpolation, + STATE(994), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(1871), 3, + ACTIONS(1867), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [49737] = 4, + [49824] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1912), 1, + ACTIONS(1915), 1, anon_sym_and, - ACTIONS(1914), 1, + ACTIONS(1917), 1, anon_sym_or, - ACTIONS(1861), 9, + ACTIONS(1927), 9, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -65555,29 +65620,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - [49758] = 4, + [49845] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1912), 1, + ACTIONS(1915), 1, anon_sym_and, - ACTIONS(1914), 1, - anon_sym_or, - ACTIONS(1916), 9, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [49779] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1912), 1, - anon_sym_and, - ACTIONS(1916), 10, + ACTIONS(1927), 10, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -65588,139 +65636,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_or, sym_type_conversion, - [49798] = 11, + [49864] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, - anon_sym_and, - ACTIONS(1867), 1, - anon_sym_or, + ACTIONS(1879), 1, + anon_sym_if, ACTIONS(1881), 1, - anon_sym_RPAREN, - ACTIONS(1888), 1, - anon_sym_if, - ACTIONS(1890), 1, - anon_sym_async, - ACTIONS(1892), 1, - anon_sym_for, - ACTIONS(1900), 1, - anon_sym_COMMA, - STATE(958), 1, - sym_for_in_clause, - STATE(1111), 1, - aux_sym__collection_elements_repeat1, - STATE(1421), 1, - sym__comprehension_clauses, - [49832] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1910), 1, - anon_sym_if, - ACTIONS(1912), 1, anon_sym_and, - ACTIONS(1914), 1, + ACTIONS(1883), 1, anon_sym_or, - ACTIONS(1965), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [49854] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1865), 1, - anon_sym_and, - ACTIONS(1867), 1, - anon_sym_or, - ACTIONS(1888), 1, - anon_sym_if, - ACTIONS(1890), 1, + ACTIONS(1907), 1, anon_sym_async, - ACTIONS(1892), 1, + ACTIONS(1909), 1, anon_sym_for, + ACTIONS(1931), 1, + anon_sym_COMMA, ACTIONS(1967), 1, anon_sym_RPAREN, - ACTIONS(1969), 1, - anon_sym_COMMA, - STATE(958), 1, + STATE(960), 1, sym_for_in_clause, - STATE(1287), 1, - aux_sym_argument_list_repeat1, - STATE(1508), 1, - sym__comprehension_clauses, - [49888] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1910), 1, - anon_sym_if, - ACTIONS(1912), 1, - anon_sym_and, - ACTIONS(1914), 1, - anon_sym_or, - ACTIONS(1971), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [49910] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1865), 1, - anon_sym_and, - ACTIONS(1867), 1, - anon_sym_or, - ACTIONS(1888), 1, - anon_sym_if, - ACTIONS(1890), 1, - anon_sym_async, - ACTIONS(1892), 1, - anon_sym_for, - ACTIONS(1900), 1, - anon_sym_COMMA, - ACTIONS(1904), 1, - anon_sym_RBRACK, - STATE(958), 1, - sym_for_in_clause, - STATE(1111), 1, + STATE(1124), 1, aux_sym__collection_elements_repeat1, - STATE(1507), 1, + STATE(1476), 1, sym__comprehension_clauses, - [49944] = 11, + [49898] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, - anon_sym_and, - ACTIONS(1867), 1, - anon_sym_or, - ACTIONS(1888), 1, + ACTIONS(1879), 1, anon_sym_if, - ACTIONS(1890), 1, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1907), 1, anon_sym_async, - ACTIONS(1892), 1, + ACTIONS(1909), 1, anon_sym_for, - ACTIONS(1973), 1, - anon_sym_RPAREN, - ACTIONS(1975), 1, + ACTIONS(1931), 1, anon_sym_COMMA, - STATE(958), 1, + ACTIONS(1935), 1, + anon_sym_RBRACK, + STATE(960), 1, sym_for_in_clause, - STATE(1247), 1, - aux_sym_argument_list_repeat1, - STATE(1421), 1, + STATE(1124), 1, + aux_sym__collection_elements_repeat1, + STATE(1493), 1, sym__comprehension_clauses, - [49978] = 3, + [49932] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1979), 2, + ACTIONS(1879), 1, + anon_sym_if, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1907), 1, + anon_sym_async, + ACTIONS(1909), 1, + anon_sym_for, + ACTIONS(1931), 1, + anon_sym_COMMA, + ACTIONS(1935), 1, + anon_sym_RBRACK, + STATE(960), 1, + sym_for_in_clause, + STATE(1124), 1, + aux_sym__collection_elements_repeat1, + STATE(1422), 1, + sym__comprehension_clauses, + [49966] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1879), 1, + anon_sym_if, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1907), 1, + anon_sym_async, + ACTIONS(1909), 1, + anon_sym_for, + ACTIONS(1969), 1, + anon_sym_RPAREN, + ACTIONS(1971), 1, + anon_sym_COMMA, + STATE(960), 1, + sym_for_in_clause, + STATE(1316), 1, + aux_sym_argument_list_repeat1, + STATE(1476), 1, + sym__comprehension_clauses, + [50000] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1975), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1977), 8, + ACTIONS(1973), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -65729,60 +65743,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [49996] = 11, + [50018] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, - anon_sym_and, - ACTIONS(1867), 1, - anon_sym_or, - ACTIONS(1888), 1, + ACTIONS(1913), 1, anon_sym_if, - ACTIONS(1890), 1, - anon_sym_async, - ACTIONS(1892), 1, - anon_sym_for, - ACTIONS(1900), 1, + ACTIONS(1915), 1, + anon_sym_and, + ACTIONS(1917), 1, + anon_sym_or, + ACTIONS(1977), 7, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + [50040] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1879), 1, + anon_sym_if, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1907), 1, + anon_sym_async, + ACTIONS(1909), 1, + anon_sym_for, + ACTIONS(1979), 1, + anon_sym_RPAREN, ACTIONS(1981), 1, - anon_sym_RPAREN, - STATE(958), 1, - sym_for_in_clause, - STATE(1111), 1, - aux_sym__collection_elements_repeat1, - STATE(1508), 1, - sym__comprehension_clauses, - [50030] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1865), 1, - anon_sym_and, - ACTIONS(1867), 1, - anon_sym_or, - ACTIONS(1888), 1, - anon_sym_if, - ACTIONS(1890), 1, - anon_sym_async, - ACTIONS(1892), 1, - anon_sym_for, - ACTIONS(1983), 1, - anon_sym_RPAREN, - ACTIONS(1985), 1, anon_sym_COMMA, - STATE(958), 1, + STATE(960), 1, sym_for_in_clause, - STATE(1314), 1, + STATE(1238), 1, aux_sym_argument_list_repeat1, - STATE(1469), 1, + STATE(1423), 1, sym__comprehension_clauses, - [50064] = 5, + [50074] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1910), 1, + ACTIONS(1913), 1, anon_sym_if, - ACTIONS(1912), 1, + ACTIONS(1915), 1, anon_sym_and, - ACTIONS(1914), 1, + ACTIONS(1917), 1, + anon_sym_or, + ACTIONS(1983), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + [50096] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1913), 1, + anon_sym_if, + ACTIONS(1915), 1, + anon_sym_and, + ACTIONS(1917), 1, + anon_sym_or, + ACTIONS(1985), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + [50118] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1913), 1, + anon_sym_if, + ACTIONS(1915), 1, + anon_sym_and, + ACTIONS(1917), 1, anon_sym_or, ACTIONS(1987), 7, anon_sym_RPAREN, @@ -65792,36 +65834,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - [50086] = 11, + [50140] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, - anon_sym_and, - ACTIONS(1867), 1, - anon_sym_or, - ACTIONS(1888), 1, + ACTIONS(1879), 1, anon_sym_if, - ACTIONS(1890), 1, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1907), 1, anon_sym_async, - ACTIONS(1892), 1, + ACTIONS(1909), 1, anon_sym_for, - ACTIONS(1900), 1, - anon_sym_COMMA, ACTIONS(1989), 1, anon_sym_RPAREN, - STATE(958), 1, + ACTIONS(1991), 1, + anon_sym_COMMA, + STATE(960), 1, sym_for_in_clause, - STATE(1111), 1, - aux_sym__collection_elements_repeat1, - STATE(1469), 1, + STATE(1289), 1, + aux_sym_argument_list_repeat1, + STATE(1510), 1, sym__comprehension_clauses, - [50120] = 3, + [50174] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1993), 2, + ACTIONS(1879), 1, + anon_sym_if, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1907), 1, + anon_sym_async, + ACTIONS(1909), 1, + anon_sym_for, + ACTIONS(1931), 1, + anon_sym_COMMA, + ACTIONS(1993), 1, + anon_sym_RPAREN, + STATE(960), 1, + sym_for_in_clause, + STATE(1124), 1, + aux_sym__collection_elements_repeat1, + STATE(1510), 1, + sym__comprehension_clauses, + [50208] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1879), 1, + anon_sym_if, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1907), 1, + anon_sym_async, + ACTIONS(1909), 1, + anon_sym_for, + ACTIONS(1931), 1, + anon_sym_COMMA, + ACTIONS(1935), 1, + anon_sym_RBRACK, + STATE(960), 1, + sym_for_in_clause, + STATE(1124), 1, + aux_sym__collection_elements_repeat1, + STATE(1509), 1, + sym__comprehension_clauses, + [50242] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1997), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1991), 8, + ACTIONS(1995), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -65830,221 +65918,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [50138] = 5, + [50260] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1910), 1, + ACTIONS(1879), 1, anon_sym_if, - ACTIONS(1912), 1, + ACTIONS(1881), 1, anon_sym_and, - ACTIONS(1914), 1, + ACTIONS(1883), 1, anon_sym_or, - ACTIONS(1995), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [50160] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1865), 1, - anon_sym_and, - ACTIONS(1867), 1, - anon_sym_or, - ACTIONS(1888), 1, - anon_sym_if, - ACTIONS(1890), 1, - anon_sym_async, - ACTIONS(1892), 1, - anon_sym_for, ACTIONS(1900), 1, - anon_sym_COMMA, - ACTIONS(1904), 1, - anon_sym_RBRACK, - STATE(958), 1, - sym_for_in_clause, - STATE(1111), 1, - aux_sym__collection_elements_repeat1, - STATE(1484), 1, - sym__comprehension_clauses, - [50194] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1865), 1, - anon_sym_and, - ACTIONS(1867), 1, - anon_sym_or, - ACTIONS(1888), 1, - anon_sym_if, - ACTIONS(1890), 1, - anon_sym_async, - ACTIONS(1892), 1, - anon_sym_for, - ACTIONS(1900), 1, - anon_sym_COMMA, - ACTIONS(1904), 1, - anon_sym_RBRACK, - STATE(958), 1, - sym_for_in_clause, - STATE(1111), 1, - aux_sym__collection_elements_repeat1, - STATE(1419), 1, - sym__comprehension_clauses, - [50228] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1999), 1, - anon_sym_if, - ACTIONS(2002), 1, - anon_sym_async, - ACTIONS(2005), 1, - anon_sym_for, - ACTIONS(1997), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(955), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [50251] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2010), 1, - anon_sym_PIPE, - STATE(956), 1, - aux_sym_match_or_pattern_repeat1, - ACTIONS(2008), 7, anon_sym_RPAREN, + ACTIONS(1907), 1, + anon_sym_async, + ACTIONS(1909), 1, + anon_sym_for, + ACTIONS(1931), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - [50270] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2015), 1, - anon_sym_PIPE, STATE(960), 1, - aux_sym_match_or_pattern_repeat1, - ACTIONS(2013), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - [50289] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1890), 1, - anon_sym_async, - ACTIONS(1892), 1, - anon_sym_for, - ACTIONS(2019), 1, - anon_sym_if, - ACTIONS(2017), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(964), 3, sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [50312] = 4, + STATE(1124), 1, + aux_sym__collection_elements_repeat1, + STATE(1423), 1, + sym__comprehension_clauses, + [50294] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, - anon_sym_and, - ACTIONS(1867), 1, - anon_sym_or, - ACTIONS(2021), 7, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(2001), 1, anon_sym_if, + ACTIONS(2004), 1, anon_sym_async, + ACTIONS(2007), 1, anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [50331] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2015), 1, - anon_sym_PIPE, - STATE(956), 1, - aux_sym_match_or_pattern_repeat1, - ACTIONS(2023), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - [50350] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1910), 1, - anon_sym_if, - ACTIONS(1912), 1, - anon_sym_and, - ACTIONS(1914), 1, - anon_sym_or, - ACTIONS(1953), 1, - anon_sym_COMMA, - STATE(993), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2025), 4, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [50375] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1865), 1, - anon_sym_and, - ACTIONS(1867), 1, - anon_sym_or, - ACTIONS(2021), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [50394] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1865), 1, - anon_sym_and, - ACTIONS(1867), 1, - anon_sym_or, - ACTIONS(2021), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [50413] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1890), 1, - anon_sym_async, - ACTIONS(1892), 1, - anon_sym_for, - ACTIONS(2019), 1, - anon_sym_if, - ACTIONS(2027), 3, + ACTIONS(1999), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, @@ -66052,25 +65958,152 @@ static const uint16_t ts_small_parse_table[] = { sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [50436] = 5, + [50317] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2029), 1, + ACTIONS(1913), 1, anon_sym_if, - ACTIONS(2031), 1, + ACTIONS(1915), 1, anon_sym_and, - ACTIONS(2033), 1, + ACTIONS(1917), 1, anon_sym_or, - ACTIONS(1908), 5, - sym__newline, - anon_sym_from, + ACTIONS(1941), 1, anon_sym_COMMA, + STATE(988), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2010), 4, + anon_sym_COLON, + anon_sym_RBRACE, anon_sym_EQ, - anon_sym_SEMI, - [50456] = 2, + sym_type_conversion, + [50342] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2035), 8, + ACTIONS(2014), 1, + anon_sym_PIPE, + STATE(961), 1, + aux_sym_match_or_pattern_repeat1, + ACTIONS(2012), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + [50361] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2014), 1, + anon_sym_PIPE, + STATE(957), 1, + aux_sym_match_or_pattern_repeat1, + ACTIONS(2016), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + [50380] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(2018), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + [50399] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1907), 1, + anon_sym_async, + ACTIONS(1909), 1, + anon_sym_for, + ACTIONS(2022), 1, + anon_sym_if, + ACTIONS(2020), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(962), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [50422] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2026), 1, + anon_sym_PIPE, + STATE(961), 1, + aux_sym_match_or_pattern_repeat1, + ACTIONS(2024), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + [50441] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1907), 1, + anon_sym_async, + ACTIONS(1909), 1, + anon_sym_for, + ACTIONS(2022), 1, + anon_sym_if, + ACTIONS(2029), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(955), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [50464] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(2018), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + [50483] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(2018), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + [50502] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2031), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -66079,27 +66112,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [50470] = 7, + [50516] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2035), 1, + anon_sym_COMMA, + STATE(967), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2033), 6, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + [50534] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2039), 1, + anon_sym_COMMA, + STATE(967), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2037), 6, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + [50552] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2042), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [50566] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2044), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [50580] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2046), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [50594] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2048), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [50608] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2050), 1, + anon_sym_from, + ACTIONS(2052), 1, + anon_sym_COMMA, + ACTIONS(2054), 1, + anon_sym_if, + ACTIONS(2056), 1, + anon_sym_and, + ACTIONS(2058), 1, + anon_sym_or, + STATE(1099), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2060), 2, + sym__newline, + anon_sym_SEMI, + [50634] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(67), 1, anon_sym_AT, - ACTIONS(2037), 1, + ACTIONS(2062), 1, anon_sym_async, - ACTIONS(2039), 1, + ACTIONS(2064), 1, anon_sym_def, - ACTIONS(2041), 1, + ACTIONS(2066), 1, anon_sym_class, - STATE(563), 2, + STATE(573), 2, sym_function_definition, sym_class_definition, - STATE(1070), 2, + STATE(1086), 2, sym_decorator, aux_sym_decorated_definition_repeat1, - [50494] = 2, + [50658] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2043), 8, + ACTIONS(2068), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -66108,28 +66235,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [50508] = 8, + [50672] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2029), 1, - anon_sym_if, - ACTIONS(2031), 1, - anon_sym_and, - ACTIONS(2033), 1, - anon_sym_or, - ACTIONS(2045), 1, - anon_sym_from, - ACTIONS(2047), 1, - anon_sym_COMMA, - STATE(1106), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2049), 2, - sym__newline, - anon_sym_SEMI, - [50534] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2051), 8, + ACTIONS(2070), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -66138,233 +66247,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [50548] = 2, + [50686] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2053), 8, + ACTIONS(1951), 1, + anon_sym_DOT, + ACTIONS(1953), 1, + anon_sym_LPAREN, + ACTIONS(2072), 1, + anon_sym_EQ, + STATE(930), 1, + aux_sym_match_value_pattern_repeat1, + ACTIONS(1955), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, anon_sym_PIPE, + [50708] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2076), 1, + anon_sym_COMMA, + STATE(981), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(2074), 6, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [50562] = 3, + [50726] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2031), 1, - anon_sym_and, - ACTIONS(1916), 7, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_if, - anon_sym_EQ, - anon_sym_or, - anon_sym_SEMI, - [50578] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2031), 1, - anon_sym_and, - ACTIONS(2033), 1, - anon_sym_or, - ACTIONS(1916), 6, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_if, - anon_sym_EQ, - anon_sym_SEMI, - [50596] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1439), 8, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_if, - anon_sym_EQ, - anon_sym_and, - anon_sym_or, - anon_sym_SEMI, - [50610] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2031), 1, - anon_sym_and, - ACTIONS(2033), 1, - anon_sym_or, - ACTIONS(1861), 6, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_if, - anon_sym_EQ, - anon_sym_SEMI, - [50628] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, + ACTIONS(870), 1, anon_sym_except_STAR, - ACTIONS(856), 1, + ACTIONS(878), 1, anon_sym_except, - ACTIONS(2055), 1, + ACTIONS(2078), 1, anon_sym_finally, - STATE(580), 1, + STATE(568), 1, sym_finally_clause, - STATE(230), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - STATE(232), 2, + STATE(247), 2, sym_except_group_clause, aux_sym_try_statement_repeat2, - [50652] = 2, + STATE(248), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + [50750] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2057), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(2054), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [50666] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2059), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [50680] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2061), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [50694] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2063), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [50708] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(67), 1, - anon_sym_AT, - ACTIONS(2065), 1, - anon_sym_async, - ACTIONS(2067), 1, - anon_sym_def, - ACTIONS(2069), 1, - anon_sym_class, - STATE(578), 2, - sym_function_definition, - sym_class_definition, - STATE(1070), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - [50732] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2071), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [50746] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2073), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [50760] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2075), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [50774] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2077), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [50788] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2008), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [50802] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2079), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [50816] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2029), 1, - anon_sym_if, - ACTIONS(2031), 1, + ACTIONS(2056), 1, anon_sym_and, - ACTIONS(2033), 1, + ACTIONS(2058), 1, + anon_sym_or, + ACTIONS(1875), 5, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_SEMI, + [50770] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2080), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [50784] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2084), 1, + anon_sym_COMMA, + STATE(981), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(2082), 6, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + [50802] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2056), 1, + anon_sym_and, + ACTIONS(2058), 1, + anon_sym_or, + ACTIONS(1919), 6, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_if, + anon_sym_EQ, + anon_sym_SEMI, + [50820] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2087), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [50834] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(870), 1, + anon_sym_except_STAR, + ACTIONS(878), 1, + anon_sym_except, + ACTIONS(2078), 1, + anon_sym_finally, + STATE(513), 1, + sym_finally_clause, + STATE(239), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + STATE(244), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + [50858] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2089), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [50872] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2091), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [50886] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2054), 1, + anon_sym_if, + ACTIONS(2056), 1, + anon_sym_and, + ACTIONS(2058), 1, anon_sym_or, ACTIONS(1943), 5, sym__newline, @@ -66372,40 +66417,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_EQ, anon_sym_SEMI, - [50836] = 4, + [50906] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2083), 1, + ACTIONS(2093), 1, anon_sym_COMMA, - STATE(1005), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(2081), 6, + STATE(967), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2033), 6, anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, - [50854] = 6, - ACTIONS(1875), 1, - sym_comment, - ACTIONS(2085), 1, - anon_sym_LBRACE2, - ACTIONS(2089), 1, - anon_sym_BSLASH, - ACTIONS(2091), 1, - sym__string_end, - STATE(1010), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(2087), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [50876] = 2, + anon_sym_EQ, + sym_type_conversion, + [50924] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 8, + ACTIONS(2095), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -66414,35 +66443,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [50890] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2097), 1, - anon_sym_COMMA, - STATE(1015), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2095), 6, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [50908] = 4, + [50938] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2099), 1, anon_sym_COMMA, - STATE(1015), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2095), 6, + STATE(1007), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(2097), 6, anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [50926] = 2, + [50956] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2101), 8, @@ -66454,237 +66469,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [50940] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2103), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [50954] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2107), 1, - anon_sym_COMMA, - STATE(996), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(2105), 6, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [50972] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2112), 1, - anon_sym_COMMA, - STATE(996), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(2110), 6, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [50990] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1894), 1, - anon_sym_DOT, - ACTIONS(1955), 1, - anon_sym_LPAREN, - ACTIONS(2114), 1, - anon_sym_EQ, - STATE(912), 1, - aux_sym_match_value_pattern_repeat1, - ACTIONS(1957), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [51012] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2118), 1, - anon_sym_COMMA, - STATE(997), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(2116), 6, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [51030] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2120), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [51044] = 7, + [50970] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(860), 1, anon_sym_except, - ACTIONS(864), 1, + ACTIONS(876), 1, anon_sym_except_STAR, - ACTIONS(2122), 1, + ACTIONS(2103), 1, anon_sym_finally, - STATE(510), 1, + STATE(525), 1, sym_finally_clause, - STATE(235), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - STATE(236), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - [51068] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - anon_sym_except_STAR, - ACTIONS(856), 1, - anon_sym_except, - ACTIONS(2055), 1, - anon_sym_finally, - STATE(511), 1, - sym_finally_clause, - STATE(228), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, STATE(242), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - [51092] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2124), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [51106] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(860), 1, - anon_sym_except, - ACTIONS(864), 1, - anon_sym_except_STAR, - ACTIONS(2122), 1, - anon_sym_finally, - STATE(576), 1, - sym_finally_clause, - STATE(233), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - STATE(234), 2, sym_except_group_clause, aux_sym_try_statement_repeat2, - [51130] = 4, + STATE(243), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + [50994] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2128), 1, - anon_sym_COMMA, - STATE(996), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(2126), 6, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [51148] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2031), 1, - anon_sym_and, - ACTIONS(2033), 1, - anon_sym_or, - ACTIONS(1920), 6, + ACTIONS(1429), 8, sym__newline, anon_sym_from, anon_sym_COMMA, anon_sym_if, anon_sym_EQ, - anon_sym_SEMI, - [51166] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1961), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [51180] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1865), 1, anon_sym_and, - ACTIONS(1867), 1, anon_sym_or, - ACTIONS(2130), 6, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [51198] = 2, - ACTIONS(3), 1, + anon_sym_SEMI, + [51008] = 6, + ACTIONS(1871), 1, sym_comment, - ACTIONS(2132), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [51212] = 6, - ACTIONS(1875), 1, - sym_comment, - ACTIONS(2134), 1, + ACTIONS(2105), 1, anon_sym_LBRACE2, - ACTIONS(2139), 1, + ACTIONS(2109), 1, anon_sym_BSLASH, - ACTIONS(2142), 1, + ACTIONS(2111), 1, sym__string_end, - STATE(1010), 2, + STATE(1005), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(2136), 3, + ACTIONS(2107), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [51234] = 2, + [51030] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2144), 8, + ACTIONS(2113), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -66693,10 +66526,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [51248] = 2, + [51044] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1852), 8, + ACTIONS(1854), 8, sym__newline, anon_sym_from, anon_sym_COMMA, @@ -66705,27 +66538,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_SEMI, - [51262] = 5, + [51058] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2029), 1, - anon_sym_if, - ACTIONS(2031), 1, - anon_sym_and, - ACTIONS(2033), 1, - anon_sym_or, - ACTIONS(1924), 5, + ACTIONS(1850), 8, sym__newline, anon_sym_from, anon_sym_COMMA, + anon_sym_if, anon_sym_EQ, + anon_sym_and, + anon_sym_or, anon_sym_SEMI, - [51282] = 3, + [51072] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2148), 1, + ACTIONS(2115), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_PIPE, - ACTIONS(2146), 7, + anon_sym_RBRACK, + anon_sym_RBRACE, + [51086] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(67), 1, + anon_sym_AT, + ACTIONS(2117), 1, + anon_sym_async, + ACTIONS(2119), 1, + anon_sym_def, + ACTIONS(2121), 1, + anon_sym_class, + STATE(567), 2, + sym_function_definition, + sym_class_definition, + STATE(1086), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + [51110] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2024), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [51124] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2123), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [51138] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2125), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [51152] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2129), 1, + anon_sym_PIPE, + ACTIONS(2127), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -66733,3180 +66628,3356 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, - [51298] = 4, + [51168] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2152), 1, - anon_sym_COMMA, - STATE(1015), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2150), 6, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(2131), 6, anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + [51186] = 6, + ACTIONS(1871), 1, + sym_comment, + ACTIONS(2133), 1, + anon_sym_LBRACE2, + ACTIONS(2138), 1, + anon_sym_BSLASH, + ACTIONS(2141), 1, + sym__string_end, + STATE(1005), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(2135), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [51208] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2143), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [51222] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2147), 1, + anon_sym_COMMA, + STATE(981), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(2145), 6, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + [51240] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2054), 1, + anon_sym_if, + ACTIONS(2056), 1, + anon_sym_and, + ACTIONS(2058), 1, + anon_sym_or, + ACTIONS(1983), 5, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_SEMI, + [51260] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(860), 1, + anon_sym_except, + ACTIONS(876), 1, + anon_sym_except_STAR, + ACTIONS(2103), 1, + anon_sym_finally, + STATE(580), 1, + sym_finally_clause, + STATE(237), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + STATE(250), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + [51284] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1863), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [51298] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2054), 1, + anon_sym_if, + ACTIONS(2056), 1, + anon_sym_and, + ACTIONS(2058), 1, + anon_sym_or, + ACTIONS(1923), 5, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_SEMI, + [51318] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2149), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [51332] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2056), 1, + anon_sym_and, + ACTIONS(2058), 1, + anon_sym_or, + ACTIONS(1885), 6, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_if, + anon_sym_EQ, + anon_sym_SEMI, + [51350] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2153), 1, + anon_sym_COMMA, + STATE(977), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(2151), 6, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + [51368] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2155), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [51382] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2056), 1, + anon_sym_and, + ACTIONS(2058), 1, + anon_sym_or, + ACTIONS(1927), 6, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_if, + anon_sym_EQ, + anon_sym_SEMI, + [51400] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2056), 1, + anon_sym_and, + ACTIONS(1927), 7, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_if, + anon_sym_EQ, + anon_sym_or, + anon_sym_SEMI, + [51416] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1987), 7, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - [51316] = 2, + [51429] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1848), 8, - sym__newline, - anon_sym_from, - anon_sym_COMMA, + ACTIONS(1913), 1, anon_sym_if, - anon_sym_EQ, + ACTIONS(1915), 1, anon_sym_and, + ACTIONS(1917), 1, anon_sym_or, - anon_sym_SEMI, - [51330] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2155), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [51343] = 8, - ACTIONS(3), 1, - sym_comment, ACTIONS(2157), 1, - sym_identifier, + anon_sym_COMMA, ACTIONS(2159), 1, - anon_sym_LPAREN, - ACTIONS(2161), 1, - anon_sym_STAR, - STATE(1094), 1, - sym_dotted_name, - STATE(1146), 1, - sym_aliased_import, - STATE(1394), 1, - sym_wildcard_import, - STATE(1398), 1, - sym__import_list, - [51368] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2029), 1, - anon_sym_if, - ACTIONS(2031), 1, - anon_sym_and, - ACTIONS(2033), 1, - anon_sym_or, - ACTIONS(1965), 4, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_SEMI, - [51387] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2163), 1, - sym_identifier, - ACTIONS(2165), 1, - anon_sym_DOT, - ACTIONS(2167), 1, - anon_sym___future__, - STATE(1186), 1, - aux_sym_import_prefix_repeat1, - STATE(1331), 1, - sym_import_prefix, - STATE(1451), 2, - sym_relative_import, - sym_dotted_name, - [51410] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2029), 1, - anon_sym_if, - ACTIONS(2031), 1, - anon_sym_and, - ACTIONS(2033), 1, - anon_sym_or, - ACTIONS(2047), 1, - anon_sym_COMMA, - STATE(1106), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2169), 2, - sym__newline, - anon_sym_SEMI, - [51433] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2029), 1, - anon_sym_if, - ACTIONS(2031), 1, - anon_sym_and, - ACTIONS(2033), 1, - anon_sym_or, - ACTIONS(2047), 1, - anon_sym_COMMA, - STATE(1106), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2171), 2, - sym__newline, - anon_sym_SEMI, - [51456] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1890), 1, - anon_sym_async, - ACTIONS(1892), 1, - anon_sym_for, - ACTIONS(2173), 1, - anon_sym_COMMA, - ACTIONS(2175), 1, - anon_sym_RBRACE, - STATE(958), 1, - sym_for_in_clause, - STATE(1252), 1, - aux_sym_dictionary_repeat1, - STATE(1504), 1, - sym__comprehension_clauses, - [51481] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1910), 1, - anon_sym_if, - ACTIONS(1912), 1, - anon_sym_and, - ACTIONS(1914), 1, - anon_sym_or, - ACTIONS(2177), 1, - anon_sym_COMMA, - ACTIONS(2179), 1, anon_sym_COLON, - ACTIONS(2181), 1, + ACTIONS(2161), 1, anon_sym_RBRACK, STATE(1251), 1, aux_sym_subscript_repeat1, - [51506] = 8, + [51454] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1910), 1, - anon_sym_if, - ACTIONS(1912), 1, - anon_sym_and, - ACTIONS(1914), 1, - anon_sym_or, - ACTIONS(2179), 1, - anon_sym_COLON, - ACTIONS(2183), 1, + ACTIONS(1907), 1, + anon_sym_async, + ACTIONS(1909), 1, + anon_sym_for, + ACTIONS(2163), 1, anon_sym_COMMA, - ACTIONS(2185), 1, - anon_sym_RBRACK, - STATE(1317), 1, - aux_sym_subscript_repeat1, - [51531] = 6, + ACTIONS(2165), 1, + anon_sym_RBRACE, + STATE(960), 1, + sym_for_in_clause, + STATE(1254), 1, + aux_sym_dictionary_repeat1, + STATE(1506), 1, + sym__comprehension_clauses, + [51479] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2189), 1, - anon_sym_as, - ACTIONS(2191), 1, - anon_sym_if, - ACTIONS(2193), 1, - anon_sym_and, - ACTIONS(2195), 1, - anon_sym_or, - ACTIONS(2187), 3, - anon_sym_RPAREN, + ACTIONS(1907), 1, + anon_sym_async, + ACTIONS(1909), 1, + anon_sym_for, + ACTIONS(2167), 1, anon_sym_COMMA, - anon_sym_COLON, - [51552] = 5, + ACTIONS(2169), 1, + anon_sym_RBRACE, + STATE(960), 1, + sym_for_in_clause, + STATE(1246), 1, + aux_sym_dictionary_repeat1, + STATE(1420), 1, + sym__comprehension_clauses, + [51504] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2191), 1, + ACTIONS(2054), 1, anon_sym_if, - ACTIONS(2193), 1, + ACTIONS(2056), 1, anon_sym_and, - ACTIONS(2195), 1, + ACTIONS(2058), 1, anon_sym_or, - ACTIONS(1908), 4, - anon_sym_RPAREN, + ACTIONS(1987), 4, + sym__newline, + anon_sym_from, anon_sym_COMMA, - anon_sym_as, - anon_sym_COLON, - [51571] = 5, + anon_sym_SEMI, + [51523] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2191), 1, - anon_sym_if, - ACTIONS(2193), 1, - anon_sym_and, - ACTIONS(2195), 1, - anon_sym_or, - ACTIONS(1924), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_COLON, - [51590] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2193), 1, - anon_sym_and, - ACTIONS(2195), 1, - anon_sym_or, - ACTIONS(1916), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [51607] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, + ACTIONS(2171), 1, sym_identifier, - ACTIONS(2199), 1, + ACTIONS(2173), 1, + anon_sym_DOT, + ACTIONS(2175), 1, + anon_sym___future__, + STATE(1143), 1, + aux_sym_import_prefix_repeat1, + STATE(1340), 1, + sym_import_prefix, + STATE(1453), 2, + sym_relative_import, + sym_dotted_name, + [51546] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1913), 1, + anon_sym_if, + ACTIONS(1915), 1, + anon_sym_and, + ACTIONS(1917), 1, + anon_sym_or, + ACTIONS(2177), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [51565] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1913), 1, + anon_sym_if, + ACTIONS(1915), 1, + anon_sym_and, + ACTIONS(1917), 1, + anon_sym_or, + ACTIONS(2179), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RBRACE, + [51584] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2054), 1, + anon_sym_if, + ACTIONS(2056), 1, + anon_sym_and, + ACTIONS(2058), 1, + anon_sym_or, + ACTIONS(2181), 1, + anon_sym_COMMA, + STATE(1131), 1, + aux_sym_print_statement_repeat1, + ACTIONS(2183), 2, + sym__newline, + anon_sym_SEMI, + [51607] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2054), 1, + anon_sym_if, + ACTIONS(2056), 1, + anon_sym_and, + ACTIONS(2058), 1, + anon_sym_or, + ACTIONS(2185), 1, + anon_sym_COMMA, + STATE(1192), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(2187), 2, + sym__newline, + anon_sym_SEMI, + [51630] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2189), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + [51643] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1907), 1, + anon_sym_async, + ACTIONS(1909), 1, + anon_sym_for, + ACTIONS(2191), 1, + anon_sym_COMMA, + ACTIONS(2193), 1, + anon_sym_RBRACE, + STATE(960), 1, + sym_for_in_clause, + STATE(1279), 1, + aux_sym_dictionary_repeat1, + STATE(1496), 1, + sym__comprehension_clauses, + [51668] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1913), 1, + anon_sym_if, + ACTIONS(1915), 1, + anon_sym_and, + ACTIONS(1917), 1, + anon_sym_or, + ACTIONS(2159), 1, + anon_sym_COLON, + ACTIONS(2195), 1, + anon_sym_COMMA, + ACTIONS(2197), 1, + anon_sym_RBRACK, + STATE(1292), 1, + aux_sym_subscript_repeat1, + [51693] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2199), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + [51706] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2082), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + [51719] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + anon_sym_COMMA, + ACTIONS(2054), 1, + anon_sym_if, + ACTIONS(2056), 1, + anon_sym_and, + ACTIONS(2058), 1, + anon_sym_or, + STATE(1099), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2201), 2, + sym__newline, + anon_sym_SEMI, + [51742] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1939), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + [51755] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + anon_sym_COMMA, + ACTIONS(2054), 1, + anon_sym_if, + ACTIONS(2056), 1, + anon_sym_and, + ACTIONS(2058), 1, + anon_sym_or, + STATE(1099), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2203), 2, + sym__newline, + anon_sym_SEMI, + [51778] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2205), 1, + sym_identifier, + ACTIONS(2207), 1, anon_sym_STAR, - ACTIONS(2201), 1, + ACTIONS(2209), 1, anon_sym_STAR_STAR, - STATE(1380), 4, + STATE(1301), 4, sym_typevar_parameter, sym_typevartuple_parameter, sym_paramspec_parameter, sym__type_parameter, - [51626] = 3, + [51797] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2193), 1, + ACTIONS(2054), 1, + anon_sym_if, + ACTIONS(2056), 1, anon_sym_and, - ACTIONS(1916), 6, + ACTIONS(2058), 1, + anon_sym_or, + ACTIONS(1977), 4, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_SEMI, + [51816] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + anon_sym_COMMA, + ACTIONS(2054), 1, + anon_sym_if, + ACTIONS(2056), 1, + anon_sym_and, + ACTIONS(2058), 1, + anon_sym_or, + STATE(1099), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2211), 2, + sym__newline, + anon_sym_SEMI, + [51839] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2205), 1, + sym_identifier, + ACTIONS(2207), 1, + anon_sym_STAR, + ACTIONS(2209), 1, + anon_sym_STAR_STAR, + STATE(1383), 4, + sym_typevar_parameter, + sym_typevartuple_parameter, + sym_paramspec_parameter, + sym__type_parameter, + [51858] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + anon_sym_COMMA, + ACTIONS(2054), 1, + anon_sym_if, + ACTIONS(2056), 1, + anon_sym_and, + ACTIONS(2058), 1, + anon_sym_or, + STATE(1099), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2213), 2, + sym__newline, + anon_sym_SEMI, + [51881] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1879), 1, + anon_sym_if, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(2215), 4, + anon_sym_COMMA, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [51900] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + anon_sym_COMMA, + ACTIONS(2054), 1, + anon_sym_if, + ACTIONS(2056), 1, + anon_sym_and, + ACTIONS(2058), 1, + anon_sym_or, + STATE(1099), 1, + aux_sym_expression_list_repeat1, + ACTIONS(1939), 2, + sym__newline, + anon_sym_SEMI, + [51923] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1850), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_and, anon_sym_or, - [51641] = 4, + [51936] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2193), 1, - anon_sym_and, - ACTIONS(2195), 1, - anon_sym_or, - ACTIONS(1861), 5, + ACTIONS(2219), 1, + anon_sym_as, + ACTIONS(2217), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + [51951] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1854), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - [51658] = 5, + anon_sym_and, + anon_sym_or, + [51964] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2191), 1, - anon_sym_if, - ACTIONS(2193), 1, + ACTIONS(2221), 1, anon_sym_and, - ACTIONS(2195), 1, + ACTIONS(2223), 1, anon_sym_or, + ACTIONS(1919), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + [51981] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2221), 1, + anon_sym_and, + ACTIONS(2223), 1, + anon_sym_or, + ACTIONS(2225), 1, + anon_sym_if, ACTIONS(1943), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_COLON, - [51677] = 4, + [52000] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2193), 1, + ACTIONS(2221), 1, anon_sym_and, - ACTIONS(2195), 1, - anon_sym_or, - ACTIONS(1920), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [51694] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2029), 1, - anon_sym_if, - ACTIONS(2031), 1, - anon_sym_and, - ACTIONS(2033), 1, - anon_sym_or, - ACTIONS(2047), 1, - anon_sym_COMMA, - STATE(1106), 1, - aux_sym_expression_list_repeat1, - ACTIONS(1951), 2, - sym__newline, - anon_sym_SEMI, - [51717] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2029), 1, - anon_sym_if, - ACTIONS(2031), 1, - anon_sym_and, - ACTIONS(2033), 1, - anon_sym_or, - ACTIONS(2047), 1, - anon_sym_COMMA, - STATE(1106), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2203), 2, - sym__newline, - anon_sym_SEMI, - [51740] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2029), 1, - anon_sym_if, - ACTIONS(2031), 1, - anon_sym_and, - ACTIONS(2033), 1, - anon_sym_or, - ACTIONS(2047), 1, - anon_sym_COMMA, - STATE(1106), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2205), 2, - sym__newline, - anon_sym_SEMI, - [51763] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2209), 1, - anon_sym_as, - ACTIONS(2207), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - [51778] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1890), 1, - anon_sym_async, - ACTIONS(1892), 1, - anon_sym_for, - ACTIONS(2211), 1, - anon_sym_COMMA, - ACTIONS(2213), 1, - anon_sym_RBRACE, - STATE(958), 1, - sym_for_in_clause, - STATE(1244), 1, - aux_sym_dictionary_repeat1, - STATE(1417), 1, - sym__comprehension_clauses, - [51803] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2029), 1, - anon_sym_if, - ACTIONS(2031), 1, - anon_sym_and, - ACTIONS(2033), 1, - anon_sym_or, - ACTIONS(1971), 4, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_SEMI, - [51822] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2029), 1, - anon_sym_if, - ACTIONS(2031), 1, - anon_sym_and, - ACTIONS(2033), 1, - anon_sym_or, - ACTIONS(2215), 1, - anon_sym_COMMA, - STATE(1193), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(2217), 2, - sym__newline, - anon_sym_SEMI, - [51845] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2029), 1, - anon_sym_if, - ACTIONS(2031), 1, - anon_sym_and, - ACTIONS(2033), 1, - anon_sym_or, - ACTIONS(1995), 4, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_SEMI, - [51864] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1951), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [51877] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1910), 1, - anon_sym_if, - ACTIONS(1912), 1, - anon_sym_and, - ACTIONS(1914), 1, - anon_sym_or, - ACTIONS(2219), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RBRACE, - [51896] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2105), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [51909] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2221), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [51922] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1910), 1, - anon_sym_if, - ACTIONS(1912), 1, - anon_sym_and, - ACTIONS(1914), 1, - anon_sym_or, - ACTIONS(2179), 1, - anon_sym_COLON, ACTIONS(2223), 1, + anon_sym_or, + ACTIONS(1885), 5, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + [52017] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2221), 1, + anon_sym_and, + ACTIONS(2223), 1, + anon_sym_or, ACTIONS(2225), 1, - anon_sym_RBRACK, - STATE(1290), 1, - aux_sym_subscript_repeat1, - [51947] = 5, + anon_sym_if, + ACTIONS(2229), 1, + anon_sym_as, + ACTIONS(2227), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + [52038] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, - anon_sym_and, - ACTIONS(1867), 1, - anon_sym_or, - ACTIONS(1888), 1, + ACTIONS(2054), 1, anon_sym_if, - ACTIONS(2227), 4, - anon_sym_COMMA, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [51966] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2029), 1, - anon_sym_if, - ACTIONS(2031), 1, + ACTIONS(2056), 1, anon_sym_and, - ACTIONS(2033), 1, + ACTIONS(2058), 1, anon_sym_or, - ACTIONS(2215), 1, + ACTIONS(2185), 1, anon_sym_COMMA, - STATE(1194), 1, + STATE(1206), 1, aux_sym_assert_statement_repeat1, - ACTIONS(2229), 2, + ACTIONS(2231), 2, sym__newline, anon_sym_SEMI, - [51989] = 8, + [52061] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1890), 1, - anon_sym_async, - ACTIONS(1892), 1, - anon_sym_for, - ACTIONS(2231), 1, - anon_sym_COMMA, - ACTIONS(2233), 1, - anon_sym_RBRACE, - STATE(958), 1, - sym_for_in_clause, - STATE(1277), 1, - aux_sym_dictionary_repeat1, - STATE(1493), 1, - sym__comprehension_clauses, - [52014] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1910), 1, - anon_sym_if, - ACTIONS(1912), 1, + ACTIONS(2221), 1, anon_sym_and, - ACTIONS(1914), 1, - anon_sym_or, - ACTIONS(2235), 4, + ACTIONS(1927), 6, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_EQ, - [52033] = 2, + anon_sym_or, + [52076] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1965), 7, + ACTIONS(2221), 1, + anon_sym_and, + ACTIONS(2223), 1, + anon_sym_or, + ACTIONS(1927), 5, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + [52093] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1429), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + [52106] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2221), 1, + anon_sym_and, + ACTIONS(2223), 1, + anon_sym_or, + ACTIONS(2225), 1, + anon_sym_if, + ACTIONS(1875), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + [52125] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1913), 1, + anon_sym_if, + ACTIONS(1915), 1, + anon_sym_and, + ACTIONS(1917), 1, + anon_sym_or, + ACTIONS(2159), 1, + anon_sym_COLON, + ACTIONS(2233), 1, + anon_sym_COMMA, + ACTIONS(2235), 1, + anon_sym_RBRACK, + STATE(1320), 1, + aux_sym_subscript_repeat1, + [52150] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2221), 1, + anon_sym_and, + ACTIONS(2223), 1, + anon_sym_or, + ACTIONS(2225), 1, + anon_sym_if, + ACTIONS(1923), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + [52169] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2237), 1, + sym_identifier, + ACTIONS(2239), 1, + anon_sym_LPAREN, + ACTIONS(2241), 1, + anon_sym_STAR, + STATE(1125), 1, + sym_dotted_name, + STATE(1155), 1, + sym_aliased_import, + STATE(1349), 1, + sym__import_list, + STATE(1396), 1, + sym_wildcard_import, + [52194] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2243), 1, + anon_sym_DOT, + STATE(1076), 1, + aux_sym_match_value_pattern_repeat1, + ACTIONS(2245), 4, + sym__newline, + anon_sym_COMMA, + anon_sym_as, + anon_sym_SEMI, + [52210] = 3, + ACTIONS(1871), 1, + sym_comment, + ACTIONS(2247), 2, + anon_sym_LBRACE2, + anon_sym_BSLASH, + ACTIONS(2249), 4, + sym__string_content, + sym__string_end, + sym__escape_interpolation, + sym_escape_sequence, + [52224] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2253), 1, + anon_sym_COMMA, + STATE(1060), 1, + aux_sym_open_sequence_match_pattern_repeat1, + ACTIONS(2251), 4, + anon_sym_RPAREN, + anon_sym_if, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [52046] = 2, + [52240] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1439), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_and, - anon_sym_or, - [52059] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1852), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_and, - anon_sym_or, - [52072] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2029), 1, - anon_sym_if, - ACTIONS(2031), 1, - anon_sym_and, - ACTIONS(2033), 1, - anon_sym_or, - ACTIONS(2237), 1, - anon_sym_COMMA, - STATE(1195), 1, - aux_sym_print_statement_repeat1, - ACTIONS(2239), 2, - sym__newline, - anon_sym_SEMI, - [52095] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 1, - sym_identifier, - ACTIONS(2199), 1, - anon_sym_STAR, - ACTIONS(2201), 1, - anon_sym_STAR_STAR, - STATE(1299), 4, - sym_typevar_parameter, - sym_typevartuple_parameter, - sym_paramspec_parameter, - sym__type_parameter, - [52114] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1848), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_and, - anon_sym_or, - [52127] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1910), 1, - anon_sym_if, - ACTIONS(1912), 1, - anon_sym_and, - ACTIONS(1914), 1, - anon_sym_or, - ACTIONS(1953), 1, - anon_sym_COMMA, - ACTIONS(2241), 1, - anon_sym_COLON, - STATE(993), 1, - aux_sym_expression_list_repeat1, - [52149] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1894), 1, + ACTIONS(1951), 1, anon_sym_DOT, STATE(907), 1, aux_sym_match_value_pattern_repeat1, - ACTIONS(2243), 4, + ACTIONS(2256), 4, anon_sym_import, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - [52165] = 3, - ACTIONS(1875), 1, + [52256] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(2245), 2, + ACTIONS(1913), 1, + anon_sym_if, + ACTIONS(1915), 1, + anon_sym_and, + ACTIONS(1917), 1, + anon_sym_or, + ACTIONS(1941), 1, + anon_sym_COMMA, + ACTIONS(2258), 1, + anon_sym_COLON, + STATE(988), 1, + aux_sym_expression_list_repeat1, + [52278] = 3, + ACTIONS(1871), 1, + sym_comment, + ACTIONS(2260), 2, anon_sym_LBRACE2, anon_sym_BSLASH, - ACTIONS(2247), 4, + ACTIONS(2262), 4, sym__string_content, sym__string_end, sym__escape_interpolation, sym_escape_sequence, - [52179] = 6, + [52292] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2191), 1, - anon_sym_if, - ACTIONS(2193), 1, - anon_sym_and, - ACTIONS(2195), 1, - anon_sym_or, - ACTIONS(2251), 1, - anon_sym_COLON, - ACTIONS(2249), 2, - anon_sym_COMMA, - anon_sym_as, - [52199] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1910), 1, - anon_sym_if, - ACTIONS(1912), 1, - anon_sym_and, - ACTIONS(1914), 1, - anon_sym_or, - ACTIONS(1953), 1, - anon_sym_COMMA, - ACTIONS(2253), 1, - anon_sym_COLON, - STATE(993), 1, - aux_sym_expression_list_repeat1, - [52221] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2255), 1, - anon_sym_DOT, - STATE(1085), 1, - aux_sym_match_value_pattern_repeat1, - ACTIONS(2243), 4, - sym__newline, - anon_sym_COMMA, - anon_sym_as, - anon_sym_SEMI, - [52237] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2029), 1, - anon_sym_if, - ACTIONS(2031), 1, - anon_sym_and, - ACTIONS(2033), 1, - anon_sym_or, - ACTIONS(2257), 3, - sym__newline, - anon_sym_COMMA, - anon_sym_SEMI, - [52255] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1910), 1, - anon_sym_if, - ACTIONS(1912), 1, - anon_sym_and, - ACTIONS(1914), 1, - anon_sym_or, - ACTIONS(2259), 3, + ACTIONS(2264), 6, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - [52273] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2029), 1, anon_sym_if, - ACTIONS(2031), 1, - anon_sym_and, - ACTIONS(2033), 1, - anon_sym_or, - ACTIONS(2261), 3, - sym__newline, - anon_sym_COMMA, - anon_sym_SEMI, - [52291] = 4, - ACTIONS(3), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + [52304] = 3, + ACTIONS(1871), 1, sym_comment, - ACTIONS(2255), 1, - anon_sym_DOT, - STATE(1063), 1, - aux_sym_match_value_pattern_repeat1, - ACTIONS(2263), 4, - sym__newline, - anon_sym_COMMA, - anon_sym_as, - anon_sym_SEMI, - [52307] = 3, - ACTIONS(1875), 1, - sym_comment, - ACTIONS(2265), 2, + ACTIONS(2266), 2, anon_sym_LBRACE2, anon_sym_BSLASH, - ACTIONS(2267), 4, + ACTIONS(2268), 4, sym__string_content, sym__string_end, sym__escape_interpolation, sym_escape_sequence, - [52321] = 5, + [52318] = 3, + ACTIONS(1871), 1, + sym_comment, + ACTIONS(2270), 2, + anon_sym_LBRACE2, + anon_sym_BSLASH, + ACTIONS(2272), 4, + sym__string_content, + sym__string_end, + sym__escape_interpolation, + sym_escape_sequence, + [52332] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2029), 1, + ACTIONS(1913), 1, anon_sym_if, - ACTIONS(2031), 1, + ACTIONS(1915), 1, anon_sym_and, - ACTIONS(2033), 1, - anon_sym_or, - ACTIONS(2235), 3, - sym__newline, - anon_sym_EQ, - anon_sym_SEMI, - [52339] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2271), 1, - anon_sym_AT, - STATE(1070), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - ACTIONS(2269), 3, - anon_sym_async, - anon_sym_def, - anon_sym_class, - [52355] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1910), 1, - anon_sym_if, - ACTIONS(1912), 1, - anon_sym_and, - ACTIONS(1914), 1, + ACTIONS(1917), 1, anon_sym_or, ACTIONS(2276), 1, anon_sym_COLON, ACTIONS(2274), 2, anon_sym_COMMA, anon_sym_RBRACK, - [52375] = 3, - ACTIONS(1875), 1, - sym_comment, - ACTIONS(2278), 2, - anon_sym_LBRACE2, - anon_sym_BSLASH, - ACTIONS(2280), 4, - sym__string_content, - sym__string_end, - sym__escape_interpolation, - sym_escape_sequence, - [52389] = 6, + [52352] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1910), 1, + ACTIONS(2054), 1, anon_sym_if, - ACTIONS(1912), 1, + ACTIONS(2056), 1, anon_sym_and, - ACTIONS(1914), 1, + ACTIONS(2058), 1, anon_sym_or, - ACTIONS(2179), 1, - anon_sym_COLON, - ACTIONS(2282), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [52409] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1910), 1, - anon_sym_if, - ACTIONS(1912), 1, - anon_sym_and, - ACTIONS(1914), 1, - anon_sym_or, - ACTIONS(1953), 1, - anon_sym_COMMA, - ACTIONS(2284), 1, - anon_sym_COLON, - STATE(993), 1, - aux_sym_expression_list_repeat1, - [52431] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1910), 1, - anon_sym_if, - ACTIONS(1912), 1, - anon_sym_and, - ACTIONS(1914), 1, - anon_sym_or, - ACTIONS(2286), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ, - [52449] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2290), 1, - anon_sym_COMMA, - STATE(1076), 1, - aux_sym_open_sequence_match_pattern_repeat1, - ACTIONS(2288), 4, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - [52465] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1910), 1, - anon_sym_if, - ACTIONS(1912), 1, - anon_sym_and, - ACTIONS(1914), 1, - anon_sym_or, - ACTIONS(2295), 1, - anon_sym_COLON, - ACTIONS(2293), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [52485] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2029), 1, - anon_sym_if, - ACTIONS(2031), 1, - anon_sym_and, - ACTIONS(2033), 1, - anon_sym_or, - ACTIONS(2297), 3, + ACTIONS(2278), 3, sym__newline, anon_sym_COMMA, anon_sym_SEMI, - [52503] = 7, + [52370] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1910), 1, + ACTIONS(1913), 1, anon_sym_if, - ACTIONS(1912), 1, + ACTIONS(1915), 1, anon_sym_and, - ACTIONS(1914), 1, + ACTIONS(1917), 1, anon_sym_or, - ACTIONS(1953), 1, - anon_sym_COMMA, - ACTIONS(2299), 1, + ACTIONS(2282), 1, anon_sym_COLON, - STATE(993), 1, - aux_sym_expression_list_repeat1, - [52525] = 7, + ACTIONS(2280), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [52390] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1910), 1, + ACTIONS(2054), 1, anon_sym_if, - ACTIONS(1912), 1, + ACTIONS(2056), 1, anon_sym_and, - ACTIONS(1914), 1, + ACTIONS(2058), 1, anon_sym_or, - ACTIONS(1953), 1, + ACTIONS(2284), 3, + sym__newline, anon_sym_COMMA, - ACTIONS(2301), 1, - anon_sym_COLON, - STATE(993), 1, - aux_sym_expression_list_repeat1, - [52547] = 3, - ACTIONS(1875), 1, - sym_comment, - ACTIONS(2303), 2, - anon_sym_LBRACE2, - anon_sym_BSLASH, - ACTIONS(2305), 4, - sym__string_content, - sym__string_end, - sym__escape_interpolation, - sym_escape_sequence, - [52561] = 6, + anon_sym_SEMI, + [52408] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2191), 1, - anon_sym_if, - ACTIONS(2193), 1, - anon_sym_and, - ACTIONS(2195), 1, - anon_sym_or, - ACTIONS(2309), 1, - anon_sym_COLON, - ACTIONS(2307), 2, - anon_sym_COMMA, - anon_sym_as, - [52581] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1910), 1, - anon_sym_if, - ACTIONS(1912), 1, - anon_sym_and, - ACTIONS(1914), 1, - anon_sym_or, - ACTIONS(2311), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - [52599] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2313), 6, + ACTIONS(1955), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, - [52611] = 4, + [52420] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2315), 1, + ACTIONS(1913), 1, + anon_sym_if, + ACTIONS(1915), 1, + anon_sym_and, + ACTIONS(1917), 1, + anon_sym_or, + ACTIONS(2286), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + [52438] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2054), 1, + anon_sym_if, + ACTIONS(2056), 1, + anon_sym_and, + ACTIONS(2058), 1, + anon_sym_or, + ACTIONS(2288), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_SEMI, + [52456] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1913), 1, + anon_sym_if, + ACTIONS(1915), 1, + anon_sym_and, + ACTIONS(1917), 1, + anon_sym_or, + ACTIONS(1941), 1, + anon_sym_COMMA, + ACTIONS(2290), 1, + anon_sym_COLON, + STATE(988), 1, + aux_sym_expression_list_repeat1, + [52478] = 3, + ACTIONS(1871), 1, + sym_comment, + ACTIONS(2292), 2, + anon_sym_LBRACE2, + anon_sym_BSLASH, + ACTIONS(2294), 4, + sym__string_content, + sym__string_end, + sym__escape_interpolation, + sym_escape_sequence, + [52492] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2243), 1, anon_sym_DOT, - STATE(1085), 1, + STATE(1080), 1, aux_sym_match_value_pattern_repeat1, - ACTIONS(1856), 4, + ACTIONS(2256), 4, sym__newline, anon_sym_COMMA, anon_sym_as, anon_sym_SEMI, - [52627] = 7, + [52508] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1910), 1, + ACTIONS(1913), 1, anon_sym_if, - ACTIONS(1912), 1, + ACTIONS(1915), 1, anon_sym_and, - ACTIONS(1914), 1, + ACTIONS(1917), 1, anon_sym_or, - ACTIONS(1967), 1, + ACTIONS(1989), 1, anon_sym_RPAREN, - ACTIONS(1969), 1, + ACTIONS(1991), 1, anon_sym_COMMA, - STATE(1287), 1, + STATE(1289), 1, aux_sym_argument_list_repeat1, - [52649] = 4, + [52530] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1894), 1, + ACTIONS(1913), 1, + anon_sym_if, + ACTIONS(1915), 1, + anon_sym_and, + ACTIONS(1917), 1, + anon_sym_or, + ACTIONS(2296), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + [52548] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1913), 1, + anon_sym_if, + ACTIONS(1915), 1, + anon_sym_and, + ACTIONS(1917), 1, + anon_sym_or, + ACTIONS(1941), 1, + anon_sym_COMMA, + ACTIONS(2298), 1, + anon_sym_COLON, + STATE(988), 1, + aux_sym_expression_list_repeat1, + [52570] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2300), 1, anon_sym_DOT, - STATE(1059), 1, + STATE(1080), 1, aux_sym_match_value_pattern_repeat1, - ACTIONS(2263), 4, + ACTIONS(1858), 4, + sym__newline, + anon_sym_COMMA, + anon_sym_as, + anon_sym_SEMI, + [52586] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2221), 1, + anon_sym_and, + ACTIONS(2223), 1, + anon_sym_or, + ACTIONS(2225), 1, + anon_sym_if, + ACTIONS(2305), 1, + anon_sym_COLON, + ACTIONS(2303), 2, + anon_sym_COMMA, + anon_sym_as, + [52606] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1913), 1, + anon_sym_if, + ACTIONS(1915), 1, + anon_sym_and, + ACTIONS(1917), 1, + anon_sym_or, + ACTIONS(2159), 1, + anon_sym_COLON, + ACTIONS(2307), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [52626] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1913), 1, + anon_sym_if, + ACTIONS(1915), 1, + anon_sym_and, + ACTIONS(1917), 1, + anon_sym_or, + ACTIONS(1941), 1, + anon_sym_COMMA, + ACTIONS(2309), 1, + anon_sym_COLON, + STATE(988), 1, + aux_sym_expression_list_repeat1, + [52648] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1913), 1, + anon_sym_if, + ACTIONS(1915), 1, + anon_sym_and, + ACTIONS(1917), 1, + anon_sym_or, + ACTIONS(2311), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + [52666] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2315), 1, + anon_sym_COLON, + ACTIONS(2317), 1, + anon_sym_EQ, + STATE(1203), 1, + sym__type_bound, + STATE(1359), 1, + sym__type_param_default, + ACTIONS(2313), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [52686] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2321), 1, + anon_sym_AT, + STATE(1086), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + ACTIONS(2319), 3, + anon_sym_async, + anon_sym_def, + anon_sym_class, + [52702] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1913), 1, + anon_sym_if, + ACTIONS(1915), 1, + anon_sym_and, + ACTIONS(1917), 1, + anon_sym_or, + ACTIONS(1941), 1, + anon_sym_COMMA, + ACTIONS(2324), 1, + anon_sym_COLON, + STATE(988), 1, + aux_sym_expression_list_repeat1, + [52724] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1913), 1, + anon_sym_if, + ACTIONS(1915), 1, + anon_sym_and, + ACTIONS(1917), 1, + anon_sym_or, + ACTIONS(1941), 1, + anon_sym_COMMA, + ACTIONS(2326), 1, + anon_sym_COLON, + STATE(988), 1, + aux_sym_expression_list_repeat1, + [52746] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2054), 1, + anon_sym_if, + ACTIONS(2056), 1, + anon_sym_and, + ACTIONS(2058), 1, + anon_sym_or, + ACTIONS(2177), 3, + sym__newline, + anon_sym_EQ, + anon_sym_SEMI, + [52764] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1951), 1, + anon_sym_DOT, + STATE(1061), 1, + aux_sym_match_value_pattern_repeat1, + ACTIONS(2245), 4, anon_sym_import, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - [52665] = 3, - ACTIONS(1875), 1, - sym_comment, - ACTIONS(2318), 2, - anon_sym_LBRACE2, - anon_sym_BSLASH, - ACTIONS(2320), 4, - sym__string_content, - sym__string_end, - sym__escape_interpolation, - sym_escape_sequence, - [52679] = 3, - ACTIONS(1875), 1, - sym_comment, - ACTIONS(2322), 2, - anon_sym_LBRACE2, - anon_sym_BSLASH, - ACTIONS(2324), 4, - sym__string_content, - sym__string_end, - sym__escape_interpolation, - sym_escape_sequence, - [52693] = 6, + [52780] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2328), 1, - anon_sym_COLON, - ACTIONS(2330), 1, - anon_sym_EQ, - STATE(1153), 1, - sym__type_bound, - STATE(1355), 1, - sym__type_param_default, - ACTIONS(2326), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [52713] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1957), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - [52725] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1910), 1, - anon_sym_if, - ACTIONS(1912), 1, + ACTIONS(2221), 1, anon_sym_and, - ACTIONS(1914), 1, + ACTIONS(2223), 1, anon_sym_or, - ACTIONS(1953), 1, - anon_sym_COMMA, - ACTIONS(2332), 1, + ACTIONS(2225), 1, + anon_sym_if, + ACTIONS(2330), 1, anon_sym_COLON, - STATE(993), 1, - aux_sym_expression_list_repeat1, - [52747] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2157), 1, - sym_identifier, - STATE(1180), 1, - sym_dotted_name, - STATE(1240), 1, - sym_aliased_import, - ACTIONS(2334), 2, - sym__newline, - anon_sym_SEMI, - [52764] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2336), 1, + ACTIONS(2328), 2, anon_sym_COMMA, + anon_sym_as, + [52800] = 3, + ACTIONS(1871), 1, + sym_comment, + ACTIONS(2332), 2, + anon_sym_LBRACE2, + anon_sym_BSLASH, + ACTIONS(2334), 4, + sym__string_content, + sym__string_end, + sym__escape_interpolation, + sym_escape_sequence, + [52814] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1913), 1, + anon_sym_if, + ACTIONS(1915), 1, + anon_sym_and, + ACTIONS(1917), 1, + anon_sym_or, + ACTIONS(2336), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [52831] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2221), 1, + anon_sym_and, + ACTIONS(2223), 1, + anon_sym_or, + ACTIONS(2225), 1, + anon_sym_if, ACTIONS(2338), 1, anon_sym_as, - STATE(1208), 1, - aux_sym__import_list_repeat1, - ACTIONS(2340), 2, - sym__newline, - anon_sym_SEMI, - [52781] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2157), 1, - sym_identifier, - STATE(1180), 1, - sym_dotted_name, - STATE(1240), 1, - sym_aliased_import, - ACTIONS(2334), 2, - sym__newline, - anon_sym_SEMI, - [52798] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2342), 1, - anon_sym_COMMA, - STATE(1125), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2095), 3, - sym__newline, - anon_sym_from, - anon_sym_SEMI, - [52813] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2344), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, + ACTIONS(2340), 1, anon_sym_COLON, - anon_sym_RBRACK, - [52824] = 5, + [52850] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2029), 1, - anon_sym_if, - ACTIONS(2031), 1, - anon_sym_and, - ACTIONS(2033), 1, - anon_sym_or, - ACTIONS(1987), 2, + ACTIONS(2237), 1, + sym_identifier, + STATE(1178), 1, + sym_dotted_name, + STATE(1242), 1, + sym_aliased_import, + ACTIONS(2342), 2, sym__newline, anon_sym_SEMI, - [52841] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1910), 1, - anon_sym_if, - ACTIONS(1912), 1, - anon_sym_and, - ACTIONS(1914), 1, - anon_sym_or, - ACTIONS(2227), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [52858] = 6, + [52867] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(2344), 1, + anon_sym_LPAREN, ACTIONS(2346), 1, anon_sym_COLON, ACTIONS(2348), 1, - anon_sym_RBRACE, - ACTIONS(2350), 1, - anon_sym_EQ, - ACTIONS(2352), 1, - sym_type_conversion, - STATE(1499), 1, - sym_format_specifier, - [52877] = 5, + anon_sym_LBRACK, + STATE(1272), 1, + sym_type_parameters, + STATE(1500), 1, + sym_argument_list, + [52886] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1910), 1, - anon_sym_if, - ACTIONS(1912), 1, - anon_sym_and, - ACTIONS(1914), 1, - anon_sym_or, - ACTIONS(2354), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [52894] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2029), 1, - anon_sym_if, - ACTIONS(2031), 1, - anon_sym_and, - ACTIONS(2033), 1, - anon_sym_or, - ACTIONS(2356), 2, + ACTIONS(2237), 1, + sym_identifier, + STATE(1178), 1, + sym_dotted_name, + STATE(1242), 1, + sym_aliased_import, + ACTIONS(2342), 2, sym__newline, anon_sym_SEMI, - [52911] = 2, + [52903] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1856), 5, + ACTIONS(1913), 1, + anon_sym_if, + ACTIONS(1915), 1, + anon_sym_and, + ACTIONS(1917), 1, + anon_sym_or, + ACTIONS(2215), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [52920] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2350), 1, + anon_sym_COMMA, + STATE(1103), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2033), 3, + sym__newline, + anon_sym_from, + anon_sym_SEMI, + [52935] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2054), 1, + anon_sym_if, + ACTIONS(2056), 1, + anon_sym_and, + ACTIONS(2058), 1, + anon_sym_or, + ACTIONS(1985), 2, + sym__newline, + anon_sym_SEMI, + [52952] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2054), 1, + anon_sym_if, + ACTIONS(2056), 1, + anon_sym_and, + ACTIONS(2058), 1, + anon_sym_or, + ACTIONS(2352), 2, + sym__newline, + anon_sym_SEMI, + [52969] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2054), 1, + anon_sym_if, + ACTIONS(2056), 1, + anon_sym_and, + ACTIONS(2058), 1, + anon_sym_or, + ACTIONS(2354), 2, + sym__newline, + anon_sym_SEMI, + [52986] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2356), 1, + anon_sym_COMMA, + STATE(1103), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2037), 3, + sym__newline, + anon_sym_from, + anon_sym_SEMI, + [53001] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2359), 1, + anon_sym_COLON, + ACTIONS(2361), 1, + anon_sym_RBRACE, + ACTIONS(2363), 1, + anon_sym_EQ, + ACTIONS(2365), 1, + sym_type_conversion, + STATE(1515), 1, + sym_format_specifier, + [53020] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1913), 1, + anon_sym_if, + ACTIONS(1915), 1, + anon_sym_and, + ACTIONS(1917), 1, + anon_sym_or, + ACTIONS(2367), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [53037] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1913), 1, + anon_sym_if, + ACTIONS(1915), 1, + anon_sym_and, + ACTIONS(1917), 1, + anon_sym_or, + ACTIONS(2369), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [53054] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1913), 1, + anon_sym_if, + ACTIONS(1915), 1, + anon_sym_and, + ACTIONS(1917), 1, + anon_sym_or, + ACTIONS(2371), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [53071] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1913), 1, + anon_sym_if, + ACTIONS(1915), 1, + anon_sym_and, + ACTIONS(1917), 1, + anon_sym_or, + ACTIONS(2373), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [53088] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1913), 1, + anon_sym_if, + ACTIONS(1915), 1, + anon_sym_and, + ACTIONS(1917), 1, + anon_sym_or, + ACTIONS(2375), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [53105] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2359), 1, + anon_sym_COLON, + ACTIONS(2377), 1, + anon_sym_RBRACE, + ACTIONS(2379), 1, + anon_sym_EQ, + ACTIONS(2381), 1, + sym_type_conversion, + STATE(1501), 1, + sym_format_specifier, + [53124] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2383), 1, + anon_sym_COMMA, + STATE(1103), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2033), 3, + sym__newline, + anon_sym_from, + anon_sym_SEMI, + [53139] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2221), 1, + anon_sym_and, + ACTIONS(2223), 1, + anon_sym_or, + ACTIONS(2225), 1, + anon_sym_if, + ACTIONS(2385), 1, + anon_sym_as, + ACTIONS(2387), 1, + anon_sym_COLON, + [53158] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2344), 1, + anon_sym_LPAREN, + ACTIONS(2348), 1, + anon_sym_LBRACK, + ACTIONS(2389), 1, + anon_sym_COLON, + STATE(1325), 1, + sym_type_parameters, + STATE(1472), 1, + sym_argument_list, + [53177] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1913), 1, + anon_sym_if, + ACTIONS(1915), 1, + anon_sym_and, + ACTIONS(1917), 1, + anon_sym_or, + ACTIONS(2391), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [53194] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1913), 1, + anon_sym_if, + ACTIONS(1915), 1, + anon_sym_and, + ACTIONS(1917), 1, + anon_sym_or, + ACTIONS(2393), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [53211] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2237), 1, + sym_identifier, + STATE(1178), 1, + sym_dotted_name, + STATE(1242), 1, + sym_aliased_import, + ACTIONS(2395), 2, + sym__newline, + anon_sym_SEMI, + [53228] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2054), 1, + anon_sym_if, + ACTIONS(2056), 1, + anon_sym_and, + ACTIONS(2058), 1, + anon_sym_or, + ACTIONS(2397), 2, + sym__newline, + anon_sym_SEMI, + [53245] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1858), 5, sym__newline, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_SEMI, - [52922] = 2, + [53256] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2288), 5, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(2054), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - [52933] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1910), 1, - anon_sym_if, - ACTIONS(1912), 1, + ACTIONS(2056), 1, anon_sym_and, - ACTIONS(1914), 1, - anon_sym_or, - ACTIONS(2358), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [52950] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2360), 1, - anon_sym_COMMA, - STATE(1125), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2095), 3, - sym__newline, - anon_sym_from, - anon_sym_SEMI, - [52965] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2191), 1, - anon_sym_if, - ACTIONS(2193), 1, - anon_sym_and, - ACTIONS(2195), 1, - anon_sym_or, - ACTIONS(2362), 1, - anon_sym_as, - ACTIONS(2364), 1, - anon_sym_COLON, - [52984] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2029), 1, - anon_sym_if, - ACTIONS(2031), 1, - anon_sym_and, - ACTIONS(2033), 1, - anon_sym_or, - ACTIONS(2366), 2, - sym__newline, - anon_sym_SEMI, - [53001] = 6, - ACTIONS(1875), 1, - sym_comment, - ACTIONS(2368), 1, - anon_sym_RBRACE, - ACTIONS(2370), 1, - anon_sym_LBRACE2, - ACTIONS(2372), 1, - aux_sym_format_specifier_token1, - STATE(1114), 1, - aux_sym_format_specifier_repeat1, - STATE(1318), 1, - sym_interpolation, - [53020] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2029), 1, - anon_sym_if, - ACTIONS(2031), 1, - anon_sym_and, - ACTIONS(2033), 1, - anon_sym_or, - ACTIONS(2374), 2, - sym__newline, - anon_sym_SEMI, - [53037] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2378), 1, - anon_sym_COMMA, - STATE(1116), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(2376), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [53052] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2380), 1, - anon_sym_LPAREN, - ACTIONS(2382), 1, - anon_sym_COLON, - ACTIONS(2384), 1, - anon_sym_LBRACK, - STATE(1270), 1, - sym_type_parameters, - STATE(1498), 1, - sym_argument_list, - [53071] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2380), 1, - anon_sym_LPAREN, - ACTIONS(2384), 1, - anon_sym_LBRACK, - ACTIONS(2386), 1, - anon_sym_COLON, - STATE(1309), 1, - sym_type_parameters, - STATE(1470), 1, - sym_argument_list, - [53090] = 6, - ACTIONS(1875), 1, - sym_comment, - ACTIONS(2370), 1, - anon_sym_LBRACE2, - ACTIONS(2388), 1, - anon_sym_RBRACE, - ACTIONS(2390), 1, - aux_sym_format_specifier_token1, - STATE(1129), 1, - aux_sym_format_specifier_repeat1, - STATE(1318), 1, - sym_interpolation, - [53109] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1910), 1, - anon_sym_if, - ACTIONS(1912), 1, - anon_sym_and, - ACTIONS(1914), 1, - anon_sym_or, - ACTIONS(2392), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [53126] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2396), 1, - anon_sym_COMMA, - STATE(1116), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(2394), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [53141] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1910), 1, - anon_sym_if, - ACTIONS(1912), 1, - anon_sym_and, - ACTIONS(1914), 1, + ACTIONS(2058), 1, anon_sym_or, ACTIONS(2399), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [53158] = 4, + sym__newline, + anon_sym_SEMI, + [53273] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1900), 1, + ACTIONS(2403), 1, anon_sym_COMMA, STATE(1120), 1, aux_sym__collection_elements_repeat1, - ACTIONS(1904), 3, + ACTIONS(2401), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - [53173] = 6, + [53288] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2346), 1, + ACTIONS(2406), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, - ACTIONS(2401), 1, - anon_sym_RBRACE, - ACTIONS(2403), 1, - anon_sym_EQ, - ACTIONS(2405), 1, - sym_type_conversion, - STATE(1513), 1, - sym_format_specifier, - [53192] = 4, + anon_sym_RBRACK, + [53299] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(1931), 1, anon_sym_COMMA, - STATE(1116), 1, + STATE(1128), 1, aux_sym__collection_elements_repeat1, - ACTIONS(2376), 3, + ACTIONS(1935), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - [53207] = 6, + [53314] = 6, + ACTIONS(1871), 1, + sym_comment, + ACTIONS(2408), 1, + anon_sym_RBRACE, + ACTIONS(2410), 1, + anon_sym_LBRACE2, + ACTIONS(2413), 1, + aux_sym_format_specifier_token1, + STATE(1123), 1, + aux_sym_format_specifier_repeat1, + STATE(1321), 1, + sym_interpolation, + [53333] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2157), 1, - sym_identifier, - ACTIONS(2409), 1, - anon_sym_LPAREN, - STATE(1094), 1, - sym_dotted_name, - STATE(1146), 1, - sym_aliased_import, - STATE(1400), 1, - sym__import_list, - [53226] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1910), 1, - anon_sym_if, - ACTIONS(1912), 1, - anon_sym_and, - ACTIONS(1914), 1, - anon_sym_or, - ACTIONS(2411), 2, + ACTIONS(2418), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [53243] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1910), 1, - anon_sym_if, - ACTIONS(1912), 1, - anon_sym_and, - ACTIONS(1914), 1, - anon_sym_or, - ACTIONS(2413), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [53260] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2029), 1, - anon_sym_if, - ACTIONS(2031), 1, - anon_sym_and, - ACTIONS(2033), 1, - anon_sym_or, - ACTIONS(2415), 2, - sym__newline, - anon_sym_SEMI, - [53277] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2417), 1, - anon_sym_COMMA, - STATE(1125), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2150), 3, - sym__newline, - anon_sym_from, - anon_sym_SEMI, - [53292] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1910), 1, - anon_sym_if, - ACTIONS(1912), 1, - anon_sym_and, - ACTIONS(1914), 1, - anon_sym_or, - ACTIONS(2420), 2, + STATE(1120), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(2416), 3, anon_sym_RPAREN, - anon_sym_COMMA, - [53309] = 5, + anon_sym_RBRACK, + anon_sym_RBRACE, + [53348] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1910), 1, - anon_sym_if, - ACTIONS(1912), 1, - anon_sym_and, - ACTIONS(1914), 1, - anon_sym_or, - ACTIONS(2422), 2, - anon_sym_RPAREN, + ACTIONS(2420), 1, anon_sym_COMMA, - [53326] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2157), 1, - sym_identifier, - STATE(1180), 1, - sym_dotted_name, - STATE(1240), 1, - sym_aliased_import, + ACTIONS(2422), 1, + anon_sym_as, + STATE(1198), 1, + aux_sym__import_list_repeat1, ACTIONS(2424), 2, sym__newline, anon_sym_SEMI, - [53343] = 6, - ACTIONS(1875), 1, + [53365] = 6, + ACTIONS(1871), 1, sym_comment, ACTIONS(2426), 1, anon_sym_RBRACE, ACTIONS(2428), 1, anon_sym_LBRACE2, - ACTIONS(2431), 1, + ACTIONS(2430), 1, aux_sym_format_specifier_token1, - STATE(1129), 1, + STATE(1123), 1, aux_sym_format_specifier_repeat1, - STATE(1318), 1, + STATE(1321), 1, sym_interpolation, - [53362] = 6, + [53384] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2191), 1, + ACTIONS(2251), 5, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_if, - ACTIONS(2193), 1, - anon_sym_and, - ACTIONS(2195), 1, - anon_sym_or, + anon_sym_COLON, + anon_sym_RBRACK, + [53395] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2432), 1, + anon_sym_COMMA, + STATE(1120), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(2416), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [53410] = 6, + ACTIONS(1871), 1, + sym_comment, + ACTIONS(2428), 1, + anon_sym_LBRACE2, ACTIONS(2434), 1, - anon_sym_as, + anon_sym_RBRACE, ACTIONS(2436), 1, - anon_sym_COLON, - [53381] = 5, + aux_sym_format_specifier_token1, + STATE(1126), 1, + aux_sym_format_specifier_repeat1, + STATE(1321), 1, + sym_interpolation, + [53429] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1910), 1, - anon_sym_if, - ACTIONS(1912), 1, - anon_sym_and, - ACTIONS(1914), 1, - anon_sym_or, + ACTIONS(2237), 1, + sym_identifier, ACTIONS(2438), 1, - anon_sym_COLON, - [53397] = 5, + anon_sym_LPAREN, + STATE(1125), 1, + sym_dotted_name, + STATE(1155), 1, + sym_aliased_import, + STATE(1401), 1, + sym__import_list, + [53448] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, - sym_identifier, - STATE(1158), 1, - sym_dotted_name, - STATE(1275), 1, - sym_aliased_import, - STATE(1464), 1, - sym__import_list, - [53413] = 2, + anon_sym_COMMA, + STATE(1156), 1, + aux_sym_print_statement_repeat1, + ACTIONS(2442), 2, + sym__newline, + anon_sym_SEMI, + [53462] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2442), 4, + ACTIONS(1913), 1, + anon_sym_if, + ACTIONS(1915), 1, + anon_sym_and, + ACTIONS(1917), 1, + anon_sym_or, + ACTIONS(2444), 1, + anon_sym_else, + [53478] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2446), 1, + anon_sym_COMMA, + STATE(1193), 1, + aux_sym_print_statement_repeat1, + ACTIONS(2448), 2, + sym__newline, + anon_sym_SEMI, + [53492] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2237), 1, + sym_identifier, + STATE(1125), 1, + sym_dotted_name, + STATE(1155), 1, + sym_aliased_import, + STATE(1356), 1, + sym__import_list, + [53508] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(592), 1, + sym__newline, + ACTIONS(2450), 1, + anon_sym_SEMI, + STATE(133), 1, + sym__semicolon, + STATE(1214), 1, + aux_sym__simple_statements_repeat1, + [53524] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2179), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RBRACE, + [53534] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2454), 1, + anon_sym_COMMA, + STATE(1194), 1, + aux_sym__patterns_repeat1, + ACTIONS(2452), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [53548] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2456), 1, + anon_sym_SEMI, + ACTIONS(2458), 1, + sym__newline, + STATE(144), 1, + sym__semicolon, + STATE(1140), 1, + aux_sym__simple_statements_repeat1, + [53564] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2342), 1, + anon_sym_RPAREN, + ACTIONS(2460), 1, + sym_identifier, + STATE(1296), 1, + sym_dotted_name, + STATE(1366), 1, + sym_aliased_import, + [53580] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(596), 1, + sym__newline, + ACTIONS(2462), 1, + anon_sym_SEMI, + STATE(134), 1, + sym__semicolon, + STATE(1214), 1, + aux_sym__simple_statements_repeat1, + [53596] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(586), 1, + sym__newline, + ACTIONS(2464), 1, + anon_sym_SEMI, + STATE(141), 1, + sym__semicolon, + STATE(1214), 1, + aux_sym__simple_statements_repeat1, + [53612] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2177), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [53622] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2468), 1, + anon_sym_DOT, + STATE(1196), 1, + aux_sym_import_prefix_repeat1, + ACTIONS(2466), 2, + anon_sym_import, + sym_identifier, + [53636] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2470), 1, + anon_sym_SEMI, + ACTIONS(2472), 1, + sym__newline, + STATE(142), 1, + sym__semicolon, + STATE(1135), 1, + aux_sym__simple_statements_repeat1, + [53652] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1913), 1, + anon_sym_if, + ACTIONS(1915), 1, + anon_sym_and, + ACTIONS(1917), 1, + anon_sym_or, + ACTIONS(2474), 1, + anon_sym_else, + [53668] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2476), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RBRACE, + [53678] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2478), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RBRACE, + [53688] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1913), 1, + anon_sym_if, + ACTIONS(1915), 1, + anon_sym_and, + ACTIONS(1917), 1, + anon_sym_or, + ACTIONS(2480), 1, + anon_sym_COLON, + [53704] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1913), 1, + anon_sym_if, + ACTIONS(1915), 1, + anon_sym_and, + ACTIONS(1917), 1, + anon_sym_or, + ACTIONS(2482), 1, + anon_sym_COLON, + [53720] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2484), 1, + anon_sym_COMMA, + STATE(1150), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(2288), 2, + sym__newline, + anon_sym_SEMI, + [53734] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2487), 4, anon_sym_async, anon_sym_def, anon_sym_class, anon_sym_AT, - [53423] = 4, + [53744] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2444), 1, + ACTIONS(1913), 1, + anon_sym_if, + ACTIONS(1915), 1, + anon_sym_and, + ACTIONS(1917), 1, + anon_sym_or, + ACTIONS(2489), 1, + anon_sym_COLON, + [53760] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2491), 1, + anon_sym_case, + STATE(595), 1, + sym_cases, + STATE(343), 2, + sym_case_block, + aux_sym_cases_repeat1, + [53774] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2460), 1, + sym_identifier, + STATE(1195), 1, + sym_dotted_name, + STATE(1285), 1, + sym_aliased_import, + STATE(1469), 1, + sym__import_list, + [53790] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, anon_sym_COMMA, - STATE(1134), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(2261), 2, + STATE(1199), 1, + aux_sym__import_list_repeat1, + ACTIONS(2424), 2, sym__newline, anon_sym_SEMI, - [53437] = 4, + [53804] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2447), 1, + ACTIONS(2493), 1, anon_sym_COMMA, - STATE(1135), 1, + STATE(1156), 1, aux_sym_print_statement_repeat1, - ACTIONS(2450), 2, + ACTIONS(2496), 2, sym__newline, anon_sym_SEMI, - [53451] = 5, + [53818] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2395), 1, + anon_sym_RPAREN, + ACTIONS(2460), 1, + sym_identifier, + STATE(1296), 1, + sym_dotted_name, + STATE(1366), 1, + sym_aliased_import, + [53834] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2342), 1, + anon_sym_RPAREN, + ACTIONS(2460), 1, + sym_identifier, + STATE(1296), 1, + sym_dotted_name, + STATE(1366), 1, + sym_aliased_import, + [53850] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1913), 1, + anon_sym_if, + ACTIONS(1915), 1, + anon_sym_and, + ACTIONS(1917), 1, + anon_sym_or, + ACTIONS(2498), 1, + anon_sym_COLON, + [53866] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1913), 1, + anon_sym_if, + ACTIONS(1915), 1, + anon_sym_and, + ACTIONS(1917), 1, + anon_sym_or, + ACTIONS(2500), 1, + anon_sym_COLON, + [53882] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1913), 1, + anon_sym_if, + ACTIONS(1915), 1, + anon_sym_and, + ACTIONS(1917), 1, + anon_sym_or, + ACTIONS(2502), 1, + anon_sym_COLON, + [53898] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(580), 1, sym__newline, - ACTIONS(2452), 1, + ACTIONS(2504), 1, anon_sym_SEMI, - STATE(134), 1, - sym__semicolon, - STATE(1213), 1, - aux_sym__simple_statements_repeat1, - [53467] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2219), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RBRACE, - [53477] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2454), 1, - anon_sym_SEMI, - ACTIONS(2456), 1, - sym__newline, STATE(137), 1, sym__semicolon, - STATE(1188), 1, + STATE(1214), 1, aux_sym__simple_statements_repeat1, - [53493] = 5, + [53914] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1910), 1, - anon_sym_if, - ACTIONS(1912), 1, - anon_sym_and, - ACTIONS(1914), 1, - anon_sym_or, - ACTIONS(2458), 1, - anon_sym_COLON, - [53509] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2460), 1, + ACTIONS(2506), 1, anon_sym_SEMI, - ACTIONS(2462), 1, - sym__newline, - STATE(135), 1, - sym__semicolon, - STATE(1202), 1, - aux_sym__simple_statements_repeat1, - [53525] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2466), 1, - anon_sym_COLON, - ACTIONS(2468), 1, - anon_sym_EQ, - ACTIONS(2464), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [53539] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1910), 1, - anon_sym_if, - ACTIONS(1912), 1, - anon_sym_and, - ACTIONS(1914), 1, - anon_sym_or, - ACTIONS(2470), 1, - anon_sym_COLON, - [53555] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2424), 1, - anon_sym_RPAREN, - ACTIONS(2440), 1, - sym_identifier, - STATE(1303), 1, - sym_dotted_name, - STATE(1364), 1, - sym_aliased_import, - [53571] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1910), 1, - anon_sym_if, - ACTIONS(1912), 1, - anon_sym_and, - ACTIONS(1914), 1, - anon_sym_or, - ACTIONS(2472), 1, - anon_sym_else, - [53587] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2474), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RBRACE, - [53597] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2336), 1, - anon_sym_COMMA, - STATE(1210), 1, - aux_sym__import_list_repeat1, - ACTIONS(2340), 2, - sym__newline, - anon_sym_SEMI, - [53611] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2346), 1, - anon_sym_COLON, - ACTIONS(2476), 1, - anon_sym_RBRACE, - ACTIONS(2478), 1, - sym_type_conversion, - STATE(1486), 1, - sym_format_specifier, - [53627] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(594), 1, - sym__newline, - ACTIONS(2480), 1, - anon_sym_SEMI, - STATE(144), 1, - sym__semicolon, - STATE(1213), 1, - aux_sym__simple_statements_repeat1, - [53643] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2482), 1, - anon_sym_SEMI, - ACTIONS(2484), 1, + ACTIONS(2508), 1, sym__newline, STATE(136), 1, sym__semicolon, - STATE(1136), 1, + STATE(1162), 1, aux_sym__simple_statements_repeat1, - [53659] = 5, + [53930] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1910), 1, - anon_sym_if, - ACTIONS(1912), 1, - anon_sym_and, - ACTIONS(1914), 1, - anon_sym_or, - ACTIONS(2486), 1, + ACTIONS(2359), 1, anon_sym_COLON, - [53675] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1910), 1, - anon_sym_if, - ACTIONS(1912), 1, - anon_sym_and, - ACTIONS(1914), 1, - anon_sym_or, - ACTIONS(2488), 1, - anon_sym_COLON, - [53691] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2490), 1, - anon_sym_case, - STATE(593), 1, - sym_cases, - STATE(352), 2, - sym_case_block, - aux_sym_cases_repeat1, - [53705] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2330), 1, - anon_sym_EQ, - STATE(1381), 1, - sym__type_param_default, - ACTIONS(2492), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [53719] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1910), 1, - anon_sym_if, - ACTIONS(1912), 1, - anon_sym_and, - ACTIONS(1914), 1, - anon_sym_or, - ACTIONS(2494), 1, - anon_sym_COLON, - [53735] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1910), 1, - anon_sym_if, - ACTIONS(1912), 1, - anon_sym_and, - ACTIONS(1914), 1, - anon_sym_or, - ACTIONS(2496), 1, - anon_sym_COLON, - [53751] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2498), 1, - anon_sym_SEMI, - ACTIONS(2500), 1, - sym__newline, - STATE(143), 1, - sym__semicolon, - STATE(1148), 1, - aux_sym__simple_statements_repeat1, - [53767] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1910), 1, - anon_sym_if, - ACTIONS(1912), 1, - anon_sym_and, - ACTIONS(1914), 1, - anon_sym_or, - ACTIONS(2502), 1, - anon_sym_COLON, - [53783] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2340), 1, - anon_sym_RPAREN, - ACTIONS(2504), 1, - anon_sym_COMMA, - ACTIONS(2506), 1, - anon_sym_as, - STATE(1327), 1, - aux_sym__import_list_repeat1, - [53799] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1910), 1, - anon_sym_if, - ACTIONS(1912), 1, - anon_sym_and, - ACTIONS(1914), 1, - anon_sym_or, - ACTIONS(2508), 1, - anon_sym_COLON, - [53815] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2510), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(2510), 1, anon_sym_RBRACE, - [53825] = 4, + ACTIONS(2512), 1, + sym_type_conversion, + STATE(1414), 1, + sym_format_specifier, + [53946] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2512), 1, + ACTIONS(2514), 1, + anon_sym_COMMA, + STATE(1060), 1, + aux_sym_open_sequence_match_pattern_repeat1, + ACTIONS(1709), 2, + anon_sym_if, + anon_sym_COLON, + [53960] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2516), 1, anon_sym_COMMA, STATE(1185), 1, aux_sym_global_statement_repeat1, - ACTIONS(2514), 2, - sym__newline, - anon_sym_SEMI, - [53839] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2512), 1, - anon_sym_COMMA, - STATE(1185), 1, - aux_sym_global_statement_repeat1, - ACTIONS(2516), 2, - sym__newline, - anon_sym_SEMI, - [53853] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2520), 1, - anon_sym_COMMA, - STATE(1163), 1, - aux_sym_with_clause_repeat1, ACTIONS(2518), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [53867] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1910), 1, - anon_sym_if, - ACTIONS(1912), 1, - anon_sym_and, - ACTIONS(1914), 1, - anon_sym_or, - ACTIONS(2523), 1, - anon_sym_else, - [53883] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(600), 1, sym__newline, - ACTIONS(2525), 1, anon_sym_SEMI, - STATE(139), 1, - sym__semicolon, - STATE(1213), 1, - aux_sym__simple_statements_repeat1, - [53899] = 5, + [53974] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1910), 1, - anon_sym_if, - ACTIONS(1912), 1, - anon_sym_and, - ACTIONS(1914), 1, - anon_sym_or, - ACTIONS(2527), 1, + ACTIONS(2522), 1, anon_sym_COLON, - [53915] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2531), 1, - anon_sym_COMMA, - STATE(1203), 1, - aux_sym__patterns_repeat1, - ACTIONS(2529), 2, + ACTIONS(2524), 1, + anon_sym_EQ, + ACTIONS(2520), 2, anon_sym_RPAREN, - anon_sym_RBRACK, - [53929] = 5, + anon_sym_COMMA, + [53988] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1910), 1, + ACTIONS(2516), 1, + anon_sym_COMMA, + STATE(1185), 1, + aux_sym_global_statement_repeat1, + ACTIONS(2526), 2, + sym__newline, + anon_sym_SEMI, + [54002] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2530), 1, + anon_sym_COMMA, + STATE(1169), 1, + aux_sym_with_clause_repeat1, + ACTIONS(2528), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [54016] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1913), 1, anon_sym_if, - ACTIONS(1912), 1, + ACTIONS(1915), 1, anon_sym_and, - ACTIONS(1914), 1, + ACTIONS(1917), 1, anon_sym_or, ACTIONS(2533), 1, anon_sym_COLON, - [53945] = 4, + [54032] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2490), 1, + ACTIONS(2491), 1, anon_sym_case, STATE(592), 1, sym_cases, - STATE(352), 2, + STATE(343), 2, sym_case_block, aux_sym_cases_repeat1, - [53959] = 5, + [54046] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2440), 1, - sym_identifier, - STATE(1158), 1, - sym_dotted_name, - STATE(1275), 1, - sym_aliased_import, - STATE(1463), 1, - sym__import_list, - [53975] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(574), 1, - sym__newline, - ACTIONS(2535), 1, - anon_sym_SEMI, - STATE(142), 1, - sym__semicolon, - STATE(1213), 1, - aux_sym__simple_statements_repeat1, - [53991] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2512), 1, - anon_sym_COMMA, - STATE(1162), 1, - aux_sym_global_statement_repeat1, - ACTIONS(2537), 2, - sym__newline, - anon_sym_SEMI, - [54005] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2384), 1, - anon_sym_LBRACK, - ACTIONS(2539), 1, - anon_sym_LPAREN, - STATE(1384), 1, - sym_parameters, - STATE(1392), 1, - sym_type_parameters, - [54021] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2541), 1, - anon_sym_case, - STATE(531), 1, - sym_cases, - STATE(384), 2, - sym_case_block, - aux_sym_cases_repeat1, - [54035] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2543), 1, - anon_sym_COMMA, - STATE(1175), 1, - aux_sym__import_list_repeat1, - ACTIONS(2546), 2, - sym__newline, - anon_sym_SEMI, - [54049] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2541), 1, - anon_sym_case, - STATE(530), 1, - sym_cases, - STATE(384), 2, - sym_case_block, - aux_sym_cases_repeat1, - [54063] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2157), 1, - sym_identifier, - STATE(1094), 1, - sym_dotted_name, - STATE(1146), 1, - sym_aliased_import, - STATE(1358), 1, - sym__import_list, - [54079] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2548), 1, - anon_sym_SEMI, - ACTIONS(2550), 1, - sym__newline, - STATE(146), 1, - sym__semicolon, - STATE(1165), 1, - aux_sym__simple_statements_repeat1, - [54095] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2330), 1, + ACTIONS(2317), 1, anon_sym_EQ, STATE(1387), 1, sym__type_param_default, - ACTIONS(2552), 2, + ACTIONS(2535), 2, anon_sym_COMMA, anon_sym_RBRACK, - [54109] = 3, + [54060] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2338), 1, + ACTIONS(2460), 1, + sym_identifier, + STATE(1195), 1, + sym_dotted_name, + STATE(1285), 1, + sym_aliased_import, + STATE(1470), 1, + sym__import_list, + [54076] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2348), 1, + anon_sym_LBRACK, + ACTIONS(2537), 1, + anon_sym_LPAREN, + STATE(1389), 1, + sym_parameters, + STATE(1399), 1, + sym_type_parameters, + [54092] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1913), 1, + anon_sym_if, + ACTIONS(1915), 1, + anon_sym_and, + ACTIONS(1917), 1, + anon_sym_or, + ACTIONS(2539), 1, + anon_sym_COLON, + [54108] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2541), 1, + anon_sym_COMMA, + STATE(1176), 1, + aux_sym__import_list_repeat1, + ACTIONS(2544), 2, + sym__newline, + anon_sym_SEMI, + [54122] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1913), 1, + anon_sym_if, + ACTIONS(1915), 1, + anon_sym_and, + ACTIONS(1917), 1, + anon_sym_or, + ACTIONS(2546), 1, + anon_sym_COLON, + [54138] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, anon_sym_as, - ACTIONS(2554), 3, + ACTIONS(2548), 3, sym__newline, anon_sym_COMMA, anon_sym_SEMI, - [54121] = 4, + [54150] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2330), 1, - anon_sym_EQ, - STATE(1386), 1, - sym__type_param_default, - ACTIONS(2556), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [54135] = 4, + ACTIONS(2550), 1, + anon_sym_case, + STATE(498), 1, + sym_cases, + STATE(365), 2, + sym_case_block, + aux_sym_cases_repeat1, + [54164] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1913), 1, + anon_sym_if, + ACTIONS(1915), 1, + anon_sym_and, + ACTIONS(1917), 1, + anon_sym_or, + ACTIONS(2552), 1, + anon_sym_COLON, + [54180] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2550), 1, + anon_sym_case, + STATE(582), 1, + sym_cases, + STATE(365), 2, + sym_case_block, + aux_sym_cases_repeat1, + [54194] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2554), 1, + anon_sym_SEMI, + ACTIONS(2556), 1, + sym__newline, + STATE(139), 1, + sym__semicolon, + STATE(1141), 1, + aux_sym__simple_statements_repeat1, + [54210] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(315), 1, sym__string_start, - ACTIONS(1961), 1, + ACTIONS(1863), 1, anon_sym_COLON, STATE(601), 2, sym_string, aux_sym_concatenated_string_repeat1, - [54149] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2334), 1, - anon_sym_RPAREN, - ACTIONS(2440), 1, - sym_identifier, - STATE(1303), 1, - sym_dotted_name, - STATE(1364), 1, - sym_aliased_import, - [54165] = 4, + [54224] = 5, ACTIONS(3), 1, sym_comment, + ACTIONS(1913), 1, + anon_sym_if, + ACTIONS(1915), 1, + anon_sym_and, + ACTIONS(1917), 1, + anon_sym_or, ACTIONS(2558), 1, - anon_sym_COMMA, - STATE(1198), 1, - aux_sym_print_statement_repeat1, - ACTIONS(2560), 2, - sym__newline, - anon_sym_SEMI, - [54179] = 4, + anon_sym_else, + [54240] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2562), 1, + ACTIONS(2560), 1, anon_sym_COMMA, STATE(1185), 1, aux_sym_global_statement_repeat1, - ACTIONS(2565), 2, + ACTIONS(2563), 2, sym__newline, anon_sym_SEMI, - [54193] = 4, + [54254] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2569), 1, - anon_sym_DOT, - STATE(1205), 1, - aux_sym_import_prefix_repeat1, - ACTIONS(2567), 2, - anon_sym_import, - sym_identifier, - [54207] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2384), 1, + ACTIONS(2348), 1, anon_sym_LBRACK, - ACTIONS(2539), 1, + ACTIONS(2537), 1, anon_sym_LPAREN, - STATE(1346), 1, - sym_parameters, - STATE(1389), 1, + STATE(1386), 1, sym_type_parameters, - [54223] = 5, + STATE(1392), 1, + sym_parameters, + [54270] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(582), 1, + ACTIONS(2567), 1, + anon_sym_EQ, + ACTIONS(2565), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + [54282] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(594), 1, sym__newline, - ACTIONS(2571), 1, + ACTIONS(2569), 1, anon_sym_SEMI, - STATE(138), 1, + STATE(135), 1, sym__semicolon, - STATE(1213), 1, + STATE(1214), 1, aux_sym__simple_statements_repeat1, - [54239] = 5, + [54298] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(598), 1, + ACTIONS(1913), 1, + anon_sym_if, + ACTIONS(1915), 1, + anon_sym_and, + ACTIONS(1917), 1, + anon_sym_or, + ACTIONS(2571), 1, + anon_sym_COLON, + [54314] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(584), 1, sym__newline, ACTIONS(2573), 1, anon_sym_SEMI, - STATE(141), 1, + STATE(145), 1, sym__semicolon, - STATE(1213), 1, + STATE(1214), 1, aux_sym__simple_statements_repeat1, - [54255] = 5, + [54330] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2029), 1, - anon_sym_if, - ACTIONS(2031), 1, - anon_sym_and, - ACTIONS(2033), 1, - anon_sym_or, + ACTIONS(2359), 1, + anon_sym_COLON, ACTIONS(2575), 1, - sym__newline, - [54271] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2346), 1, - anon_sym_COLON, - ACTIONS(2577), 1, anon_sym_RBRACE, - ACTIONS(2579), 1, + ACTIONS(2577), 1, sym_type_conversion, - STATE(1467), 1, + STATE(1473), 1, sym_format_specifier, - [54287] = 3, + [54346] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, - anon_sym_EQ, - ACTIONS(2581), 3, - anon_sym_RPAREN, + ACTIONS(2185), 1, anon_sym_COMMA, - anon_sym_COLON, - [54299] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2215), 1, - anon_sym_COMMA, - STATE(1134), 1, + STATE(1150), 1, aux_sym_assert_statement_repeat1, - ACTIONS(2585), 2, + ACTIONS(2579), 2, sym__newline, anon_sym_SEMI, - [54313] = 4, + [54360] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2215), 1, + ACTIONS(2581), 1, anon_sym_COMMA, - STATE(1134), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(2587), 2, - sym__newline, - anon_sym_SEMI, - [54327] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2589), 1, - anon_sym_COMMA, - STATE(1135), 1, + STATE(1156), 1, aux_sym_print_statement_repeat1, - ACTIONS(2591), 2, + ACTIONS(2583), 2, sym__newline, anon_sym_SEMI, - [54341] = 5, + [54374] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2384), 1, - anon_sym_LBRACK, - ACTIONS(2539), 1, - anon_sym_LPAREN, - STATE(1356), 1, - sym_parameters, - STATE(1402), 1, - sym_type_parameters, - [54357] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1910), 1, - anon_sym_if, - ACTIONS(1912), 1, - anon_sym_and, - ACTIONS(1914), 1, - anon_sym_or, - ACTIONS(2593), 1, - anon_sym_else, - [54373] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2595), 1, - anon_sym_COMMA, - STATE(1135), 1, - aux_sym_print_statement_repeat1, - ACTIONS(2597), 2, - sym__newline, - anon_sym_SEMI, - [54387] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1910), 1, - anon_sym_if, - ACTIONS(1912), 1, - anon_sym_and, - ACTIONS(1914), 1, - anon_sym_or, - ACTIONS(2599), 1, - anon_sym_else, - [54403] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2334), 1, - anon_sym_RPAREN, - ACTIONS(2440), 1, - sym_identifier, - STATE(1303), 1, - sym_dotted_name, - STATE(1364), 1, - sym_aliased_import, - [54419] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2384), 1, - anon_sym_LBRACK, - ACTIONS(2539), 1, - anon_sym_LPAREN, - STATE(1361), 1, - sym_parameters, - STATE(1403), 1, - sym_type_parameters, - [54435] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(578), 1, - sym__newline, - ACTIONS(2601), 1, - anon_sym_SEMI, - STATE(140), 1, - sym__semicolon, - STATE(1213), 1, - aux_sym__simple_statements_repeat1, - [54451] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2605), 1, + ACTIONS(2587), 1, anon_sym_COMMA, STATE(873), 1, aux_sym__patterns_repeat1, - ACTIONS(2603), 2, + ACTIONS(2585), 2, anon_sym_RPAREN, anon_sym_RBRACK, - [54465] = 4, + [54388] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2607), 1, + ACTIONS(2424), 1, + anon_sym_RPAREN, + ACTIONS(2589), 1, anon_sym_COMMA, - STATE(1076), 1, - aux_sym_open_sequence_match_pattern_repeat1, - ACTIONS(1707), 2, - anon_sym_if, - anon_sym_COLON, - [54479] = 4, + ACTIONS(2591), 1, + anon_sym_as, + STATE(1335), 1, + aux_sym__import_list_repeat1, + [54404] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2611), 1, + ACTIONS(2595), 1, anon_sym_DOT, - STATE(1205), 1, + STATE(1196), 1, aux_sym_import_prefix_repeat1, - ACTIONS(2609), 2, + ACTIONS(2593), 2, anon_sym_import, sym_identifier, - [54493] = 5, + [54418] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1910), 1, + ACTIONS(1913), 1, anon_sym_if, - ACTIONS(1912), 1, + ACTIONS(1915), 1, anon_sym_and, - ACTIONS(1914), 1, + ACTIONS(1917), 1, + anon_sym_or, + ACTIONS(2598), 1, + anon_sym_COLON, + [54434] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2600), 1, + anon_sym_COMMA, + STATE(1176), 1, + aux_sym__import_list_repeat1, + ACTIONS(2602), 2, + sym__newline, + anon_sym_SEMI, + [54448] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2604), 1, + anon_sym_COMMA, + STATE(1176), 1, + aux_sym__import_list_repeat1, + ACTIONS(2602), 2, + sym__newline, + anon_sym_SEMI, + [54462] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1913), 1, + anon_sym_if, + ACTIONS(1915), 1, + anon_sym_and, + ACTIONS(1917), 1, + anon_sym_or, + ACTIONS(2606), 1, + anon_sym_else, + [54478] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(600), 1, + sym__newline, + ACTIONS(2608), 1, + anon_sym_SEMI, + STATE(140), 1, + sym__semicolon, + STATE(1214), 1, + aux_sym__simple_statements_repeat1, + [54494] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2317), 1, + anon_sym_EQ, + STATE(1382), 1, + sym__type_param_default, + ACTIONS(2610), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [54508] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2317), 1, + anon_sym_EQ, + STATE(1384), 1, + sym__type_param_default, + ACTIONS(2612), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [54522] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2054), 1, + anon_sym_if, + ACTIONS(2056), 1, + anon_sym_and, + ACTIONS(2058), 1, anon_sym_or, ACTIONS(2614), 1, - anon_sym_COLON, - [54509] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2616), 1, - anon_sym_SEMI, - ACTIONS(2618), 1, sym__newline, - STATE(145), 1, - sym__semicolon, - STATE(1189), 1, - aux_sym__simple_statements_repeat1, - [54525] = 4, + [54538] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2620), 1, + ACTIONS(2348), 1, + anon_sym_LBRACK, + ACTIONS(2537), 1, + anon_sym_LPAREN, + STATE(1360), 1, + sym_parameters, + STATE(1402), 1, + sym_type_parameters, + [54554] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2185), 1, anon_sym_COMMA, - STATE(1175), 1, - aux_sym__import_list_repeat1, + STATE(1150), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(2616), 2, + sym__newline, + anon_sym_SEMI, + [54568] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2348), 1, + anon_sym_LBRACK, + ACTIONS(2537), 1, + anon_sym_LPAREN, + STATE(1361), 1, + sym_parameters, + STATE(1404), 1, + sym_type_parameters, + [54584] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2618), 1, + anon_sym_SEMI, + ACTIONS(2620), 1, + sym__newline, + STATE(138), 1, + sym__semicolon, + STATE(1190), 1, + aux_sym__simple_statements_repeat1, + [54600] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2516), 1, + anon_sym_COMMA, + STATE(1166), 1, + aux_sym_global_statement_repeat1, ACTIONS(2622), 2, sym__newline, anon_sym_SEMI, - [54539] = 5, + [54614] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2624), 1, anon_sym_SEMI, ACTIONS(2626), 1, sym__newline, - STATE(133), 1, + STATE(146), 1, sym__semicolon, - STATE(1171), 1, + STATE(1201), 1, aux_sym__simple_statements_repeat1, - [54555] = 4, + [54630] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2628), 1, + ACTIONS(2516), 1, anon_sym_COMMA, - STATE(1175), 1, - aux_sym__import_list_repeat1, - ACTIONS(2622), 2, - sym__newline, - anon_sym_SEMI, - [54569] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2512), 1, - anon_sym_COMMA, - STATE(1161), 1, + STATE(1168), 1, aux_sym_global_statement_repeat1, - ACTIONS(2630), 2, + ACTIONS(2628), 2, sym__newline, anon_sym_SEMI, - [54583] = 2, + [54644] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1965), 4, + ACTIONS(2630), 1, + anon_sym_SEMI, + ACTIONS(2632), 1, + sym__newline, + STATE(143), 1, + sym__semicolon, + STATE(1188), 1, + aux_sym__simple_statements_repeat1, + [54660] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1987), 4, sym__newline, anon_sym_from, anon_sym_COMMA, anon_sym_SEMI, - [54593] = 5, + [54670] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2632), 1, + ACTIONS(2634), 1, anon_sym_SEMI, - ACTIONS(2635), 1, + ACTIONS(2637), 1, sym__newline, STATE(147), 1, sym__semicolon, - STATE(1213), 1, + STATE(1214), 1, aux_sym__simple_statements_repeat1, - [54609] = 4, + [54686] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1405), 3, + sym__newline, + anon_sym_in, + anon_sym_SEMI, + [54695] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2637), 1, - anon_sym_COMMA, ACTIONS(2639), 1, - anon_sym_COLON, - STATE(1241), 1, - aux_sym__parameters_repeat1, - [54622] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2641), 3, anon_sym_RPAREN, + ACTIONS(2641), 1, anon_sym_COMMA, - anon_sym_COLON, - [54631] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2643), 1, - anon_sym_RPAREN, - ACTIONS(2645), 1, - anon_sym_COMMA, - STATE(1312), 1, + STATE(1300), 1, aux_sym_argument_list_repeat1, - [54644] = 3, + [54708] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(1824), 1, + anon_sym_COMMA, + ACTIONS(2643), 1, + anon_sym_in, + STATE(884), 1, + aux_sym__patterns_repeat1, + [54721] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2645), 1, + anon_sym_RPAREN, ACTIONS(2647), 1, + anon_sym_COMMA, + STATE(1216), 1, + aux_sym_argument_list_repeat1, + [54734] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, anon_sym_EQ, - ACTIONS(2649), 2, + ACTIONS(2651), 2, sym__newline, anon_sym_SEMI, - [54655] = 4, + [54745] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1983), 1, + ACTIONS(1969), 1, anon_sym_RPAREN, - ACTIONS(1985), 1, + ACTIONS(1971), 1, anon_sym_COMMA, - STATE(1311), 1, - aux_sym_argument_list_repeat1, - [54668] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1900), 1, - anon_sym_COMMA, - ACTIONS(1981), 1, - anon_sym_RPAREN, STATE(1313), 1, - aux_sym__collection_elements_repeat1, - [54681] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2651), 1, - anon_sym_RPAREN, - ACTIONS(2653), 1, - anon_sym_COMMA, - STATE(1301), 1, aux_sym_argument_list_repeat1, - [54694] = 4, + [54758] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1814), 1, + ACTIONS(1931), 1, anon_sym_COMMA, - ACTIONS(2655), 1, - anon_sym_in, - STATE(885), 1, - aux_sym__patterns_repeat1, - [54707] = 4, + ACTIONS(1993), 1, + anon_sym_RPAREN, + STATE(1315), 1, + aux_sym__collection_elements_repeat1, + [54771] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(2653), 1, + anon_sym_RPAREN, + ACTIONS(2655), 1, + anon_sym_COMMA, + STATE(1300), 1, + aux_sym_argument_list_repeat1, + [54784] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2177), 3, + sym__newline, + anon_sym_EQ, + anon_sym_SEMI, + [54793] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1824), 1, + anon_sym_COMMA, ACTIONS(2657), 1, + anon_sym_in, + STATE(884), 1, + aux_sym__patterns_repeat1, + [54806] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1824), 1, anon_sym_COMMA, ACTIONS(2659), 1, - anon_sym_RBRACE, - STATE(1328), 1, - aux_sym_match_mapping_pattern_repeat1, - [54720] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1814), 1, - anon_sym_COMMA, - ACTIONS(2661), 1, anon_sym_in, - STATE(885), 1, + STATE(884), 1, aux_sym__patterns_repeat1, - [54733] = 4, - ACTIONS(3), 1, + [54819] = 3, + ACTIONS(1871), 1, sym_comment, - ACTIONS(2183), 1, - anon_sym_COMMA, - ACTIONS(2185), 1, - anon_sym_RBRACK, - STATE(1315), 1, - aux_sym_subscript_repeat1, - [54746] = 3, - ACTIONS(1875), 1, - sym_comment, - ACTIONS(2278), 1, + ACTIONS(2260), 1, anon_sym_RBRACE, - ACTIONS(2280), 2, + ACTIONS(2262), 2, anon_sym_LBRACE2, aux_sym_format_specifier_token1, - [54757] = 4, + [54830] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2173), 1, - anon_sym_COMMA, - ACTIONS(2175), 1, - anon_sym_RBRACE, - STATE(1248), 1, - aux_sym_dictionary_repeat1, - [54770] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2440), 1, + ACTIONS(2460), 1, sym_identifier, - STATE(1303), 1, + STATE(1296), 1, sym_dotted_name, - STATE(1364), 1, + STATE(1366), 1, sym_aliased_import, - [54783] = 4, + [54843] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2177), 1, + ACTIONS(2163), 1, anon_sym_COMMA, - ACTIONS(2181), 1, - anon_sym_RBRACK, - STATE(1249), 1, - aux_sym_subscript_repeat1, - [54796] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2663), 1, - anon_sym_RPAREN, - ACTIONS(2665), 1, - anon_sym_COMMA, - STATE(1236), 1, - aux_sym_argument_list_repeat1, - [54809] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2639), 1, - anon_sym_RPAREN, - ACTIONS(2667), 1, - anon_sym_COMMA, - STATE(1254), 1, - aux_sym__parameters_repeat1, - [54822] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1973), 1, - anon_sym_RPAREN, - ACTIONS(1975), 1, - anon_sym_COMMA, - STATE(1220), 1, - aux_sym_argument_list_repeat1, - [54835] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2518), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - [54844] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1721), 1, - anon_sym_RPAREN, - ACTIONS(2669), 1, - sym_identifier, - STATE(1360), 1, - sym_match_keyword_pattern, - [54857] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2346), 1, - anon_sym_COLON, - ACTIONS(2577), 1, - anon_sym_RBRACE, - STATE(1467), 1, - sym_format_specifier, - [54870] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2671), 1, - anon_sym_RPAREN, - ACTIONS(2673), 1, - anon_sym_COMMA, - STATE(1235), 1, - aux_sym_match_class_pattern_repeat2, - [54883] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2676), 1, - anon_sym_RPAREN, - ACTIONS(2678), 1, - anon_sym_COMMA, - STATE(1301), 1, - aux_sym_argument_list_repeat1, - [54896] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2680), 1, - anon_sym_COMMA, - ACTIONS(2682), 1, - anon_sym_COLON, - STATE(1297), 1, - aux_sym_with_clause_repeat1, - [54909] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2669), 1, - sym_identifier, - ACTIONS(2684), 1, - anon_sym_RPAREN, - STATE(1360), 1, - sym_match_keyword_pattern, - [54922] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2684), 1, - anon_sym_RPAREN, - ACTIONS(2686), 1, - anon_sym_COMMA, - STATE(1235), 1, - aux_sym_match_class_pattern_repeat2, - [54935] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2554), 3, - sym__newline, - anon_sym_COMMA, - anon_sym_SEMI, - [54944] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1846), 1, - anon_sym_COLON, - ACTIONS(2688), 1, - anon_sym_COMMA, - STATE(1308), 1, - aux_sym__parameters_repeat1, - [54957] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1399), 3, - sym__newline, - anon_sym_in, - anon_sym_SEMI, - [54966] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2690), 3, - sym__newline, - anon_sym_COMMA, - anon_sym_SEMI, - [54975] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2692), 1, - anon_sym_COMMA, - ACTIONS(2694), 1, - anon_sym_RBRACE, - STATE(1281), 1, - aux_sym_dictionary_repeat1, - [54988] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1403), 3, - sym__newline, - anon_sym_in, - anon_sym_SEMI, - [54997] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2684), 1, - anon_sym_RPAREN, - ACTIONS(2686), 1, - anon_sym_COMMA, - STATE(1266), 1, - aux_sym_match_class_pattern_repeat2, - [55010] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2696), 1, - anon_sym_RPAREN, - ACTIONS(2698), 1, - anon_sym_COMMA, - STATE(1301), 1, - aux_sym_argument_list_repeat1, - [55023] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2700), 1, - anon_sym_COMMA, - ACTIONS(2702), 1, - anon_sym_RBRACE, - STATE(1281), 1, - aux_sym_dictionary_repeat1, - [55036] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2704), 1, - anon_sym_COMMA, - ACTIONS(2706), 1, - anon_sym_RBRACK, - STATE(1296), 1, - aux_sym_subscript_repeat1, - [55049] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2708), 1, - anon_sym_COMMA, - ACTIONS(2710), 1, - anon_sym_RBRACE, - STATE(1281), 1, - aux_sym_dictionary_repeat1, - [55062] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2712), 1, - anon_sym_COMMA, - ACTIONS(2714), 1, - anon_sym_RBRACK, - STATE(1296), 1, - aux_sym_subscript_repeat1, - [55075] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2716), 1, - anon_sym_COMMA, - ACTIONS(2718), 1, - anon_sym_RBRACE, - STATE(1281), 1, - aux_sym_dictionary_repeat1, - [55088] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2045), 1, - anon_sym_from, - ACTIONS(2049), 2, - sym__newline, - anon_sym_SEMI, - [55099] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1846), 1, - anon_sym_RPAREN, - ACTIONS(2720), 1, - anon_sym_COMMA, - STATE(1282), 1, - aux_sym__parameters_repeat1, - [55112] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1172), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - [55121] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(974), 1, - anon_sym_except, - ACTIONS(976), 2, - anon_sym_except_STAR, - anon_sym_finally, - [55132] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2722), 1, - anon_sym_COMMA, - ACTIONS(2724), 1, - anon_sym_RBRACK, - STATE(1335), 1, - aux_sym_open_sequence_match_pattern_repeat1, - [55145] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2376), 1, - anon_sym_RPAREN, - ACTIONS(2726), 1, - anon_sym_COMMA, - STATE(1116), 1, - aux_sym__collection_elements_repeat1, - [55158] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1814), 1, - anon_sym_COMMA, - ACTIONS(2728), 1, - anon_sym_in, - STATE(885), 1, - aux_sym__patterns_repeat1, - [55171] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2669), 1, - sym_identifier, - ACTIONS(2730), 1, - anon_sym_RPAREN, - STATE(1360), 1, - sym_match_keyword_pattern, - [55184] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1967), 1, - anon_sym_RPAREN, - ACTIONS(1969), 1, - anon_sym_COMMA, - STATE(1284), 1, - aux_sym_argument_list_repeat1, - [55197] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2732), 1, - anon_sym_RPAREN, - ACTIONS(2734), 1, - anon_sym_COMMA, - STATE(1286), 1, - aux_sym_argument_list_repeat1, - [55210] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1814), 1, - anon_sym_COMMA, - ACTIONS(2736), 1, - anon_sym_in, - STATE(885), 1, - aux_sym__patterns_repeat1, - [55223] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2223), 1, - anon_sym_COMMA, - ACTIONS(2225), 1, - anon_sym_RBRACK, - STATE(1289), 1, - aux_sym_subscript_repeat1, - [55236] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2211), 1, - anon_sym_COMMA, - ACTIONS(2213), 1, + ACTIONS(2165), 1, anon_sym_RBRACE, STATE(1250), 1, aux_sym_dictionary_repeat1, - [55249] = 4, + [54856] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2730), 1, - anon_sym_RPAREN, - ACTIONS(2738), 1, + ACTIONS(2157), 1, anon_sym_COMMA, - STATE(1235), 1, - aux_sym_match_class_pattern_repeat2, - [55262] = 4, + ACTIONS(2161), 1, + anon_sym_RBRACK, + STATE(1249), 1, + aux_sym_subscript_repeat1, + [54869] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2346), 1, - anon_sym_COLON, - ACTIONS(2476), 1, - anon_sym_RBRACE, - STATE(1486), 1, - sym_format_specifier, - [55275] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2669), 1, - sym_identifier, - ACTIONS(2740), 1, + ACTIONS(2544), 1, anon_sym_RPAREN, - STATE(1360), 1, - sym_match_keyword_pattern, - [55288] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1717), 1, - anon_sym_RPAREN, - ACTIONS(2742), 1, + ACTIONS(2661), 1, anon_sym_COMMA, - STATE(1285), 1, - aux_sym_match_class_pattern_repeat1, - [55301] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2380), 1, - anon_sym_LPAREN, - ACTIONS(2744), 1, - anon_sym_COLON, - STATE(1474), 1, - sym_argument_list, - [55314] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1717), 1, - anon_sym_RPAREN, - ACTIONS(2669), 1, - sym_identifier, - STATE(1360), 1, - sym_match_keyword_pattern, - [55327] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1717), 1, - anon_sym_RPAREN, - ACTIONS(2746), 1, - anon_sym_COMMA, - STATE(1235), 1, - aux_sym_match_class_pattern_repeat2, - [55340] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2748), 1, - anon_sym_COMMA, - ACTIONS(2751), 1, - anon_sym_RBRACE, - STATE(1273), 1, - aux_sym_match_mapping_pattern_repeat1, - [55353] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(982), 1, - anon_sym_RPAREN, - ACTIONS(2753), 1, - anon_sym_COMMA, - STATE(1163), 1, - aux_sym_with_clause_repeat1, - [55366] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2340), 1, - anon_sym_RPAREN, - ACTIONS(2504), 1, - anon_sym_COMMA, - STATE(1326), 1, + STATE(1230), 1, aux_sym__import_list_repeat1, - [55379] = 2, + [54882] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2755), 3, + ACTIONS(2664), 1, anon_sym_RPAREN, + ACTIONS(2666), 1, anon_sym_COMMA, - anon_sym_COLON, - [55388] = 4, + STATE(1314), 1, + aux_sym_argument_list_repeat1, + [54895] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2757), 1, - anon_sym_COMMA, - ACTIONS(2759), 1, - anon_sym_RBRACE, - STATE(1281), 1, - aux_sym_dictionary_repeat1, - [55401] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2761), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_EQ, - [55410] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1900), 1, - anon_sym_COMMA, - ACTIONS(1989), 1, + ACTIONS(2668), 1, anon_sym_RPAREN, - STATE(1313), 1, - aux_sym__collection_elements_repeat1, - [55423] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1881), 1, - anon_sym_RPAREN, - ACTIONS(1900), 1, + ACTIONS(2670), 1, anon_sym_COMMA, - STATE(1313), 1, - aux_sym__collection_elements_repeat1, - [55436] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2763), 1, - anon_sym_COMMA, - ACTIONS(2766), 1, - anon_sym_RBRACE, - STATE(1281), 1, - aux_sym_dictionary_repeat1, - [55449] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2755), 1, - anon_sym_RPAREN, - ACTIONS(2768), 1, - anon_sym_COMMA, - STATE(1282), 1, + STATE(1256), 1, aux_sym__parameters_repeat1, - [55462] = 4, + [54908] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2771), 1, - anon_sym_COMMA, - ACTIONS(2774), 1, - anon_sym_RBRACK, - STATE(1283), 1, - aux_sym_type_parameters_repeat1, - [55475] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2776), 1, + ACTIONS(1979), 1, anon_sym_RPAREN, - ACTIONS(2778), 1, + ACTIONS(1981), 1, anon_sym_COMMA, - STATE(1301), 1, + STATE(1222), 1, aux_sym_argument_list_repeat1, - [55488] = 4, + [54921] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2780), 1, + ACTIONS(2528), 3, anon_sym_RPAREN, - ACTIONS(2782), 1, anon_sym_COMMA, - STATE(1285), 1, - aux_sym_match_class_pattern_repeat1, - [55501] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2785), 1, - anon_sym_RPAREN, - ACTIONS(2787), 1, - anon_sym_COMMA, - STATE(1301), 1, - aux_sym_argument_list_repeat1, - [55514] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2789), 1, - anon_sym_RPAREN, - ACTIONS(2791), 1, - anon_sym_COMMA, - STATE(1301), 1, - aux_sym_argument_list_repeat1, - [55527] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2793), 1, - anon_sym_COMMA, - ACTIONS(2795), 1, - anon_sym_RBRACE, - STATE(1281), 1, - aux_sym_dictionary_repeat1, - [55540] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2797), 1, - anon_sym_COMMA, - ACTIONS(2799), 1, - anon_sym_RBRACK, - STATE(1296), 1, - aux_sym_subscript_repeat1, - [55553] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2801), 1, - anon_sym_COMMA, - ACTIONS(2803), 1, - anon_sym_RBRACK, - STATE(1296), 1, - aux_sym_subscript_repeat1, - [55566] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2346), 1, anon_sym_COLON, - ACTIONS(2805), 1, - anon_sym_RBRACE, - STATE(1471), 1, - sym_format_specifier, - [55579] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_if, - ACTIONS(2809), 1, - anon_sym_COLON, - STATE(1488), 1, - sym_guard, - [55592] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2546), 1, - anon_sym_RPAREN, - ACTIONS(2811), 1, - anon_sym_COMMA, - STATE(1293), 1, - aux_sym__import_list_repeat1, - [55605] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2231), 1, - anon_sym_COMMA, - ACTIONS(2233), 1, - anon_sym_RBRACE, - STATE(1288), 1, - aux_sym_dictionary_repeat1, - [55618] = 4, + [54930] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1721), 1, anon_sym_RPAREN, - ACTIONS(2814), 1, + ACTIONS(2672), 1, + sym_identifier, + STATE(1412), 1, + sym_match_keyword_pattern, + [54943] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2359), 1, + anon_sym_COLON, + ACTIONS(2575), 1, + anon_sym_RBRACE, + STATE(1473), 1, + sym_format_specifier, + [54956] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2674), 1, + anon_sym_RPAREN, + ACTIONS(2676), 1, anon_sym_COMMA, - STATE(1239), 1, + STATE(1237), 1, aux_sym_match_class_pattern_repeat2, - [55631] = 4, + [54969] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2816), 1, - anon_sym_COMMA, - ACTIONS(2819), 1, - anon_sym_RBRACK, - STATE(1296), 1, - aux_sym_subscript_repeat1, - [55644] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2680), 1, - anon_sym_COMMA, - ACTIONS(2821), 1, - anon_sym_COLON, - STATE(1163), 1, - aux_sym_with_clause_repeat1, - [55657] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2823), 1, - anon_sym_COLON, - ACTIONS(2464), 2, + ACTIONS(2679), 1, anon_sym_RPAREN, + ACTIONS(2681), 1, anon_sym_COMMA, - [55668] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2825), 1, - anon_sym_COMMA, - ACTIONS(2827), 1, - anon_sym_RBRACK, - STATE(1345), 1, - aux_sym_type_parameters_repeat1, - [55681] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2829), 1, - anon_sym_RPAREN, - ACTIONS(2831), 1, - anon_sym_COMMA, - STATE(1274), 1, - aux_sym_with_clause_repeat1, - [55694] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2833), 1, - anon_sym_RPAREN, - ACTIONS(2835), 1, - anon_sym_COMMA, - STATE(1301), 1, + STATE(1300), 1, aux_sym_argument_list_repeat1, - [55707] = 2, + [54982] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2565), 3, + ACTIONS(2683), 1, + anon_sym_COMMA, + ACTIONS(2685), 1, + anon_sym_COLON, + STATE(1299), 1, + aux_sym_with_clause_repeat1, + [54995] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2672), 1, + sym_identifier, + ACTIONS(2687), 1, + anon_sym_RPAREN, + STATE(1412), 1, + sym_match_keyword_pattern, + [55008] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2687), 1, + anon_sym_RPAREN, + ACTIONS(2689), 1, + anon_sym_COMMA, + STATE(1237), 1, + aux_sym_match_class_pattern_repeat2, + [55021] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2548), 3, sym__newline, anon_sym_COMMA, anon_sym_SEMI, - [55716] = 3, + [55030] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2506), 1, - anon_sym_as, - ACTIONS(2554), 2, + ACTIONS(1846), 1, + anon_sym_COLON, + ACTIONS(2691), 1, + anon_sym_COMMA, + STATE(1310), 1, + aux_sym__parameters_repeat1, + [55043] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1401), 3, + sym__newline, + anon_sym_in, + anon_sym_SEMI, + [55052] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2693), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_SEMI, + [55061] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2695), 1, + anon_sym_COMMA, + ACTIONS(2697), 1, + anon_sym_RBRACE, + STATE(1283), 1, + aux_sym_dictionary_repeat1, + [55074] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1721), 1, + anon_sym_RPAREN, + ACTIONS(2699), 1, + anon_sym_COMMA, + STATE(1241), 1, + aux_sym_match_class_pattern_repeat2, + [55087] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2687), 1, + anon_sym_RPAREN, + ACTIONS(2689), 1, + anon_sym_COMMA, + STATE(1267), 1, + aux_sym_match_class_pattern_repeat2, + [55100] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2701), 1, + anon_sym_COMMA, + ACTIONS(2703), 1, + anon_sym_RBRACK, + STATE(1287), 1, + aux_sym_subscript_repeat1, + [55113] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2705), 1, + anon_sym_COMMA, + ACTIONS(2707), 1, + anon_sym_RBRACE, + STATE(1283), 1, + aux_sym_dictionary_repeat1, + [55126] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2709), 1, + anon_sym_COMMA, + ACTIONS(2711), 1, + anon_sym_RBRACK, + STATE(1287), 1, + aux_sym_subscript_repeat1, + [55139] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2713), 1, + anon_sym_COMMA, + ACTIONS(2715), 1, + anon_sym_RBRACE, + STATE(1283), 1, + aux_sym_dictionary_repeat1, + [55152] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2717), 1, + anon_sym_COMMA, + ACTIONS(2719), 1, + anon_sym_RBRACK, + STATE(1344), 1, + aux_sym_open_sequence_match_pattern_repeat1, + [55165] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2721), 1, + anon_sym_COMMA, + ACTIONS(2723), 1, + anon_sym_RBRACE, + STATE(1283), 1, + aux_sym_dictionary_repeat1, + [55178] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2725), 1, + anon_sym_COMMA, + ACTIONS(2727), 1, + anon_sym_RBRACE, + STATE(1338), 1, + aux_sym_match_mapping_pattern_repeat1, + [55191] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1846), 1, + anon_sym_RPAREN, + ACTIONS(2729), 1, + anon_sym_COMMA, + STATE(1284), 1, + aux_sym__parameters_repeat1, + [55204] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1136), 3, anon_sym_RPAREN, anon_sym_COMMA, - [55727] = 3, - ACTIONS(1875), 1, - sym_comment, - ACTIONS(2245), 1, - anon_sym_RBRACE, - ACTIONS(2247), 2, - anon_sym_LBRACE2, - aux_sym_format_specifier_token1, - [55738] = 4, + anon_sym_COLON, + [55213] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1814), 1, + ACTIONS(2416), 1, + anon_sym_RPAREN, + ACTIONS(2731), 1, + anon_sym_COMMA, + STATE(1120), 1, + aux_sym__collection_elements_repeat1, + [55226] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2050), 1, + anon_sym_from, + ACTIONS(2060), 2, + sym__newline, + anon_sym_SEMI, + [55237] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1824), 1, + anon_sym_COMMA, + ACTIONS(2733), 1, + anon_sym_in, + STATE(884), 1, + aux_sym__patterns_repeat1, + [55250] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2672), 1, + sym_identifier, + ACTIONS(2735), 1, + anon_sym_RPAREN, + STATE(1412), 1, + sym_match_keyword_pattern, + [55263] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_except, + ACTIONS(974), 2, + anon_sym_except_STAR, + anon_sym_finally, + [55274] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1989), 1, + anon_sym_RPAREN, + ACTIONS(1991), 1, + anon_sym_COMMA, + STATE(1286), 1, + aux_sym_argument_list_repeat1, + [55287] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2737), 1, + anon_sym_RPAREN, + ACTIONS(2739), 1, + anon_sym_COMMA, + STATE(1288), 1, + aux_sym_argument_list_repeat1, + [55300] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2167), 1, + anon_sym_COMMA, + ACTIONS(2169), 1, + anon_sym_RBRACE, + STATE(1252), 1, + aux_sym_dictionary_repeat1, + [55313] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2195), 1, + anon_sym_COMMA, + ACTIONS(2197), 1, + anon_sym_RBRACK, + STATE(1291), 1, + aux_sym_subscript_repeat1, + [55326] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2735), 1, + anon_sym_RPAREN, + ACTIONS(2741), 1, + anon_sym_COMMA, + STATE(1237), 1, + aux_sym_match_class_pattern_repeat2, + [55339] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2743), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_EQ, + [55348] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2359), 1, + anon_sym_COLON, + ACTIONS(2510), 1, + anon_sym_RBRACE, + STATE(1414), 1, + sym_format_specifier, + [55361] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2672), 1, + sym_identifier, + ACTIONS(2745), 1, + anon_sym_RPAREN, + STATE(1412), 1, + sym_match_keyword_pattern, + [55374] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1719), 1, + anon_sym_RPAREN, + ACTIONS(2747), 1, + anon_sym_COMMA, + STATE(1295), 1, + aux_sym_match_class_pattern_repeat1, + [55387] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2344), 1, + anon_sym_LPAREN, + ACTIONS(2749), 1, + anon_sym_COLON, + STATE(1482), 1, + sym_argument_list, + [55400] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1719), 1, + anon_sym_RPAREN, + ACTIONS(2672), 1, + sym_identifier, + STATE(1412), 1, + sym_match_keyword_pattern, + [55413] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1014), 1, + anon_sym_except, + ACTIONS(1012), 2, + anon_sym_except_STAR, + anon_sym_finally, + [55424] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1719), 1, + anon_sym_RPAREN, + ACTIONS(2751), 1, + anon_sym_COMMA, + STATE(1237), 1, + aux_sym_match_class_pattern_repeat2, + [55437] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1018), 1, + anon_sym_RPAREN, + ACTIONS(2753), 1, + anon_sym_COMMA, + STATE(1169), 1, + aux_sym_with_clause_repeat1, + [55450] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2755), 1, + anon_sym_COMMA, + ACTIONS(2758), 1, + anon_sym_RBRACE, + STATE(1277), 1, + aux_sym_match_mapping_pattern_repeat1, + [55463] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2760), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + [55472] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2762), 1, + anon_sym_COMMA, + ACTIONS(2764), 1, + anon_sym_RBRACE, + STATE(1283), 1, + aux_sym_dictionary_repeat1, + [55485] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2766), 1, + anon_sym_COMMA, + ACTIONS(2769), 1, + anon_sym_RBRACK, + STATE(1280), 1, + aux_sym_type_parameters_repeat1, + [55498] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2771), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + [55507] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1900), 1, + anon_sym_RPAREN, + ACTIONS(1931), 1, + anon_sym_COMMA, + STATE(1315), 1, + aux_sym__collection_elements_repeat1, + [55520] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2773), 1, + anon_sym_COMMA, + ACTIONS(2776), 1, + anon_sym_RBRACE, + STATE(1283), 1, + aux_sym_dictionary_repeat1, + [55533] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2760), 1, + anon_sym_RPAREN, + ACTIONS(2778), 1, + anon_sym_COMMA, + STATE(1284), 1, + aux_sym__parameters_repeat1, + [55546] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2424), 1, + anon_sym_RPAREN, + ACTIONS(2589), 1, + anon_sym_COMMA, + STATE(1334), 1, + aux_sym__import_list_repeat1, + [55559] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2781), 1, + anon_sym_RPAREN, + ACTIONS(2783), 1, + anon_sym_COMMA, + STATE(1300), 1, + aux_sym_argument_list_repeat1, + [55572] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2785), 1, + anon_sym_COMMA, + ACTIONS(2788), 1, + anon_sym_RBRACK, + STATE(1287), 1, + aux_sym_subscript_repeat1, + [55585] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2790), 1, + anon_sym_RPAREN, + ACTIONS(2792), 1, + anon_sym_COMMA, + STATE(1300), 1, + aux_sym_argument_list_repeat1, + [55598] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2794), 1, + anon_sym_RPAREN, + ACTIONS(2796), 1, + anon_sym_COMMA, + STATE(1300), 1, + aux_sym_argument_list_repeat1, + [55611] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2798), 1, + anon_sym_COMMA, + ACTIONS(2800), 1, + anon_sym_RBRACE, + STATE(1283), 1, + aux_sym_dictionary_repeat1, + [55624] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2802), 1, + anon_sym_COMMA, + ACTIONS(2804), 1, + anon_sym_RBRACK, + STATE(1287), 1, + aux_sym_subscript_repeat1, + [55637] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2806), 1, + anon_sym_COMMA, + ACTIONS(2808), 1, + anon_sym_RBRACK, + STATE(1287), 1, + aux_sym_subscript_repeat1, + [55650] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2359), 1, + anon_sym_COLON, + ACTIONS(2810), 1, + anon_sym_RBRACE, + STATE(1478), 1, + sym_format_specifier, + [55663] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2233), 1, + anon_sym_COMMA, + ACTIONS(2235), 1, + anon_sym_RBRACK, + STATE(1317), 1, + aux_sym_subscript_repeat1, + [55676] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2812), 1, + anon_sym_RPAREN, + ACTIONS(2814), 1, + anon_sym_COMMA, + STATE(1295), 1, + aux_sym_match_class_pattern_repeat1, + [55689] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2591), 1, + anon_sym_as, + ACTIONS(2548), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [55700] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2817), 1, + anon_sym_if, + ACTIONS(2819), 1, + anon_sym_COLON, + STATE(1490), 1, + sym_guard, + [55713] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2191), 1, + anon_sym_COMMA, + ACTIONS(2193), 1, + anon_sym_RBRACE, + STATE(1290), 1, + aux_sym_dictionary_repeat1, + [55726] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2683), 1, + anon_sym_COMMA, + ACTIONS(2821), 1, + anon_sym_COLON, + STATE(1169), 1, + aux_sym_with_clause_repeat1, + [55739] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2823), 1, + anon_sym_RPAREN, + ACTIONS(2825), 1, + anon_sym_COMMA, + STATE(1300), 1, + aux_sym_argument_list_repeat1, + [55752] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2828), 1, + anon_sym_COMMA, + ACTIONS(2830), 1, + anon_sym_RBRACK, + STATE(1319), 1, + aux_sym_type_parameters_repeat1, + [55765] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2832), 1, + anon_sym_RPAREN, + ACTIONS(2834), 1, + anon_sym_COMMA, + STATE(1276), 1, + aux_sym_with_clause_repeat1, + [55778] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1931), 1, + anon_sym_COMMA, + ACTIONS(1967), 1, + anon_sym_RPAREN, + STATE(1315), 1, + aux_sym__collection_elements_repeat1, + [55791] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2563), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_SEMI, + [55800] = 3, + ACTIONS(1871), 1, + sym_comment, + ACTIONS(2270), 1, + anon_sym_RBRACE, + ACTIONS(2272), 2, + anon_sym_LBRACE2, + aux_sym_format_specifier_token1, + [55811] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2836), 1, + anon_sym_COLON, + ACTIONS(2520), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [55822] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1824), 1, anon_sym_COMMA, ACTIONS(2838), 1, anon_sym_in, - STATE(885), 1, + STATE(884), 1, aux_sym__patterns_repeat1, - [55751] = 3, + [55835] = 3, + ACTIONS(1871), 1, + sym_comment, + ACTIONS(2266), 1, + anon_sym_RBRACE, + ACTIONS(2268), 2, + anon_sym_LBRACE2, + aux_sym_format_specifier_token1, + [55846] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2840), 1, @@ -69914,1361 +69985,1354 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2842), 2, sym__newline, anon_sym_SEMI, - [55762] = 4, + [55857] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2384), 1, - anon_sym_LBRACK, + ACTIONS(2760), 1, + anon_sym_COLON, ACTIONS(2844), 1, - anon_sym_EQ, - STATE(1497), 1, - sym_type_parameters, - [55775] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2755), 1, - anon_sym_COLON, - ACTIONS(2846), 1, anon_sym_COMMA, - STATE(1308), 1, + STATE(1310), 1, aux_sym__parameters_repeat1, - [55788] = 4, + [55870] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2348), 1, + anon_sym_LBRACK, + ACTIONS(2847), 1, + anon_sym_EQ, + STATE(1499), 1, + sym_type_parameters, + [55883] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2565), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + [55892] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2380), 1, - anon_sym_LPAREN, ACTIONS(2849), 1, - anon_sym_COLON, - STATE(1477), 1, - sym_argument_list, - [55801] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2581), 3, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - [55810] = 4, - ACTIONS(3), 1, - sym_comment, ACTIONS(2851), 1, - anon_sym_RPAREN, - ACTIONS(2853), 1, anon_sym_COMMA, - STATE(1301), 1, + STATE(1300), 1, aux_sym_argument_list_repeat1, - [55823] = 4, + [55905] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(2853), 1, + anon_sym_RPAREN, ACTIONS(2855), 1, + anon_sym_COMMA, + STATE(1300), 1, + aux_sym_argument_list_repeat1, + [55918] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2416), 1, anon_sym_RPAREN, ACTIONS(2857), 1, anon_sym_COMMA, - STATE(1301), 1, - aux_sym_argument_list_repeat1, - [55836] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2376), 1, - anon_sym_RPAREN, - ACTIONS(2859), 1, - anon_sym_COMMA, - STATE(1116), 1, + STATE(1120), 1, aux_sym__collection_elements_repeat1, - [55849] = 4, + [55931] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2861), 1, + ACTIONS(2859), 1, anon_sym_RPAREN, + ACTIONS(2861), 1, + anon_sym_COMMA, + STATE(1300), 1, + aux_sym_argument_list_repeat1, + [55944] = 4, + ACTIONS(3), 1, + sym_comment, ACTIONS(2863), 1, anon_sym_COMMA, - STATE(1301), 1, - aux_sym_argument_list_repeat1, - [55862] = 4, + ACTIONS(2865), 1, + anon_sym_RBRACK, + STATE(1287), 1, + aux_sym_subscript_repeat1, + [55957] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2865), 1, + ACTIONS(972), 1, + anon_sym_except, + ACTIONS(970), 2, + anon_sym_except_STAR, + anon_sym_finally, + [55968] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2828), 1, anon_sym_COMMA, ACTIONS(2867), 1, anon_sym_RBRACK, - STATE(1296), 1, - aux_sym_subscript_repeat1, - [55875] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1001), 1, - anon_sym_except, - ACTIONS(999), 2, - anon_sym_except_STAR, - anon_sym_finally, - [55886] = 4, + STATE(1280), 1, + aux_sym_type_parameters_repeat1, + [55981] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2869), 1, anon_sym_COMMA, ACTIONS(2871), 1, anon_sym_RBRACK, - STATE(1296), 1, + STATE(1287), 1, aux_sym_subscript_repeat1, - [55899] = 3, - ACTIONS(1875), 1, + [55994] = 3, + ACTIONS(1871), 1, sym_comment, ACTIONS(2873), 1, anon_sym_RBRACE, ACTIONS(2875), 2, anon_sym_LBRACE2, aux_sym_format_specifier_token1, - [55910] = 4, + [56005] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2346), 1, + ACTIONS(2359), 1, anon_sym_COLON, ACTIONS(2877), 1, anon_sym_RBRACE, - STATE(1437), 1, + STATE(1440), 1, sym_format_specifier, - [55923] = 4, + [56018] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1900), 1, + ACTIONS(1931), 1, anon_sym_COMMA, ACTIONS(2879), 1, anon_sym_RPAREN, STATE(1258), 1, aux_sym__collection_elements_repeat1, - [55936] = 4, + [56031] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1900), 1, + ACTIONS(1931), 1, anon_sym_COMMA, ACTIONS(2881), 1, anon_sym_RPAREN, - STATE(1120), 1, + STATE(1128), 1, aux_sym__collection_elements_repeat1, - [55949] = 4, + [56044] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2344), 1, + anon_sym_LPAREN, + ACTIONS(2883), 1, + anon_sym_COLON, + STATE(1479), 1, + sym_argument_list, + [56057] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2237), 1, sym_identifier, - STATE(1180), 1, + STATE(1178), 1, sym_dotted_name, - STATE(1240), 1, + STATE(1242), 1, sym_aliased_import, - [55962] = 4, + [56070] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2883), 1, - anon_sym_RPAREN, - ACTIONS(2885), 1, - anon_sym_COMMA, - STATE(1272), 1, - aux_sym_match_class_pattern_repeat2, - [55975] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2883), 1, - anon_sym_RPAREN, - ACTIONS(2887), 1, - anon_sym_COMMA, - STATE(1269), 1, - aux_sym_match_class_pattern_repeat1, - [55988] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1814), 1, - anon_sym_COMMA, - ACTIONS(2889), 1, - anon_sym_in, - STATE(885), 1, - aux_sym__patterns_repeat1, - [56001] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2622), 1, - anon_sym_RPAREN, - ACTIONS(2891), 1, - anon_sym_COMMA, - STATE(1293), 1, - aux_sym__import_list_repeat1, - [56014] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2622), 1, - anon_sym_RPAREN, - ACTIONS(2893), 1, - anon_sym_COMMA, - STATE(1293), 1, - aux_sym__import_list_repeat1, - [56027] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1838), 1, - anon_sym_RBRACE, - ACTIONS(2895), 1, - anon_sym_COMMA, - STATE(1273), 1, - aux_sym_match_mapping_pattern_repeat1, - [56040] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(980), 1, - anon_sym_except, - ACTIONS(978), 2, - anon_sym_except_STAR, - anon_sym_finally, - [56051] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1013), 1, - anon_sym_except, - ACTIONS(1011), 2, - anon_sym_except_STAR, - anon_sym_finally, - [56062] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2163), 1, - sym_identifier, - ACTIONS(2897), 1, - anon_sym_import, - STATE(1465), 1, - sym_dotted_name, - [56075] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1005), 1, - anon_sym_except, - ACTIONS(1007), 2, - anon_sym_except_STAR, - anon_sym_finally, - [56086] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1894), 1, - anon_sym_DOT, - ACTIONS(1898), 1, - anon_sym_COLON, - STATE(907), 1, - aux_sym_match_value_pattern_repeat1, - [56099] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2899), 1, - sym_identifier, - ACTIONS(2901), 1, - sym_match_wildcard_pattern, - STATE(1097), 1, - sym_match_capture_pattern, - [56112] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1713), 1, - anon_sym_RBRACK, - ACTIONS(2903), 1, - anon_sym_COMMA, - STATE(1076), 1, - aux_sym_open_sequence_match_pattern_repeat1, - [56125] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_if, - ACTIONS(2905), 1, - anon_sym_COLON, - STATE(1420), 1, - sym_guard, - [56138] = 3, - ACTIONS(1875), 1, - sym_comment, - ACTIONS(2265), 1, - anon_sym_RBRACE, - ACTIONS(2267), 2, - anon_sym_LBRACE2, - aux_sym_format_specifier_token1, - [56149] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2907), 1, - anon_sym_COMMA, - ACTIONS(2909), 2, - anon_sym_if, - anon_sym_COLON, - [56160] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2464), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - [56169] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1713), 1, - anon_sym_RPAREN, - ACTIONS(2911), 1, - anon_sym_COMMA, - STATE(1076), 1, - aux_sym_open_sequence_match_pattern_repeat1, - [56182] = 3, - ACTIONS(1875), 1, - sym_comment, - ACTIONS(2303), 1, - anon_sym_RBRACE, - ACTIONS(2305), 2, - anon_sym_LBRACE2, - aux_sym_format_specifier_token1, - [56193] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2468), 1, - anon_sym_EQ, - ACTIONS(2464), 2, - anon_sym_COMMA, - anon_sym_COLON, - [56204] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2913), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - [56213] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2915), 3, + ACTIONS(2885), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_EQ, - [56222] = 4, + [56079] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2825), 1, + ACTIONS(2887), 3, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2917), 1, - anon_sym_RBRACK, - STATE(1283), 1, - aux_sym_type_parameters_repeat1, - [56235] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2919), 1, anon_sym_COLON, - ACTIONS(2921), 1, - anon_sym_DASH_GT, - [56245] = 3, + [56088] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2923), 1, - sym_integer, - ACTIONS(2925), 1, - sym_float, - [56255] = 2, + ACTIONS(2889), 1, + anon_sym_RPAREN, + ACTIONS(2891), 1, + anon_sym_COMMA, + STATE(1275), 1, + aux_sym_match_class_pattern_repeat2, + [56101] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1951), 2, + ACTIONS(2524), 1, + anon_sym_EQ, + ACTIONS(2520), 2, + anon_sym_COMMA, + anon_sym_COLON, + [56112] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1824), 1, + anon_sym_COMMA, + ACTIONS(2893), 1, + anon_sym_in, + STATE(884), 1, + aux_sym__patterns_repeat1, + [56125] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2889), 1, + anon_sym_RPAREN, + ACTIONS(2895), 1, + anon_sym_COMMA, + STATE(1271), 1, + aux_sym_match_class_pattern_repeat1, + [56138] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1715), 1, + anon_sym_RPAREN, + ACTIONS(2897), 1, + anon_sym_COMMA, + STATE(1060), 1, + aux_sym_open_sequence_match_pattern_repeat1, + [56151] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2602), 1, + anon_sym_RPAREN, + ACTIONS(2899), 1, + anon_sym_COMMA, + STATE(1230), 1, + aux_sym__import_list_repeat1, + [56164] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2602), 1, + anon_sym_RPAREN, + ACTIONS(2901), 1, + anon_sym_COMMA, + STATE(1230), 1, + aux_sym__import_list_repeat1, + [56177] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2668), 1, + anon_sym_COLON, + ACTIONS(2903), 1, + anon_sym_COMMA, + STATE(1243), 1, + aux_sym__parameters_repeat1, + [56190] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1006), 1, + anon_sym_except, + ACTIONS(1008), 2, + anon_sym_except_STAR, + anon_sym_finally, + [56201] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1844), 1, + anon_sym_RBRACE, + ACTIONS(2905), 1, + anon_sym_COMMA, + STATE(1277), 1, + aux_sym_match_mapping_pattern_repeat1, + [56214] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1000), 1, + anon_sym_except, + ACTIONS(1002), 2, + anon_sym_except_STAR, + anon_sym_finally, + [56225] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2171), 1, + sym_identifier, + ACTIONS(2907), 1, + anon_sym_import, + STATE(1471), 1, + sym_dotted_name, + [56238] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2909), 1, + sym_identifier, + ACTIONS(2911), 1, + sym_match_wildcard_pattern, + STATE(1121), 1, + sym_match_capture_pattern, + [56251] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1951), 1, + anon_sym_DOT, + ACTIONS(1959), 1, + anon_sym_COLON, + STATE(907), 1, + aux_sym_match_value_pattern_repeat1, + [56264] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2520), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + [56273] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1715), 1, + anon_sym_RBRACK, + ACTIONS(2913), 1, + anon_sym_COMMA, + STATE(1060), 1, + aux_sym_open_sequence_match_pattern_repeat1, + [56286] = 3, + ACTIONS(1871), 1, + sym_comment, + ACTIONS(2292), 1, + anon_sym_RBRACE, + ACTIONS(2294), 2, + anon_sym_LBRACE2, + aux_sym_format_specifier_token1, + [56297] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2817), 1, + anon_sym_if, + ACTIONS(2915), 1, + anon_sym_COLON, + STATE(1459), 1, + sym_guard, + [56310] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2917), 1, + anon_sym_COMMA, + ACTIONS(2919), 2, + anon_sym_if, + anon_sym_COLON, + [56321] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2921), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [56329] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2923), 2, sym__newline, anon_sym_SEMI, - [56263] = 2, + [56337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2464), 2, + ACTIONS(2925), 1, + anon_sym_COMMA, + STATE(1165), 1, + aux_sym_open_sequence_match_pattern_repeat1, + [56347] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2520), 2, anon_sym_COMMA, anon_sym_COLON, - [56271] = 3, + [56355] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2927), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [56363] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2927), 1, - anon_sym_COLON, ACTIONS(2929), 1, - anon_sym_DASH_GT, - [56281] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2931), 2, anon_sym_COLON, + ACTIONS(2931), 1, anon_sym_DASH_GT, - [56289] = 2, + [56373] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2933), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [56297] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2935), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [56305] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2937), 1, + ACTIONS(2933), 1, sym_integer, - ACTIONS(2939), 1, + ACTIONS(2935), 1, sym_float, - [56315] = 2, + [56383] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2937), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [56391] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2939), 2, + sym__newline, + anon_sym_SEMI, + [56399] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2941), 2, + anon_sym_COLON, + anon_sym_DASH_GT, + [56407] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2943), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [56415] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2945), 2, anon_sym_COMMA, anon_sym_RBRACK, - [56323] = 3, + [56423] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2943), 1, + ACTIONS(2947), 1, anon_sym_COLON, - ACTIONS(2945), 1, + ACTIONS(2949), 1, anon_sym_DASH_GT, - [56333] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2947), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [56341] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2949), 2, - sym__newline, - anon_sym_SEMI, - [56349] = 3, + [56433] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2951), 1, - anon_sym_COMMA, - STATE(1204), 1, - aux_sym_open_sequence_match_pattern_repeat1, - [56359] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2671), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [56367] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2953), 1, anon_sym_COLON, - ACTIONS(2955), 1, + ACTIONS(2953), 1, anon_sym_DASH_GT, - [56377] = 2, + [56443] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2957), 2, - sym__newline, - anon_sym_SEMI, - [56385] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2392), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [56393] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2554), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [56401] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1832), 1, + ACTIONS(1842), 1, anon_sym_RBRACE, - ACTIONS(2959), 1, + ACTIONS(2955), 1, anon_sym_COMMA, - [56411] = 2, + [56453] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1951), 1, + anon_sym_DOT, + STATE(1342), 1, + aux_sym_match_value_pattern_repeat1, + [56463] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2957), 1, + anon_sym_COLON, + ACTIONS(2959), 1, + anon_sym_DASH_GT, + [56473] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2961), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [56419] = 2, + sym__newline, + anon_sym_SEMI, + [56481] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2751), 2, + ACTIONS(2548), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACE, - [56427] = 3, + [56489] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2963), 1, anon_sym_COLON, ACTIONS(2965), 1, anon_sym_DASH_GT, - [56437] = 2, + [56499] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2282), 2, + ACTIONS(2373), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [56445] = 3, + [56507] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2967), 1, anon_sym_COLON, ACTIONS(2969), 1, anon_sym_DASH_GT, - [56455] = 3, + [56517] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2971), 1, - anon_sym_COLON, - ACTIONS(2973), 1, - anon_sym_DASH_GT, - [56465] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2975), 2, - anon_sym_COLON, - anon_sym_DASH_GT, - [56473] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1953), 1, - anon_sym_COMMA, - STATE(992), 1, - aux_sym_expression_list_repeat1, - [56483] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2780), 2, + ACTIONS(2971), 2, anon_sym_RPAREN, anon_sym_COMMA, - [56491] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2977), 2, - sym__newline, - anon_sym_SEMI, - [56499] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2979), 2, - sym__newline, - anon_sym_SEMI, - [56507] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2981), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [56515] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2983), 1, - anon_sym_COMMA, - ACTIONS(2985), 1, - anon_sym_RBRACE, [56525] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2987), 2, + ACTIONS(2758), 2, anon_sym_COMMA, anon_sym_RBRACE, [56533] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2989), 2, + ACTIONS(2307), 2, anon_sym_COMMA, anon_sym_RBRACK, [56541] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2991), 2, + ACTIONS(2812), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, [56549] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2354), 2, + ACTIONS(2973), 2, + anon_sym_COLON, + anon_sym_DASH_GT, + [56557] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2975), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [56565] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2977), 1, + anon_sym_COMMA, + ACTIONS(2979), 1, + anon_sym_RBRACE, + [56575] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2693), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [56583] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2981), 2, + sym__newline, + anon_sym_SEMI, + [56591] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2983), 2, + sym__newline, + anon_sym_SEMI, + [56599] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1939), 2, + sym__newline, + anon_sym_SEMI, + [56607] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2985), 1, + sym_integer, + ACTIONS(2987), 1, + sym_float, + [56617] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2989), 2, anon_sym_COMMA, anon_sym_RBRACK, - [56557] = 2, + [56625] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2991), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [56633] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2993), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [56641] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2367), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [56649] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2537), 1, + anon_sym_LPAREN, + STATE(1353), 1, + sym_parameters, + [56659] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2995), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [56667] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2201), 2, + sym__newline, + anon_sym_SEMI, + [56675] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2997), 1, + anon_sym_COLON, + ACTIONS(2999), 1, + anon_sym_DASH_GT, + [56685] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2917), 1, + anon_sym_COMMA, + ACTIONS(3001), 1, + anon_sym_RPAREN, + [56695] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3003), 1, + anon_sym_COMMA, + STATE(1333), 1, + aux_sym_open_sequence_match_pattern_repeat1, + [56705] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3005), 1, + anon_sym_COLON, + ACTIONS(3007), 1, + anon_sym_DASH_GT, + [56715] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2203), 2, sym__newline, anon_sym_SEMI, - [56565] = 3, + [56723] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2993), 1, - anon_sym_COLON, - ACTIONS(2995), 1, - anon_sym_DASH_GT, - [56575] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2907), 1, - anon_sym_COMMA, - ACTIONS(2997), 1, - anon_sym_RPAREN, - [56585] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2999), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [56593] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3001), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [56601] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3003), 1, - anon_sym_COMMA, - STATE(1340), 1, - aux_sym_open_sequence_match_pattern_repeat1, - [56611] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2539), 1, - anon_sym_LPAREN, - STATE(1350), 1, - sym_parameters, - [56621] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2169), 2, - sym__newline, - anon_sym_SEMI, - [56629] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2669), 1, + ACTIONS(2672), 1, sym_identifier, - STATE(1360), 1, + STATE(1412), 1, sym_match_keyword_pattern, - [56639] = 3, + [56733] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2539), 1, - anon_sym_LPAREN, - STATE(1370), 1, - sym_parameters, - [56649] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3005), 1, + ACTIONS(3009), 1, sym_integer, - ACTIONS(3007), 1, - sym_float, - [56659] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3009), 2, - sym__newline, - anon_sym_SEMI, - [56667] = 3, - ACTIONS(3), 1, - sym_comment, ACTIONS(3011), 1, - sym_identifier, - STATE(1352), 1, - sym_match_capture_pattern, - [56677] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2205), 2, - sym__newline, - anon_sym_SEMI, - [56685] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2047), 1, - anon_sym_COMMA, - STATE(1096), 1, - aux_sym_expression_list_repeat1, - [56695] = 2, + sym_float, + [56743] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3013), 2, sym__newline, anon_sym_SEMI, - [56703] = 2, + [56751] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2213), 2, + sym__newline, + anon_sym_SEMI, + [56759] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + anon_sym_COMMA, + STATE(1111), 1, + aux_sym_expression_list_repeat1, + [56769] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2537), 1, + anon_sym_LPAREN, + STATE(1369), 1, + sym_parameters, + [56779] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3015), 2, sym__newline, anon_sym_SEMI, - [56711] = 2, + [56787] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3017), 2, sym__newline, anon_sym_SEMI, - [56719] = 3, + [56795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1894), 1, - anon_sym_DOT, - STATE(1333), 1, - aux_sym_match_value_pattern_repeat1, - [56729] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2539), 1, + ACTIONS(2537), 1, anon_sym_LPAREN, - STATE(1368), 1, + STATE(1364), 1, sym_parameters, - [56739] = 3, + [56805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2539), 1, + ACTIONS(3019), 1, + sym_identifier, + STATE(1352), 1, + sym_match_capture_pattern, + [56815] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2537), 1, anon_sym_LPAREN, - STATE(1371), 1, + STATE(1367), 1, sym_parameters, - [56749] = 2, + [56825] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2635), 2, + ACTIONS(2637), 2, sym__newline, anon_sym_SEMI, - [56757] = 2, + [56833] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2690), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [56765] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3019), 2, + ACTIONS(3021), 2, sym__newline, anon_sym_SEMI, - [56773] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2659), 1, - anon_sym_RBRACE, - ACTIONS(3021), 1, - anon_sym_COMMA, - [56783] = 2, + [56841] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3023), 2, sym__newline, anon_sym_SEMI, - [56791] = 2, + [56849] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3025), 2, sym__newline, anon_sym_SEMI, - [56799] = 2, + [56857] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3027), 2, sym__newline, anon_sym_SEMI, - [56807] = 2, + [56865] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3029), 2, sym__newline, anon_sym_SEMI, - [56815] = 2, + [56873] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(2727), 1, + anon_sym_RBRACE, ACTIONS(3031), 1, - anon_sym_RBRACK, - [56822] = 2, + anon_sym_COMMA, + [56883] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2736), 1, - anon_sym_in, - [56829] = 2, + ACTIONS(2674), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [56891] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1941), 1, + anon_sym_COMMA, + STATE(966), 1, + aux_sym_expression_list_repeat1, + [56901] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2810), 1, + anon_sym_RBRACE, + [56908] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3033), 1, anon_sym_COLON, - [56836] = 2, + [56915] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2643), 1, + anon_sym_in, + [56922] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3035), 1, - anon_sym_RPAREN, - [56843] = 2, + anon_sym_COLON, + [56929] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3037), 1, sym_identifier, - [56850] = 2, + [56936] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3039), 1, - anon_sym_RBRACE, - [56857] = 2, + anon_sym_RPAREN, + [56943] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3041), 1, anon_sym_RBRACE, - [56864] = 2, + [56950] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3043), 1, - anon_sym_RBRACK, - [56871] = 2, + anon_sym_RBRACE, + [56957] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3045), 1, - anon_sym_COLON, - [56878] = 2, + anon_sym_RBRACK, + [56964] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3047), 1, anon_sym_RPAREN, - [56885] = 2, + [56971] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3049), 1, - anon_sym_in, - [56892] = 2, + sym_identifier, + [56978] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3051), 1, - anon_sym_COLON, - [56899] = 2, + anon_sym_in, + [56985] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3053), 1, - sym_identifier, - [56906] = 2, + anon_sym_COLON, + [56992] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3055), 1, - anon_sym_COLON, - [56913] = 2, + sym_identifier, + [56999] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3057), 1, - anon_sym_RBRACE, - [56920] = 2, + anon_sym_COLON, + [57006] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3059), 1, anon_sym_RBRACE, - [56927] = 2, + [57013] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3061), 1, - anon_sym_RBRACK, - [56934] = 2, + anon_sym_COLON, + [57020] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3063), 1, - anon_sym_RBRACK, - [56941] = 2, + anon_sym_RBRACE, + [57027] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3065), 1, anon_sym_COLON, - [56948] = 2, + [57034] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3067), 1, - anon_sym_COLON, - [56955] = 2, + anon_sym_RBRACK, + [57041] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3069), 1, - anon_sym_RPAREN, - [56962] = 2, + anon_sym_RBRACK, + [57048] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3071), 1, anon_sym_in, - [56969] = 2, + [57055] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3073), 1, anon_sym_COLON, - [56976] = 2, + [57062] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3075), 1, anon_sym_COLON, - [56983] = 2, + [57069] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3077), 1, anon_sym_COLON, - [56990] = 2, + [57076] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3079), 1, - anon_sym_RBRACE, - [56997] = 2, + anon_sym_RPAREN, + [57083] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3081), 1, anon_sym_RBRACE, - [57004] = 2, + [57090] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3083), 1, - anon_sym_RBRACE, - [57011] = 2, + anon_sym_RBRACK, + [57097] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3085), 1, anon_sym_RPAREN, - [57018] = 2, + [57104] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3087), 1, - anon_sym_COLON, - [57025] = 2, + anon_sym_RBRACE, + [57111] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3089), 1, - anon_sym_COLON, - [57032] = 2, + anon_sym_RBRACE, + [57118] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3091), 1, anon_sym_COLON, - [57039] = 2, + [57125] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3093), 1, anon_sym_COLON, - [57046] = 2, + [57132] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3095), 1, - anon_sym_RPAREN, - [57053] = 2, + anon_sym_COLON, + [57139] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3097), 1, anon_sym_RPAREN, - [57060] = 2, + [57146] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3099), 1, - anon_sym_LPAREN, - [57067] = 2, + anon_sym_COLON, + [57153] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3101), 1, - sym_identifier, - [57074] = 2, + anon_sym_RPAREN, + [57160] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3103), 1, - anon_sym_in, - [57081] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1838), 1, - anon_sym_RBRACE, - [57088] = 2, + anon_sym_LPAREN, + [57167] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3105), 1, - anon_sym_import, - [57095] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(914), 1, - anon_sym_def, - [57102] = 2, + sym_identifier, + [57174] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3107), 1, anon_sym_import, - [57109] = 2, + [57181] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3109), 1, - anon_sym_COLON, - [57116] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2253), 1, - anon_sym_COLON, - [57123] = 2, + anon_sym_in, + [57188] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3111), 1, - sym_identifier, - [57130] = 2, + anon_sym_import, + [57195] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1844), 1, + anon_sym_RBRACE, + [57202] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(900), 1, + anon_sym_def, + [57209] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3113), 1, - sym_identifier, - [57137] = 2, + anon_sym_COLON, + [57216] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3115), 1, anon_sym_COLON, - [57144] = 2, + [57223] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3117), 1, anon_sym_COLON, - [57151] = 2, + [57230] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3119), 1, anon_sym_COLON, - [57158] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2889), 1, - anon_sym_in, - [57165] = 2, + [57237] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3121), 1, - sym_identifier, - [57172] = 2, + anon_sym_COLON, + [57244] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2298), 1, + anon_sym_COLON, + [57251] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3123), 1, - anon_sym_RPAREN, - [57179] = 2, + sym_identifier, + [57258] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3125), 1, - anon_sym_RPAREN, - [57186] = 2, + anon_sym_COLON, + [57265] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2893), 1, + anon_sym_in, + [57272] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3127), 1, - anon_sym_import, - [57193] = 2, + sym_identifier, + [57279] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3129), 1, anon_sym_COLON, - [57200] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2877), 1, - anon_sym_RBRACE, - [57207] = 2, + [57286] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3131), 1, - anon_sym_for, - [57214] = 2, + anon_sym_RPAREN, + [57293] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3133), 1, anon_sym_RPAREN, - [57221] = 2, + [57300] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3135), 1, - anon_sym_COLON, - [57228] = 2, + anon_sym_import, + [57307] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3137), 1, - anon_sym_RBRACE, - [57235] = 2, + anon_sym_COLON, + [57314] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2284), 1, + ACTIONS(2877), 1, + anon_sym_RBRACE, + [57321] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2324), 1, anon_sym_COLON, - [57242] = 2, + [57328] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3139), 1, - anon_sym_COLON, - [57249] = 2, + anon_sym_for, + [57335] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3141), 1, - anon_sym_COLON, - [57256] = 2, + anon_sym_RPAREN, + [57342] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3143), 1, anon_sym_COLON, - [57263] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2838), 1, - anon_sym_in, - [57270] = 2, + [57349] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3145), 1, - anon_sym_COLON, - [57277] = 2, + anon_sym_RBRACE, + [57356] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3147), 1, anon_sym_COLON, - [57284] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2301), 1, - anon_sym_COLON, - [57291] = 2, + [57363] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3149), 1, anon_sym_COLON, - [57298] = 2, + [57370] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2326), 1, + anon_sym_COLON, + [57377] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3151), 1, - sym_identifier, - [57305] = 2, + anon_sym_COLON, + [57384] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2838), 1, + anon_sym_in, + [57391] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3153), 1, - sym_identifier, - [57312] = 2, + anon_sym_COLON, + [57398] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3155), 1, - anon_sym_RPAREN, - [57319] = 2, + sym_identifier, + [57405] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3157), 1, - anon_sym_RBRACK, - [57326] = 2, + sym_identifier, + [57412] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3159), 1, anon_sym_COLON, - [57333] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2805), 1, - anon_sym_RBRACE, - [57340] = 2, + [57419] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3161), 1, - anon_sym_COLON, - [57347] = 2, + anon_sym_RPAREN, + [57426] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3163), 1, anon_sym_COLON, - [57354] = 2, + [57433] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3165), 1, anon_sym_COLON, - [57361] = 2, + [57440] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3167), 1, anon_sym_COLON, - [57368] = 2, + [57447] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3169), 1, - anon_sym_RBRACE, - [57375] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2985), 1, - anon_sym_RBRACE, - [57382] = 2, + anon_sym_COLON, + [57454] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3171), 1, + anon_sym_RBRACK, + [57461] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2979), 1, anon_sym_RBRACE, - [57389] = 2, + [57468] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3173), 1, - sym_identifier, - [57396] = 2, + anon_sym_RBRACE, + [57475] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3175), 1, - anon_sym_COLON, - [57403] = 2, + anon_sym_RBRACE, + [57482] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3177), 1, - anon_sym_COLON, - [57410] = 2, + sym_identifier, + [57489] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3179), 1, - anon_sym_EQ, - [57417] = 2, + anon_sym_COLON, + [57496] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3181), 1, - anon_sym_COLON, - [57424] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2476), 1, - anon_sym_RBRACE, - [57431] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2299), 1, - anon_sym_COLON, - [57438] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2728), 1, - anon_sym_in, - [57445] = 2, + anon_sym_EQ, + [57503] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3183), 1, anon_sym_COLON, - [57452] = 2, + [57510] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2510), 1, + anon_sym_RBRACE, + [57517] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2309), 1, + anon_sym_COLON, + [57524] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2733), 1, + anon_sym_in, + [57531] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3185), 1, - anon_sym_RPAREN, - [57459] = 2, + anon_sym_COLON, + [57538] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3187), 1, - anon_sym_RBRACE, - [57466] = 2, + anon_sym_RPAREN, + [57545] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3189), 1, - sym_identifier, - [57473] = 2, + anon_sym_RBRACE, + [57552] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3191), 1, - anon_sym_RBRACE, - [57480] = 2, + sym_identifier, + [57559] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3193), 1, - anon_sym_RBRACK, - [57487] = 2, + anon_sym_RBRACE, + [57566] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3195), 1, - anon_sym_RPAREN, - [57494] = 2, + anon_sym_RBRACK, + [57573] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3197), 1, - anon_sym_RBRACE, - [57501] = 2, + anon_sym_RPAREN, + [57580] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3199), 1, - sym_identifier, - [57508] = 2, + anon_sym_RBRACE, + [57587] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3201), 1, - ts_builtin_sym_end, - [57515] = 2, + sym_identifier, + [57594] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3203), 1, - sym_identifier, - [57522] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2577), 1, - anon_sym_RBRACE, - [57529] = 2, + ts_builtin_sym_end, + [57601] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3205), 1, - anon_sym_in, - [57536] = 2, + sym_identifier, + [57608] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2575), 1, + anon_sym_RBRACE, + [57615] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3207), 1, - sym_identifier, - [57543] = 2, + anon_sym_in, + [57622] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3209), 1, sym_identifier, - [57550] = 2, + [57629] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3211), 1, sym_identifier, - [57557] = 2, + [57636] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3213), 1, sym_identifier, - [57564] = 2, + [57643] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3215), 1, - anon_sym_COLON, - [57571] = 2, + sym_identifier, + [57650] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3217), 1, - sym_identifier, - [57578] = 2, + anon_sym_COLON, + [57657] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3219), 1, - anon_sym_COLON, - [57585] = 2, + sym_identifier, + [57664] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3221), 1, - anon_sym_RBRACE, - [57592] = 2, + anon_sym_COLON, + [57671] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3223), 1, - sym_identifier, - [57599] = 2, + anon_sym_RBRACE, + [57678] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3225), 1, sym_identifier, - [57606] = 2, + [57685] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3227), 1, - anon_sym_RBRACE, - [57613] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2661), 1, - anon_sym_in, - [57620] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(904), 1, - anon_sym_def, - [57627] = 2, + sym_identifier, + [57692] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3229), 1, - anon_sym_RBRACK, - [57634] = 2, + anon_sym_RBRACE, + [57699] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2655), 1, + ACTIONS(2659), 1, anon_sym_in, - [57641] = 2, + [57706] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(908), 1, + anon_sym_def, + [57713] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3231), 1, - anon_sym_RPAREN, - [57648] = 2, + anon_sym_RBRACK, + [57720] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2114), 1, + ACTIONS(2657), 1, + anon_sym_in, + [57727] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3233), 1, + anon_sym_RPAREN, + [57734] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2072), 1, anon_sym_EQ, }; @@ -71278,97 +71342,97 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(157)] = 236, [SMALL_STATE(158)] = 354, [SMALL_STATE(159)] = 464, - [SMALL_STATE(160)] = 581, - [SMALL_STATE(161)] = 698, - [SMALL_STATE(162)] = 813, - [SMALL_STATE(163)] = 928, + [SMALL_STATE(160)] = 579, + [SMALL_STATE(161)] = 696, + [SMALL_STATE(162)] = 815, + [SMALL_STATE(163)] = 932, [SMALL_STATE(164)] = 1047, [SMALL_STATE(165)] = 1162, - [SMALL_STATE(166)] = 1276, - [SMALL_STATE(167)] = 1390, - [SMALL_STATE(168)] = 1494, - [SMALL_STATE(169)] = 1594, - [SMALL_STATE(170)] = 1694, - [SMALL_STATE(171)] = 1798, + [SMALL_STATE(166)] = 1262, + [SMALL_STATE(167)] = 1362, + [SMALL_STATE(168)] = 1466, + [SMALL_STATE(169)] = 1570, + [SMALL_STATE(170)] = 1674, + [SMALL_STATE(171)] = 1788, [SMALL_STATE(172)] = 1902, [SMALL_STATE(173)] = 2016, - [SMALL_STATE(174)] = 2121, - [SMALL_STATE(175)] = 2226, - [SMALL_STATE(176)] = 2327, - [SMALL_STATE(177)] = 2428, - [SMALL_STATE(178)] = 2533, + [SMALL_STATE(174)] = 2117, + [SMALL_STATE(175)] = 2220, + [SMALL_STATE(176)] = 2325, + [SMALL_STATE(177)] = 2426, + [SMALL_STATE(178)] = 2529, [SMALL_STATE(179)] = 2634, [SMALL_STATE(180)] = 2739, [SMALL_STATE(181)] = 2844, - [SMALL_STATE(182)] = 2947, - [SMALL_STATE(183)] = 3052, - [SMALL_STATE(184)] = 3159, + [SMALL_STATE(182)] = 2951, + [SMALL_STATE(183)] = 3056, + [SMALL_STATE(184)] = 3161, [SMALL_STATE(185)] = 3262, - [SMALL_STATE(186)] = 3360, + [SMALL_STATE(186)] = 3364, [SMALL_STATE(187)] = 3462, [SMALL_STATE(188)] = 3564, - [SMALL_STATE(189)] = 3668, - [SMALL_STATE(190)] = 3770, - [SMALL_STATE(191)] = 3872, + [SMALL_STATE(189)] = 3666, + [SMALL_STATE(190)] = 3768, + [SMALL_STATE(191)] = 3870, [SMALL_STATE(192)] = 3974, [SMALL_STATE(193)] = 4076, - [SMALL_STATE(194)] = 4178, + [SMALL_STATE(194)] = 4180, [SMALL_STATE(195)] = 4282, - [SMALL_STATE(196)] = 4380, - [SMALL_STATE(197)] = 4482, - [SMALL_STATE(198)] = 4584, - [SMALL_STATE(199)] = 4686, - [SMALL_STATE(200)] = 4788, - [SMALL_STATE(201)] = 4894, - [SMALL_STATE(202)] = 4996, - [SMALL_STATE(203)] = 5098, - [SMALL_STATE(204)] = 5200, - [SMALL_STATE(205)] = 5302, - [SMALL_STATE(206)] = 5404, - [SMALL_STATE(207)] = 5506, - [SMALL_STATE(208)] = 5608, - [SMALL_STATE(209)] = 5710, - [SMALL_STATE(210)] = 5814, - [SMALL_STATE(211)] = 5916, - [SMALL_STATE(212)] = 6014, - [SMALL_STATE(213)] = 6116, - [SMALL_STATE(214)] = 6218, - [SMALL_STATE(215)] = 6324, + [SMALL_STATE(196)] = 4384, + [SMALL_STATE(197)] = 4486, + [SMALL_STATE(198)] = 4588, + [SMALL_STATE(199)] = 4692, + [SMALL_STATE(200)] = 4794, + [SMALL_STATE(201)] = 4896, + [SMALL_STATE(202)] = 4998, + [SMALL_STATE(203)] = 5100, + [SMALL_STATE(204)] = 5204, + [SMALL_STATE(205)] = 5306, + [SMALL_STATE(206)] = 5408, + [SMALL_STATE(207)] = 5514, + [SMALL_STATE(208)] = 5616, + [SMALL_STATE(209)] = 5718, + [SMALL_STATE(210)] = 5820, + [SMALL_STATE(211)] = 5918, + [SMALL_STATE(212)] = 6020, + [SMALL_STATE(213)] = 6118, + [SMALL_STATE(214)] = 6220, + [SMALL_STATE(215)] = 6322, [SMALL_STATE(216)] = 6428, - [SMALL_STATE(217)] = 6526, + [SMALL_STATE(217)] = 6530, [SMALL_STATE(218)] = 6628, [SMALL_STATE(219)] = 6689, - [SMALL_STATE(220)] = 6788, + [SMALL_STATE(220)] = 6750, [SMALL_STATE(221)] = 6849, - [SMALL_STATE(222)] = 6948, - [SMALL_STATE(223)] = 7047, - [SMALL_STATE(224)] = 7108, - [SMALL_STATE(225)] = 7169, - [SMALL_STATE(226)] = 7230, + [SMALL_STATE(222)] = 6910, + [SMALL_STATE(223)] = 6971, + [SMALL_STATE(224)] = 7070, + [SMALL_STATE(225)] = 7131, + [SMALL_STATE(226)] = 7192, [SMALL_STATE(227)] = 7291, [SMALL_STATE(228)] = 7352, - [SMALL_STATE(229)] = 7424, - [SMALL_STATE(230)] = 7522, - [SMALL_STATE(231)] = 7594, - [SMALL_STATE(232)] = 7692, - [SMALL_STATE(233)] = 7764, - [SMALL_STATE(234)] = 7836, - [SMALL_STATE(235)] = 7908, - [SMALL_STATE(236)] = 7980, - [SMALL_STATE(237)] = 8052, - [SMALL_STATE(238)] = 8148, - [SMALL_STATE(239)] = 8246, - [SMALL_STATE(240)] = 8344, - [SMALL_STATE(241)] = 8442, - [SMALL_STATE(242)] = 8540, - [SMALL_STATE(243)] = 8612, - [SMALL_STATE(244)] = 8710, - [SMALL_STATE(245)] = 8808, - [SMALL_STATE(246)] = 8906, - [SMALL_STATE(247)] = 9004, - [SMALL_STATE(248)] = 9102, - [SMALL_STATE(249)] = 9200, - [SMALL_STATE(250)] = 9298, + [SMALL_STATE(229)] = 7450, + [SMALL_STATE(230)] = 7548, + [SMALL_STATE(231)] = 7646, + [SMALL_STATE(232)] = 7744, + [SMALL_STATE(233)] = 7842, + [SMALL_STATE(234)] = 7940, + [SMALL_STATE(235)] = 8036, + [SMALL_STATE(236)] = 8134, + [SMALL_STATE(237)] = 8232, + [SMALL_STATE(238)] = 8304, + [SMALL_STATE(239)] = 8402, + [SMALL_STATE(240)] = 8474, + [SMALL_STATE(241)] = 8572, + [SMALL_STATE(242)] = 8670, + [SMALL_STATE(243)] = 8742, + [SMALL_STATE(244)] = 8814, + [SMALL_STATE(245)] = 8886, + [SMALL_STATE(246)] = 8984, + [SMALL_STATE(247)] = 9082, + [SMALL_STATE(248)] = 9154, + [SMALL_STATE(249)] = 9226, + [SMALL_STATE(250)] = 9324, [SMALL_STATE(251)] = 9396, [SMALL_STATE(252)] = 9491, [SMALL_STATE(253)] = 9586, @@ -71378,1278 +71442,1280 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(257)] = 9966, [SMALL_STATE(258)] = 10061, [SMALL_STATE(259)] = 10156, - [SMALL_STATE(260)] = 10251, - [SMALL_STATE(261)] = 10346, - [SMALL_STATE(262)] = 10441, - [SMALL_STATE(263)] = 10536, - [SMALL_STATE(264)] = 10631, - [SMALL_STATE(265)] = 10704, - [SMALL_STATE(266)] = 10799, - [SMALL_STATE(267)] = 10894, + [SMALL_STATE(260)] = 10229, + [SMALL_STATE(261)] = 10324, + [SMALL_STATE(262)] = 10397, + [SMALL_STATE(263)] = 10492, + [SMALL_STATE(264)] = 10587, + [SMALL_STATE(265)] = 10682, + [SMALL_STATE(266)] = 10777, + [SMALL_STATE(267)] = 10872, [SMALL_STATE(268)] = 10967, - [SMALL_STATE(269)] = 11029, - [SMALL_STATE(270)] = 11121, - [SMALL_STATE(271)] = 11213, - [SMALL_STATE(272)] = 11275, - [SMALL_STATE(273)] = 11343, - [SMALL_STATE(274)] = 11411, - [SMALL_STATE(275)] = 11479, - [SMALL_STATE(276)] = 11547, - [SMALL_STATE(277)] = 11615, - [SMALL_STATE(278)] = 11685, - [SMALL_STATE(279)] = 11777, - [SMALL_STATE(280)] = 11845, - [SMALL_STATE(281)] = 11913, - [SMALL_STATE(282)] = 11981, - [SMALL_STATE(283)] = 12043, - [SMALL_STATE(284)] = 12105, - [SMALL_STATE(285)] = 12194, - [SMALL_STATE(286)] = 12283, - [SMALL_STATE(287)] = 12372, - [SMALL_STATE(288)] = 12463, - [SMALL_STATE(289)] = 12552, - [SMALL_STATE(290)] = 12641, - [SMALL_STATE(291)] = 12732, - [SMALL_STATE(292)] = 12789, - [SMALL_STATE(293)] = 12846, - [SMALL_STATE(294)] = 12935, - [SMALL_STATE(295)] = 13026, - [SMALL_STATE(296)] = 13117, - [SMALL_STATE(297)] = 13206, - [SMALL_STATE(298)] = 13273, - [SMALL_STATE(299)] = 13362, - [SMALL_STATE(300)] = 13451, - [SMALL_STATE(301)] = 13542, - [SMALL_STATE(302)] = 13631, - [SMALL_STATE(303)] = 13694, - [SMALL_STATE(304)] = 13751, - [SMALL_STATE(305)] = 13840, - [SMALL_STATE(306)] = 13897, - [SMALL_STATE(307)] = 13954, - [SMALL_STATE(308)] = 14043, - [SMALL_STATE(309)] = 14100, - [SMALL_STATE(310)] = 14189, - [SMALL_STATE(311)] = 14280, - [SMALL_STATE(312)] = 14337, - [SMALL_STATE(313)] = 14394, - [SMALL_STATE(314)] = 14457, - [SMALL_STATE(315)] = 14514, - [SMALL_STATE(316)] = 14571, - [SMALL_STATE(317)] = 14662, - [SMALL_STATE(318)] = 14718, - [SMALL_STATE(319)] = 14774, - [SMALL_STATE(320)] = 14830, - [SMALL_STATE(321)] = 14886, - [SMALL_STATE(322)] = 14942, - [SMALL_STATE(323)] = 14998, - [SMALL_STATE(324)] = 15054, - [SMALL_STATE(325)] = 15142, - [SMALL_STATE(326)] = 15198, - [SMALL_STATE(327)] = 15258, - [SMALL_STATE(328)] = 15314, - [SMALL_STATE(329)] = 15378, - [SMALL_STATE(330)] = 15434, - [SMALL_STATE(331)] = 15490, - [SMALL_STATE(332)] = 15546, - [SMALL_STATE(333)] = 15602, - [SMALL_STATE(334)] = 15658, - [SMALL_STATE(335)] = 15714, - [SMALL_STATE(336)] = 15770, - [SMALL_STATE(337)] = 15826, - [SMALL_STATE(338)] = 15882, - [SMALL_STATE(339)] = 15938, - [SMALL_STATE(340)] = 15994, - [SMALL_STATE(341)] = 16050, - [SMALL_STATE(342)] = 16106, - [SMALL_STATE(343)] = 16162, - [SMALL_STATE(344)] = 16250, - [SMALL_STATE(345)] = 16338, - [SMALL_STATE(346)] = 16426, - [SMALL_STATE(347)] = 16482, - [SMALL_STATE(348)] = 16570, - [SMALL_STATE(349)] = 16626, - [SMALL_STATE(350)] = 16682, - [SMALL_STATE(351)] = 16738, - [SMALL_STATE(352)] = 16794, - [SMALL_STATE(353)] = 16854, - [SMALL_STATE(354)] = 16942, - [SMALL_STATE(355)] = 17002, - [SMALL_STATE(356)] = 17058, - [SMALL_STATE(357)] = 17122, - [SMALL_STATE(358)] = 17178, - [SMALL_STATE(359)] = 17234, - [SMALL_STATE(360)] = 17290, - [SMALL_STATE(361)] = 17378, - [SMALL_STATE(362)] = 17466, - [SMALL_STATE(363)] = 17554, - [SMALL_STATE(364)] = 17610, - [SMALL_STATE(365)] = 17698, - [SMALL_STATE(366)] = 17754, - [SMALL_STATE(367)] = 17810, - [SMALL_STATE(368)] = 17874, - [SMALL_STATE(369)] = 17930, - [SMALL_STATE(370)] = 17986, - [SMALL_STATE(371)] = 18042, - [SMALL_STATE(372)] = 18098, - [SMALL_STATE(373)] = 18154, - [SMALL_STATE(374)] = 18210, - [SMALL_STATE(375)] = 18266, - [SMALL_STATE(376)] = 18354, - [SMALL_STATE(377)] = 18410, - [SMALL_STATE(378)] = 18466, - [SMALL_STATE(379)] = 18522, - [SMALL_STATE(380)] = 18578, - [SMALL_STATE(381)] = 18666, - [SMALL_STATE(382)] = 18754, - [SMALL_STATE(383)] = 18810, - [SMALL_STATE(384)] = 18898, - [SMALL_STATE(385)] = 18958, - [SMALL_STATE(386)] = 19022, - [SMALL_STATE(387)] = 19081, - [SMALL_STATE(388)] = 19166, - [SMALL_STATE(389)] = 19251, - [SMALL_STATE(390)] = 19336, - [SMALL_STATE(391)] = 19421, - [SMALL_STATE(392)] = 19506, - [SMALL_STATE(393)] = 19567, - [SMALL_STATE(394)] = 19652, - [SMALL_STATE(395)] = 19737, - [SMALL_STATE(396)] = 19796, - [SMALL_STATE(397)] = 19881, - [SMALL_STATE(398)] = 19966, - [SMALL_STATE(399)] = 20021, - [SMALL_STATE(400)] = 20108, - [SMALL_STATE(401)] = 20193, - [SMALL_STATE(402)] = 20278, - [SMALL_STATE(403)] = 20337, - [SMALL_STATE(404)] = 20422, - [SMALL_STATE(405)] = 20507, - [SMALL_STATE(406)] = 20592, - [SMALL_STATE(407)] = 20677, - [SMALL_STATE(408)] = 20762, - [SMALL_STATE(409)] = 20847, - [SMALL_STATE(410)] = 20932, - [SMALL_STATE(411)] = 21017, - [SMALL_STATE(412)] = 21102, - [SMALL_STATE(413)] = 21187, - [SMALL_STATE(414)] = 21272, - [SMALL_STATE(415)] = 21357, - [SMALL_STATE(416)] = 21416, - [SMALL_STATE(417)] = 21501, - [SMALL_STATE(418)] = 21586, - [SMALL_STATE(419)] = 21671, - [SMALL_STATE(420)] = 21726, - [SMALL_STATE(421)] = 21811, - [SMALL_STATE(422)] = 21870, - [SMALL_STATE(423)] = 21955, - [SMALL_STATE(424)] = 22016, - [SMALL_STATE(425)] = 22101, - [SMALL_STATE(426)] = 22186, - [SMALL_STATE(427)] = 22271, - [SMALL_STATE(428)] = 22330, - [SMALL_STATE(429)] = 22415, - [SMALL_STATE(430)] = 22500, - [SMALL_STATE(431)] = 22585, - [SMALL_STATE(432)] = 22670, - [SMALL_STATE(433)] = 22755, - [SMALL_STATE(434)] = 22840, - [SMALL_STATE(435)] = 22925, - [SMALL_STATE(436)] = 23010, - [SMALL_STATE(437)] = 23069, - [SMALL_STATE(438)] = 23154, - [SMALL_STATE(439)] = 23213, - [SMALL_STATE(440)] = 23272, - [SMALL_STATE(441)] = 23357, - [SMALL_STATE(442)] = 23442, - [SMALL_STATE(443)] = 23527, - [SMALL_STATE(444)] = 23612, - [SMALL_STATE(445)] = 23673, - [SMALL_STATE(446)] = 23732, - [SMALL_STATE(447)] = 23817, - [SMALL_STATE(448)] = 23902, - [SMALL_STATE(449)] = 23987, - [SMALL_STATE(450)] = 24072, - [SMALL_STATE(451)] = 24157, - [SMALL_STATE(452)] = 24242, - [SMALL_STATE(453)] = 24327, - [SMALL_STATE(454)] = 24382, - [SMALL_STATE(455)] = 24441, - [SMALL_STATE(456)] = 24500, - [SMALL_STATE(457)] = 24559, - [SMALL_STATE(458)] = 24644, - [SMALL_STATE(459)] = 24729, - [SMALL_STATE(460)] = 24814, - [SMALL_STATE(461)] = 24899, - [SMALL_STATE(462)] = 24958, - [SMALL_STATE(463)] = 25043, - [SMALL_STATE(464)] = 25098, - [SMALL_STATE(465)] = 25183, - [SMALL_STATE(466)] = 25268, - [SMALL_STATE(467)] = 25353, - [SMALL_STATE(468)] = 25438, - [SMALL_STATE(469)] = 25523, - [SMALL_STATE(470)] = 25608, - [SMALL_STATE(471)] = 25669, - [SMALL_STATE(472)] = 25754, - [SMALL_STATE(473)] = 25839, - [SMALL_STATE(474)] = 25924, - [SMALL_STATE(475)] = 26009, - [SMALL_STATE(476)] = 26094, - [SMALL_STATE(477)] = 26153, - [SMALL_STATE(478)] = 26238, - [SMALL_STATE(479)] = 26297, - [SMALL_STATE(480)] = 26382, - [SMALL_STATE(481)] = 26467, - [SMALL_STATE(482)] = 26522, - [SMALL_STATE(483)] = 26577, - [SMALL_STATE(484)] = 26662, - [SMALL_STATE(485)] = 26747, - [SMALL_STATE(486)] = 26832, - [SMALL_STATE(487)] = 26886, - [SMALL_STATE(488)] = 26940, - [SMALL_STATE(489)] = 26994, - [SMALL_STATE(490)] = 27048, - [SMALL_STATE(491)] = 27102, - [SMALL_STATE(492)] = 27156, - [SMALL_STATE(493)] = 27210, - [SMALL_STATE(494)] = 27264, - [SMALL_STATE(495)] = 27318, - [SMALL_STATE(496)] = 27372, - [SMALL_STATE(497)] = 27426, - [SMALL_STATE(498)] = 27480, - [SMALL_STATE(499)] = 27533, - [SMALL_STATE(500)] = 27586, - [SMALL_STATE(501)] = 27639, - [SMALL_STATE(502)] = 27692, - [SMALL_STATE(503)] = 27745, - [SMALL_STATE(504)] = 27798, - [SMALL_STATE(505)] = 27851, - [SMALL_STATE(506)] = 27904, - [SMALL_STATE(507)] = 27957, - [SMALL_STATE(508)] = 28010, - [SMALL_STATE(509)] = 28063, - [SMALL_STATE(510)] = 28116, - [SMALL_STATE(511)] = 28169, - [SMALL_STATE(512)] = 28222, - [SMALL_STATE(513)] = 28275, - [SMALL_STATE(514)] = 28328, - [SMALL_STATE(515)] = 28381, - [SMALL_STATE(516)] = 28434, - [SMALL_STATE(517)] = 28487, - [SMALL_STATE(518)] = 28540, - [SMALL_STATE(519)] = 28593, - [SMALL_STATE(520)] = 28646, - [SMALL_STATE(521)] = 28699, - [SMALL_STATE(522)] = 28752, - [SMALL_STATE(523)] = 28805, - [SMALL_STATE(524)] = 28858, - [SMALL_STATE(525)] = 28911, - [SMALL_STATE(526)] = 28964, - [SMALL_STATE(527)] = 29017, - [SMALL_STATE(528)] = 29070, - [SMALL_STATE(529)] = 29123, - [SMALL_STATE(530)] = 29176, - [SMALL_STATE(531)] = 29229, - [SMALL_STATE(532)] = 29282, - [SMALL_STATE(533)] = 29335, - [SMALL_STATE(534)] = 29388, - [SMALL_STATE(535)] = 29441, - [SMALL_STATE(536)] = 29494, - [SMALL_STATE(537)] = 29547, - [SMALL_STATE(538)] = 29600, - [SMALL_STATE(539)] = 29653, - [SMALL_STATE(540)] = 29706, - [SMALL_STATE(541)] = 29759, - [SMALL_STATE(542)] = 29812, - [SMALL_STATE(543)] = 29865, - [SMALL_STATE(544)] = 29918, - [SMALL_STATE(545)] = 29971, - [SMALL_STATE(546)] = 30024, - [SMALL_STATE(547)] = 30077, - [SMALL_STATE(548)] = 30130, - [SMALL_STATE(549)] = 30183, - [SMALL_STATE(550)] = 30236, - [SMALL_STATE(551)] = 30289, - [SMALL_STATE(552)] = 30342, - [SMALL_STATE(553)] = 30395, - [SMALL_STATE(554)] = 30448, - [SMALL_STATE(555)] = 30501, - [SMALL_STATE(556)] = 30554, - [SMALL_STATE(557)] = 30607, - [SMALL_STATE(558)] = 30660, - [SMALL_STATE(559)] = 30713, - [SMALL_STATE(560)] = 30766, - [SMALL_STATE(561)] = 30819, - [SMALL_STATE(562)] = 30872, - [SMALL_STATE(563)] = 30925, - [SMALL_STATE(564)] = 30978, - [SMALL_STATE(565)] = 31031, - [SMALL_STATE(566)] = 31084, - [SMALL_STATE(567)] = 31137, - [SMALL_STATE(568)] = 31190, - [SMALL_STATE(569)] = 31243, - [SMALL_STATE(570)] = 31296, - [SMALL_STATE(571)] = 31349, - [SMALL_STATE(572)] = 31402, - [SMALL_STATE(573)] = 31455, - [SMALL_STATE(574)] = 31508, - [SMALL_STATE(575)] = 31561, - [SMALL_STATE(576)] = 31614, - [SMALL_STATE(577)] = 31667, - [SMALL_STATE(578)] = 31720, - [SMALL_STATE(579)] = 31773, - [SMALL_STATE(580)] = 31826, - [SMALL_STATE(581)] = 31879, - [SMALL_STATE(582)] = 31932, - [SMALL_STATE(583)] = 31985, - [SMALL_STATE(584)] = 32038, - [SMALL_STATE(585)] = 32091, - [SMALL_STATE(586)] = 32144, - [SMALL_STATE(587)] = 32197, - [SMALL_STATE(588)] = 32250, - [SMALL_STATE(589)] = 32303, - [SMALL_STATE(590)] = 32356, - [SMALL_STATE(591)] = 32409, - [SMALL_STATE(592)] = 32462, - [SMALL_STATE(593)] = 32515, - [SMALL_STATE(594)] = 32568, - [SMALL_STATE(595)] = 32621, - [SMALL_STATE(596)] = 32674, - [SMALL_STATE(597)] = 32758, - [SMALL_STATE(598)] = 32840, - [SMALL_STATE(599)] = 32922, - [SMALL_STATE(600)] = 33003, - [SMALL_STATE(601)] = 33058, - [SMALL_STATE(602)] = 33113, - [SMALL_STATE(603)] = 33194, - [SMALL_STATE(604)] = 33275, - [SMALL_STATE(605)] = 33356, - [SMALL_STATE(606)] = 33437, - [SMALL_STATE(607)] = 33518, - [SMALL_STATE(608)] = 33573, - [SMALL_STATE(609)] = 33651, - [SMALL_STATE(610)] = 33729, - [SMALL_STATE(611)] = 33778, - [SMALL_STATE(612)] = 33827, - [SMALL_STATE(613)] = 33875, - [SMALL_STATE(614)] = 33923, - [SMALL_STATE(615)] = 33971, - [SMALL_STATE(616)] = 34019, - [SMALL_STATE(617)] = 34067, - [SMALL_STATE(618)] = 34115, - [SMALL_STATE(619)] = 34163, - [SMALL_STATE(620)] = 34211, - [SMALL_STATE(621)] = 34259, - [SMALL_STATE(622)] = 34341, - [SMALL_STATE(623)] = 34389, - [SMALL_STATE(624)] = 34461, - [SMALL_STATE(625)] = 34509, - [SMALL_STATE(626)] = 34557, - [SMALL_STATE(627)] = 34605, - [SMALL_STATE(628)] = 34653, - [SMALL_STATE(629)] = 34701, - [SMALL_STATE(630)] = 34749, - [SMALL_STATE(631)] = 34831, - [SMALL_STATE(632)] = 34879, - [SMALL_STATE(633)] = 34927, - [SMALL_STATE(634)] = 34975, - [SMALL_STATE(635)] = 35023, - [SMALL_STATE(636)] = 35071, - [SMALL_STATE(637)] = 35119, - [SMALL_STATE(638)] = 35167, - [SMALL_STATE(639)] = 35215, - [SMALL_STATE(640)] = 35263, - [SMALL_STATE(641)] = 35311, - [SMALL_STATE(642)] = 35359, - [SMALL_STATE(643)] = 35407, - [SMALL_STATE(644)] = 35455, - [SMALL_STATE(645)] = 35503, - [SMALL_STATE(646)] = 35551, - [SMALL_STATE(647)] = 35608, - [SMALL_STATE(648)] = 35679, - [SMALL_STATE(649)] = 35742, - [SMALL_STATE(650)] = 35799, - [SMALL_STATE(651)] = 35862, - [SMALL_STATE(652)] = 35933, - [SMALL_STATE(653)] = 36002, - [SMALL_STATE(654)] = 36073, - [SMALL_STATE(655)] = 36144, - [SMALL_STATE(656)] = 36201, - [SMALL_STATE(657)] = 36268, - [SMALL_STATE(658)] = 36325, - [SMALL_STATE(659)] = 36396, - [SMALL_STATE(660)] = 36463, - [SMALL_STATE(661)] = 36534, - [SMALL_STATE(662)] = 36595, - [SMALL_STATE(663)] = 36660, - [SMALL_STATE(664)] = 36717, - [SMALL_STATE(665)] = 36786, - [SMALL_STATE(666)] = 36847, - [SMALL_STATE(667)] = 36912, - [SMALL_STATE(668)] = 36969, - [SMALL_STATE(669)] = 37035, - [SMALL_STATE(670)] = 37101, - [SMALL_STATE(671)] = 37149, - [SMALL_STATE(672)] = 37195, - [SMALL_STATE(673)] = 37261, - [SMALL_STATE(674)] = 37309, - [SMALL_STATE(675)] = 37359, - [SMALL_STATE(676)] = 37405, - [SMALL_STATE(677)] = 37453, - [SMALL_STATE(678)] = 37501, - [SMALL_STATE(679)] = 37551, - [SMALL_STATE(680)] = 37617, - [SMALL_STATE(681)] = 37666, - [SMALL_STATE(682)] = 37733, - [SMALL_STATE(683)] = 37796, - [SMALL_STATE(684)] = 37845, - [SMALL_STATE(685)] = 37912, - [SMALL_STATE(686)] = 37975, - [SMALL_STATE(687)] = 38038, - [SMALL_STATE(688)] = 38101, - [SMALL_STATE(689)] = 38164, - [SMALL_STATE(690)] = 38227, - [SMALL_STATE(691)] = 38290, - [SMALL_STATE(692)] = 38353, - [SMALL_STATE(693)] = 38402, - [SMALL_STATE(694)] = 38465, - [SMALL_STATE(695)] = 38528, - [SMALL_STATE(696)] = 38591, - [SMALL_STATE(697)] = 38654, - [SMALL_STATE(698)] = 38717, - [SMALL_STATE(699)] = 38780, - [SMALL_STATE(700)] = 38843, - [SMALL_STATE(701)] = 38906, - [SMALL_STATE(702)] = 38951, - [SMALL_STATE(703)] = 39014, - [SMALL_STATE(704)] = 39059, - [SMALL_STATE(705)] = 39122, - [SMALL_STATE(706)] = 39185, - [SMALL_STATE(707)] = 39248, - [SMALL_STATE(708)] = 39311, - [SMALL_STATE(709)] = 39374, - [SMALL_STATE(710)] = 39437, - [SMALL_STATE(711)] = 39516, - [SMALL_STATE(712)] = 39579, - [SMALL_STATE(713)] = 39642, - [SMALL_STATE(714)] = 39705, - [SMALL_STATE(715)] = 39768, - [SMALL_STATE(716)] = 39831, - [SMALL_STATE(717)] = 39894, - [SMALL_STATE(718)] = 39957, - [SMALL_STATE(719)] = 40020, - [SMALL_STATE(720)] = 40083, - [SMALL_STATE(721)] = 40146, - [SMALL_STATE(722)] = 40209, - [SMALL_STATE(723)] = 40272, - [SMALL_STATE(724)] = 40335, - [SMALL_STATE(725)] = 40398, - [SMALL_STATE(726)] = 40461, - [SMALL_STATE(727)] = 40524, - [SMALL_STATE(728)] = 40587, - [SMALL_STATE(729)] = 40650, - [SMALL_STATE(730)] = 40713, - [SMALL_STATE(731)] = 40776, - [SMALL_STATE(732)] = 40839, - [SMALL_STATE(733)] = 40899, - [SMALL_STATE(734)] = 40965, - [SMALL_STATE(735)] = 41019, - [SMALL_STATE(736)] = 41063, - [SMALL_STATE(737)] = 41117, - [SMALL_STATE(738)] = 41171, - [SMALL_STATE(739)] = 41239, - [SMALL_STATE(740)] = 41287, - [SMALL_STATE(741)] = 41363, - [SMALL_STATE(742)] = 41425, - [SMALL_STATE(743)] = 41489, - [SMALL_STATE(744)] = 41533, - [SMALL_STATE(745)] = 41601, - [SMALL_STATE(746)] = 41669, - [SMALL_STATE(747)] = 41727, - [SMALL_STATE(748)] = 41772, - [SMALL_STATE(749)] = 41835, - [SMALL_STATE(750)] = 41880, - [SMALL_STATE(751)] = 41947, - [SMALL_STATE(752)] = 41992, - [SMALL_STATE(753)] = 42059, - [SMALL_STATE(754)] = 42124, - [SMALL_STATE(755)] = 42181, - [SMALL_STATE(756)] = 42234, - [SMALL_STATE(757)] = 42279, - [SMALL_STATE(758)] = 42322, - [SMALL_STATE(759)] = 42369, - [SMALL_STATE(760)] = 42422, - [SMALL_STATE(761)] = 42469, - [SMALL_STATE(762)] = 42516, - [SMALL_STATE(763)] = 42561, - [SMALL_STATE(764)] = 42622, - [SMALL_STATE(765)] = 42689, - [SMALL_STATE(766)] = 42748, - [SMALL_STATE(767)] = 42791, - [SMALL_STATE(768)] = 42836, - [SMALL_STATE(769)] = 42881, - [SMALL_STATE(770)] = 42928, - [SMALL_STATE(771)] = 42973, - [SMALL_STATE(772)] = 43026, - [SMALL_STATE(773)] = 43068, - [SMALL_STATE(774)] = 43110, - [SMALL_STATE(775)] = 43152, - [SMALL_STATE(776)] = 43196, - [SMALL_STATE(777)] = 43238, - [SMALL_STATE(778)] = 43280, - [SMALL_STATE(779)] = 43322, - [SMALL_STATE(780)] = 43364, - [SMALL_STATE(781)] = 43406, - [SMALL_STATE(782)] = 43448, - [SMALL_STATE(783)] = 43490, - [SMALL_STATE(784)] = 43532, - [SMALL_STATE(785)] = 43574, - [SMALL_STATE(786)] = 43616, - [SMALL_STATE(787)] = 43658, - [SMALL_STATE(788)] = 43700, - [SMALL_STATE(789)] = 43742, - [SMALL_STATE(790)] = 43784, - [SMALL_STATE(791)] = 43826, - [SMALL_STATE(792)] = 43868, - [SMALL_STATE(793)] = 43910, - [SMALL_STATE(794)] = 43952, - [SMALL_STATE(795)] = 43994, - [SMALL_STATE(796)] = 44036, - [SMALL_STATE(797)] = 44078, - [SMALL_STATE(798)] = 44122, - [SMALL_STATE(799)] = 44164, - [SMALL_STATE(800)] = 44206, - [SMALL_STATE(801)] = 44250, - [SMALL_STATE(802)] = 44292, - [SMALL_STATE(803)] = 44336, - [SMALL_STATE(804)] = 44378, - [SMALL_STATE(805)] = 44420, - [SMALL_STATE(806)] = 44462, - [SMALL_STATE(807)] = 44504, - [SMALL_STATE(808)] = 44546, - [SMALL_STATE(809)] = 44588, - [SMALL_STATE(810)] = 44632, - [SMALL_STATE(811)] = 44673, - [SMALL_STATE(812)] = 44714, - [SMALL_STATE(813)] = 44755, - [SMALL_STATE(814)] = 44796, - [SMALL_STATE(815)] = 44837, - [SMALL_STATE(816)] = 44878, - [SMALL_STATE(817)] = 44919, - [SMALL_STATE(818)] = 44960, - [SMALL_STATE(819)] = 45001, - [SMALL_STATE(820)] = 45042, - [SMALL_STATE(821)] = 45083, - [SMALL_STATE(822)] = 45124, - [SMALL_STATE(823)] = 45165, - [SMALL_STATE(824)] = 45206, - [SMALL_STATE(825)] = 45247, - [SMALL_STATE(826)] = 45288, - [SMALL_STATE(827)] = 45329, - [SMALL_STATE(828)] = 45370, - [SMALL_STATE(829)] = 45411, - [SMALL_STATE(830)] = 45452, - [SMALL_STATE(831)] = 45493, - [SMALL_STATE(832)] = 45538, - [SMALL_STATE(833)] = 45579, - [SMALL_STATE(834)] = 45620, - [SMALL_STATE(835)] = 45661, - [SMALL_STATE(836)] = 45702, - [SMALL_STATE(837)] = 45743, - [SMALL_STATE(838)] = 45784, - [SMALL_STATE(839)] = 45825, - [SMALL_STATE(840)] = 45866, - [SMALL_STATE(841)] = 45907, - [SMALL_STATE(842)] = 45948, - [SMALL_STATE(843)] = 45989, - [SMALL_STATE(844)] = 46030, - [SMALL_STATE(845)] = 46071, - [SMALL_STATE(846)] = 46112, - [SMALL_STATE(847)] = 46153, - [SMALL_STATE(848)] = 46194, - [SMALL_STATE(849)] = 46235, - [SMALL_STATE(850)] = 46280, - [SMALL_STATE(851)] = 46354, - [SMALL_STATE(852)] = 46428, - [SMALL_STATE(853)] = 46502, - [SMALL_STATE(854)] = 46576, - [SMALL_STATE(855)] = 46647, - [SMALL_STATE(856)] = 46718, - [SMALL_STATE(857)] = 46789, - [SMALL_STATE(858)] = 46860, - [SMALL_STATE(859)] = 46933, - [SMALL_STATE(860)] = 47004, - [SMALL_STATE(861)] = 47076, - [SMALL_STATE(862)] = 47144, - [SMALL_STATE(863)] = 47216, - [SMALL_STATE(864)] = 47288, - [SMALL_STATE(865)] = 47354, - [SMALL_STATE(866)] = 47417, - [SMALL_STATE(867)] = 47480, - [SMALL_STATE(868)] = 47535, - [SMALL_STATE(869)] = 47590, - [SMALL_STATE(870)] = 47630, - [SMALL_STATE(871)] = 47670, - [SMALL_STATE(872)] = 47710, - [SMALL_STATE(873)] = 47750, - [SMALL_STATE(874)] = 47780, - [SMALL_STATE(875)] = 47809, - [SMALL_STATE(876)] = 47834, - [SMALL_STATE(877)] = 47859, - [SMALL_STATE(878)] = 47884, - [SMALL_STATE(879)] = 47909, - [SMALL_STATE(880)] = 47946, - [SMALL_STATE(881)] = 47983, - [SMALL_STATE(882)] = 48012, - [SMALL_STATE(883)] = 48046, - [SMALL_STATE(884)] = 48092, - [SMALL_STATE(885)] = 48126, - [SMALL_STATE(886)] = 48154, - [SMALL_STATE(887)] = 48197, - [SMALL_STATE(888)] = 48228, - [SMALL_STATE(889)] = 48271, - [SMALL_STATE(890)] = 48314, - [SMALL_STATE(891)] = 48357, - [SMALL_STATE(892)] = 48400, - [SMALL_STATE(893)] = 48446, - [SMALL_STATE(894)] = 48492, - [SMALL_STATE(895)] = 48538, - [SMALL_STATE(896)] = 48578, - [SMALL_STATE(897)] = 48615, - [SMALL_STATE(898)] = 48652, - [SMALL_STATE(899)] = 48677, - [SMALL_STATE(900)] = 48714, - [SMALL_STATE(901)] = 48751, - [SMALL_STATE(902)] = 48773, - [SMALL_STATE(903)] = 48807, - [SMALL_STATE(904)] = 48829, - [SMALL_STATE(905)] = 48863, - [SMALL_STATE(906)] = 48885, - [SMALL_STATE(907)] = 48922, - [SMALL_STATE(908)] = 48944, - [SMALL_STATE(909)] = 48967, - [SMALL_STATE(910)] = 48998, - [SMALL_STATE(911)] = 49029, - [SMALL_STATE(912)] = 49066, - [SMALL_STATE(913)] = 49089, - [SMALL_STATE(914)] = 49126, - [SMALL_STATE(915)] = 49157, - [SMALL_STATE(916)] = 49180, - [SMALL_STATE(917)] = 49201, - [SMALL_STATE(918)] = 49224, - [SMALL_STATE(919)] = 49247, - [SMALL_STATE(920)] = 49272, - [SMALL_STATE(921)] = 49303, - [SMALL_STATE(922)] = 49334, - [SMALL_STATE(923)] = 49357, - [SMALL_STATE(924)] = 49388, - [SMALL_STATE(925)] = 49409, - [SMALL_STATE(926)] = 49434, - [SMALL_STATE(927)] = 49465, - [SMALL_STATE(928)] = 49496, - [SMALL_STATE(929)] = 49523, - [SMALL_STATE(930)] = 49560, - [SMALL_STATE(931)] = 49583, - [SMALL_STATE(932)] = 49608, - [SMALL_STATE(933)] = 49645, - [SMALL_STATE(934)] = 49666, - [SMALL_STATE(935)] = 49683, - [SMALL_STATE(936)] = 49706, - [SMALL_STATE(937)] = 49737, - [SMALL_STATE(938)] = 49758, - [SMALL_STATE(939)] = 49779, - [SMALL_STATE(940)] = 49798, - [SMALL_STATE(941)] = 49832, - [SMALL_STATE(942)] = 49854, - [SMALL_STATE(943)] = 49888, - [SMALL_STATE(944)] = 49910, - [SMALL_STATE(945)] = 49944, - [SMALL_STATE(946)] = 49978, - [SMALL_STATE(947)] = 49996, - [SMALL_STATE(948)] = 50030, - [SMALL_STATE(949)] = 50064, - [SMALL_STATE(950)] = 50086, - [SMALL_STATE(951)] = 50120, - [SMALL_STATE(952)] = 50138, - [SMALL_STATE(953)] = 50160, - [SMALL_STATE(954)] = 50194, - [SMALL_STATE(955)] = 50228, - [SMALL_STATE(956)] = 50251, - [SMALL_STATE(957)] = 50270, - [SMALL_STATE(958)] = 50289, - [SMALL_STATE(959)] = 50312, - [SMALL_STATE(960)] = 50331, - [SMALL_STATE(961)] = 50350, - [SMALL_STATE(962)] = 50375, - [SMALL_STATE(963)] = 50394, - [SMALL_STATE(964)] = 50413, - [SMALL_STATE(965)] = 50436, - [SMALL_STATE(966)] = 50456, - [SMALL_STATE(967)] = 50470, - [SMALL_STATE(968)] = 50494, - [SMALL_STATE(969)] = 50508, - [SMALL_STATE(970)] = 50534, - [SMALL_STATE(971)] = 50548, - [SMALL_STATE(972)] = 50562, - [SMALL_STATE(973)] = 50578, - [SMALL_STATE(974)] = 50596, - [SMALL_STATE(975)] = 50610, - [SMALL_STATE(976)] = 50628, - [SMALL_STATE(977)] = 50652, - [SMALL_STATE(978)] = 50666, - [SMALL_STATE(979)] = 50680, - [SMALL_STATE(980)] = 50694, - [SMALL_STATE(981)] = 50708, - [SMALL_STATE(982)] = 50732, - [SMALL_STATE(983)] = 50746, - [SMALL_STATE(984)] = 50760, - [SMALL_STATE(985)] = 50774, - [SMALL_STATE(986)] = 50788, - [SMALL_STATE(987)] = 50802, - [SMALL_STATE(988)] = 50816, - [SMALL_STATE(989)] = 50836, - [SMALL_STATE(990)] = 50854, - [SMALL_STATE(991)] = 50876, - [SMALL_STATE(992)] = 50890, - [SMALL_STATE(993)] = 50908, - [SMALL_STATE(994)] = 50926, - [SMALL_STATE(995)] = 50940, - [SMALL_STATE(996)] = 50954, - [SMALL_STATE(997)] = 50972, - [SMALL_STATE(998)] = 50990, - [SMALL_STATE(999)] = 51012, - [SMALL_STATE(1000)] = 51030, - [SMALL_STATE(1001)] = 51044, - [SMALL_STATE(1002)] = 51068, - [SMALL_STATE(1003)] = 51092, - [SMALL_STATE(1004)] = 51106, - [SMALL_STATE(1005)] = 51130, - [SMALL_STATE(1006)] = 51148, - [SMALL_STATE(1007)] = 51166, - [SMALL_STATE(1008)] = 51180, - [SMALL_STATE(1009)] = 51198, - [SMALL_STATE(1010)] = 51212, - [SMALL_STATE(1011)] = 51234, - [SMALL_STATE(1012)] = 51248, - [SMALL_STATE(1013)] = 51262, - [SMALL_STATE(1014)] = 51282, - [SMALL_STATE(1015)] = 51298, - [SMALL_STATE(1016)] = 51316, - [SMALL_STATE(1017)] = 51330, - [SMALL_STATE(1018)] = 51343, - [SMALL_STATE(1019)] = 51368, - [SMALL_STATE(1020)] = 51387, - [SMALL_STATE(1021)] = 51410, - [SMALL_STATE(1022)] = 51433, - [SMALL_STATE(1023)] = 51456, - [SMALL_STATE(1024)] = 51481, - [SMALL_STATE(1025)] = 51506, - [SMALL_STATE(1026)] = 51531, - [SMALL_STATE(1027)] = 51552, - [SMALL_STATE(1028)] = 51571, - [SMALL_STATE(1029)] = 51590, - [SMALL_STATE(1030)] = 51607, - [SMALL_STATE(1031)] = 51626, - [SMALL_STATE(1032)] = 51641, - [SMALL_STATE(1033)] = 51658, - [SMALL_STATE(1034)] = 51677, - [SMALL_STATE(1035)] = 51694, - [SMALL_STATE(1036)] = 51717, - [SMALL_STATE(1037)] = 51740, - [SMALL_STATE(1038)] = 51763, - [SMALL_STATE(1039)] = 51778, - [SMALL_STATE(1040)] = 51803, - [SMALL_STATE(1041)] = 51822, - [SMALL_STATE(1042)] = 51845, - [SMALL_STATE(1043)] = 51864, - [SMALL_STATE(1044)] = 51877, - [SMALL_STATE(1045)] = 51896, - [SMALL_STATE(1046)] = 51909, - [SMALL_STATE(1047)] = 51922, - [SMALL_STATE(1048)] = 51947, - [SMALL_STATE(1049)] = 51966, - [SMALL_STATE(1050)] = 51989, - [SMALL_STATE(1051)] = 52014, - [SMALL_STATE(1052)] = 52033, - [SMALL_STATE(1053)] = 52046, - [SMALL_STATE(1054)] = 52059, - [SMALL_STATE(1055)] = 52072, - [SMALL_STATE(1056)] = 52095, - [SMALL_STATE(1057)] = 52114, - [SMALL_STATE(1058)] = 52127, - [SMALL_STATE(1059)] = 52149, - [SMALL_STATE(1060)] = 52165, - [SMALL_STATE(1061)] = 52179, - [SMALL_STATE(1062)] = 52199, - [SMALL_STATE(1063)] = 52221, - [SMALL_STATE(1064)] = 52237, - [SMALL_STATE(1065)] = 52255, - [SMALL_STATE(1066)] = 52273, - [SMALL_STATE(1067)] = 52291, - [SMALL_STATE(1068)] = 52307, - [SMALL_STATE(1069)] = 52321, - [SMALL_STATE(1070)] = 52339, - [SMALL_STATE(1071)] = 52355, - [SMALL_STATE(1072)] = 52375, - [SMALL_STATE(1073)] = 52389, - [SMALL_STATE(1074)] = 52409, - [SMALL_STATE(1075)] = 52431, - [SMALL_STATE(1076)] = 52449, - [SMALL_STATE(1077)] = 52465, - [SMALL_STATE(1078)] = 52485, - [SMALL_STATE(1079)] = 52503, - [SMALL_STATE(1080)] = 52525, - [SMALL_STATE(1081)] = 52547, - [SMALL_STATE(1082)] = 52561, - [SMALL_STATE(1083)] = 52581, - [SMALL_STATE(1084)] = 52599, - [SMALL_STATE(1085)] = 52611, - [SMALL_STATE(1086)] = 52627, - [SMALL_STATE(1087)] = 52649, - [SMALL_STATE(1088)] = 52665, - [SMALL_STATE(1089)] = 52679, - [SMALL_STATE(1090)] = 52693, - [SMALL_STATE(1091)] = 52713, - [SMALL_STATE(1092)] = 52725, - [SMALL_STATE(1093)] = 52747, - [SMALL_STATE(1094)] = 52764, - [SMALL_STATE(1095)] = 52781, - [SMALL_STATE(1096)] = 52798, - [SMALL_STATE(1097)] = 52813, - [SMALL_STATE(1098)] = 52824, - [SMALL_STATE(1099)] = 52841, - [SMALL_STATE(1100)] = 52858, - [SMALL_STATE(1101)] = 52877, - [SMALL_STATE(1102)] = 52894, - [SMALL_STATE(1103)] = 52911, - [SMALL_STATE(1104)] = 52922, - [SMALL_STATE(1105)] = 52933, - [SMALL_STATE(1106)] = 52950, - [SMALL_STATE(1107)] = 52965, - [SMALL_STATE(1108)] = 52984, - [SMALL_STATE(1109)] = 53001, - [SMALL_STATE(1110)] = 53020, - [SMALL_STATE(1111)] = 53037, - [SMALL_STATE(1112)] = 53052, - [SMALL_STATE(1113)] = 53071, - [SMALL_STATE(1114)] = 53090, - [SMALL_STATE(1115)] = 53109, - [SMALL_STATE(1116)] = 53126, - [SMALL_STATE(1117)] = 53141, - [SMALL_STATE(1118)] = 53158, - [SMALL_STATE(1119)] = 53173, - [SMALL_STATE(1120)] = 53192, - [SMALL_STATE(1121)] = 53207, - [SMALL_STATE(1122)] = 53226, - [SMALL_STATE(1123)] = 53243, - [SMALL_STATE(1124)] = 53260, - [SMALL_STATE(1125)] = 53277, - [SMALL_STATE(1126)] = 53292, - [SMALL_STATE(1127)] = 53309, - [SMALL_STATE(1128)] = 53326, - [SMALL_STATE(1129)] = 53343, - [SMALL_STATE(1130)] = 53362, - [SMALL_STATE(1131)] = 53381, - [SMALL_STATE(1132)] = 53397, - [SMALL_STATE(1133)] = 53413, - [SMALL_STATE(1134)] = 53423, - [SMALL_STATE(1135)] = 53437, - [SMALL_STATE(1136)] = 53451, - [SMALL_STATE(1137)] = 53467, - [SMALL_STATE(1138)] = 53477, - [SMALL_STATE(1139)] = 53493, - [SMALL_STATE(1140)] = 53509, - [SMALL_STATE(1141)] = 53525, - [SMALL_STATE(1142)] = 53539, - [SMALL_STATE(1143)] = 53555, - [SMALL_STATE(1144)] = 53571, - [SMALL_STATE(1145)] = 53587, - [SMALL_STATE(1146)] = 53597, - [SMALL_STATE(1147)] = 53611, - [SMALL_STATE(1148)] = 53627, - [SMALL_STATE(1149)] = 53643, - [SMALL_STATE(1150)] = 53659, - [SMALL_STATE(1151)] = 53675, - [SMALL_STATE(1152)] = 53691, - [SMALL_STATE(1153)] = 53705, - [SMALL_STATE(1154)] = 53719, - [SMALL_STATE(1155)] = 53735, - [SMALL_STATE(1156)] = 53751, - [SMALL_STATE(1157)] = 53767, - [SMALL_STATE(1158)] = 53783, - [SMALL_STATE(1159)] = 53799, - [SMALL_STATE(1160)] = 53815, - [SMALL_STATE(1161)] = 53825, - [SMALL_STATE(1162)] = 53839, - [SMALL_STATE(1163)] = 53853, - [SMALL_STATE(1164)] = 53867, - [SMALL_STATE(1165)] = 53883, - [SMALL_STATE(1166)] = 53899, - [SMALL_STATE(1167)] = 53915, - [SMALL_STATE(1168)] = 53929, - [SMALL_STATE(1169)] = 53945, - [SMALL_STATE(1170)] = 53959, - [SMALL_STATE(1171)] = 53975, - [SMALL_STATE(1172)] = 53991, - [SMALL_STATE(1173)] = 54005, - [SMALL_STATE(1174)] = 54021, - [SMALL_STATE(1175)] = 54035, - [SMALL_STATE(1176)] = 54049, - [SMALL_STATE(1177)] = 54063, - [SMALL_STATE(1178)] = 54079, - [SMALL_STATE(1179)] = 54095, - [SMALL_STATE(1180)] = 54109, - [SMALL_STATE(1181)] = 54121, - [SMALL_STATE(1182)] = 54135, - [SMALL_STATE(1183)] = 54149, - [SMALL_STATE(1184)] = 54165, - [SMALL_STATE(1185)] = 54179, - [SMALL_STATE(1186)] = 54193, - [SMALL_STATE(1187)] = 54207, - [SMALL_STATE(1188)] = 54223, - [SMALL_STATE(1189)] = 54239, - [SMALL_STATE(1190)] = 54255, - [SMALL_STATE(1191)] = 54271, - [SMALL_STATE(1192)] = 54287, - [SMALL_STATE(1193)] = 54299, - [SMALL_STATE(1194)] = 54313, - [SMALL_STATE(1195)] = 54327, - [SMALL_STATE(1196)] = 54341, - [SMALL_STATE(1197)] = 54357, - [SMALL_STATE(1198)] = 54373, - [SMALL_STATE(1199)] = 54387, - [SMALL_STATE(1200)] = 54403, - [SMALL_STATE(1201)] = 54419, - [SMALL_STATE(1202)] = 54435, - [SMALL_STATE(1203)] = 54451, - [SMALL_STATE(1204)] = 54465, - [SMALL_STATE(1205)] = 54479, - [SMALL_STATE(1206)] = 54493, - [SMALL_STATE(1207)] = 54509, - [SMALL_STATE(1208)] = 54525, - [SMALL_STATE(1209)] = 54539, - [SMALL_STATE(1210)] = 54555, - [SMALL_STATE(1211)] = 54569, - [SMALL_STATE(1212)] = 54583, - [SMALL_STATE(1213)] = 54593, - [SMALL_STATE(1214)] = 54609, - [SMALL_STATE(1215)] = 54622, - [SMALL_STATE(1216)] = 54631, - [SMALL_STATE(1217)] = 54644, - [SMALL_STATE(1218)] = 54655, - [SMALL_STATE(1219)] = 54668, - [SMALL_STATE(1220)] = 54681, - [SMALL_STATE(1221)] = 54694, - [SMALL_STATE(1222)] = 54707, - [SMALL_STATE(1223)] = 54720, - [SMALL_STATE(1224)] = 54733, - [SMALL_STATE(1225)] = 54746, - [SMALL_STATE(1226)] = 54757, - [SMALL_STATE(1227)] = 54770, - [SMALL_STATE(1228)] = 54783, - [SMALL_STATE(1229)] = 54796, - [SMALL_STATE(1230)] = 54809, - [SMALL_STATE(1231)] = 54822, - [SMALL_STATE(1232)] = 54835, - [SMALL_STATE(1233)] = 54844, - [SMALL_STATE(1234)] = 54857, - [SMALL_STATE(1235)] = 54870, - [SMALL_STATE(1236)] = 54883, - [SMALL_STATE(1237)] = 54896, - [SMALL_STATE(1238)] = 54909, - [SMALL_STATE(1239)] = 54922, - [SMALL_STATE(1240)] = 54935, - [SMALL_STATE(1241)] = 54944, - [SMALL_STATE(1242)] = 54957, - [SMALL_STATE(1243)] = 54966, - [SMALL_STATE(1244)] = 54975, - [SMALL_STATE(1245)] = 54988, - [SMALL_STATE(1246)] = 54997, - [SMALL_STATE(1247)] = 55010, - [SMALL_STATE(1248)] = 55023, - [SMALL_STATE(1249)] = 55036, - [SMALL_STATE(1250)] = 55049, - [SMALL_STATE(1251)] = 55062, - [SMALL_STATE(1252)] = 55075, - [SMALL_STATE(1253)] = 55088, - [SMALL_STATE(1254)] = 55099, - [SMALL_STATE(1255)] = 55112, - [SMALL_STATE(1256)] = 55121, - [SMALL_STATE(1257)] = 55132, - [SMALL_STATE(1258)] = 55145, - [SMALL_STATE(1259)] = 55158, - [SMALL_STATE(1260)] = 55171, - [SMALL_STATE(1261)] = 55184, - [SMALL_STATE(1262)] = 55197, - [SMALL_STATE(1263)] = 55210, - [SMALL_STATE(1264)] = 55223, - [SMALL_STATE(1265)] = 55236, - [SMALL_STATE(1266)] = 55249, - [SMALL_STATE(1267)] = 55262, - [SMALL_STATE(1268)] = 55275, - [SMALL_STATE(1269)] = 55288, - [SMALL_STATE(1270)] = 55301, - [SMALL_STATE(1271)] = 55314, - [SMALL_STATE(1272)] = 55327, - [SMALL_STATE(1273)] = 55340, - [SMALL_STATE(1274)] = 55353, - [SMALL_STATE(1275)] = 55366, - [SMALL_STATE(1276)] = 55379, - [SMALL_STATE(1277)] = 55388, - [SMALL_STATE(1278)] = 55401, - [SMALL_STATE(1279)] = 55410, - [SMALL_STATE(1280)] = 55423, - [SMALL_STATE(1281)] = 55436, - [SMALL_STATE(1282)] = 55449, - [SMALL_STATE(1283)] = 55462, - [SMALL_STATE(1284)] = 55475, - [SMALL_STATE(1285)] = 55488, - [SMALL_STATE(1286)] = 55501, - [SMALL_STATE(1287)] = 55514, - [SMALL_STATE(1288)] = 55527, - [SMALL_STATE(1289)] = 55540, - [SMALL_STATE(1290)] = 55553, - [SMALL_STATE(1291)] = 55566, - [SMALL_STATE(1292)] = 55579, - [SMALL_STATE(1293)] = 55592, - [SMALL_STATE(1294)] = 55605, - [SMALL_STATE(1295)] = 55618, - [SMALL_STATE(1296)] = 55631, - [SMALL_STATE(1297)] = 55644, - [SMALL_STATE(1298)] = 55657, - [SMALL_STATE(1299)] = 55668, - [SMALL_STATE(1300)] = 55681, - [SMALL_STATE(1301)] = 55694, - [SMALL_STATE(1302)] = 55707, - [SMALL_STATE(1303)] = 55716, - [SMALL_STATE(1304)] = 55727, - [SMALL_STATE(1305)] = 55738, - [SMALL_STATE(1306)] = 55751, - [SMALL_STATE(1307)] = 55762, - [SMALL_STATE(1308)] = 55775, - [SMALL_STATE(1309)] = 55788, - [SMALL_STATE(1310)] = 55801, - [SMALL_STATE(1311)] = 55810, - [SMALL_STATE(1312)] = 55823, - [SMALL_STATE(1313)] = 55836, - [SMALL_STATE(1314)] = 55849, - [SMALL_STATE(1315)] = 55862, - [SMALL_STATE(1316)] = 55875, - [SMALL_STATE(1317)] = 55886, - [SMALL_STATE(1318)] = 55899, - [SMALL_STATE(1319)] = 55910, - [SMALL_STATE(1320)] = 55923, - [SMALL_STATE(1321)] = 55936, - [SMALL_STATE(1322)] = 55949, - [SMALL_STATE(1323)] = 55962, - [SMALL_STATE(1324)] = 55975, - [SMALL_STATE(1325)] = 55988, - [SMALL_STATE(1326)] = 56001, - [SMALL_STATE(1327)] = 56014, - [SMALL_STATE(1328)] = 56027, - [SMALL_STATE(1329)] = 56040, - [SMALL_STATE(1330)] = 56051, - [SMALL_STATE(1331)] = 56062, - [SMALL_STATE(1332)] = 56075, - [SMALL_STATE(1333)] = 56086, - [SMALL_STATE(1334)] = 56099, - [SMALL_STATE(1335)] = 56112, - [SMALL_STATE(1336)] = 56125, - [SMALL_STATE(1337)] = 56138, - [SMALL_STATE(1338)] = 56149, - [SMALL_STATE(1339)] = 56160, - [SMALL_STATE(1340)] = 56169, - [SMALL_STATE(1341)] = 56182, - [SMALL_STATE(1342)] = 56193, - [SMALL_STATE(1343)] = 56204, - [SMALL_STATE(1344)] = 56213, - [SMALL_STATE(1345)] = 56222, - [SMALL_STATE(1346)] = 56235, - [SMALL_STATE(1347)] = 56245, - [SMALL_STATE(1348)] = 56255, - [SMALL_STATE(1349)] = 56263, - [SMALL_STATE(1350)] = 56271, - [SMALL_STATE(1351)] = 56281, - [SMALL_STATE(1352)] = 56289, - [SMALL_STATE(1353)] = 56297, - [SMALL_STATE(1354)] = 56305, - [SMALL_STATE(1355)] = 56315, - [SMALL_STATE(1356)] = 56323, - [SMALL_STATE(1357)] = 56333, - [SMALL_STATE(1358)] = 56341, - [SMALL_STATE(1359)] = 56349, - [SMALL_STATE(1360)] = 56359, - [SMALL_STATE(1361)] = 56367, - [SMALL_STATE(1362)] = 56377, - [SMALL_STATE(1363)] = 56385, - [SMALL_STATE(1364)] = 56393, - [SMALL_STATE(1365)] = 56401, - [SMALL_STATE(1366)] = 56411, - [SMALL_STATE(1367)] = 56419, - [SMALL_STATE(1368)] = 56427, - [SMALL_STATE(1369)] = 56437, - [SMALL_STATE(1370)] = 56445, - [SMALL_STATE(1371)] = 56455, - [SMALL_STATE(1372)] = 56465, - [SMALL_STATE(1373)] = 56473, - [SMALL_STATE(1374)] = 56483, - [SMALL_STATE(1375)] = 56491, - [SMALL_STATE(1376)] = 56499, - [SMALL_STATE(1377)] = 56507, - [SMALL_STATE(1378)] = 56515, - [SMALL_STATE(1379)] = 56525, - [SMALL_STATE(1380)] = 56533, - [SMALL_STATE(1381)] = 56541, - [SMALL_STATE(1382)] = 56549, - [SMALL_STATE(1383)] = 56557, - [SMALL_STATE(1384)] = 56565, - [SMALL_STATE(1385)] = 56575, - [SMALL_STATE(1386)] = 56585, - [SMALL_STATE(1387)] = 56593, - [SMALL_STATE(1388)] = 56601, - [SMALL_STATE(1389)] = 56611, - [SMALL_STATE(1390)] = 56621, - [SMALL_STATE(1391)] = 56629, - [SMALL_STATE(1392)] = 56639, - [SMALL_STATE(1393)] = 56649, - [SMALL_STATE(1394)] = 56659, - [SMALL_STATE(1395)] = 56667, - [SMALL_STATE(1396)] = 56677, - [SMALL_STATE(1397)] = 56685, - [SMALL_STATE(1398)] = 56695, - [SMALL_STATE(1399)] = 56703, - [SMALL_STATE(1400)] = 56711, - [SMALL_STATE(1401)] = 56719, - [SMALL_STATE(1402)] = 56729, - [SMALL_STATE(1403)] = 56739, - [SMALL_STATE(1404)] = 56749, - [SMALL_STATE(1405)] = 56757, - [SMALL_STATE(1406)] = 56765, - [SMALL_STATE(1407)] = 56773, - [SMALL_STATE(1408)] = 56783, - [SMALL_STATE(1409)] = 56791, - [SMALL_STATE(1410)] = 56799, - [SMALL_STATE(1411)] = 56807, - [SMALL_STATE(1412)] = 56815, - [SMALL_STATE(1413)] = 56822, - [SMALL_STATE(1414)] = 56829, - [SMALL_STATE(1415)] = 56836, - [SMALL_STATE(1416)] = 56843, - [SMALL_STATE(1417)] = 56850, - [SMALL_STATE(1418)] = 56857, - [SMALL_STATE(1419)] = 56864, - [SMALL_STATE(1420)] = 56871, - [SMALL_STATE(1421)] = 56878, - [SMALL_STATE(1422)] = 56885, - [SMALL_STATE(1423)] = 56892, - [SMALL_STATE(1424)] = 56899, - [SMALL_STATE(1425)] = 56906, - [SMALL_STATE(1426)] = 56913, - [SMALL_STATE(1427)] = 56920, - [SMALL_STATE(1428)] = 56927, - [SMALL_STATE(1429)] = 56934, - [SMALL_STATE(1430)] = 56941, - [SMALL_STATE(1431)] = 56948, - [SMALL_STATE(1432)] = 56955, - [SMALL_STATE(1433)] = 56962, - [SMALL_STATE(1434)] = 56969, - [SMALL_STATE(1435)] = 56976, - [SMALL_STATE(1436)] = 56983, - [SMALL_STATE(1437)] = 56990, - [SMALL_STATE(1438)] = 56997, - [SMALL_STATE(1439)] = 57004, - [SMALL_STATE(1440)] = 57011, - [SMALL_STATE(1441)] = 57018, - [SMALL_STATE(1442)] = 57025, - [SMALL_STATE(1443)] = 57032, - [SMALL_STATE(1444)] = 57039, - [SMALL_STATE(1445)] = 57046, - [SMALL_STATE(1446)] = 57053, - [SMALL_STATE(1447)] = 57060, - [SMALL_STATE(1448)] = 57067, - [SMALL_STATE(1449)] = 57074, - [SMALL_STATE(1450)] = 57081, - [SMALL_STATE(1451)] = 57088, - [SMALL_STATE(1452)] = 57095, - [SMALL_STATE(1453)] = 57102, - [SMALL_STATE(1454)] = 57109, - [SMALL_STATE(1455)] = 57116, - [SMALL_STATE(1456)] = 57123, - [SMALL_STATE(1457)] = 57130, - [SMALL_STATE(1458)] = 57137, - [SMALL_STATE(1459)] = 57144, - [SMALL_STATE(1460)] = 57151, - [SMALL_STATE(1461)] = 57158, - [SMALL_STATE(1462)] = 57165, - [SMALL_STATE(1463)] = 57172, - [SMALL_STATE(1464)] = 57179, - [SMALL_STATE(1465)] = 57186, - [SMALL_STATE(1466)] = 57193, - [SMALL_STATE(1467)] = 57200, - [SMALL_STATE(1468)] = 57207, - [SMALL_STATE(1469)] = 57214, - [SMALL_STATE(1470)] = 57221, - [SMALL_STATE(1471)] = 57228, - [SMALL_STATE(1472)] = 57235, - [SMALL_STATE(1473)] = 57242, - [SMALL_STATE(1474)] = 57249, - [SMALL_STATE(1475)] = 57256, - [SMALL_STATE(1476)] = 57263, - [SMALL_STATE(1477)] = 57270, - [SMALL_STATE(1478)] = 57277, - [SMALL_STATE(1479)] = 57284, - [SMALL_STATE(1480)] = 57291, - [SMALL_STATE(1481)] = 57298, - [SMALL_STATE(1482)] = 57305, - [SMALL_STATE(1483)] = 57312, - [SMALL_STATE(1484)] = 57319, - [SMALL_STATE(1485)] = 57326, - [SMALL_STATE(1486)] = 57333, - [SMALL_STATE(1487)] = 57340, - [SMALL_STATE(1488)] = 57347, - [SMALL_STATE(1489)] = 57354, - [SMALL_STATE(1490)] = 57361, - [SMALL_STATE(1491)] = 57368, - [SMALL_STATE(1492)] = 57375, - [SMALL_STATE(1493)] = 57382, - [SMALL_STATE(1494)] = 57389, - [SMALL_STATE(1495)] = 57396, - [SMALL_STATE(1496)] = 57403, - [SMALL_STATE(1497)] = 57410, - [SMALL_STATE(1498)] = 57417, - [SMALL_STATE(1499)] = 57424, - [SMALL_STATE(1500)] = 57431, - [SMALL_STATE(1501)] = 57438, - [SMALL_STATE(1502)] = 57445, - [SMALL_STATE(1503)] = 57452, - [SMALL_STATE(1504)] = 57459, - [SMALL_STATE(1505)] = 57466, - [SMALL_STATE(1506)] = 57473, - [SMALL_STATE(1507)] = 57480, - [SMALL_STATE(1508)] = 57487, - [SMALL_STATE(1509)] = 57494, - [SMALL_STATE(1510)] = 57501, - [SMALL_STATE(1511)] = 57508, - [SMALL_STATE(1512)] = 57515, - [SMALL_STATE(1513)] = 57522, - [SMALL_STATE(1514)] = 57529, - [SMALL_STATE(1515)] = 57536, - [SMALL_STATE(1516)] = 57543, - [SMALL_STATE(1517)] = 57550, - [SMALL_STATE(1518)] = 57557, - [SMALL_STATE(1519)] = 57564, - [SMALL_STATE(1520)] = 57571, - [SMALL_STATE(1521)] = 57578, - [SMALL_STATE(1522)] = 57585, - [SMALL_STATE(1523)] = 57592, - [SMALL_STATE(1524)] = 57599, - [SMALL_STATE(1525)] = 57606, - [SMALL_STATE(1526)] = 57613, - [SMALL_STATE(1527)] = 57620, - [SMALL_STATE(1528)] = 57627, - [SMALL_STATE(1529)] = 57634, - [SMALL_STATE(1530)] = 57641, - [SMALL_STATE(1531)] = 57648, + [SMALL_STATE(269)] = 11061, + [SMALL_STATE(270)] = 11155, + [SMALL_STATE(271)] = 11225, + [SMALL_STATE(272)] = 11319, + [SMALL_STATE(273)] = 11413, + [SMALL_STATE(274)] = 11481, + [SMALL_STATE(275)] = 11543, + [SMALL_STATE(276)] = 11605, + [SMALL_STATE(277)] = 11673, + [SMALL_STATE(278)] = 11741, + [SMALL_STATE(279)] = 11809, + [SMALL_STATE(280)] = 11903, + [SMALL_STATE(281)] = 11995, + [SMALL_STATE(282)] = 12087, + [SMALL_STATE(283)] = 12155, + [SMALL_STATE(284)] = 12249, + [SMALL_STATE(285)] = 12343, + [SMALL_STATE(286)] = 12437, + [SMALL_STATE(287)] = 12531, + [SMALL_STATE(288)] = 12625, + [SMALL_STATE(289)] = 12693, + [SMALL_STATE(290)] = 12787, + [SMALL_STATE(291)] = 12855, + [SMALL_STATE(292)] = 12917, + [SMALL_STATE(293)] = 12979, + [SMALL_STATE(294)] = 13071, + [SMALL_STATE(295)] = 13139, + [SMALL_STATE(296)] = 13228, + [SMALL_STATE(297)] = 13285, + [SMALL_STATE(298)] = 13342, + [SMALL_STATE(299)] = 13431, + [SMALL_STATE(300)] = 13520, + [SMALL_STATE(301)] = 13609, + [SMALL_STATE(302)] = 13666, + [SMALL_STATE(303)] = 13755, + [SMALL_STATE(304)] = 13818, + [SMALL_STATE(305)] = 13881, + [SMALL_STATE(306)] = 13972, + [SMALL_STATE(307)] = 14029, + [SMALL_STATE(308)] = 14120, + [SMALL_STATE(309)] = 14209, + [SMALL_STATE(310)] = 14298, + [SMALL_STATE(311)] = 14387, + [SMALL_STATE(312)] = 14478, + [SMALL_STATE(313)] = 14535, + [SMALL_STATE(314)] = 14626, + [SMALL_STATE(315)] = 14683, + [SMALL_STATE(316)] = 14750, + [SMALL_STATE(317)] = 14807, + [SMALL_STATE(318)] = 14896, + [SMALL_STATE(319)] = 14953, + [SMALL_STATE(320)] = 15042, + [SMALL_STATE(321)] = 15133, + [SMALL_STATE(322)] = 15224, + [SMALL_STATE(323)] = 15313, + [SMALL_STATE(324)] = 15404, + [SMALL_STATE(325)] = 15461, + [SMALL_STATE(326)] = 15550, + [SMALL_STATE(327)] = 15639, + [SMALL_STATE(328)] = 15696, + [SMALL_STATE(329)] = 15752, + [SMALL_STATE(330)] = 15808, + [SMALL_STATE(331)] = 15864, + [SMALL_STATE(332)] = 15920, + [SMALL_STATE(333)] = 15976, + [SMALL_STATE(334)] = 16032, + [SMALL_STATE(335)] = 16088, + [SMALL_STATE(336)] = 16144, + [SMALL_STATE(337)] = 16200, + [SMALL_STATE(338)] = 16256, + [SMALL_STATE(339)] = 16312, + [SMALL_STATE(340)] = 16368, + [SMALL_STATE(341)] = 16424, + [SMALL_STATE(342)] = 16480, + [SMALL_STATE(343)] = 16536, + [SMALL_STATE(344)] = 16596, + [SMALL_STATE(345)] = 16660, + [SMALL_STATE(346)] = 16716, + [SMALL_STATE(347)] = 16772, + [SMALL_STATE(348)] = 16828, + [SMALL_STATE(349)] = 16888, + [SMALL_STATE(350)] = 16952, + [SMALL_STATE(351)] = 17008, + [SMALL_STATE(352)] = 17064, + [SMALL_STATE(353)] = 17120, + [SMALL_STATE(354)] = 17176, + [SMALL_STATE(355)] = 17232, + [SMALL_STATE(356)] = 17288, + [SMALL_STATE(357)] = 17344, + [SMALL_STATE(358)] = 17400, + [SMALL_STATE(359)] = 17456, + [SMALL_STATE(360)] = 17512, + [SMALL_STATE(361)] = 17568, + [SMALL_STATE(362)] = 17656, + [SMALL_STATE(363)] = 17712, + [SMALL_STATE(364)] = 17768, + [SMALL_STATE(365)] = 17824, + [SMALL_STATE(366)] = 17884, + [SMALL_STATE(367)] = 17940, + [SMALL_STATE(368)] = 17996, + [SMALL_STATE(369)] = 18052, + [SMALL_STATE(370)] = 18108, + [SMALL_STATE(371)] = 18164, + [SMALL_STATE(372)] = 18228, + [SMALL_STATE(373)] = 18284, + [SMALL_STATE(374)] = 18340, + [SMALL_STATE(375)] = 18396, + [SMALL_STATE(376)] = 18460, + [SMALL_STATE(377)] = 18520, + [SMALL_STATE(378)] = 18576, + [SMALL_STATE(379)] = 18632, + [SMALL_STATE(380)] = 18688, + [SMALL_STATE(381)] = 18744, + [SMALL_STATE(382)] = 18800, + [SMALL_STATE(383)] = 18856, + [SMALL_STATE(384)] = 18944, + [SMALL_STATE(385)] = 19032, + [SMALL_STATE(386)] = 19088, + [SMALL_STATE(387)] = 19147, + [SMALL_STATE(388)] = 19232, + [SMALL_STATE(389)] = 19317, + [SMALL_STATE(390)] = 19402, + [SMALL_STATE(391)] = 19487, + [SMALL_STATE(392)] = 19572, + [SMALL_STATE(393)] = 19633, + [SMALL_STATE(394)] = 19692, + [SMALL_STATE(395)] = 19777, + [SMALL_STATE(396)] = 19832, + [SMALL_STATE(397)] = 19917, + [SMALL_STATE(398)] = 19978, + [SMALL_STATE(399)] = 20063, + [SMALL_STATE(400)] = 20148, + [SMALL_STATE(401)] = 20233, + [SMALL_STATE(402)] = 20292, + [SMALL_STATE(403)] = 20377, + [SMALL_STATE(404)] = 20462, + [SMALL_STATE(405)] = 20547, + [SMALL_STATE(406)] = 20632, + [SMALL_STATE(407)] = 20693, + [SMALL_STATE(408)] = 20778, + [SMALL_STATE(409)] = 20863, + [SMALL_STATE(410)] = 20948, + [SMALL_STATE(411)] = 21035, + [SMALL_STATE(412)] = 21120, + [SMALL_STATE(413)] = 21205, + [SMALL_STATE(414)] = 21290, + [SMALL_STATE(415)] = 21375, + [SMALL_STATE(416)] = 21436, + [SMALL_STATE(417)] = 21521, + [SMALL_STATE(418)] = 21606, + [SMALL_STATE(419)] = 21691, + [SMALL_STATE(420)] = 21750, + [SMALL_STATE(421)] = 21809, + [SMALL_STATE(422)] = 21894, + [SMALL_STATE(423)] = 21979, + [SMALL_STATE(424)] = 22064, + [SMALL_STATE(425)] = 22149, + [SMALL_STATE(426)] = 22234, + [SMALL_STATE(427)] = 22319, + [SMALL_STATE(428)] = 22404, + [SMALL_STATE(429)] = 22463, + [SMALL_STATE(430)] = 22522, + [SMALL_STATE(431)] = 22607, + [SMALL_STATE(432)] = 22692, + [SMALL_STATE(433)] = 22751, + [SMALL_STATE(434)] = 22836, + [SMALL_STATE(435)] = 22921, + [SMALL_STATE(436)] = 23006, + [SMALL_STATE(437)] = 23091, + [SMALL_STATE(438)] = 23176, + [SMALL_STATE(439)] = 23261, + [SMALL_STATE(440)] = 23346, + [SMALL_STATE(441)] = 23405, + [SMALL_STATE(442)] = 23490, + [SMALL_STATE(443)] = 23575, + [SMALL_STATE(444)] = 23660, + [SMALL_STATE(445)] = 23745, + [SMALL_STATE(446)] = 23800, + [SMALL_STATE(447)] = 23855, + [SMALL_STATE(448)] = 23940, + [SMALL_STATE(449)] = 24025, + [SMALL_STATE(450)] = 24110, + [SMALL_STATE(451)] = 24195, + [SMALL_STATE(452)] = 24280, + [SMALL_STATE(453)] = 24365, + [SMALL_STATE(454)] = 24450, + [SMALL_STATE(455)] = 24535, + [SMALL_STATE(456)] = 24620, + [SMALL_STATE(457)] = 24705, + [SMALL_STATE(458)] = 24790, + [SMALL_STATE(459)] = 24875, + [SMALL_STATE(460)] = 24960, + [SMALL_STATE(461)] = 25045, + [SMALL_STATE(462)] = 25100, + [SMALL_STATE(463)] = 25185, + [SMALL_STATE(464)] = 25270, + [SMALL_STATE(465)] = 25329, + [SMALL_STATE(466)] = 25414, + [SMALL_STATE(467)] = 25473, + [SMALL_STATE(468)] = 25532, + [SMALL_STATE(469)] = 25617, + [SMALL_STATE(470)] = 25702, + [SMALL_STATE(471)] = 25787, + [SMALL_STATE(472)] = 25872, + [SMALL_STATE(473)] = 25931, + [SMALL_STATE(474)] = 25990, + [SMALL_STATE(475)] = 26075, + [SMALL_STATE(476)] = 26160, + [SMALL_STATE(477)] = 26219, + [SMALL_STATE(478)] = 26274, + [SMALL_STATE(479)] = 26359, + [SMALL_STATE(480)] = 26444, + [SMALL_STATE(481)] = 26503, + [SMALL_STATE(482)] = 26588, + [SMALL_STATE(483)] = 26643, + [SMALL_STATE(484)] = 26728, + [SMALL_STATE(485)] = 26813, + [SMALL_STATE(486)] = 26898, + [SMALL_STATE(487)] = 26952, + [SMALL_STATE(488)] = 27006, + [SMALL_STATE(489)] = 27060, + [SMALL_STATE(490)] = 27114, + [SMALL_STATE(491)] = 27168, + [SMALL_STATE(492)] = 27222, + [SMALL_STATE(493)] = 27276, + [SMALL_STATE(494)] = 27330, + [SMALL_STATE(495)] = 27384, + [SMALL_STATE(496)] = 27438, + [SMALL_STATE(497)] = 27492, + [SMALL_STATE(498)] = 27546, + [SMALL_STATE(499)] = 27599, + [SMALL_STATE(500)] = 27652, + [SMALL_STATE(501)] = 27705, + [SMALL_STATE(502)] = 27758, + [SMALL_STATE(503)] = 27811, + [SMALL_STATE(504)] = 27864, + [SMALL_STATE(505)] = 27917, + [SMALL_STATE(506)] = 27970, + [SMALL_STATE(507)] = 28023, + [SMALL_STATE(508)] = 28076, + [SMALL_STATE(509)] = 28129, + [SMALL_STATE(510)] = 28182, + [SMALL_STATE(511)] = 28235, + [SMALL_STATE(512)] = 28288, + [SMALL_STATE(513)] = 28341, + [SMALL_STATE(514)] = 28394, + [SMALL_STATE(515)] = 28447, + [SMALL_STATE(516)] = 28500, + [SMALL_STATE(517)] = 28553, + [SMALL_STATE(518)] = 28606, + [SMALL_STATE(519)] = 28659, + [SMALL_STATE(520)] = 28712, + [SMALL_STATE(521)] = 28765, + [SMALL_STATE(522)] = 28818, + [SMALL_STATE(523)] = 28871, + [SMALL_STATE(524)] = 28924, + [SMALL_STATE(525)] = 28977, + [SMALL_STATE(526)] = 29030, + [SMALL_STATE(527)] = 29083, + [SMALL_STATE(528)] = 29136, + [SMALL_STATE(529)] = 29189, + [SMALL_STATE(530)] = 29242, + [SMALL_STATE(531)] = 29295, + [SMALL_STATE(532)] = 29348, + [SMALL_STATE(533)] = 29401, + [SMALL_STATE(534)] = 29454, + [SMALL_STATE(535)] = 29507, + [SMALL_STATE(536)] = 29560, + [SMALL_STATE(537)] = 29613, + [SMALL_STATE(538)] = 29666, + [SMALL_STATE(539)] = 29719, + [SMALL_STATE(540)] = 29772, + [SMALL_STATE(541)] = 29825, + [SMALL_STATE(542)] = 29878, + [SMALL_STATE(543)] = 29931, + [SMALL_STATE(544)] = 29984, + [SMALL_STATE(545)] = 30037, + [SMALL_STATE(546)] = 30090, + [SMALL_STATE(547)] = 30143, + [SMALL_STATE(548)] = 30196, + [SMALL_STATE(549)] = 30249, + [SMALL_STATE(550)] = 30302, + [SMALL_STATE(551)] = 30355, + [SMALL_STATE(552)] = 30408, + [SMALL_STATE(553)] = 30461, + [SMALL_STATE(554)] = 30514, + [SMALL_STATE(555)] = 30567, + [SMALL_STATE(556)] = 30620, + [SMALL_STATE(557)] = 30673, + [SMALL_STATE(558)] = 30726, + [SMALL_STATE(559)] = 30779, + [SMALL_STATE(560)] = 30832, + [SMALL_STATE(561)] = 30885, + [SMALL_STATE(562)] = 30938, + [SMALL_STATE(563)] = 30991, + [SMALL_STATE(564)] = 31044, + [SMALL_STATE(565)] = 31097, + [SMALL_STATE(566)] = 31150, + [SMALL_STATE(567)] = 31203, + [SMALL_STATE(568)] = 31256, + [SMALL_STATE(569)] = 31309, + [SMALL_STATE(570)] = 31362, + [SMALL_STATE(571)] = 31415, + [SMALL_STATE(572)] = 31468, + [SMALL_STATE(573)] = 31521, + [SMALL_STATE(574)] = 31574, + [SMALL_STATE(575)] = 31627, + [SMALL_STATE(576)] = 31680, + [SMALL_STATE(577)] = 31733, + [SMALL_STATE(578)] = 31786, + [SMALL_STATE(579)] = 31839, + [SMALL_STATE(580)] = 31892, + [SMALL_STATE(581)] = 31945, + [SMALL_STATE(582)] = 31998, + [SMALL_STATE(583)] = 32051, + [SMALL_STATE(584)] = 32104, + [SMALL_STATE(585)] = 32157, + [SMALL_STATE(586)] = 32210, + [SMALL_STATE(587)] = 32263, + [SMALL_STATE(588)] = 32316, + [SMALL_STATE(589)] = 32369, + [SMALL_STATE(590)] = 32422, + [SMALL_STATE(591)] = 32475, + [SMALL_STATE(592)] = 32528, + [SMALL_STATE(593)] = 32581, + [SMALL_STATE(594)] = 32634, + [SMALL_STATE(595)] = 32687, + [SMALL_STATE(596)] = 32740, + [SMALL_STATE(597)] = 32822, + [SMALL_STATE(598)] = 32906, + [SMALL_STATE(599)] = 32988, + [SMALL_STATE(600)] = 33043, + [SMALL_STATE(601)] = 33124, + [SMALL_STATE(602)] = 33179, + [SMALL_STATE(603)] = 33260, + [SMALL_STATE(604)] = 33341, + [SMALL_STATE(605)] = 33396, + [SMALL_STATE(606)] = 33477, + [SMALL_STATE(607)] = 33558, + [SMALL_STATE(608)] = 33639, + [SMALL_STATE(609)] = 33717, + [SMALL_STATE(610)] = 33795, + [SMALL_STATE(611)] = 33844, + [SMALL_STATE(612)] = 33893, + [SMALL_STATE(613)] = 33941, + [SMALL_STATE(614)] = 33989, + [SMALL_STATE(615)] = 34037, + [SMALL_STATE(616)] = 34085, + [SMALL_STATE(617)] = 34133, + [SMALL_STATE(618)] = 34181, + [SMALL_STATE(619)] = 34263, + [SMALL_STATE(620)] = 34311, + [SMALL_STATE(621)] = 34393, + [SMALL_STATE(622)] = 34441, + [SMALL_STATE(623)] = 34513, + [SMALL_STATE(624)] = 34561, + [SMALL_STATE(625)] = 34609, + [SMALL_STATE(626)] = 34657, + [SMALL_STATE(627)] = 34705, + [SMALL_STATE(628)] = 34753, + [SMALL_STATE(629)] = 34801, + [SMALL_STATE(630)] = 34849, + [SMALL_STATE(631)] = 34897, + [SMALL_STATE(632)] = 34945, + [SMALL_STATE(633)] = 34993, + [SMALL_STATE(634)] = 35041, + [SMALL_STATE(635)] = 35089, + [SMALL_STATE(636)] = 35137, + [SMALL_STATE(637)] = 35185, + [SMALL_STATE(638)] = 35233, + [SMALL_STATE(639)] = 35281, + [SMALL_STATE(640)] = 35329, + [SMALL_STATE(641)] = 35377, + [SMALL_STATE(642)] = 35425, + [SMALL_STATE(643)] = 35473, + [SMALL_STATE(644)] = 35521, + [SMALL_STATE(645)] = 35569, + [SMALL_STATE(646)] = 35617, + [SMALL_STATE(647)] = 35686, + [SMALL_STATE(648)] = 35743, + [SMALL_STATE(649)] = 35814, + [SMALL_STATE(650)] = 35885, + [SMALL_STATE(651)] = 35950, + [SMALL_STATE(652)] = 36021, + [SMALL_STATE(653)] = 36092, + [SMALL_STATE(654)] = 36149, + [SMALL_STATE(655)] = 36210, + [SMALL_STATE(656)] = 36281, + [SMALL_STATE(657)] = 36344, + [SMALL_STATE(658)] = 36401, + [SMALL_STATE(659)] = 36458, + [SMALL_STATE(660)] = 36519, + [SMALL_STATE(661)] = 36584, + [SMALL_STATE(662)] = 36651, + [SMALL_STATE(663)] = 36708, + [SMALL_STATE(664)] = 36779, + [SMALL_STATE(665)] = 36836, + [SMALL_STATE(666)] = 36899, + [SMALL_STATE(667)] = 36966, + [SMALL_STATE(668)] = 37035, + [SMALL_STATE(669)] = 37081, + [SMALL_STATE(670)] = 37147, + [SMALL_STATE(671)] = 37197, + [SMALL_STATE(672)] = 37263, + [SMALL_STATE(673)] = 37329, + [SMALL_STATE(674)] = 37377, + [SMALL_STATE(675)] = 37425, + [SMALL_STATE(676)] = 37473, + [SMALL_STATE(677)] = 37519, + [SMALL_STATE(678)] = 37567, + [SMALL_STATE(679)] = 37633, + [SMALL_STATE(680)] = 37683, + [SMALL_STATE(681)] = 37728, + [SMALL_STATE(682)] = 37791, + [SMALL_STATE(683)] = 37854, + [SMALL_STATE(684)] = 37917, + [SMALL_STATE(685)] = 37980, + [SMALL_STATE(686)] = 38029, + [SMALL_STATE(687)] = 38092, + [SMALL_STATE(688)] = 38155, + [SMALL_STATE(689)] = 38218, + [SMALL_STATE(690)] = 38281, + [SMALL_STATE(691)] = 38344, + [SMALL_STATE(692)] = 38407, + [SMALL_STATE(693)] = 38470, + [SMALL_STATE(694)] = 38515, + [SMALL_STATE(695)] = 38578, + [SMALL_STATE(696)] = 38641, + [SMALL_STATE(697)] = 38720, + [SMALL_STATE(698)] = 38783, + [SMALL_STATE(699)] = 38846, + [SMALL_STATE(700)] = 38909, + [SMALL_STATE(701)] = 38976, + [SMALL_STATE(702)] = 39025, + [SMALL_STATE(703)] = 39074, + [SMALL_STATE(704)] = 39137, + [SMALL_STATE(705)] = 39200, + [SMALL_STATE(706)] = 39263, + [SMALL_STATE(707)] = 39326, + [SMALL_STATE(708)] = 39389, + [SMALL_STATE(709)] = 39452, + [SMALL_STATE(710)] = 39515, + [SMALL_STATE(711)] = 39578, + [SMALL_STATE(712)] = 39641, + [SMALL_STATE(713)] = 39704, + [SMALL_STATE(714)] = 39767, + [SMALL_STATE(715)] = 39830, + [SMALL_STATE(716)] = 39893, + [SMALL_STATE(717)] = 39956, + [SMALL_STATE(718)] = 40019, + [SMALL_STATE(719)] = 40082, + [SMALL_STATE(720)] = 40145, + [SMALL_STATE(721)] = 40208, + [SMALL_STATE(722)] = 40271, + [SMALL_STATE(723)] = 40334, + [SMALL_STATE(724)] = 40397, + [SMALL_STATE(725)] = 40460, + [SMALL_STATE(726)] = 40523, + [SMALL_STATE(727)] = 40586, + [SMALL_STATE(728)] = 40649, + [SMALL_STATE(729)] = 40712, + [SMALL_STATE(730)] = 40775, + [SMALL_STATE(731)] = 40842, + [SMALL_STATE(732)] = 40905, + [SMALL_STATE(733)] = 40971, + [SMALL_STATE(734)] = 41039, + [SMALL_STATE(735)] = 41107, + [SMALL_STATE(736)] = 41183, + [SMALL_STATE(737)] = 41237, + [SMALL_STATE(738)] = 41281, + [SMALL_STATE(739)] = 41343, + [SMALL_STATE(740)] = 41387, + [SMALL_STATE(741)] = 41451, + [SMALL_STATE(742)] = 41499, + [SMALL_STATE(743)] = 41567, + [SMALL_STATE(744)] = 41621, + [SMALL_STATE(745)] = 41679, + [SMALL_STATE(746)] = 41739, + [SMALL_STATE(747)] = 41793, + [SMALL_STATE(748)] = 41860, + [SMALL_STATE(749)] = 41927, + [SMALL_STATE(750)] = 41970, + [SMALL_STATE(751)] = 42029, + [SMALL_STATE(752)] = 42074, + [SMALL_STATE(753)] = 42131, + [SMALL_STATE(754)] = 42184, + [SMALL_STATE(755)] = 42231, + [SMALL_STATE(756)] = 42276, + [SMALL_STATE(757)] = 42319, + [SMALL_STATE(758)] = 42364, + [SMALL_STATE(759)] = 42411, + [SMALL_STATE(760)] = 42472, + [SMALL_STATE(761)] = 42539, + [SMALL_STATE(762)] = 42592, + [SMALL_STATE(763)] = 42655, + [SMALL_STATE(764)] = 42702, + [SMALL_STATE(765)] = 42747, + [SMALL_STATE(766)] = 42792, + [SMALL_STATE(767)] = 42837, + [SMALL_STATE(768)] = 42882, + [SMALL_STATE(769)] = 42927, + [SMALL_STATE(770)] = 42992, + [SMALL_STATE(771)] = 43045, + [SMALL_STATE(772)] = 43092, + [SMALL_STATE(773)] = 43134, + [SMALL_STATE(774)] = 43176, + [SMALL_STATE(775)] = 43218, + [SMALL_STATE(776)] = 43260, + [SMALL_STATE(777)] = 43302, + [SMALL_STATE(778)] = 43344, + [SMALL_STATE(779)] = 43386, + [SMALL_STATE(780)] = 43428, + [SMALL_STATE(781)] = 43470, + [SMALL_STATE(782)] = 43512, + [SMALL_STATE(783)] = 43554, + [SMALL_STATE(784)] = 43596, + [SMALL_STATE(785)] = 43638, + [SMALL_STATE(786)] = 43680, + [SMALL_STATE(787)] = 43724, + [SMALL_STATE(788)] = 43768, + [SMALL_STATE(789)] = 43810, + [SMALL_STATE(790)] = 43852, + [SMALL_STATE(791)] = 43894, + [SMALL_STATE(792)] = 43936, + [SMALL_STATE(793)] = 43978, + [SMALL_STATE(794)] = 44020, + [SMALL_STATE(795)] = 44062, + [SMALL_STATE(796)] = 44104, + [SMALL_STATE(797)] = 44146, + [SMALL_STATE(798)] = 44190, + [SMALL_STATE(799)] = 44232, + [SMALL_STATE(800)] = 44274, + [SMALL_STATE(801)] = 44318, + [SMALL_STATE(802)] = 44360, + [SMALL_STATE(803)] = 44402, + [SMALL_STATE(804)] = 44444, + [SMALL_STATE(805)] = 44486, + [SMALL_STATE(806)] = 44530, + [SMALL_STATE(807)] = 44572, + [SMALL_STATE(808)] = 44614, + [SMALL_STATE(809)] = 44656, + [SMALL_STATE(810)] = 44698, + [SMALL_STATE(811)] = 44739, + [SMALL_STATE(812)] = 44780, + [SMALL_STATE(813)] = 44821, + [SMALL_STATE(814)] = 44862, + [SMALL_STATE(815)] = 44903, + [SMALL_STATE(816)] = 44944, + [SMALL_STATE(817)] = 44985, + [SMALL_STATE(818)] = 45026, + [SMALL_STATE(819)] = 45067, + [SMALL_STATE(820)] = 45108, + [SMALL_STATE(821)] = 45149, + [SMALL_STATE(822)] = 45190, + [SMALL_STATE(823)] = 45235, + [SMALL_STATE(824)] = 45276, + [SMALL_STATE(825)] = 45317, + [SMALL_STATE(826)] = 45362, + [SMALL_STATE(827)] = 45403, + [SMALL_STATE(828)] = 45444, + [SMALL_STATE(829)] = 45485, + [SMALL_STATE(830)] = 45526, + [SMALL_STATE(831)] = 45567, + [SMALL_STATE(832)] = 45608, + [SMALL_STATE(833)] = 45649, + [SMALL_STATE(834)] = 45690, + [SMALL_STATE(835)] = 45731, + [SMALL_STATE(836)] = 45772, + [SMALL_STATE(837)] = 45813, + [SMALL_STATE(838)] = 45854, + [SMALL_STATE(839)] = 45895, + [SMALL_STATE(840)] = 45936, + [SMALL_STATE(841)] = 45977, + [SMALL_STATE(842)] = 46018, + [SMALL_STATE(843)] = 46059, + [SMALL_STATE(844)] = 46100, + [SMALL_STATE(845)] = 46141, + [SMALL_STATE(846)] = 46182, + [SMALL_STATE(847)] = 46223, + [SMALL_STATE(848)] = 46264, + [SMALL_STATE(849)] = 46305, + [SMALL_STATE(850)] = 46346, + [SMALL_STATE(851)] = 46420, + [SMALL_STATE(852)] = 46494, + [SMALL_STATE(853)] = 46568, + [SMALL_STATE(854)] = 46642, + [SMALL_STATE(855)] = 46713, + [SMALL_STATE(856)] = 46786, + [SMALL_STATE(857)] = 46857, + [SMALL_STATE(858)] = 46928, + [SMALL_STATE(859)] = 46999, + [SMALL_STATE(860)] = 47070, + [SMALL_STATE(861)] = 47142, + [SMALL_STATE(862)] = 47210, + [SMALL_STATE(863)] = 47282, + [SMALL_STATE(864)] = 47354, + [SMALL_STATE(865)] = 47420, + [SMALL_STATE(866)] = 47483, + [SMALL_STATE(867)] = 47546, + [SMALL_STATE(868)] = 47601, + [SMALL_STATE(869)] = 47656, + [SMALL_STATE(870)] = 47696, + [SMALL_STATE(871)] = 47736, + [SMALL_STATE(872)] = 47776, + [SMALL_STATE(873)] = 47816, + [SMALL_STATE(874)] = 47846, + [SMALL_STATE(875)] = 47871, + [SMALL_STATE(876)] = 47908, + [SMALL_STATE(877)] = 47933, + [SMALL_STATE(878)] = 47962, + [SMALL_STATE(879)] = 47991, + [SMALL_STATE(880)] = 48016, + [SMALL_STATE(881)] = 48041, + [SMALL_STATE(882)] = 48078, + [SMALL_STATE(883)] = 48112, + [SMALL_STATE(884)] = 48146, + [SMALL_STATE(885)] = 48174, + [SMALL_STATE(886)] = 48220, + [SMALL_STATE(887)] = 48263, + [SMALL_STATE(888)] = 48306, + [SMALL_STATE(889)] = 48349, + [SMALL_STATE(890)] = 48392, + [SMALL_STATE(891)] = 48435, + [SMALL_STATE(892)] = 48466, + [SMALL_STATE(893)] = 48506, + [SMALL_STATE(894)] = 48552, + [SMALL_STATE(895)] = 48598, + [SMALL_STATE(896)] = 48644, + [SMALL_STATE(897)] = 48681, + [SMALL_STATE(898)] = 48718, + [SMALL_STATE(899)] = 48755, + [SMALL_STATE(900)] = 48792, + [SMALL_STATE(901)] = 48817, + [SMALL_STATE(902)] = 48851, + [SMALL_STATE(903)] = 48873, + [SMALL_STATE(904)] = 48907, + [SMALL_STATE(905)] = 48929, + [SMALL_STATE(906)] = 48951, + [SMALL_STATE(907)] = 48988, + [SMALL_STATE(908)] = 49010, + [SMALL_STATE(909)] = 49031, + [SMALL_STATE(910)] = 49062, + [SMALL_STATE(911)] = 49087, + [SMALL_STATE(912)] = 49110, + [SMALL_STATE(913)] = 49141, + [SMALL_STATE(914)] = 49178, + [SMALL_STATE(915)] = 49209, + [SMALL_STATE(916)] = 49232, + [SMALL_STATE(917)] = 49255, + [SMALL_STATE(918)] = 49280, + [SMALL_STATE(919)] = 49301, + [SMALL_STATE(920)] = 49324, + [SMALL_STATE(921)] = 49361, + [SMALL_STATE(922)] = 49392, + [SMALL_STATE(923)] = 49419, + [SMALL_STATE(924)] = 49444, + [SMALL_STATE(925)] = 49475, + [SMALL_STATE(926)] = 49506, + [SMALL_STATE(927)] = 49529, + [SMALL_STATE(928)] = 49566, + [SMALL_STATE(929)] = 49589, + [SMALL_STATE(930)] = 49610, + [SMALL_STATE(931)] = 49633, + [SMALL_STATE(932)] = 49664, + [SMALL_STATE(933)] = 49701, + [SMALL_STATE(934)] = 49732, + [SMALL_STATE(935)] = 49755, + [SMALL_STATE(936)] = 49776, + [SMALL_STATE(937)] = 49793, + [SMALL_STATE(938)] = 49824, + [SMALL_STATE(939)] = 49845, + [SMALL_STATE(940)] = 49864, + [SMALL_STATE(941)] = 49898, + [SMALL_STATE(942)] = 49932, + [SMALL_STATE(943)] = 49966, + [SMALL_STATE(944)] = 50000, + [SMALL_STATE(945)] = 50018, + [SMALL_STATE(946)] = 50040, + [SMALL_STATE(947)] = 50074, + [SMALL_STATE(948)] = 50096, + [SMALL_STATE(949)] = 50118, + [SMALL_STATE(950)] = 50140, + [SMALL_STATE(951)] = 50174, + [SMALL_STATE(952)] = 50208, + [SMALL_STATE(953)] = 50242, + [SMALL_STATE(954)] = 50260, + [SMALL_STATE(955)] = 50294, + [SMALL_STATE(956)] = 50317, + [SMALL_STATE(957)] = 50342, + [SMALL_STATE(958)] = 50361, + [SMALL_STATE(959)] = 50380, + [SMALL_STATE(960)] = 50399, + [SMALL_STATE(961)] = 50422, + [SMALL_STATE(962)] = 50441, + [SMALL_STATE(963)] = 50464, + [SMALL_STATE(964)] = 50483, + [SMALL_STATE(965)] = 50502, + [SMALL_STATE(966)] = 50516, + [SMALL_STATE(967)] = 50534, + [SMALL_STATE(968)] = 50552, + [SMALL_STATE(969)] = 50566, + [SMALL_STATE(970)] = 50580, + [SMALL_STATE(971)] = 50594, + [SMALL_STATE(972)] = 50608, + [SMALL_STATE(973)] = 50634, + [SMALL_STATE(974)] = 50658, + [SMALL_STATE(975)] = 50672, + [SMALL_STATE(976)] = 50686, + [SMALL_STATE(977)] = 50708, + [SMALL_STATE(978)] = 50726, + [SMALL_STATE(979)] = 50750, + [SMALL_STATE(980)] = 50770, + [SMALL_STATE(981)] = 50784, + [SMALL_STATE(982)] = 50802, + [SMALL_STATE(983)] = 50820, + [SMALL_STATE(984)] = 50834, + [SMALL_STATE(985)] = 50858, + [SMALL_STATE(986)] = 50872, + [SMALL_STATE(987)] = 50886, + [SMALL_STATE(988)] = 50906, + [SMALL_STATE(989)] = 50924, + [SMALL_STATE(990)] = 50938, + [SMALL_STATE(991)] = 50956, + [SMALL_STATE(992)] = 50970, + [SMALL_STATE(993)] = 50994, + [SMALL_STATE(994)] = 51008, + [SMALL_STATE(995)] = 51030, + [SMALL_STATE(996)] = 51044, + [SMALL_STATE(997)] = 51058, + [SMALL_STATE(998)] = 51072, + [SMALL_STATE(999)] = 51086, + [SMALL_STATE(1000)] = 51110, + [SMALL_STATE(1001)] = 51124, + [SMALL_STATE(1002)] = 51138, + [SMALL_STATE(1003)] = 51152, + [SMALL_STATE(1004)] = 51168, + [SMALL_STATE(1005)] = 51186, + [SMALL_STATE(1006)] = 51208, + [SMALL_STATE(1007)] = 51222, + [SMALL_STATE(1008)] = 51240, + [SMALL_STATE(1009)] = 51260, + [SMALL_STATE(1010)] = 51284, + [SMALL_STATE(1011)] = 51298, + [SMALL_STATE(1012)] = 51318, + [SMALL_STATE(1013)] = 51332, + [SMALL_STATE(1014)] = 51350, + [SMALL_STATE(1015)] = 51368, + [SMALL_STATE(1016)] = 51382, + [SMALL_STATE(1017)] = 51400, + [SMALL_STATE(1018)] = 51416, + [SMALL_STATE(1019)] = 51429, + [SMALL_STATE(1020)] = 51454, + [SMALL_STATE(1021)] = 51479, + [SMALL_STATE(1022)] = 51504, + [SMALL_STATE(1023)] = 51523, + [SMALL_STATE(1024)] = 51546, + [SMALL_STATE(1025)] = 51565, + [SMALL_STATE(1026)] = 51584, + [SMALL_STATE(1027)] = 51607, + [SMALL_STATE(1028)] = 51630, + [SMALL_STATE(1029)] = 51643, + [SMALL_STATE(1030)] = 51668, + [SMALL_STATE(1031)] = 51693, + [SMALL_STATE(1032)] = 51706, + [SMALL_STATE(1033)] = 51719, + [SMALL_STATE(1034)] = 51742, + [SMALL_STATE(1035)] = 51755, + [SMALL_STATE(1036)] = 51778, + [SMALL_STATE(1037)] = 51797, + [SMALL_STATE(1038)] = 51816, + [SMALL_STATE(1039)] = 51839, + [SMALL_STATE(1040)] = 51858, + [SMALL_STATE(1041)] = 51881, + [SMALL_STATE(1042)] = 51900, + [SMALL_STATE(1043)] = 51923, + [SMALL_STATE(1044)] = 51936, + [SMALL_STATE(1045)] = 51951, + [SMALL_STATE(1046)] = 51964, + [SMALL_STATE(1047)] = 51981, + [SMALL_STATE(1048)] = 52000, + [SMALL_STATE(1049)] = 52017, + [SMALL_STATE(1050)] = 52038, + [SMALL_STATE(1051)] = 52061, + [SMALL_STATE(1052)] = 52076, + [SMALL_STATE(1053)] = 52093, + [SMALL_STATE(1054)] = 52106, + [SMALL_STATE(1055)] = 52125, + [SMALL_STATE(1056)] = 52150, + [SMALL_STATE(1057)] = 52169, + [SMALL_STATE(1058)] = 52194, + [SMALL_STATE(1059)] = 52210, + [SMALL_STATE(1060)] = 52224, + [SMALL_STATE(1061)] = 52240, + [SMALL_STATE(1062)] = 52256, + [SMALL_STATE(1063)] = 52278, + [SMALL_STATE(1064)] = 52292, + [SMALL_STATE(1065)] = 52304, + [SMALL_STATE(1066)] = 52318, + [SMALL_STATE(1067)] = 52332, + [SMALL_STATE(1068)] = 52352, + [SMALL_STATE(1069)] = 52370, + [SMALL_STATE(1070)] = 52390, + [SMALL_STATE(1071)] = 52408, + [SMALL_STATE(1072)] = 52420, + [SMALL_STATE(1073)] = 52438, + [SMALL_STATE(1074)] = 52456, + [SMALL_STATE(1075)] = 52478, + [SMALL_STATE(1076)] = 52492, + [SMALL_STATE(1077)] = 52508, + [SMALL_STATE(1078)] = 52530, + [SMALL_STATE(1079)] = 52548, + [SMALL_STATE(1080)] = 52570, + [SMALL_STATE(1081)] = 52586, + [SMALL_STATE(1082)] = 52606, + [SMALL_STATE(1083)] = 52626, + [SMALL_STATE(1084)] = 52648, + [SMALL_STATE(1085)] = 52666, + [SMALL_STATE(1086)] = 52686, + [SMALL_STATE(1087)] = 52702, + [SMALL_STATE(1088)] = 52724, + [SMALL_STATE(1089)] = 52746, + [SMALL_STATE(1090)] = 52764, + [SMALL_STATE(1091)] = 52780, + [SMALL_STATE(1092)] = 52800, + [SMALL_STATE(1093)] = 52814, + [SMALL_STATE(1094)] = 52831, + [SMALL_STATE(1095)] = 52850, + [SMALL_STATE(1096)] = 52867, + [SMALL_STATE(1097)] = 52886, + [SMALL_STATE(1098)] = 52903, + [SMALL_STATE(1099)] = 52920, + [SMALL_STATE(1100)] = 52935, + [SMALL_STATE(1101)] = 52952, + [SMALL_STATE(1102)] = 52969, + [SMALL_STATE(1103)] = 52986, + [SMALL_STATE(1104)] = 53001, + [SMALL_STATE(1105)] = 53020, + [SMALL_STATE(1106)] = 53037, + [SMALL_STATE(1107)] = 53054, + [SMALL_STATE(1108)] = 53071, + [SMALL_STATE(1109)] = 53088, + [SMALL_STATE(1110)] = 53105, + [SMALL_STATE(1111)] = 53124, + [SMALL_STATE(1112)] = 53139, + [SMALL_STATE(1113)] = 53158, + [SMALL_STATE(1114)] = 53177, + [SMALL_STATE(1115)] = 53194, + [SMALL_STATE(1116)] = 53211, + [SMALL_STATE(1117)] = 53228, + [SMALL_STATE(1118)] = 53245, + [SMALL_STATE(1119)] = 53256, + [SMALL_STATE(1120)] = 53273, + [SMALL_STATE(1121)] = 53288, + [SMALL_STATE(1122)] = 53299, + [SMALL_STATE(1123)] = 53314, + [SMALL_STATE(1124)] = 53333, + [SMALL_STATE(1125)] = 53348, + [SMALL_STATE(1126)] = 53365, + [SMALL_STATE(1127)] = 53384, + [SMALL_STATE(1128)] = 53395, + [SMALL_STATE(1129)] = 53410, + [SMALL_STATE(1130)] = 53429, + [SMALL_STATE(1131)] = 53448, + [SMALL_STATE(1132)] = 53462, + [SMALL_STATE(1133)] = 53478, + [SMALL_STATE(1134)] = 53492, + [SMALL_STATE(1135)] = 53508, + [SMALL_STATE(1136)] = 53524, + [SMALL_STATE(1137)] = 53534, + [SMALL_STATE(1138)] = 53548, + [SMALL_STATE(1139)] = 53564, + [SMALL_STATE(1140)] = 53580, + [SMALL_STATE(1141)] = 53596, + [SMALL_STATE(1142)] = 53612, + [SMALL_STATE(1143)] = 53622, + [SMALL_STATE(1144)] = 53636, + [SMALL_STATE(1145)] = 53652, + [SMALL_STATE(1146)] = 53668, + [SMALL_STATE(1147)] = 53678, + [SMALL_STATE(1148)] = 53688, + [SMALL_STATE(1149)] = 53704, + [SMALL_STATE(1150)] = 53720, + [SMALL_STATE(1151)] = 53734, + [SMALL_STATE(1152)] = 53744, + [SMALL_STATE(1153)] = 53760, + [SMALL_STATE(1154)] = 53774, + [SMALL_STATE(1155)] = 53790, + [SMALL_STATE(1156)] = 53804, + [SMALL_STATE(1157)] = 53818, + [SMALL_STATE(1158)] = 53834, + [SMALL_STATE(1159)] = 53850, + [SMALL_STATE(1160)] = 53866, + [SMALL_STATE(1161)] = 53882, + [SMALL_STATE(1162)] = 53898, + [SMALL_STATE(1163)] = 53914, + [SMALL_STATE(1164)] = 53930, + [SMALL_STATE(1165)] = 53946, + [SMALL_STATE(1166)] = 53960, + [SMALL_STATE(1167)] = 53974, + [SMALL_STATE(1168)] = 53988, + [SMALL_STATE(1169)] = 54002, + [SMALL_STATE(1170)] = 54016, + [SMALL_STATE(1171)] = 54032, + [SMALL_STATE(1172)] = 54046, + [SMALL_STATE(1173)] = 54060, + [SMALL_STATE(1174)] = 54076, + [SMALL_STATE(1175)] = 54092, + [SMALL_STATE(1176)] = 54108, + [SMALL_STATE(1177)] = 54122, + [SMALL_STATE(1178)] = 54138, + [SMALL_STATE(1179)] = 54150, + [SMALL_STATE(1180)] = 54164, + [SMALL_STATE(1181)] = 54180, + [SMALL_STATE(1182)] = 54194, + [SMALL_STATE(1183)] = 54210, + [SMALL_STATE(1184)] = 54224, + [SMALL_STATE(1185)] = 54240, + [SMALL_STATE(1186)] = 54254, + [SMALL_STATE(1187)] = 54270, + [SMALL_STATE(1188)] = 54282, + [SMALL_STATE(1189)] = 54298, + [SMALL_STATE(1190)] = 54314, + [SMALL_STATE(1191)] = 54330, + [SMALL_STATE(1192)] = 54346, + [SMALL_STATE(1193)] = 54360, + [SMALL_STATE(1194)] = 54374, + [SMALL_STATE(1195)] = 54388, + [SMALL_STATE(1196)] = 54404, + [SMALL_STATE(1197)] = 54418, + [SMALL_STATE(1198)] = 54434, + [SMALL_STATE(1199)] = 54448, + [SMALL_STATE(1200)] = 54462, + [SMALL_STATE(1201)] = 54478, + [SMALL_STATE(1202)] = 54494, + [SMALL_STATE(1203)] = 54508, + [SMALL_STATE(1204)] = 54522, + [SMALL_STATE(1205)] = 54538, + [SMALL_STATE(1206)] = 54554, + [SMALL_STATE(1207)] = 54568, + [SMALL_STATE(1208)] = 54584, + [SMALL_STATE(1209)] = 54600, + [SMALL_STATE(1210)] = 54614, + [SMALL_STATE(1211)] = 54630, + [SMALL_STATE(1212)] = 54644, + [SMALL_STATE(1213)] = 54660, + [SMALL_STATE(1214)] = 54670, + [SMALL_STATE(1215)] = 54686, + [SMALL_STATE(1216)] = 54695, + [SMALL_STATE(1217)] = 54708, + [SMALL_STATE(1218)] = 54721, + [SMALL_STATE(1219)] = 54734, + [SMALL_STATE(1220)] = 54745, + [SMALL_STATE(1221)] = 54758, + [SMALL_STATE(1222)] = 54771, + [SMALL_STATE(1223)] = 54784, + [SMALL_STATE(1224)] = 54793, + [SMALL_STATE(1225)] = 54806, + [SMALL_STATE(1226)] = 54819, + [SMALL_STATE(1227)] = 54830, + [SMALL_STATE(1228)] = 54843, + [SMALL_STATE(1229)] = 54856, + [SMALL_STATE(1230)] = 54869, + [SMALL_STATE(1231)] = 54882, + [SMALL_STATE(1232)] = 54895, + [SMALL_STATE(1233)] = 54908, + [SMALL_STATE(1234)] = 54921, + [SMALL_STATE(1235)] = 54930, + [SMALL_STATE(1236)] = 54943, + [SMALL_STATE(1237)] = 54956, + [SMALL_STATE(1238)] = 54969, + [SMALL_STATE(1239)] = 54982, + [SMALL_STATE(1240)] = 54995, + [SMALL_STATE(1241)] = 55008, + [SMALL_STATE(1242)] = 55021, + [SMALL_STATE(1243)] = 55030, + [SMALL_STATE(1244)] = 55043, + [SMALL_STATE(1245)] = 55052, + [SMALL_STATE(1246)] = 55061, + [SMALL_STATE(1247)] = 55074, + [SMALL_STATE(1248)] = 55087, + [SMALL_STATE(1249)] = 55100, + [SMALL_STATE(1250)] = 55113, + [SMALL_STATE(1251)] = 55126, + [SMALL_STATE(1252)] = 55139, + [SMALL_STATE(1253)] = 55152, + [SMALL_STATE(1254)] = 55165, + [SMALL_STATE(1255)] = 55178, + [SMALL_STATE(1256)] = 55191, + [SMALL_STATE(1257)] = 55204, + [SMALL_STATE(1258)] = 55213, + [SMALL_STATE(1259)] = 55226, + [SMALL_STATE(1260)] = 55237, + [SMALL_STATE(1261)] = 55250, + [SMALL_STATE(1262)] = 55263, + [SMALL_STATE(1263)] = 55274, + [SMALL_STATE(1264)] = 55287, + [SMALL_STATE(1265)] = 55300, + [SMALL_STATE(1266)] = 55313, + [SMALL_STATE(1267)] = 55326, + [SMALL_STATE(1268)] = 55339, + [SMALL_STATE(1269)] = 55348, + [SMALL_STATE(1270)] = 55361, + [SMALL_STATE(1271)] = 55374, + [SMALL_STATE(1272)] = 55387, + [SMALL_STATE(1273)] = 55400, + [SMALL_STATE(1274)] = 55413, + [SMALL_STATE(1275)] = 55424, + [SMALL_STATE(1276)] = 55437, + [SMALL_STATE(1277)] = 55450, + [SMALL_STATE(1278)] = 55463, + [SMALL_STATE(1279)] = 55472, + [SMALL_STATE(1280)] = 55485, + [SMALL_STATE(1281)] = 55498, + [SMALL_STATE(1282)] = 55507, + [SMALL_STATE(1283)] = 55520, + [SMALL_STATE(1284)] = 55533, + [SMALL_STATE(1285)] = 55546, + [SMALL_STATE(1286)] = 55559, + [SMALL_STATE(1287)] = 55572, + [SMALL_STATE(1288)] = 55585, + [SMALL_STATE(1289)] = 55598, + [SMALL_STATE(1290)] = 55611, + [SMALL_STATE(1291)] = 55624, + [SMALL_STATE(1292)] = 55637, + [SMALL_STATE(1293)] = 55650, + [SMALL_STATE(1294)] = 55663, + [SMALL_STATE(1295)] = 55676, + [SMALL_STATE(1296)] = 55689, + [SMALL_STATE(1297)] = 55700, + [SMALL_STATE(1298)] = 55713, + [SMALL_STATE(1299)] = 55726, + [SMALL_STATE(1300)] = 55739, + [SMALL_STATE(1301)] = 55752, + [SMALL_STATE(1302)] = 55765, + [SMALL_STATE(1303)] = 55778, + [SMALL_STATE(1304)] = 55791, + [SMALL_STATE(1305)] = 55800, + [SMALL_STATE(1306)] = 55811, + [SMALL_STATE(1307)] = 55822, + [SMALL_STATE(1308)] = 55835, + [SMALL_STATE(1309)] = 55846, + [SMALL_STATE(1310)] = 55857, + [SMALL_STATE(1311)] = 55870, + [SMALL_STATE(1312)] = 55883, + [SMALL_STATE(1313)] = 55892, + [SMALL_STATE(1314)] = 55905, + [SMALL_STATE(1315)] = 55918, + [SMALL_STATE(1316)] = 55931, + [SMALL_STATE(1317)] = 55944, + [SMALL_STATE(1318)] = 55957, + [SMALL_STATE(1319)] = 55968, + [SMALL_STATE(1320)] = 55981, + [SMALL_STATE(1321)] = 55994, + [SMALL_STATE(1322)] = 56005, + [SMALL_STATE(1323)] = 56018, + [SMALL_STATE(1324)] = 56031, + [SMALL_STATE(1325)] = 56044, + [SMALL_STATE(1326)] = 56057, + [SMALL_STATE(1327)] = 56070, + [SMALL_STATE(1328)] = 56079, + [SMALL_STATE(1329)] = 56088, + [SMALL_STATE(1330)] = 56101, + [SMALL_STATE(1331)] = 56112, + [SMALL_STATE(1332)] = 56125, + [SMALL_STATE(1333)] = 56138, + [SMALL_STATE(1334)] = 56151, + [SMALL_STATE(1335)] = 56164, + [SMALL_STATE(1336)] = 56177, + [SMALL_STATE(1337)] = 56190, + [SMALL_STATE(1338)] = 56201, + [SMALL_STATE(1339)] = 56214, + [SMALL_STATE(1340)] = 56225, + [SMALL_STATE(1341)] = 56238, + [SMALL_STATE(1342)] = 56251, + [SMALL_STATE(1343)] = 56264, + [SMALL_STATE(1344)] = 56273, + [SMALL_STATE(1345)] = 56286, + [SMALL_STATE(1346)] = 56297, + [SMALL_STATE(1347)] = 56310, + [SMALL_STATE(1348)] = 56321, + [SMALL_STATE(1349)] = 56329, + [SMALL_STATE(1350)] = 56337, + [SMALL_STATE(1351)] = 56347, + [SMALL_STATE(1352)] = 56355, + [SMALL_STATE(1353)] = 56363, + [SMALL_STATE(1354)] = 56373, + [SMALL_STATE(1355)] = 56383, + [SMALL_STATE(1356)] = 56391, + [SMALL_STATE(1357)] = 56399, + [SMALL_STATE(1358)] = 56407, + [SMALL_STATE(1359)] = 56415, + [SMALL_STATE(1360)] = 56423, + [SMALL_STATE(1361)] = 56433, + [SMALL_STATE(1362)] = 56443, + [SMALL_STATE(1363)] = 56453, + [SMALL_STATE(1364)] = 56463, + [SMALL_STATE(1365)] = 56473, + [SMALL_STATE(1366)] = 56481, + [SMALL_STATE(1367)] = 56489, + [SMALL_STATE(1368)] = 56499, + [SMALL_STATE(1369)] = 56507, + [SMALL_STATE(1370)] = 56517, + [SMALL_STATE(1371)] = 56525, + [SMALL_STATE(1372)] = 56533, + [SMALL_STATE(1373)] = 56541, + [SMALL_STATE(1374)] = 56549, + [SMALL_STATE(1375)] = 56557, + [SMALL_STATE(1376)] = 56565, + [SMALL_STATE(1377)] = 56575, + [SMALL_STATE(1378)] = 56583, + [SMALL_STATE(1379)] = 56591, + [SMALL_STATE(1380)] = 56599, + [SMALL_STATE(1381)] = 56607, + [SMALL_STATE(1382)] = 56617, + [SMALL_STATE(1383)] = 56625, + [SMALL_STATE(1384)] = 56633, + [SMALL_STATE(1385)] = 56641, + [SMALL_STATE(1386)] = 56649, + [SMALL_STATE(1387)] = 56659, + [SMALL_STATE(1388)] = 56667, + [SMALL_STATE(1389)] = 56675, + [SMALL_STATE(1390)] = 56685, + [SMALL_STATE(1391)] = 56695, + [SMALL_STATE(1392)] = 56705, + [SMALL_STATE(1393)] = 56715, + [SMALL_STATE(1394)] = 56723, + [SMALL_STATE(1395)] = 56733, + [SMALL_STATE(1396)] = 56743, + [SMALL_STATE(1397)] = 56751, + [SMALL_STATE(1398)] = 56759, + [SMALL_STATE(1399)] = 56769, + [SMALL_STATE(1400)] = 56779, + [SMALL_STATE(1401)] = 56787, + [SMALL_STATE(1402)] = 56795, + [SMALL_STATE(1403)] = 56805, + [SMALL_STATE(1404)] = 56815, + [SMALL_STATE(1405)] = 56825, + [SMALL_STATE(1406)] = 56833, + [SMALL_STATE(1407)] = 56841, + [SMALL_STATE(1408)] = 56849, + [SMALL_STATE(1409)] = 56857, + [SMALL_STATE(1410)] = 56865, + [SMALL_STATE(1411)] = 56873, + [SMALL_STATE(1412)] = 56883, + [SMALL_STATE(1413)] = 56891, + [SMALL_STATE(1414)] = 56901, + [SMALL_STATE(1415)] = 56908, + [SMALL_STATE(1416)] = 56915, + [SMALL_STATE(1417)] = 56922, + [SMALL_STATE(1418)] = 56929, + [SMALL_STATE(1419)] = 56936, + [SMALL_STATE(1420)] = 56943, + [SMALL_STATE(1421)] = 56950, + [SMALL_STATE(1422)] = 56957, + [SMALL_STATE(1423)] = 56964, + [SMALL_STATE(1424)] = 56971, + [SMALL_STATE(1425)] = 56978, + [SMALL_STATE(1426)] = 56985, + [SMALL_STATE(1427)] = 56992, + [SMALL_STATE(1428)] = 56999, + [SMALL_STATE(1429)] = 57006, + [SMALL_STATE(1430)] = 57013, + [SMALL_STATE(1431)] = 57020, + [SMALL_STATE(1432)] = 57027, + [SMALL_STATE(1433)] = 57034, + [SMALL_STATE(1434)] = 57041, + [SMALL_STATE(1435)] = 57048, + [SMALL_STATE(1436)] = 57055, + [SMALL_STATE(1437)] = 57062, + [SMALL_STATE(1438)] = 57069, + [SMALL_STATE(1439)] = 57076, + [SMALL_STATE(1440)] = 57083, + [SMALL_STATE(1441)] = 57090, + [SMALL_STATE(1442)] = 57097, + [SMALL_STATE(1443)] = 57104, + [SMALL_STATE(1444)] = 57111, + [SMALL_STATE(1445)] = 57118, + [SMALL_STATE(1446)] = 57125, + [SMALL_STATE(1447)] = 57132, + [SMALL_STATE(1448)] = 57139, + [SMALL_STATE(1449)] = 57146, + [SMALL_STATE(1450)] = 57153, + [SMALL_STATE(1451)] = 57160, + [SMALL_STATE(1452)] = 57167, + [SMALL_STATE(1453)] = 57174, + [SMALL_STATE(1454)] = 57181, + [SMALL_STATE(1455)] = 57188, + [SMALL_STATE(1456)] = 57195, + [SMALL_STATE(1457)] = 57202, + [SMALL_STATE(1458)] = 57209, + [SMALL_STATE(1459)] = 57216, + [SMALL_STATE(1460)] = 57223, + [SMALL_STATE(1461)] = 57230, + [SMALL_STATE(1462)] = 57237, + [SMALL_STATE(1463)] = 57244, + [SMALL_STATE(1464)] = 57251, + [SMALL_STATE(1465)] = 57258, + [SMALL_STATE(1466)] = 57265, + [SMALL_STATE(1467)] = 57272, + [SMALL_STATE(1468)] = 57279, + [SMALL_STATE(1469)] = 57286, + [SMALL_STATE(1470)] = 57293, + [SMALL_STATE(1471)] = 57300, + [SMALL_STATE(1472)] = 57307, + [SMALL_STATE(1473)] = 57314, + [SMALL_STATE(1474)] = 57321, + [SMALL_STATE(1475)] = 57328, + [SMALL_STATE(1476)] = 57335, + [SMALL_STATE(1477)] = 57342, + [SMALL_STATE(1478)] = 57349, + [SMALL_STATE(1479)] = 57356, + [SMALL_STATE(1480)] = 57363, + [SMALL_STATE(1481)] = 57370, + [SMALL_STATE(1482)] = 57377, + [SMALL_STATE(1483)] = 57384, + [SMALL_STATE(1484)] = 57391, + [SMALL_STATE(1485)] = 57398, + [SMALL_STATE(1486)] = 57405, + [SMALL_STATE(1487)] = 57412, + [SMALL_STATE(1488)] = 57419, + [SMALL_STATE(1489)] = 57426, + [SMALL_STATE(1490)] = 57433, + [SMALL_STATE(1491)] = 57440, + [SMALL_STATE(1492)] = 57447, + [SMALL_STATE(1493)] = 57454, + [SMALL_STATE(1494)] = 57461, + [SMALL_STATE(1495)] = 57468, + [SMALL_STATE(1496)] = 57475, + [SMALL_STATE(1497)] = 57482, + [SMALL_STATE(1498)] = 57489, + [SMALL_STATE(1499)] = 57496, + [SMALL_STATE(1500)] = 57503, + [SMALL_STATE(1501)] = 57510, + [SMALL_STATE(1502)] = 57517, + [SMALL_STATE(1503)] = 57524, + [SMALL_STATE(1504)] = 57531, + [SMALL_STATE(1505)] = 57538, + [SMALL_STATE(1506)] = 57545, + [SMALL_STATE(1507)] = 57552, + [SMALL_STATE(1508)] = 57559, + [SMALL_STATE(1509)] = 57566, + [SMALL_STATE(1510)] = 57573, + [SMALL_STATE(1511)] = 57580, + [SMALL_STATE(1512)] = 57587, + [SMALL_STATE(1513)] = 57594, + [SMALL_STATE(1514)] = 57601, + [SMALL_STATE(1515)] = 57608, + [SMALL_STATE(1516)] = 57615, + [SMALL_STATE(1517)] = 57622, + [SMALL_STATE(1518)] = 57629, + [SMALL_STATE(1519)] = 57636, + [SMALL_STATE(1520)] = 57643, + [SMALL_STATE(1521)] = 57650, + [SMALL_STATE(1522)] = 57657, + [SMALL_STATE(1523)] = 57664, + [SMALL_STATE(1524)] = 57671, + [SMALL_STATE(1525)] = 57678, + [SMALL_STATE(1526)] = 57685, + [SMALL_STATE(1527)] = 57692, + [SMALL_STATE(1528)] = 57699, + [SMALL_STATE(1529)] = 57706, + [SMALL_STATE(1530)] = 57713, + [SMALL_STATE(1531)] = 57720, + [SMALL_STATE(1532)] = 57727, + [SMALL_STATE(1533)] = 57734, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -72657,1560 +72723,1561 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 0, 0, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1, 0, 0), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), - [121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(367), - [124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1177), - [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1020), - [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(160), - [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(399), - [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(87), - [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(414), - [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(191), - [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(231), - [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(177), - [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1410), - [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1408), - [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1406), - [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(437), - [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(267), - [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(602), - [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(447), - [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1519), - [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(316), - [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(71), - [181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(685), - [184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(162), - [187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(166), - [190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(474), - [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1518), - [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1517), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1516), - [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(277), - [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(297), - [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1515), - [211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(422), - [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(459), - [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(889), - [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(182), - [223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(795), - [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(795), - [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(132), - [232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(910), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(390), - [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(264), - [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(606), - [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(394), - [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1502), - [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(310), - [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(70), - [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1523), - [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1505), - [266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1, 0, 0), + [119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(344), + [122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1134), + [125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1023), + [128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(162), + [131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(410), + [134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(90), + [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(427), + [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(205), + [143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(240), + [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(182), + [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1409), + [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1407), + [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1406), + [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(423), + [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(261), + [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(607), + [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(426), + [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1504), + [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(311), + [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(70), + [179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(688), + [182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(159), + [185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(172), + [188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(456), + [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1525), + [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1519), + [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1518), + [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(270), + [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(315), + [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1507), + [209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(434), + [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(433), + [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(886), + [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(178), + [221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(801), + [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(801), + [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(132), + [230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), + [232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(937), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(475), + [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(259), + [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(606), + [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(468), + [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1521), + [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(307), + [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(71), + [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1520), + [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1517), + [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), [276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), - [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), [280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), REDUCE(sym_primary_expression, 1, 0, 1), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), [289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), [303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), [307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), [559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_list_splat_pattern, 2, 0, 8), [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), [564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 8), [566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 8), - [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), - [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), [650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 1, 0, 0), - [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 3, 0, 16), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 3, 0, 16), - [700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 3, 0, 16), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, 0, 7), - [706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 2, 0, 7), - [708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, 0, 7), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, 0, 7), + [688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 2, 0, 7), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 3, 0, 16), + [694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 3, 0, 16), + [696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, 0, 7), + [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 3, 0, 16), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 3, 0, 50), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 3, 0, 50), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1, 0, 0), - [738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, 0, 24), - [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 126), - [756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 126), - [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1, 0, 0), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1, 0, 0), + [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, 0, 24), + [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, 0, 144), + [758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 7, 0, 144), + [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), [770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 3, 0, 16), - [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 125), - [782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 125), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2, 0, 7), - [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 101), - [812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 5, 0, 101), - [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, 0, 144), - [820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 7, 0, 144), - [822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 40), - [824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 40), - [826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, 0, 96), - [828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, 0, 96), + [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2, 0, 7), + [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1, 0, 0), + [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 125), + [804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 125), + [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 126), + [810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 126), + [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 101), + [820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 5, 0, 101), + [822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 69), + [824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 69), + [826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 69), + [828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 69), [830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 96), [832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 96), - [834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 69), - [836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 69), - [838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 69), - [840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 69), - [842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 81), - [844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 81), - [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 56), - [854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 56), - [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), - [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), - [918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), - [920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(381), - [923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1, 0, 0), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), - [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), - [931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(393), - [934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 77), - [936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 77), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 76), - [942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 76), + [834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, 0, 96), + [836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, 0, 96), + [838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 40), + [840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 40), + [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 56), + [856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 56), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 81), + [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 81), + [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 76), + [920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 76), + [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), + [926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), + [928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(389), + [931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(384), + [938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 77), + [940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 77), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), [944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 105), [946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 105), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), + [948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1, 0, 0), + [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), [952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 54), - [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, 0, 70), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(383), - [963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(416), - [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 0), - [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, 0, 28), - [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 4, 0, 0), - [976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 4, 0, 0), - [978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 3, 0, 0), - [980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 3, 0, 0), - [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, 0, 98), - [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 10), - [990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, 0, 29), - [992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 103), - [994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 103), - [996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 103), SHIFT_REPEAT(432), - [999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2, 0, 0), - [1001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2, 0, 0), - [1003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 68), - [1005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1, 0, 0), - [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1, 0, 0), - [1009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 70), - [1011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [1013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, 0, 0), - [1017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 103), SHIFT_REPEAT(484), - [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 3, 0, 56), - [1022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 3, 0, 56), - [1024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cases_repeat1, 2, 0, 0), - [1026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cases_repeat1, 2, 0, 0), - [1028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cases_repeat1, 2, 0, 0), SHIFT_REPEAT(852), - [1031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), - [1033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 9), - [1036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), - [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [1040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 9), - [1042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 9), - [1044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 6, 0, 159), - [1046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 6, 0, 159), - [1048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cases, 1, 0, 0), - [1050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cases, 1, 0, 0), - [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [1054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cases_repeat1, 2, 0, 0), SHIFT_REPEAT(851), - [1057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 81), - [1059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 81), - [1061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 133), - [1063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 133), - [1065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 4, 0, 133), - [1067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 4, 0, 133), - [1069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, 0, 150), - [1071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, 0, 150), - [1073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), - [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [1078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), - [1080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), - [1082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 5, 0, 150), - [1084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 5, 0, 150), - [1086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, 0, 159), - [1088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, 0, 159), - [1090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7, 0, 164), - [1092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7, 0, 164), - [1094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 7, 0, 164), - [1096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 7, 0, 164), - [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 81), - [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 81), - [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 56), - [1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 56), - [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, 0, 77), - [1114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, 0, 77), - [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 55), - [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 55), - [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 146), - [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 146), - [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, 0, 54), - [1132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, 0, 54), - [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 80), - [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 80), - [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2, 0, 0), - [1140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), REDUCE(sym_list, 2, 0, 0), - [1143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2, 0, 0), - [1145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), - [1147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2, 0, 0), - [1149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 132), - [1151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 132), - [1153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 128), - [1155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 128), - [1157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 74), - [1159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 74), - [1161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 108), - [1163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 108), - [1165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2, 0, 0), - [1167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), REDUCE(sym_tuple, 2, 0, 0), - [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2, 0, 0), - [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), - [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2, 0, 0), - [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, 0, 81), - [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, 0, 81), - [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 5, 0, 152), - [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 5, 0, 152), - [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 5, 0, 153), - [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 5, 0, 153), - [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, 0, 56), - [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, 0, 56), - [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 4, 0, 137), - [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 4, 0, 137), - [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 6, 0, 160), - [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 6, 0, 160), - [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 4, 0, 81), - [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 4, 0, 81), - [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 91), - [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 91), - [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 79), - [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 79), - [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 7, 0, 81), - [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 7, 0, 81), - [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 109), - [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 109), - [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 3, 0, 56), - [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 3, 0, 56), - [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 163), - [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 163), - [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 162), - [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 162), - [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 4, 0, 57), - [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 4, 0, 57), - [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 157), - [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 157), - [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 156), - [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 156), - [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 82), - [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 82), - [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 158), - [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 158), - [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 131), - [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 131), - [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 130), - [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 130), - [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 129), - [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 129), - [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 78), - [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 78), - [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 127), - [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 127), - [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 140), - [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 140), - [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 141), - [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 141), - [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 155), - [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 155), + [954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), + [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(361), + [961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(435), + [964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, 0, 70), + [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, 0, 29), + [970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2, 0, 0), + [972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2, 0, 0), + [974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 4, 0, 0), + [976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 4, 0, 0), + [978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 70), + [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, 0, 28), + [982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 68), + [984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, 0, 0), + [986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 103), + [988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 103), + [990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 103), SHIFT_REPEAT(447), + [993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 103), SHIFT_REPEAT(485), + [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [1000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 3, 0, 0), + [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 3, 0, 0), + [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [1006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [1008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [1010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 0), + [1012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1, 0, 0), + [1014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1, 0, 0), + [1016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 10), + [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, 0, 98), + [1022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 4, 0, 133), + [1024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 4, 0, 133), + [1026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, 0, 159), + [1028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, 0, 159), + [1030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 6, 0, 159), + [1032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 6, 0, 159), + [1034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 3, 0, 56), + [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 3, 0, 56), + [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7, 0, 164), + [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7, 0, 164), + [1042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 7, 0, 164), + [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 7, 0, 164), + [1046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cases, 1, 0, 0), + [1048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cases, 1, 0, 0), + [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [1052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), + [1054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), + [1057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [1061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), + [1063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), + [1065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cases_repeat1, 2, 0, 0), + [1067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cases_repeat1, 2, 0, 0), + [1069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cases_repeat1, 2, 0, 0), SHIFT_REPEAT(853), + [1072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, 0, 150), + [1074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, 0, 150), + [1076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 5, 0, 150), + [1078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 5, 0, 150), + [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [1082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [1084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 133), + [1086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 133), + [1088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 81), + [1090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 81), + [1092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 9), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [1097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 9), + [1099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 9), + [1101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cases_repeat1, 2, 0, 0), SHIFT_REPEAT(851), + [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 55), + [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 55), + [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, 0, 77), + [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, 0, 77), + [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2, 0, 0), + [1116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), REDUCE(sym_list, 2, 0, 0), + [1119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2, 0, 0), + [1121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), + [1123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2, 0, 0), + [1125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 108), + [1127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 108), + [1129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2, 0, 0), + [1131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), REDUCE(sym_tuple, 2, 0, 0), + [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2, 0, 0), + [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 146), + [1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 146), + [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 81), + [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 81), + [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 56), + [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 56), + [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 80), + [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 80), + [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 74), + [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 74), + [1166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, 0, 54), + [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, 0, 54), + [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 128), + [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 128), + [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 132), + [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 132), + [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, 0, 81), + [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, 0, 81), + [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, 0, 56), + [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, 0, 56), + [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 5, 0, 152), + [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 5, 0, 152), + [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 5, 0, 153), + [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 5, 0, 153), + [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 4, 0, 137), + [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 4, 0, 137), + [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 6, 0, 160), + [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 6, 0, 160), + [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, 0, 60), + [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, 0, 60), + [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 91), + [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 91), + [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 149), + [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 149), + [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 148), + [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 148), + [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 147), + [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 147), + [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 145), + [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 145), + [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 142), + [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 142), + [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 141), + [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 141), + [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 75), + [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 75), + [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 140), + [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 140), + [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 78), + [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 78), + [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 7, 0, 81), + [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 7, 0, 81), + [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 79), + [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 79), + [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 4, 0, 81), + [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 4, 0, 81), + [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 56), + [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 56), + [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 82), + [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 82), + [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 3, 0, 56), + [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 3, 0, 56), + [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 131), + [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 131), + [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 130), + [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 130), + [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 129), + [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 129), + [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 154), [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 154), - [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 154), - [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 121), - [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 121), - [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 120), - [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 120), - [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, 0, 59), - [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, 0, 59), - [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, 0, 60), - [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, 0, 60), - [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 149), - [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 149), - [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 107), - [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 107), - [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 119), - [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 119), - [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 118), - [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 118), - [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 117), - [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 117), - [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 75), - [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 75), - [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 148), - [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 148), - [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 142), - [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 142), - [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 56), - [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 56), - [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 147), - [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 147), - [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 87), - [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 87), - [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 145), - [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 145), - [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 89), - [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 89), - [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 90), - [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 90), - [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, 0, 106), - [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, 0, 106), - [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 104), - [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 104), - [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 102), - [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 102), - [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, 0, 19), - [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, 0, 19), - [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 64), - [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 64), - [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, 0, 24), - [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 3, 0, 50), - [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [1392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(923), - [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 20), - [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 20), - [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 2), - [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 2), - [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 93), - [1409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 93), - [1411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5, 0, 61), - [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5, 0, 61), - [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_expression, 4, 0, 51), - [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_expression, 4, 0, 51), - [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 61), - [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 61), - [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), - [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), - [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 31), - [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 31), - [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set, 3, 0, 25), - [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set, 3, 0, 25), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 127), + [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 127), + [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 155), + [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 155), + [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 156), + [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 156), + [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 157), + [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 157), + [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 163), + [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 163), + [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 121), + [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 121), + [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 120), + [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 120), + [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 119), + [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 119), + [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 162), + [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 162), + [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 107), + [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 107), + [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 158), + [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 158), + [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 118), + [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 118), + [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 117), + [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 117), + [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, 0, 106), + [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, 0, 106), + [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 109), + [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 109), + [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 87), + [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 87), + [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 64), + [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 64), + [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 89), + [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 89), + [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 90), + [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 90), + [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 104), + [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 104), + [1366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 102), + [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 102), + [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, 0, 19), + [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, 0, 19), + [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, 0, 59), + [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, 0, 59), + [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 4, 0, 57), + [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 4, 0, 57), + [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, 0, 24), + [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 3, 0, 50), + [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [1394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(931), + [1397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [1399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [1401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 20), + [1403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 20), + [1405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 2), + [1407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 2), + [1409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 17), + [1411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 17), + [1413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, 0, 61), + [1415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, 0, 61), + [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 61), + [1419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 61), + [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 93), + [1423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 93), + [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [1429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [1431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_separator, 1, 0, 0), - [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 61), - [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 61), - [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 93), - [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 93), + [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2, 0, 0), [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2, 0, 0), - [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 67), - [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 67), - [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, 0, 61), - [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, 0, 61), - [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3, 0, 31), - [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3, 0, 31), - [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3, 0, 0), - [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3, 0, 0), - [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 17), - [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 17), - [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, 0, 25), - [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, 0, 25), - [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, 0, 51), - [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, 0, 51), - [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, 0, 31), - [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, 0, 31), - [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 67), - [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 67), - [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_comprehension, 4, 0, 51), - [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_comprehension, 4, 0, 51), - [1551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 31), - [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 31), - [1555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), - [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), - [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 26), - [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 26), - [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, 0, 51), - [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, 0, 51), - [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3, 0, 25), - [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3, 0, 25), - [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, 0, 13), - [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, 0, 13), - [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 41), - [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 41), - [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, 0, 39), - [1581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, 0, 39), - [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, 0, 71), - [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, 0, 71), - [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, 0, 72), - [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, 0, 72), - [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), - [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [1603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(936), - [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [1610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(910), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [1687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open_sequence_match_pattern, 3, 0, 0), - [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_sequence_match_pattern, 3, 0, 0), - [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), - [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open_sequence_match_pattern, 2, 0, 0), - [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_sequence_match_pattern, 2, 0, 0), - [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, 0, 18), - [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, 0, 18), - [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), - [1733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), - [1735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(722), - [1738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(1514), - [1741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(722), - [1744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(668), - [1747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(690), - [1750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(1422), - [1753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(690), - [1756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(679), - [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 36), - [1761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 36), SHIFT_REPEAT(608), - [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 33), - [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, 0, 25), - [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 25), - [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 31), - [1772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(686), - [1775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(1449), - [1778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(686), - [1781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(672), - [1784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 34), - [1786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(707), - [1789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(1433), - [1792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(707), - [1795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(669), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [1800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, 0, 16), - [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_separator, 1, 0, 0), + [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 61), + [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 61), + [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 26), + [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 26), + [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3, 0, 25), + [1503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3, 0, 25), + [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, 0, 25), + [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, 0, 25), + [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3, 0, 0), + [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3, 0, 0), + [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3, 0, 31), + [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3, 0, 31), + [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set, 3, 0, 25), + [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set, 3, 0, 25), + [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), + [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, 0, 51), + [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, 0, 51), + [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_comprehension, 4, 0, 51), + [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_comprehension, 4, 0, 51), + [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, 0, 31), + [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, 0, 31), + [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, 0, 51), + [1539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, 0, 51), + [1541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 67), + [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 67), + [1545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5, 0, 61), + [1547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5, 0, 61), + [1549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 67), + [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 67), + [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 31), + [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 31), + [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 31), + [1559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 31), + [1561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 93), + [1563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 93), + [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), + [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_expression, 4, 0, 51), + [1571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_expression, 4, 0, 51), + [1573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, 0, 39), + [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, 0, 39), + [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, 0, 72), + [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, 0, 72), + [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, 0, 71), + [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, 0, 71), + [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 41), + [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 41), + [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, 0, 13), + [1591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, 0, 13), + [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [1597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(925), + [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [1612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(937), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [1689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open_sequence_match_pattern, 3, 0, 0), + [1691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_sequence_match_pattern, 3, 0, 0), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [1707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open_sequence_match_pattern, 2, 0, 0), + [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_sequence_match_pattern, 2, 0, 0), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [1729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), + [1731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(728), + [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), + [1736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(1425), + [1739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(728), + [1742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(672), + [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, 0, 18), + [1747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, 0, 18), + [1749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(716), + [1752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(1516), + [1755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(716), + [1758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(671), + [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 36), + [1763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 36), SHIFT_REPEAT(609), + [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 31), + [1768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(713), + [1771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(1454), + [1774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(713), + [1777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(678), + [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, 0, 25), + [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 34), + [1784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 33), + [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 25), + [1788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(682), + [1791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(1435), + [1794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(682), + [1797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(669), + [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, 0, 16), + [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3, 0, 0), + [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2, 0, 0), - [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, 0, 10), - [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, 0, 10), - [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await, 2, 0, 0), - [1854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await, 2, 0, 0), - [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_value_pattern_repeat1, 2, 0, 0), - [1858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_value_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1512), - [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 35), - [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 35), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [1883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_item, 1, -1, 12), SHIFT(178), - [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_class_name, 2, 0, 0), - [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_value_pattern, 2, 0, 0), - [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1, 0, 7), - [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 0), - [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, 0, 39), - [1918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, 0, 39), - [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 27), - [1922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 27), - [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, 0, 66), - [1926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 4, 0, 66), - [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [1930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 21), SHIFT_REPEAT(181), - [1933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 21), SHIFT_REPEAT(990), - [1936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 21), SHIFT_REPEAT(990), - [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 21), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3, 0, 0), + [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await, 2, 0, 0), + [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await, 2, 0, 0), + [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, 0, 10), + [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, 0, 10), + [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_value_pattern_repeat1, 2, 0, 0), + [1860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_value_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1514), + [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 1, 0, 0), + [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, 0, 66), + [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 4, 0, 66), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 35), + [1887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 35), + [1889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 21), SHIFT_REPEAT(177), + [1892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 21), SHIFT_REPEAT(994), + [1895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 21), SHIFT_REPEAT(994), + [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 21), + [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [1902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_item, 1, -1, 12), SHIFT(184), + [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 27), + [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 27), + [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 0), + [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 0), + [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, 0, 39), + [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, 0, 39), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1, 0, 7), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2, 0, 0), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, 0, 32), [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 3, 0, 32), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2, 0, 0), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_class_name, 1, 0, 0), - [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_capture_pattern, 1, 0, 0), - [1959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 0), - [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 1, 0, 0), - [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [1965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, 0, 31), - [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2, 0, 0), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 1, 0, 83), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3, 0, 0), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 2, 0, 110), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2, 0, 14), - [1997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), - [1999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(401), - [2002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1468), - [2005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(604), - [2008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_or_pattern_repeat1, 2, 0, 0), - [2010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_or_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(868), - [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_or_pattern, 3, 0, 0), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1, 0, 0), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_within_for_in_clause, 1, 0, 0), - [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_or_pattern, 4, 0, 0), - [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__f_expression, 1, 0, 0), - [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2, 0, 0), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 3, 0, 0), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 4, 0, 139), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2, 0, 0), - [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 6, 0, 0), - [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 6, 0, 139), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 2, 0, 0), - [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 7, 0, 0), - [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 7, 0, 139), - [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 8, 0, 139), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 9, 0, 139), - [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 5, 0, 0), - [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 2, 0, 0), - [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 5, 0, 0), - [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 5, 0, 139), - [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, 0, 101), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [2085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_content, 1, 0, 0), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1, 0, 0), - [2093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 4, 0, 0), - [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, 0, 16), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_class_name, 1, 0, 0), + [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_capture_pattern, 1, 0, 0), + [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_class_name, 2, 0, 0), + [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_value_pattern, 2, 0, 0), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [1973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 1, 0, 83), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2, 0, 14), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2, 0, 0), + [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3, 0, 0), + [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, 0, 31), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 2, 0, 110), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), + [2001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(405), + [2004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1475), + [2007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(600), + [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__f_expression, 1, 0, 0), + [2012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_or_pattern, 4, 0, 0), + [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_or_pattern, 3, 0, 0), + [2018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_within_for_in_clause, 1, 0, 0), + [2020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1, 0, 0), + [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_or_pattern_repeat1, 2, 0, 0), + [2026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_or_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(868), + [2029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2, 0, 0), + [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 2, 0, 0), + [2033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, 0, 16), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [2037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, 0, 36), + [2039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, 0, 36), SHIFT_REPEAT(256), + [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 7, 0, 139), + [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 3, 0, 0), + [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 3, 0, 135), + [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 8, 0, 139), + [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [2060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2, 0, 0), + [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [2068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 9, 0, 139), + [2070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 3, 0, 139), + [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 144), + [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [2080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 6, 0, 139), + [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), + [2084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(308), + [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 4, 0, 0), + [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 2, 0, 0), + [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 7, 0, 0), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 3, 0, 0), + [2097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, 0, 101), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), [2101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 4, 0, 151), - [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 4, 0, 0), - [2105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), - [2107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(299), - [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 144), - [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [2116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 125), - [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 3, 0, 139), - [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [2124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 3, 0, 135), - [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 126), - [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2, 0, 0), - [2132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 3, 0, 0), - [2134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), - [2136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1010), - [2139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1010), - [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), - [2144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_group_pattern, 3, 0, 134), - [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_or_pattern, 1, 0, 0), - [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, 0, 36), - [2152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, 0, 36), SHIFT_REPEAT(255), - [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 4, 0, 66), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [2169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2, 0, 11), - [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__right_hand_side, 1, 0, 0), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 1, -1, 12), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [2205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [2217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2, 0, 0), - [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 31), - [2221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 3, 0, 32), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 62), - [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 4, 0, 15), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, 0, 10), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2, 0, 0), - [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 43), - [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 43), - [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [2257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 10), - [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, 0, 122), - [2261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), - [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1, 0, 0), - [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 6, 0, 43), - [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 6, 0, 43), - [2269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), - [2271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(422), - [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 98), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [2278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 43), - [2280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 43), - [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 95), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_bound, 2, 0, 112), - [2288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_open_sequence_match_pattern_repeat1, 2, 0, 0), - [2290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_open_sequence_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(861), - [2293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, 0, 68), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chevron, 2, 0, 0), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [2303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, 0, 43), - [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, 0, 43), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, 0, 35), - [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_as_pattern, 3, 0, 138), - [2315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_value_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1457), - [2318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, 0, 4), - [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, 0, 4), - [2322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, 0, 3), - [2324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, 0, 3), - [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 1, 0, 6), - [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 3, 0, 22), - [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, 0, 6), - [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_star_pattern, 2, 0, 11), - [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_param_default, 2, 0, 113), - [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 4, 0, 63), - [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 94), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, 0, 30), - [2368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1, 0, 0), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 5, 0, 88), - [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, 0, 16), - [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [2388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2, 0, 0), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 31), - [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 36), - [2396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 36), SHIFT_REPEAT(237), - [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5, 0, 143), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, 0, 124), - [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, 0, 123), - [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4, 0, 53), - [2417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, 0, 36), SHIFT_REPEAT(253), - [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 27), - [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 35), - [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 6), - [2426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), - [2428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(184), - [2431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(1129), - [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3, 0, 0), - [2444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(446), - [2447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 52), SHIFT_REPEAT(483), - [2450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 52), - [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 0), - [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 49), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 2, 0, 84), - [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 0), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 3, 0, 0), - [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 3, 0, 0), - [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), - [2520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(375), - [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_guard, 2, 0, 136), - [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 1, 0, 7), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 2, 0, 0), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [2543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 44), SHIFT_REPEAT(1322), - [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 44), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevartuple_parameter, 2, 0, 23), - [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 23), - [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paramspec_parameter, 2, 0, 23), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, 0, 0), - [2562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1494), - [2565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), - [2567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_prefix, 1, 0, 0), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [2581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, 0, 65), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3, 0, 0), - [2587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 5, 0, 15), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 29), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 28), - [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, 0, 16), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [2609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), - [2611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(1205), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 22), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 2, 0, 0), - [2632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(147), - [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [2639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1, 0, 0), - [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 3, -1, 58), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 37), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [2671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat2, 2, 0, 0), - [2673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat2, 2, 0, 0), SHIFT_REPEAT(1391), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 1, 0, 0), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, 0, 45), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [2748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_mapping_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(906), - [2751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_mapping_pattern_repeat1, 2, 0, 0), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [2755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [2761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 115), - [2763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 36), SHIFT_REPEAT(269), - [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 36), - [2768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(904), - [2771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 116), SHIFT_REPEAT(1030), - [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 116), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat1, 2, 0, 0), - [2782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(864), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [2811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 44), SHIFT_REPEAT(1227), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [2816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 97), SHIFT_REPEAT(254), - [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 97), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_content, 1, 0, 0), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1, 0, 0), + [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 4, 0, 0), + [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 5, 0, 139), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_group_pattern, 3, 0, 134), + [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 4, 0, 139), + [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_or_pattern, 1, 0, 0), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2, 0, 0), + [2133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), + [2135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1005), + [2138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1005), + [2141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), + [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 5, 0, 0), + [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 126), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [2149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 5, 0, 0), + [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 125), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 6, 0, 0), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [2177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), + [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 31), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, 0, 10), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2, 0, 0), + [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 3, 0, 32), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 4, 0, 66), + [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2, 0, 11), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__right_hand_side, 1, 0, 0), + [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 62), + [2217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 1, -1, 12), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 4, 0, 15), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [2245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1, 0, 0), + [2247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, 0, 3), + [2249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, 0, 3), + [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_open_sequence_match_pattern_repeat1, 2, 0, 0), + [2253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_open_sequence_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(861), + [2256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2, 0, 0), + [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [2260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 43), + [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 43), + [2264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_as_pattern, 3, 0, 138), + [2266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, 0, 43), + [2268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, 0, 43), + [2270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 43), + [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 43), + [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, 0, 68), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chevron, 2, 0, 0), + [2280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 98), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [2284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 10), + [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, 0, 35), + [2288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [2292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 6, 0, 43), + [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 6, 0, 43), + [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, 0, 122), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [2300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_value_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1464), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 95), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_bound, 2, 0, 112), + [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 1, 0, 6), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), + [2321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(434), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, 0, 4), + [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, 0, 4), + [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5, 0, 143), + [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 3, 0, 22), + [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 5, 0, 88), + [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 4, 0, 63), + [2356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, 0, 36), SHIFT_REPEAT(262), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_param_default, 2, 0, 113), + [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 27), + [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 35), + [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 31), + [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 94), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, 0, 123), + [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, 0, 124), + [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 6), + [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4, 0, 53), + [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, 0, 30), + [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 36), + [2403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 36), SHIFT_REPEAT(234), + [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_star_pattern, 2, 0, 11), + [2408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), + [2410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(174), + [2413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(1123), + [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, 0, 16), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, 0, 6), + [2426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2, 0, 0), + [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [2434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1, 0, 0), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 29), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, 0, 0), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 1, 0, 7), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_prefix, 1, 0, 0), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 49), + [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 0), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_guard, 2, 0, 136), + [2484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(479), + [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3, 0, 0), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [2493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 52), SHIFT_REPEAT(484), + [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 52), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 3, 0, 0), + [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 0), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 3, 0, 0), + [2528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), + [2530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(383), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paramspec_parameter, 2, 0, 23), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [2541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 44), SHIFT_REPEAT(1326), + [2544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 44), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 23), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [2560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1497), + [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), + [2565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, 0, 65), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [2579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3, 0, 0), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 28), + [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, 0, 16), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [2593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), + [2595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(1196), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 22), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevartuple_parameter, 2, 0, 23), + [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 2, 0, 84), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 5, 0, 15), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 2, 0, 0), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 2, 0, 0), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [2634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(147), + [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 37), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [2661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 44), SHIFT_REPEAT(1227), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1, 0, 0), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat2, 2, 0, 0), + [2676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat2, 2, 0, 0), SHIFT_REPEAT(1394), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [2685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 1, 0, 0), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, 0, 45), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 115), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [2755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_mapping_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(906), + [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_mapping_pattern_repeat1, 2, 0, 0), + [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [2766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 116), SHIFT_REPEAT(1039), + [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 116), + [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 3, -1, 58), + [2773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 36), SHIFT_REPEAT(281), + [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 36), + [2778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(903), + [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [2785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 97), SHIFT_REPEAT(253), + [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 97), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat1, 2, 0, 0), + [2814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(864), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2, 0, 0), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [2833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 36), - [2835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 36), SHIFT_REPEAT(219), - [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 36), + [2825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 36), SHIFT_REPEAT(226), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 2, 0, 15), - [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [2846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(902), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [2844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(901), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 73), [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 73), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [2897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relative_import, 1, 0, 0), - [2899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [2901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_maybe_star_pattern, 1, 0, 0), - [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_patterns, 1, 0, 0), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_separator, 1, 0, 0), - [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 86), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [2923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [2931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), - [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_double_star_pattern, 2, 0, 11), - [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_key_value_pattern, 3, 0, 62), - [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 2, 0, 85), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [2947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_positional_pattern, 1, 0, 0), - [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, 0, 5), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [2957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, 0, 92), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 67), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), - [2977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 6, 0, 99), - [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 6, 0, 100), - [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_keyword_pattern, 3, 0, 161), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 31), - [2989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 86), - [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 3, 0, 114), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paramspec_parameter, 3, 0, 111), - [3001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevartuple_parameter, 3, 0, 111), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [3009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 48), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 47), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [2885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 86), + [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_separator, 1, 0, 0), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [2907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relative_import, 1, 0, 0), + [2909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [2911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_maybe_star_pattern, 1, 0, 0), + [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_patterns, 1, 0, 0), + [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 31), + [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 47), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_double_star_pattern, 2, 0, 11), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [2933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_positional_pattern, 1, 0, 0), + [2939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, 0, 5), + [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), + [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_key_value_pattern, 3, 0, 62), + [2945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 2, 0, 85), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, 0, 92), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [2971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 67), + [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), + [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_keyword_pattern, 3, 0, 161), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 6, 0, 99), + [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 6, 0, 100), + [2985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [2989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevartuple_parameter, 3, 0, 111), + [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 86), + [2993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 3, 0, 114), + [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paramspec_parameter, 3, 0, 111), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 48), [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard_import, 1, 0, 0), [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 4, 0, 46), - [3019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1, 0, 0), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [3021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1, 0, 0), [3023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1, 0, 0), [3025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 38), [3027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pass_statement, 1, 0, 0), [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, 0, 39), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [3033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1, 0, 0), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [3067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 0), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [3109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 0), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_import, 2, 0, 23), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [3175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 0), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [3201] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1, 0, 0), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [3061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 0), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [3121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 0), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_import, 2, 0, 23), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [3179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 0), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [3203] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), }; enum ts_external_scanner_symbol_identifiers { From 9c913902c5b7b8f6565e800e5c33da8eddbdc758 Mon Sep 17 00:00:00 2001 From: Taus Date: Tue, 22 Oct 2024 15:39:29 +0000 Subject: [PATCH 4/7] Python: Allow `except*` to be written as `except *` Turns out, `except*` is actually not a token on its own according to the Python grammar. This means it's legal to write `except *foo: ...`, which we previously would consider a syntax error. To fix it, we simply break up the `except*` into two separate tokens. --- .../parser/exception_groups_new.expected | 22 ++++++++++++++++++- .../tests/parser/exception_groups_new.py | 5 +++++ python/extractor/tsg-python/tsp/grammar.js | 3 ++- 3 files changed, 28 insertions(+), 2 deletions(-) diff --git a/python/extractor/tests/parser/exception_groups_new.expected b/python/extractor/tests/parser/exception_groups_new.expected index 1d2de92755f..a70bf1b2485 100644 --- a/python/extractor/tests/parser/exception_groups_new.expected +++ b/python/extractor/tests/parser/exception_groups_new.expected @@ -1,4 +1,4 @@ -Module: [1, 0] - [22, 0] +Module: [1, 0] - [27, 0] body: [ Try: [1, 0] - [1, 4] body: [ @@ -133,4 +133,24 @@ Module: [1, 0] - [22, 0] variable: Variable('v', None) ctx: Load ] + Try: [23, 0] - [23, 4] + body: [ + Pass: [24, 4] - [24, 8] + ] + orelse: [] + handlers: [ + ExceptGroupStmt: [25, 0] - [26, 8] + type: + Name: [25, 8] - [25, 11] + variable: Variable('foo', None) + ctx: Load + name: + Name: [25, 15] - [25, 16] + variable: Variable('e', None) + ctx: Store + body: [ + Pass: [26, 4] - [26, 8] + ] + ] + finalbody: [] ] diff --git a/python/extractor/tests/parser/exception_groups_new.py b/python/extractor/tests/parser/exception_groups_new.py index f24e3b00f4e..01fe58b9a98 100644 --- a/python/extractor/tests/parser/exception_groups_new.py +++ b/python/extractor/tests/parser/exception_groups_new.py @@ -19,3 +19,8 @@ else: finally: u v + +try: + pass +except *foo as e: + pass diff --git a/python/extractor/tsg-python/tsp/grammar.js b/python/extractor/tsg-python/tsp/grammar.js index 256364f4364..7016eea5b18 100644 --- a/python/extractor/tsg-python/tsp/grammar.js +++ b/python/extractor/tsg-python/tsp/grammar.js @@ -309,7 +309,8 @@ module.exports = grammar({ ), except_group_clause: $ => seq( - 'except*', + 'except', + '*', seq( field('type', $.expression), optional(seq( From 89ea4b8200b07d3552dc5177102d61b8be7acba6 Mon Sep 17 00:00:00 2001 From: Taus Date: Tue, 22 Oct 2024 15:39:41 +0000 Subject: [PATCH 5/7] Python: Regenerate parser files --- .../extractor/tsg-python/tsp/src/grammar.json | 6 +- .../tsg-python/tsp/src/node-types.json | 4 - python/extractor/tsg-python/tsp/src/parser.c | 102399 +++++++-------- 3 files changed, 49973 insertions(+), 52436 deletions(-) diff --git a/python/extractor/tsg-python/tsp/src/grammar.json b/python/extractor/tsg-python/tsp/src/grammar.json index 0573a840b89..af48f4a5f0f 100644 --- a/python/extractor/tsg-python/tsp/src/grammar.json +++ b/python/extractor/tsg-python/tsp/src/grammar.json @@ -1169,7 +1169,11 @@ "members": [ { "type": "STRING", - "value": "except*" + "value": "except" + }, + { + "type": "STRING", + "value": "*" }, { "type": "SEQ", diff --git a/python/extractor/tsg-python/tsp/src/node-types.json b/python/extractor/tsg-python/tsp/src/node-types.json index bc56c0a62d0..2cf09f1eb92 100644 --- a/python/extractor/tsg-python/tsp/src/node-types.json +++ b/python/extractor/tsg-python/tsp/src/node-types.json @@ -3964,10 +3964,6 @@ "type": "except", "named": false }, - { - "type": "except*", - "named": false - }, { "type": "exec", "named": false diff --git a/python/extractor/tsg-python/tsp/src/parser.c b/python/extractor/tsg-python/tsp/src/parser.c index 7ef0bfdc959..400172dd86f 100644 --- a/python/extractor/tsg-python/tsp/src/parser.c +++ b/python/extractor/tsg-python/tsp/src/parser.c @@ -5,15 +5,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1534 -#define LARGE_STATE_COUNT 155 -#define SYMBOL_COUNT 283 +#define STATE_COUNT 1498 +#define LARGE_STATE_COUNT 143 +#define SYMBOL_COUNT 282 #define ALIAS_COUNT 3 -#define TOKEN_COUNT 108 +#define TOKEN_COUNT 107 #define EXTERNAL_TOKEN_COUNT 6 #define FIELD_COUNT 54 #define MAX_ALIAS_SEQUENCE_LENGTH 10 -#define PRODUCTION_ID_COUNT 165 +#define PRODUCTION_ID_COUNT 169 enum ts_symbol_identifiers { sym_identifier = 1, @@ -46,261 +46,260 @@ enum ts_symbol_identifiers { anon_sym_while = 28, anon_sym_try = 29, anon_sym_except = 30, - anon_sym_except_STAR = 31, - anon_sym_finally = 32, - anon_sym_with = 33, - anon_sym_match = 34, - anon_sym_case = 35, - anon_sym_PIPE = 36, - anon_sym_DASH = 37, - anon_sym_PLUS = 38, - sym_match_wildcard_pattern = 39, - anon_sym_LBRACK = 40, - anon_sym_RBRACK = 41, - anon_sym_LBRACE = 42, - anon_sym_RBRACE = 43, - anon_sym_STAR_STAR = 44, - anon_sym_EQ = 45, - anon_sym_def = 46, - anon_sym_DASH_GT = 47, - anon_sym_global = 48, - anon_sym_nonlocal = 49, - anon_sym_exec = 50, - anon_sym_type = 51, - anon_sym_class = 52, - anon_sym_AT = 53, - anon_sym_not = 54, - anon_sym_and = 55, - anon_sym_or = 56, - anon_sym_SLASH = 57, - anon_sym_PERCENT = 58, - anon_sym_SLASH_SLASH = 59, - anon_sym_AMP = 60, - anon_sym_CARET = 61, - anon_sym_LT_LT = 62, - anon_sym_TILDE = 63, - anon_sym_LT = 64, - anon_sym_LT_EQ = 65, - anon_sym_EQ_EQ = 66, - anon_sym_BANG_EQ = 67, - anon_sym_GT_EQ = 68, - anon_sym_GT = 69, - anon_sym_LT_GT = 70, - anon_sym_is = 71, - anon_sym_lambda = 72, - anon_sym_PLUS_EQ = 73, - anon_sym_DASH_EQ = 74, - anon_sym_STAR_EQ = 75, - anon_sym_SLASH_EQ = 76, - anon_sym_AT_EQ = 77, - anon_sym_SLASH_SLASH_EQ = 78, - anon_sym_PERCENT_EQ = 79, - anon_sym_STAR_STAR_EQ = 80, - anon_sym_GT_GT_EQ = 81, - anon_sym_LT_LT_EQ = 82, - anon_sym_AMP_EQ = 83, - anon_sym_CARET_EQ = 84, - anon_sym_PIPE_EQ = 85, - anon_sym_yield = 86, - sym_ellipsis = 87, - anon_sym_LBRACE2 = 88, - sym__escape_interpolation = 89, - sym_escape_sequence = 90, - anon_sym_BSLASH = 91, - aux_sym_format_specifier_token1 = 92, - sym_type_conversion = 93, - sym_integer = 94, - sym_float = 95, - anon_sym_await = 96, - sym_true = 97, - sym_false = 98, - sym_none = 99, - sym_comment = 100, - anon_sym_SEMI = 101, - sym__newline = 102, - sym__indent = 103, - sym__dedent = 104, - sym__string_start = 105, - sym__string_content = 106, - sym__string_end = 107, - sym_module = 108, - sym__statement = 109, - sym__simple_statements = 110, - sym_import_statement = 111, - sym_import_prefix = 112, - sym_relative_import = 113, - sym_future_import_statement = 114, - sym_import_from_statement = 115, - sym__import_list = 116, - sym_aliased_import = 117, - sym_wildcard_import = 118, - sym_print_statement = 119, - sym_chevron = 120, - sym_assert_statement = 121, - sym_expression_statement = 122, - sym_named_expression = 123, - sym_return_statement = 124, - sym_delete_statement = 125, - sym_raise_statement = 126, - sym_pass_statement = 127, - sym_break_statement = 128, - sym_continue_statement = 129, - sym_if_statement = 130, - sym_elif_clause = 131, - sym_else_clause = 132, - sym_for_statement = 133, - sym_while_statement = 134, - sym_try_statement = 135, - sym_except_clause = 136, - sym_except_group_clause = 137, - sym_finally_clause = 138, - sym_with_statement = 139, - sym_with_clause = 140, - sym_with_item = 141, - sym_match_statement = 142, - sym_cases = 143, - sym_case_block = 144, - sym__match_patterns = 145, - sym_open_sequence_match_pattern = 146, - sym__match_pattern = 147, - sym_match_as_pattern = 148, - sym__match_or_pattern = 149, - sym_match_or_pattern = 150, - sym__closed_pattern = 151, - sym_match_literal_pattern = 152, - sym_match_capture_pattern = 153, - sym_match_value_pattern = 154, - sym_match_group_pattern = 155, - sym_match_sequence_pattern = 156, - sym__match_maybe_star_pattern = 157, - sym_match_star_pattern = 158, - sym_match_mapping_pattern = 159, - sym_match_double_star_pattern = 160, - sym_match_key_value_pattern = 161, - sym_match_class_pattern = 162, - sym_pattern_class_name = 163, - sym_match_positional_pattern = 164, - sym_match_keyword_pattern = 165, - sym_guard = 166, - sym_function_definition = 167, - sym_parameters = 168, - sym_lambda_parameters = 169, - sym_list_splat = 170, - sym_dictionary_splat = 171, - sym_global_statement = 172, - sym_nonlocal_statement = 173, - sym_exec_statement = 174, - sym_type_alias_statement = 175, - sym_class_definition = 176, - sym_type_parameters = 177, - sym__type_bound = 178, - sym_typevar_parameter = 179, - sym_typevartuple_parameter = 180, - sym_paramspec_parameter = 181, - sym__type_parameter = 182, - sym__type_param_default = 183, - sym_parenthesized_list_splat = 184, - sym_argument_list = 185, - sym_decorated_definition = 186, - sym_decorator = 187, - sym_block = 188, - sym_expression_list = 189, - sym_dotted_name = 190, - sym__parameters = 191, - sym__patterns = 192, - sym_parameter = 193, - sym_pattern = 194, - sym_tuple_pattern = 195, - sym_list_pattern = 196, - sym_default_parameter = 197, - sym_typed_default_parameter = 198, - sym_list_splat_pattern = 199, - sym_dictionary_splat_pattern = 200, - sym__expression_within_for_in_clause = 201, - sym_expression = 202, - sym_primary_expression = 203, - sym_not_operator = 204, - sym_boolean_operator = 205, - sym_binary_operator = 206, - sym_unary_operator = 207, - sym_comparison_operator = 208, - sym_lambda = 209, - sym_lambda_within_for_in_clause = 210, - sym_assignment = 211, - sym_augmented_assignment = 212, - sym_pattern_list = 213, - sym__right_hand_side = 214, - sym_yield = 215, - sym_attribute = 216, - sym_subscript = 217, - sym_slice = 218, - sym_call = 219, - sym_typed_parameter = 220, - sym_type = 221, - sym_keyword_argument = 222, - sym_list = 223, - sym_set = 224, - sym_tuple = 225, - sym_dictionary = 226, - sym_pair = 227, - sym_list_comprehension = 228, - sym_dictionary_comprehension = 229, - sym_set_comprehension = 230, - sym_generator_expression = 231, - sym__comprehension_clauses = 232, - sym_parenthesized_expression = 233, - sym__collection_elements = 234, - sym_for_in_clause = 235, - sym_if_clause = 236, - sym_conditional_expression = 237, - sym_concatenated_string = 238, - sym_string = 239, - sym_string_content = 240, - sym_interpolation = 241, - sym__f_expression = 242, - sym__not_escape_sequence = 243, - sym_format_specifier = 244, - sym_await = 245, - sym_positional_separator = 246, - sym_keyword_separator = 247, - sym__semicolon = 248, - aux_sym_module_repeat1 = 249, - aux_sym__simple_statements_repeat1 = 250, - aux_sym_import_prefix_repeat1 = 251, - aux_sym__import_list_repeat1 = 252, - aux_sym_print_statement_repeat1 = 253, - aux_sym_assert_statement_repeat1 = 254, - aux_sym_if_statement_repeat1 = 255, - aux_sym_try_statement_repeat1 = 256, - aux_sym_try_statement_repeat2 = 257, - aux_sym_with_clause_repeat1 = 258, - aux_sym_cases_repeat1 = 259, - aux_sym_open_sequence_match_pattern_repeat1 = 260, - aux_sym_match_or_pattern_repeat1 = 261, - aux_sym_match_value_pattern_repeat1 = 262, - aux_sym_match_mapping_pattern_repeat1 = 263, - aux_sym_match_class_pattern_repeat1 = 264, - aux_sym_match_class_pattern_repeat2 = 265, - aux_sym_global_statement_repeat1 = 266, - aux_sym_type_parameters_repeat1 = 267, - aux_sym_argument_list_repeat1 = 268, - aux_sym_decorated_definition_repeat1 = 269, - aux_sym_expression_list_repeat1 = 270, - aux_sym__parameters_repeat1 = 271, - aux_sym__patterns_repeat1 = 272, - aux_sym_comparison_operator_repeat1 = 273, - aux_sym_subscript_repeat1 = 274, - aux_sym_dictionary_repeat1 = 275, - aux_sym__comprehension_clauses_repeat1 = 276, - aux_sym__collection_elements_repeat1 = 277, - aux_sym_for_in_clause_repeat1 = 278, - aux_sym_concatenated_string_repeat1 = 279, - aux_sym_string_repeat1 = 280, - aux_sym_string_content_repeat1 = 281, - aux_sym_format_specifier_repeat1 = 282, - alias_sym_format_expression = 283, - anon_alias_sym_isnot = 284, - anon_alias_sym_notin = 285, + anon_sym_finally = 31, + anon_sym_with = 32, + anon_sym_match = 33, + anon_sym_case = 34, + anon_sym_PIPE = 35, + anon_sym_DASH = 36, + anon_sym_PLUS = 37, + sym_match_wildcard_pattern = 38, + anon_sym_LBRACK = 39, + anon_sym_RBRACK = 40, + anon_sym_LBRACE = 41, + anon_sym_RBRACE = 42, + anon_sym_STAR_STAR = 43, + anon_sym_EQ = 44, + anon_sym_def = 45, + anon_sym_DASH_GT = 46, + anon_sym_global = 47, + anon_sym_nonlocal = 48, + anon_sym_exec = 49, + anon_sym_type = 50, + anon_sym_class = 51, + anon_sym_AT = 52, + anon_sym_not = 53, + anon_sym_and = 54, + anon_sym_or = 55, + anon_sym_SLASH = 56, + anon_sym_PERCENT = 57, + anon_sym_SLASH_SLASH = 58, + anon_sym_AMP = 59, + anon_sym_CARET = 60, + anon_sym_LT_LT = 61, + anon_sym_TILDE = 62, + anon_sym_LT = 63, + anon_sym_LT_EQ = 64, + anon_sym_EQ_EQ = 65, + anon_sym_BANG_EQ = 66, + anon_sym_GT_EQ = 67, + anon_sym_GT = 68, + anon_sym_LT_GT = 69, + anon_sym_is = 70, + anon_sym_lambda = 71, + anon_sym_PLUS_EQ = 72, + anon_sym_DASH_EQ = 73, + anon_sym_STAR_EQ = 74, + anon_sym_SLASH_EQ = 75, + anon_sym_AT_EQ = 76, + anon_sym_SLASH_SLASH_EQ = 77, + anon_sym_PERCENT_EQ = 78, + anon_sym_STAR_STAR_EQ = 79, + anon_sym_GT_GT_EQ = 80, + anon_sym_LT_LT_EQ = 81, + anon_sym_AMP_EQ = 82, + anon_sym_CARET_EQ = 83, + anon_sym_PIPE_EQ = 84, + anon_sym_yield = 85, + sym_ellipsis = 86, + anon_sym_LBRACE2 = 87, + sym__escape_interpolation = 88, + sym_escape_sequence = 89, + anon_sym_BSLASH = 90, + aux_sym_format_specifier_token1 = 91, + sym_type_conversion = 92, + sym_integer = 93, + sym_float = 94, + anon_sym_await = 95, + sym_true = 96, + sym_false = 97, + sym_none = 98, + sym_comment = 99, + anon_sym_SEMI = 100, + sym__newline = 101, + sym__indent = 102, + sym__dedent = 103, + sym__string_start = 104, + sym__string_content = 105, + sym__string_end = 106, + sym_module = 107, + sym__statement = 108, + sym__simple_statements = 109, + sym_import_statement = 110, + sym_import_prefix = 111, + sym_relative_import = 112, + sym_future_import_statement = 113, + sym_import_from_statement = 114, + sym__import_list = 115, + sym_aliased_import = 116, + sym_wildcard_import = 117, + sym_print_statement = 118, + sym_chevron = 119, + sym_assert_statement = 120, + sym_expression_statement = 121, + sym_named_expression = 122, + sym_return_statement = 123, + sym_delete_statement = 124, + sym_raise_statement = 125, + sym_pass_statement = 126, + sym_break_statement = 127, + sym_continue_statement = 128, + sym_if_statement = 129, + sym_elif_clause = 130, + sym_else_clause = 131, + sym_for_statement = 132, + sym_while_statement = 133, + sym_try_statement = 134, + sym_except_clause = 135, + sym_except_group_clause = 136, + sym_finally_clause = 137, + sym_with_statement = 138, + sym_with_clause = 139, + sym_with_item = 140, + sym_match_statement = 141, + sym_cases = 142, + sym_case_block = 143, + sym__match_patterns = 144, + sym_open_sequence_match_pattern = 145, + sym__match_pattern = 146, + sym_match_as_pattern = 147, + sym__match_or_pattern = 148, + sym_match_or_pattern = 149, + sym__closed_pattern = 150, + sym_match_literal_pattern = 151, + sym_match_capture_pattern = 152, + sym_match_value_pattern = 153, + sym_match_group_pattern = 154, + sym_match_sequence_pattern = 155, + sym__match_maybe_star_pattern = 156, + sym_match_star_pattern = 157, + sym_match_mapping_pattern = 158, + sym_match_double_star_pattern = 159, + sym_match_key_value_pattern = 160, + sym_match_class_pattern = 161, + sym_pattern_class_name = 162, + sym_match_positional_pattern = 163, + sym_match_keyword_pattern = 164, + sym_guard = 165, + sym_function_definition = 166, + sym_parameters = 167, + sym_lambda_parameters = 168, + sym_list_splat = 169, + sym_dictionary_splat = 170, + sym_global_statement = 171, + sym_nonlocal_statement = 172, + sym_exec_statement = 173, + sym_type_alias_statement = 174, + sym_class_definition = 175, + sym_type_parameters = 176, + sym__type_bound = 177, + sym_typevar_parameter = 178, + sym_typevartuple_parameter = 179, + sym_paramspec_parameter = 180, + sym__type_parameter = 181, + sym__type_param_default = 182, + sym_parenthesized_list_splat = 183, + sym_argument_list = 184, + sym_decorated_definition = 185, + sym_decorator = 186, + sym_block = 187, + sym_expression_list = 188, + sym_dotted_name = 189, + sym__parameters = 190, + sym__patterns = 191, + sym_parameter = 192, + sym_pattern = 193, + sym_tuple_pattern = 194, + sym_list_pattern = 195, + sym_default_parameter = 196, + sym_typed_default_parameter = 197, + sym_list_splat_pattern = 198, + sym_dictionary_splat_pattern = 199, + sym__expression_within_for_in_clause = 200, + sym_expression = 201, + sym_primary_expression = 202, + sym_not_operator = 203, + sym_boolean_operator = 204, + sym_binary_operator = 205, + sym_unary_operator = 206, + sym_comparison_operator = 207, + sym_lambda = 208, + sym_lambda_within_for_in_clause = 209, + sym_assignment = 210, + sym_augmented_assignment = 211, + sym_pattern_list = 212, + sym__right_hand_side = 213, + sym_yield = 214, + sym_attribute = 215, + sym_subscript = 216, + sym_slice = 217, + sym_call = 218, + sym_typed_parameter = 219, + sym_type = 220, + sym_keyword_argument = 221, + sym_list = 222, + sym_set = 223, + sym_tuple = 224, + sym_dictionary = 225, + sym_pair = 226, + sym_list_comprehension = 227, + sym_dictionary_comprehension = 228, + sym_set_comprehension = 229, + sym_generator_expression = 230, + sym__comprehension_clauses = 231, + sym_parenthesized_expression = 232, + sym__collection_elements = 233, + sym_for_in_clause = 234, + sym_if_clause = 235, + sym_conditional_expression = 236, + sym_concatenated_string = 237, + sym_string = 238, + sym_string_content = 239, + sym_interpolation = 240, + sym__f_expression = 241, + sym__not_escape_sequence = 242, + sym_format_specifier = 243, + sym_await = 244, + sym_positional_separator = 245, + sym_keyword_separator = 246, + sym__semicolon = 247, + aux_sym_module_repeat1 = 248, + aux_sym__simple_statements_repeat1 = 249, + aux_sym_import_prefix_repeat1 = 250, + aux_sym__import_list_repeat1 = 251, + aux_sym_print_statement_repeat1 = 252, + aux_sym_assert_statement_repeat1 = 253, + aux_sym_if_statement_repeat1 = 254, + aux_sym_try_statement_repeat1 = 255, + aux_sym_try_statement_repeat2 = 256, + aux_sym_with_clause_repeat1 = 257, + aux_sym_cases_repeat1 = 258, + aux_sym_open_sequence_match_pattern_repeat1 = 259, + aux_sym_match_or_pattern_repeat1 = 260, + aux_sym_match_value_pattern_repeat1 = 261, + aux_sym_match_mapping_pattern_repeat1 = 262, + aux_sym_match_class_pattern_repeat1 = 263, + aux_sym_match_class_pattern_repeat2 = 264, + aux_sym_global_statement_repeat1 = 265, + aux_sym_type_parameters_repeat1 = 266, + aux_sym_argument_list_repeat1 = 267, + aux_sym_decorated_definition_repeat1 = 268, + aux_sym_expression_list_repeat1 = 269, + aux_sym__parameters_repeat1 = 270, + aux_sym__patterns_repeat1 = 271, + aux_sym_comparison_operator_repeat1 = 272, + aux_sym_subscript_repeat1 = 273, + aux_sym_dictionary_repeat1 = 274, + aux_sym__comprehension_clauses_repeat1 = 275, + aux_sym__collection_elements_repeat1 = 276, + aux_sym_for_in_clause_repeat1 = 277, + aux_sym_concatenated_string_repeat1 = 278, + aux_sym_string_repeat1 = 279, + aux_sym_string_content_repeat1 = 280, + aux_sym_format_specifier_repeat1 = 281, + alias_sym_format_expression = 282, + anon_alias_sym_isnot = 283, + anon_alias_sym_notin = 284, }; static const char * const ts_symbol_names[] = { @@ -335,7 +334,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_while] = "while", [anon_sym_try] = "try", [anon_sym_except] = "except", - [anon_sym_except_STAR] = "except*", [anon_sym_finally] = "finally", [anon_sym_with] = "with", [anon_sym_match] = "match", @@ -624,7 +622,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_while] = anon_sym_while, [anon_sym_try] = anon_sym_try, [anon_sym_except] = anon_sym_except, - [anon_sym_except_STAR] = anon_sym_except_STAR, [anon_sym_finally] = anon_sym_finally, [anon_sym_with] = anon_sym_with, [anon_sym_match] = anon_sym_match, @@ -1006,10 +1003,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_except_STAR] = { - .visible = true, - .named = false, - }, [anon_sym_finally] = { .visible = true, .named = false, @@ -2294,21 +2287,25 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [147] = {.index = 296, .length = 4}, [148] = {.index = 300, .length = 5}, [149] = {.index = 305, .length = 5}, - [150] = {.index = 310, .length = 3}, - [151] = {.index = 313, .length = 4}, - [152] = {.index = 317, .length = 3}, - [153] = {.index = 320, .length = 3}, - [154] = {.index = 323, .length = 5}, - [155] = {.index = 328, .length = 5}, - [156] = {.index = 333, .length = 5}, - [157] = {.index = 338, .length = 5}, - [158] = {.index = 343, .length = 5}, - [159] = {.index = 348, .length = 3}, - [160] = {.index = 351, .length = 4}, - [161] = {.index = 355, .length = 2}, - [162] = {.index = 357, .length = 6}, - [163] = {.index = 363, .length = 6}, - [164] = {.index = 369, .length = 4}, + [150] = {.index = 310, .length = 2}, + [151] = {.index = 312, .length = 3}, + [152] = {.index = 315, .length = 4}, + [153] = {.index = 319, .length = 3}, + [154] = {.index = 322, .length = 3}, + [155] = {.index = 325, .length = 5}, + [156] = {.index = 330, .length = 5}, + [157] = {.index = 335, .length = 5}, + [158] = {.index = 340, .length = 5}, + [159] = {.index = 345, .length = 5}, + [160] = {.index = 350, .length = 3}, + [161] = {.index = 353, .length = 3}, + [162] = {.index = 356, .length = 4}, + [163] = {.index = 360, .length = 2}, + [164] = {.index = 362, .length = 6}, + [165] = {.index = 368, .length = 6}, + [166] = {.index = 374, .length = 3}, + [167] = {.index = 377, .length = 4}, + [168] = {.index = 381, .length = 4}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2761,83 +2758,99 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_left, 1}, {field_right, 3}, [310] = + {field_body, 4}, + {field_type, 2}, + [312] = {field_body, 3}, {field_body, 4}, {field_type, 1}, - [313] = + [315] = {field_imaginary, 3}, {field_operator, 2}, {field_prefix_operator, 0}, {field_real, 1}, - [317] = + [319] = {field_body, 3}, {field_body, 4}, {field_pattern, 1}, - [320] = + [322] = {field_body, 4}, {field_guard, 2}, {field_pattern, 1}, - [323] = + [325] = {field_body, 6}, {field_body, 7}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [328] = + [330] = {field_body, 7}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [333] = + [335] = {field_alternative, 8}, {field_body, 6}, {field_body, 7}, {field_left, 2}, {field_right, 4}, - [338] = + [340] = {field_body, 7}, {field_body, 8}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [343] = + [345] = {field_body, 8}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [348] = + [350] = + {field_body, 4}, + {field_body, 5}, + {field_type, 2}, + [353] = {field_alias, 3}, {field_body, 5}, {field_type, 1}, - [351] = + [356] = {field_body, 4}, {field_body, 5}, {field_guard, 2}, {field_pattern, 1}, - [355] = + [360] = {field_attribute, 0}, {field_value, 2}, - [357] = + [362] = {field_body, 7}, {field_body, 8}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [363] = + [368] = {field_body, 8}, {field_body, 9}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [369] = + [374] = + {field_alias, 4}, + {field_body, 6}, + {field_type, 2}, + [377] = {field_alias, 3}, {field_body, 5}, {field_body, 6}, {field_type, 1}, + [381] = + {field_alias, 4}, + {field_body, 6}, + {field_body, 7}, + {field_type, 2}, }; static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { @@ -2952,18 +2965,24 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [147] = { [7] = sym_block, }, - [153] = { + [150] = { [4] = sym_block, }, - [155] = { + [154] = { + [4] = sym_block, + }, + [156] = { [7] = sym_block, }, - [158] = { + [159] = { [8] = sym_block, }, - [159] = { + [161] = { [5] = sym_block, }, + [166] = { + [6] = sym_block, + }, }; static const uint16_t ts_non_terminal_alias_map[] = { @@ -2991,267 +3010,267 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5] = 5, [6] = 6, [7] = 7, - [8] = 5, + [8] = 7, [9] = 9, [10] = 10, [11] = 11, - [12] = 3, - [13] = 6, + [12] = 12, + [13] = 13, [14] = 14, [15] = 15, [16] = 16, [17] = 17, [18] = 18, [19] = 19, - [20] = 16, + [20] = 20, [21] = 21, [22] = 22, - [23] = 23, - [24] = 2, - [25] = 11, + [23] = 22, + [24] = 24, + [25] = 25, [26] = 26, - [27] = 27, - [28] = 28, - [29] = 29, - [30] = 9, - [31] = 22, - [32] = 7, + [27] = 4, + [28] = 15, + [29] = 21, + [30] = 30, + [31] = 31, + [32] = 32, [33] = 33, - [34] = 23, - [35] = 35, - [36] = 4, - [37] = 37, - [38] = 38, - [39] = 39, - [40] = 33, - [41] = 41, - [42] = 38, - [43] = 21, - [44] = 44, - [45] = 19, - [46] = 18, - [47] = 26, - [48] = 35, - [49] = 27, - [50] = 28, - [51] = 37, - [52] = 41, - [53] = 29, - [54] = 17, - [55] = 44, - [56] = 39, - [57] = 10, - [58] = 14, - [59] = 15, + [34] = 3, + [35] = 5, + [36] = 36, + [37] = 30, + [38] = 36, + [39] = 26, + [40] = 14, + [41] = 25, + [42] = 24, + [43] = 43, + [44] = 20, + [45] = 16, + [46] = 13, + [47] = 12, + [48] = 6, + [49] = 11, + [50] = 10, + [51] = 31, + [52] = 32, + [53] = 19, + [54] = 18, + [55] = 9, + [56] = 43, + [57] = 2, + [58] = 17, + [59] = 33, [60] = 60, [61] = 61, - [62] = 62, - [63] = 60, - [64] = 60, + [62] = 60, + [63] = 63, + [64] = 63, [65] = 60, - [66] = 62, - [67] = 60, - [68] = 60, - [69] = 60, + [66] = 66, + [67] = 66, + [68] = 68, + [69] = 69, [70] = 70, - [71] = 70, + [71] = 71, [72] = 72, - [73] = 72, + [73] = 73, [74] = 74, [75] = 75, [76] = 76, [77] = 77, - [78] = 78, + [78] = 69, [79] = 79, [80] = 80, - [81] = 77, - [82] = 82, + [81] = 81, + [82] = 79, [83] = 83, [84] = 84, [85] = 85, - [86] = 79, + [86] = 86, [87] = 87, [88] = 88, [89] = 89, [90] = 90, - [91] = 85, + [91] = 91, [92] = 92, [93] = 93, - [94] = 83, - [95] = 82, - [96] = 75, - [97] = 97, - [98] = 98, + [94] = 91, + [95] = 90, + [96] = 73, + [97] = 93, + [98] = 92, [99] = 99, - [100] = 98, - [101] = 101, - [102] = 97, - [103] = 103, - [104] = 104, - [105] = 93, - [106] = 106, - [107] = 84, - [108] = 106, - [109] = 109, - [110] = 110, - [111] = 111, - [112] = 104, - [113] = 109, - [114] = 76, - [115] = 80, - [116] = 89, - [117] = 111, - [118] = 74, - [119] = 78, + [100] = 87, + [101] = 83, + [102] = 68, + [103] = 81, + [104] = 80, + [105] = 105, + [106] = 75, + [107] = 107, + [108] = 89, + [109] = 88, + [110] = 74, + [111] = 77, + [112] = 76, + [113] = 86, + [114] = 107, + [115] = 85, + [116] = 72, + [117] = 71, + [118] = 70, + [119] = 105, [120] = 120, - [121] = 99, + [121] = 84, [122] = 122, [123] = 120, - [124] = 103, - [125] = 122, - [126] = 101, - [127] = 87, - [128] = 110, - [129] = 92, - [130] = 88, + [124] = 122, + [125] = 125, + [126] = 99, + [127] = 127, + [128] = 128, + [129] = 129, + [130] = 129, [131] = 131, - [132] = 132, - [133] = 133, - [134] = 133, - [135] = 133, + [132] = 129, + [133] = 131, + [134] = 131, + [135] = 135, [136] = 136, - [137] = 133, + [137] = 136, [138] = 136, - [139] = 136, - [140] = 133, - [141] = 133, - [142] = 136, - [143] = 136, - [144] = 136, - [145] = 133, - [146] = 136, + [139] = 128, + [140] = 136, + [141] = 141, + [142] = 141, + [143] = 143, + [144] = 144, + [145] = 145, + [146] = 146, [147] = 147, [148] = 148, [149] = 148, - [150] = 148, - [151] = 132, - [152] = 152, - [153] = 148, - [154] = 152, + [150] = 150, + [151] = 148, + [152] = 150, + [153] = 153, + [154] = 154, [155] = 155, [156] = 156, [157] = 157, - [158] = 158, - [159] = 159, + [158] = 153, + [159] = 153, [160] = 160, [161] = 161, - [162] = 160, - [163] = 159, - [164] = 159, - [165] = 165, + [162] = 162, + [163] = 163, + [164] = 164, + [165] = 163, [166] = 166, [167] = 167, - [168] = 168, - [169] = 169, - [170] = 170, - [171] = 170, - [172] = 170, + [168] = 146, + [169] = 162, + [170] = 163, + [171] = 171, + [172] = 172, [173] = 173, - [174] = 174, + [174] = 173, [175] = 175, [176] = 176, - [177] = 174, - [178] = 158, - [179] = 175, - [180] = 175, - [181] = 181, + [177] = 177, + [178] = 178, + [179] = 179, + [180] = 180, + [181] = 180, [182] = 182, - [183] = 183, + [183] = 173, [184] = 184, [185] = 185, - [186] = 186, - [187] = 187, - [188] = 187, - [189] = 185, - [190] = 185, - [191] = 191, - [192] = 168, - [193] = 191, - [194] = 185, - [195] = 195, + [186] = 154, + [187] = 155, + [188] = 188, + [189] = 189, + [190] = 156, + [191] = 188, + [192] = 182, + [193] = 182, + [194] = 175, + [195] = 185, [196] = 196, - [197] = 169, - [198] = 191, - [199] = 167, - [200] = 200, - [201] = 196, - [202] = 202, - [203] = 191, - [204] = 202, - [205] = 205, + [197] = 179, + [198] = 177, + [199] = 188, + [200] = 175, + [201] = 185, + [202] = 179, + [203] = 179, + [204] = 173, + [205] = 180, [206] = 206, - [207] = 187, - [208] = 200, - [209] = 196, + [207] = 207, + [208] = 208, + [209] = 209, [210] = 210, - [211] = 195, + [211] = 211, [212] = 212, - [213] = 202, - [214] = 195, - [215] = 206, - [216] = 200, + [213] = 213, + [214] = 214, + [215] = 215, + [216] = 216, [217] = 217, [218] = 218, [219] = 219, [220] = 220, [221] = 221, - [222] = 222, - [223] = 223, - [224] = 224, + [222] = 216, + [223] = 219, + [224] = 220, [225] = 225, [226] = 226, - [227] = 227, + [227] = 217, [228] = 228, - [229] = 229, + [229] = 228, [230] = 230, - [231] = 231, - [232] = 228, - [233] = 233, - [234] = 234, - [235] = 233, - [236] = 231, - [237] = 237, - [238] = 230, + [231] = 216, + [232] = 221, + [233] = 226, + [234] = 220, + [235] = 235, + [236] = 218, + [237] = 219, + [238] = 235, [239] = 239, [240] = 240, - [241] = 229, - [242] = 239, - [243] = 243, - [244] = 243, - [245] = 228, - [246] = 229, - [247] = 247, - [248] = 237, - [249] = 233, - [250] = 247, + [241] = 241, + [242] = 240, + [243] = 239, + [244] = 244, + [245] = 241, + [246] = 246, + [247] = 244, + [248] = 239, + [249] = 244, + [250] = 241, [251] = 251, [252] = 252, - [253] = 253, - [254] = 254, - [255] = 255, + [253] = 251, + [254] = 240, + [255] = 252, [256] = 256, - [257] = 251, - [258] = 255, + [257] = 257, + [258] = 258, [259] = 259, - [260] = 255, - [261] = 259, - [262] = 256, - [263] = 252, - [264] = 252, - [265] = 254, - [266] = 251, - [267] = 254, - [268] = 268, + [260] = 260, + [261] = 261, + [262] = 262, + [263] = 261, + [264] = 264, + [265] = 265, + [266] = 266, + [267] = 267, + [268] = 262, [269] = 269, [270] = 270, [271] = 271, @@ -3260,247 +3279,247 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [274] = 274, [275] = 275, [276] = 276, - [277] = 273, - [278] = 278, - [279] = 279, - [280] = 280, + [277] = 258, + [278] = 260, + [279] = 267, + [280] = 273, [281] = 281, - [282] = 276, - [283] = 268, - [284] = 284, - [285] = 272, - [286] = 269, + [282] = 256, + [283] = 259, + [284] = 274, + [285] = 270, + [286] = 276, [287] = 271, - [288] = 288, + [288] = 281, [289] = 289, - [290] = 278, - [291] = 275, - [292] = 274, + [290] = 290, + [291] = 265, + [292] = 289, [293] = 293, - [294] = 288, + [294] = 294, [295] = 295, [296] = 296, [297] = 297, [298] = 298, [299] = 299, [300] = 300, - [301] = 296, + [301] = 301, [302] = 302, [303] = 303, - [304] = 303, + [304] = 304, [305] = 305, - [306] = 297, + [306] = 306, [307] = 307, [308] = 308, - [309] = 309, + [309] = 297, [310] = 310, - [311] = 307, - [312] = 312, + [311] = 311, + [312] = 308, [313] = 313, - [314] = 312, + [314] = 314, [315] = 315, - [316] = 316, - [317] = 317, + [316] = 303, + [317] = 314, [318] = 318, [319] = 319, - [320] = 313, + [320] = 213, [321] = 321, - [322] = 322, - [323] = 323, - [324] = 318, + [322] = 211, + [323] = 215, + [324] = 214, [325] = 325, [326] = 326, - [327] = 316, - [328] = 328, - [329] = 224, - [330] = 312, - [331] = 297, - [332] = 296, - [333] = 316, + [327] = 207, + [328] = 206, + [329] = 329, + [330] = 212, + [331] = 331, + [332] = 332, + [333] = 333, [334] = 334, - [335] = 297, - [336] = 318, - [337] = 312, + [335] = 335, + [336] = 336, + [337] = 337, [338] = 338, [339] = 339, [340] = 340, - [341] = 296, - [342] = 342, - [343] = 343, - [344] = 344, - [345] = 296, - [346] = 316, - [347] = 312, - [348] = 348, - [349] = 349, + [341] = 341, + [342] = 340, + [343] = 325, + [344] = 331, + [345] = 329, + [346] = 319, + [347] = 332, + [348] = 334, + [349] = 335, [350] = 318, - [351] = 227, - [352] = 318, - [353] = 297, - [354] = 316, - [355] = 296, - [356] = 342, + [351] = 336, + [352] = 337, + [353] = 338, + [354] = 321, + [355] = 355, + [356] = 356, [357] = 357, [358] = 358, - [359] = 340, - [360] = 312, + [359] = 359, + [360] = 360, [361] = 361, - [362] = 318, - [363] = 219, - [364] = 339, - [365] = 343, - [366] = 338, - [367] = 221, - [368] = 297, - [369] = 316, - [370] = 334, + [362] = 362, + [363] = 363, + [364] = 364, + [365] = 365, + [366] = 366, + [367] = 367, + [368] = 368, + [369] = 369, + [370] = 370, [371] = 371, - [372] = 225, + [372] = 359, [373] = 373, [374] = 374, - [375] = 375, - [376] = 348, - [377] = 218, - [378] = 358, - [379] = 357, - [380] = 328, - [381] = 373, - [382] = 222, + [375] = 359, + [376] = 376, + [377] = 377, + [378] = 359, + [379] = 379, + [380] = 380, + [381] = 381, + [382] = 381, [383] = 383, - [384] = 361, - [385] = 374, + [384] = 384, + [385] = 385, [386] = 386, [387] = 387, - [388] = 388, - [389] = 389, - [390] = 390, + [388] = 376, + [389] = 363, + [390] = 380, [391] = 391, - [392] = 392, - [393] = 386, - [394] = 394, - [395] = 395, - [396] = 396, - [397] = 397, - [398] = 388, - [399] = 399, + [392] = 381, + [393] = 383, + [394] = 385, + [395] = 386, + [396] = 387, + [397] = 387, + [398] = 376, + [399] = 363, [400] = 400, - [401] = 401, + [401] = 368, [402] = 402, - [403] = 403, - [404] = 404, - [405] = 405, - [406] = 406, + [403] = 357, + [404] = 357, + [405] = 357, + [406] = 385, [407] = 407, - [408] = 387, - [409] = 409, + [408] = 408, + [409] = 370, [410] = 410, [411] = 411, [412] = 412, - [413] = 387, + [413] = 413, [414] = 414, - [415] = 415, - [416] = 407, - [417] = 404, - [418] = 402, - [419] = 419, + [415] = 383, + [416] = 416, + [417] = 417, + [418] = 413, + [419] = 400, [420] = 420, - [421] = 407, - [422] = 422, - [423] = 423, - [424] = 424, - [425] = 390, + [421] = 417, + [422] = 410, + [423] = 363, + [424] = 356, + [425] = 364, [426] = 426, - [427] = 427, - [428] = 428, + [427] = 391, + [428] = 387, [429] = 429, - [430] = 430, - [431] = 390, - [432] = 401, - [433] = 388, + [430] = 385, + [431] = 431, + [432] = 432, + [433] = 412, [434] = 434, - [435] = 389, - [436] = 402, - [437] = 402, - [438] = 404, - [439] = 411, - [440] = 420, + [435] = 383, + [436] = 381, + [437] = 376, + [438] = 411, + [439] = 384, + [440] = 440, [441] = 441, - [442] = 400, - [443] = 396, - [444] = 424, - [445] = 445, + [442] = 442, + [443] = 380, + [444] = 440, + [445] = 441, [446] = 446, - [447] = 447, - [448] = 448, - [449] = 424, + [447] = 431, + [448] = 380, + [449] = 402, [450] = 450, [451] = 451, - [452] = 452, - [453] = 424, - [454] = 403, - [455] = 404, + [452] = 379, + [453] = 426, + [454] = 432, + [455] = 369, [456] = 456, - [457] = 399, - [458] = 396, - [459] = 411, - [460] = 407, - [461] = 395, - [462] = 411, - [463] = 387, - [464] = 464, - [465] = 456, - [466] = 466, - [467] = 466, - [468] = 426, + [457] = 457, + [458] = 458, + [459] = 459, + [460] = 460, + [461] = 456, + [462] = 457, + [463] = 463, + [464] = 460, + [465] = 463, + [466] = 458, + [467] = 459, + [468] = 468, [469] = 469, - [470] = 396, - [471] = 388, - [472] = 464, - [473] = 429, - [474] = 390, - [475] = 423, - [476] = 419, - [477] = 445, - [478] = 412, + [470] = 470, + [471] = 471, + [472] = 472, + [473] = 473, + [474] = 474, + [475] = 475, + [476] = 476, + [477] = 477, + [478] = 478, [479] = 479, - [480] = 428, + [480] = 480, [481] = 481, - [482] = 446, - [483] = 414, + [482] = 482, + [483] = 483, [484] = 484, - [485] = 447, + [485] = 485, [486] = 486, [487] = 487, [488] = 488, - [489] = 489, - [490] = 487, + [489] = 479, + [490] = 490, [491] = 491, - [492] = 491, - [493] = 493, - [494] = 486, - [495] = 493, - [496] = 488, - [497] = 489, + [492] = 492, + [493] = 469, + [494] = 494, + [495] = 495, + [496] = 472, + [497] = 490, [498] = 498, - [499] = 499, + [499] = 475, [500] = 500, [501] = 501, - [502] = 502, + [502] = 482, [503] = 503, [504] = 504, [505] = 505, - [506] = 506, + [506] = 473, [507] = 507, [508] = 508, - [509] = 509, - [510] = 510, + [509] = 487, + [510] = 471, [511] = 511, - [512] = 512, - [513] = 513, + [512] = 484, + [513] = 511, [514] = 514, - [515] = 515, - [516] = 516, - [517] = 517, + [515] = 504, + [516] = 470, + [517] = 514, [518] = 518, [519] = 519, [520] = 520, @@ -3508,77 +3527,77 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [522] = 522, [523] = 523, [524] = 524, - [525] = 513, - [526] = 512, + [525] = 525, + [526] = 481, [527] = 527, [528] = 528, [529] = 529, - [530] = 530, - [531] = 531, + [530] = 529, + [531] = 528, [532] = 532, - [533] = 533, - [534] = 533, - [535] = 535, - [536] = 536, - [537] = 537, - [538] = 524, - [539] = 523, - [540] = 540, - [541] = 514, - [542] = 516, - [543] = 531, - [544] = 544, - [545] = 545, - [546] = 527, - [547] = 522, - [548] = 548, - [549] = 520, - [550] = 532, - [551] = 540, - [552] = 552, - [553] = 553, - [554] = 510, - [555] = 500, - [556] = 544, - [557] = 501, - [558] = 506, - [559] = 502, - [560] = 560, - [561] = 503, - [562] = 562, - [563] = 504, - [564] = 505, - [565] = 507, - [566] = 560, + [533] = 527, + [534] = 508, + [535] = 507, + [536] = 505, + [537] = 495, + [538] = 503, + [539] = 539, + [540] = 501, + [541] = 519, + [542] = 491, + [543] = 476, + [544] = 500, + [545] = 498, + [546] = 525, + [547] = 494, + [548] = 523, + [549] = 492, + [550] = 474, + [551] = 522, + [552] = 488, + [553] = 521, + [554] = 518, + [555] = 486, + [556] = 485, + [557] = 532, + [558] = 539, + [559] = 520, + [560] = 480, + [561] = 468, + [562] = 524, + [563] = 478, + [564] = 477, + [565] = 483, + [566] = 566, [567] = 567, [568] = 568, - [569] = 509, - [570] = 511, - [571] = 517, - [572] = 518, - [573] = 567, - [574] = 519, - [575] = 562, - [576] = 521, - [577] = 537, - [578] = 508, - [579] = 548, - [580] = 568, - [581] = 528, + [569] = 569, + [570] = 570, + [571] = 571, + [572] = 572, + [573] = 573, + [574] = 574, + [575] = 575, + [576] = 572, + [577] = 573, + [578] = 578, + [579] = 579, + [580] = 580, + [581] = 581, [582] = 582, - [583] = 499, - [584] = 529, - [585] = 553, - [586] = 530, - [587] = 535, - [588] = 552, - [589] = 545, - [590] = 536, + [583] = 583, + [584] = 584, + [585] = 585, + [586] = 586, + [587] = 587, + [588] = 588, + [589] = 589, + [590] = 590, [591] = 591, - [592] = 582, - [593] = 591, - [594] = 515, - [595] = 498, + [592] = 592, + [593] = 593, + [594] = 594, + [595] = 595, [596] = 596, [597] = 597, [598] = 598, @@ -3586,755 +3605,755 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [600] = 600, [601] = 601, [602] = 602, - [603] = 602, + [603] = 603, [604] = 604, [605] = 605, [606] = 606, - [607] = 606, + [607] = 607, [608] = 608, [609] = 609, [610] = 610, [611] = 611, [612] = 612, [613] = 613, - [614] = 614, + [614] = 582, [615] = 615, [616] = 616, [617] = 617, - [618] = 618, + [618] = 617, [619] = 619, - [620] = 618, + [620] = 620, [621] = 621, - [622] = 622, + [622] = 620, [623] = 623, [624] = 624, [625] = 625, [626] = 626, [627] = 627, - [628] = 628, - [629] = 629, - [630] = 630, - [631] = 631, - [632] = 632, - [633] = 633, + [628] = 624, + [629] = 625, + [630] = 626, + [631] = 619, + [632] = 616, + [633] = 623, [634] = 634, - [635] = 635, - [636] = 636, - [637] = 637, + [635] = 634, + [636] = 627, + [637] = 621, [638] = 638, - [639] = 639, + [639] = 574, [640] = 640, [641] = 641, [642] = 642, [643] = 643, - [644] = 644, - [645] = 645, - [646] = 646, - [647] = 647, - [648] = 648, - [649] = 649, - [650] = 650, - [651] = 648, - [652] = 649, - [653] = 647, - [654] = 654, - [655] = 655, - [656] = 656, - [657] = 657, + [644] = 571, + [645] = 643, + [646] = 643, + [647] = 643, + [648] = 642, + [649] = 641, + [650] = 571, + [651] = 651, + [652] = 652, + [653] = 653, + [654] = 653, + [655] = 653, + [656] = 574, + [657] = 570, [658] = 658, - [659] = 654, - [660] = 650, + [659] = 651, + [660] = 658, [661] = 661, - [662] = 658, - [663] = 655, - [664] = 657, - [665] = 656, - [666] = 661, - [667] = 646, - [668] = 668, - [669] = 669, - [670] = 599, - [671] = 669, - [672] = 669, + [662] = 662, + [663] = 663, + [664] = 664, + [665] = 658, + [666] = 666, + [667] = 664, + [668] = 661, + [669] = 651, + [670] = 652, + [671] = 664, + [672] = 661, [673] = 673, - [674] = 673, + [674] = 666, [675] = 675, [676] = 676, - [677] = 675, - [678] = 669, - [679] = 601, - [680] = 676, - [681] = 681, - [682] = 682, - [683] = 683, - [684] = 681, - [685] = 599, - [686] = 683, - [687] = 687, - [688] = 683, - [689] = 687, - [690] = 690, - [691] = 691, - [692] = 687, - [693] = 668, - [694] = 690, - [695] = 695, - [696] = 618, - [697] = 697, - [698] = 691, - [699] = 699, - [700] = 700, - [701] = 601, - [702] = 604, - [703] = 695, - [704] = 697, - [705] = 690, - [706] = 699, - [707] = 707, - [708] = 707, - [709] = 695, - [710] = 710, - [711] = 697, - [712] = 710, - [713] = 682, - [714] = 681, - [715] = 691, - [716] = 682, - [717] = 687, - [718] = 699, - [719] = 710, - [720] = 707, - [721] = 699, - [722] = 707, - [723] = 691, - [724] = 697, - [725] = 690, - [726] = 710, - [727] = 683, - [728] = 682, - [729] = 681, - [730] = 730, - [731] = 695, - [732] = 646, - [733] = 648, - [734] = 649, - [735] = 618, - [736] = 658, - [737] = 610, - [738] = 650, - [739] = 611, - [740] = 661, - [741] = 604, - [742] = 655, - [743] = 647, - [744] = 654, - [745] = 656, - [746] = 657, - [747] = 655, - [748] = 649, - [749] = 611, - [750] = 656, - [751] = 397, - [752] = 654, - [753] = 658, - [754] = 344, - [755] = 755, - [756] = 610, - [757] = 406, - [758] = 758, - [759] = 650, - [760] = 648, - [761] = 657, - [762] = 661, - [763] = 349, - [764] = 764, - [765] = 675, - [766] = 673, - [767] = 392, - [768] = 415, - [769] = 646, - [770] = 647, - [771] = 771, - [772] = 624, - [773] = 621, - [774] = 630, - [775] = 640, - [776] = 614, - [777] = 613, - [778] = 631, - [779] = 643, - [780] = 642, - [781] = 639, - [782] = 637, - [783] = 645, - [784] = 632, - [785] = 676, - [786] = 673, - [787] = 675, - [788] = 644, - [789] = 638, - [790] = 668, - [791] = 636, - [792] = 612, - [793] = 641, - [794] = 633, - [795] = 623, - [796] = 634, - [797] = 415, - [798] = 635, - [799] = 625, - [800] = 406, - [801] = 619, - [802] = 626, - [803] = 627, - [804] = 628, - [805] = 397, - [806] = 615, - [807] = 616, - [808] = 629, - [809] = 617, - [810] = 639, - [811] = 616, - [812] = 619, - [813] = 614, - [814] = 621, - [815] = 612, - [816] = 624, - [817] = 625, - [818] = 626, - [819] = 627, - [820] = 628, - [821] = 629, - [822] = 758, - [823] = 227, - [824] = 630, - [825] = 771, - [826] = 643, - [827] = 635, - [828] = 634, - [829] = 633, - [830] = 632, - [831] = 631, - [832] = 613, - [833] = 642, - [834] = 638, - [835] = 218, - [836] = 644, - [837] = 617, - [838] = 623, - [839] = 225, - [840] = 221, - [841] = 637, - [842] = 641, - [843] = 640, - [844] = 222, - [845] = 636, - [846] = 224, - [847] = 219, - [848] = 615, - [849] = 645, + [677] = 677, + [678] = 666, + [679] = 676, + [680] = 653, + [681] = 675, + [682] = 651, + [683] = 652, + [684] = 673, + [685] = 658, + [686] = 675, + [687] = 640, + [688] = 675, + [689] = 638, + [690] = 676, + [691] = 673, + [692] = 582, + [693] = 662, + [694] = 652, + [695] = 666, + [696] = 673, + [697] = 661, + [698] = 664, + [699] = 662, + [700] = 676, + [701] = 662, + [702] = 621, + [703] = 626, + [704] = 581, + [705] = 620, + [706] = 619, + [707] = 623, + [708] = 624, + [709] = 627, + [710] = 617, + [711] = 625, + [712] = 582, + [713] = 616, + [714] = 634, + [715] = 570, + [716] = 580, + [717] = 360, + [718] = 620, + [719] = 616, + [720] = 720, + [721] = 634, + [722] = 580, + [723] = 723, + [724] = 339, + [725] = 621, + [726] = 358, + [727] = 619, + [728] = 581, + [729] = 625, + [730] = 367, + [731] = 624, + [732] = 626, + [733] = 623, + [734] = 627, + [735] = 341, + [736] = 617, + [737] = 737, + [738] = 738, + [739] = 641, + [740] = 361, + [741] = 642, + [742] = 584, + [743] = 585, + [744] = 613, + [745] = 597, + [746] = 606, + [747] = 596, + [748] = 640, + [749] = 602, + [750] = 638, + [751] = 594, + [752] = 607, + [753] = 367, + [754] = 599, + [755] = 583, + [756] = 360, + [757] = 358, + [758] = 590, + [759] = 609, + [760] = 605, + [761] = 591, + [762] = 604, + [763] = 611, + [764] = 601, + [765] = 598, + [766] = 589, + [767] = 603, + [768] = 615, + [769] = 612, + [770] = 642, + [771] = 608, + [772] = 610, + [773] = 587, + [774] = 588, + [775] = 593, + [776] = 586, + [777] = 595, + [778] = 592, + [779] = 641, + [780] = 595, + [781] = 587, + [782] = 607, + [783] = 583, + [784] = 211, + [785] = 590, + [786] = 213, + [787] = 609, + [788] = 593, + [789] = 720, + [790] = 592, + [791] = 738, + [792] = 206, + [793] = 591, + [794] = 212, + [795] = 215, + [796] = 589, + [797] = 588, + [798] = 207, + [799] = 594, + [800] = 612, + [801] = 596, + [802] = 597, + [803] = 598, + [804] = 599, + [805] = 611, + [806] = 586, + [807] = 601, + [808] = 602, + [809] = 608, + [810] = 214, + [811] = 585, + [812] = 603, + [813] = 584, + [814] = 610, + [815] = 604, + [816] = 605, + [817] = 606, + [818] = 613, + [819] = 615, + [820] = 820, + [821] = 821, + [822] = 822, + [823] = 822, + [824] = 824, + [825] = 825, + [826] = 826, + [827] = 827, + [828] = 828, + [829] = 829, + [830] = 830, + [831] = 831, + [832] = 832, + [833] = 833, + [834] = 834, + [835] = 835, + [836] = 836, + [837] = 837, + [838] = 838, + [839] = 839, + [840] = 839, + [841] = 841, + [842] = 841, + [843] = 843, + [844] = 841, + [845] = 839, + [846] = 846, + [847] = 847, + [848] = 848, + [849] = 849, [850] = 850, [851] = 851, - [852] = 852, - [853] = 851, + [852] = 841, + [853] = 853, [854] = 854, - [855] = 855, + [855] = 839, [856] = 856, [857] = 857, [858] = 858, - [859] = 859, - [860] = 860, - [861] = 861, + [859] = 857, + [860] = 857, + [861] = 857, [862] = 862, [863] = 863, [864] = 864, [865] = 865, [866] = 866, [867] = 867, - [868] = 868, + [868] = 867, [869] = 869, - [870] = 870, - [871] = 869, - [872] = 870, + [870] = 869, + [871] = 871, + [872] = 872, [873] = 873, [874] = 874, - [875] = 869, + [875] = 873, [876] = 876, [877] = 877, [878] = 878, [879] = 879, [880] = 880, - [881] = 870, - [882] = 870, - [883] = 869, + [881] = 881, + [882] = 882, + [883] = 883, [884] = 884, - [885] = 885, + [885] = 882, [886] = 886, - [887] = 886, + [887] = 884, [888] = 888, - [889] = 886, + [889] = 889, [890] = 886, - [891] = 891, - [892] = 892, + [891] = 881, + [892] = 886, [893] = 893, [894] = 894, [895] = 895, [896] = 896, - [897] = 897, - [898] = 896, - [899] = 897, - [900] = 900, + [897] = 896, + [898] = 898, + [899] = 878, + [900] = 884, [901] = 901, - [902] = 902, - [903] = 901, + [902] = 882, + [903] = 883, [904] = 904, - [905] = 905, - [906] = 906, - [907] = 907, - [908] = 908, - [909] = 909, + [905] = 898, + [906] = 884, + [907] = 882, + [908] = 888, + [909] = 889, [910] = 910, [911] = 911, - [912] = 912, + [912] = 911, [913] = 913, - [914] = 914, - [915] = 910, + [914] = 911, + [915] = 915, [916] = 916, [917] = 917, - [918] = 918, + [918] = 916, [919] = 919, - [920] = 920, - [921] = 909, - [922] = 922, + [920] = 910, + [921] = 916, + [922] = 910, [923] = 923, - [924] = 909, - [925] = 914, + [924] = 924, + [925] = 925, [926] = 926, - [927] = 920, - [928] = 917, - [929] = 916, + [927] = 927, + [928] = 928, + [929] = 929, [930] = 930, - [931] = 914, - [932] = 920, - [933] = 909, - [934] = 923, - [935] = 911, + [931] = 931, + [932] = 932, + [933] = 933, + [934] = 934, + [935] = 913, [936] = 936, - [937] = 914, - [938] = 919, - [939] = 918, + [937] = 937, + [938] = 938, + [939] = 883, [940] = 940, [941] = 941, - [942] = 941, - [943] = 943, + [942] = 942, + [943] = 896, [944] = 944, [945] = 945, - [946] = 943, - [947] = 947, + [946] = 946, + [947] = 888, [948] = 948, [949] = 949, - [950] = 943, - [951] = 940, - [952] = 941, + [950] = 950, + [951] = 951, + [952] = 952, [953] = 953, - [954] = 940, + [954] = 954, [955] = 955, - [956] = 956, - [957] = 957, + [956] = 878, + [957] = 898, [958] = 958, [959] = 959, [960] = 960, [961] = 961, - [962] = 962, + [962] = 874, [963] = 963, - [964] = 964, + [964] = 889, [965] = 965, [966] = 966, [967] = 967, - [968] = 968, + [968] = 872, [969] = 969, [970] = 970, [971] = 971, - [972] = 972, + [972] = 881, [973] = 973, [974] = 974, [975] = 975, - [976] = 976, - [977] = 977, + [976] = 871, + [977] = 944, [978] = 978, - [979] = 910, + [979] = 979, [980] = 980, [981] = 981, - [982] = 916, + [982] = 982, [983] = 983, [984] = 984, [985] = 985, - [986] = 986, - [987] = 923, - [988] = 988, - [989] = 989, - [990] = 990, + [986] = 874, + [987] = 881, + [988] = 878, + [989] = 917, + [990] = 915, [991] = 991, - [992] = 984, - [993] = 904, + [992] = 896, + [993] = 993, [994] = 994, - [995] = 995, - [996] = 905, - [997] = 902, + [995] = 895, + [996] = 898, + [997] = 997, [998] = 998, - [999] = 973, + [999] = 999, [1000] = 1000, [1001] = 1001, [1002] = 1002, - [1003] = 1003, + [1003] = 984, [1004] = 1004, [1005] = 1005, [1006] = 1006, - [1007] = 1007, - [1008] = 947, - [1009] = 978, - [1010] = 1010, - [1011] = 917, - [1012] = 1012, - [1013] = 911, + [1007] = 889, + [1008] = 1008, + [1009] = 1009, + [1010] = 888, + [1011] = 1011, + [1012] = 997, + [1013] = 883, [1014] = 1014, [1015] = 1015, - [1016] = 919, - [1017] = 918, + [1016] = 1016, + [1017] = 1017, [1018] = 1018, - [1019] = 1019, - [1020] = 1020, - [1021] = 1020, - [1022] = 949, - [1023] = 1023, + [1019] = 985, + [1020] = 997, + [1021] = 1018, + [1022] = 1022, + [1023] = 871, [1024] = 1024, - [1025] = 1025, + [1025] = 872, [1026] = 1026, - [1027] = 1027, + [1027] = 1018, [1028] = 1028, - [1029] = 1020, - [1030] = 1019, + [1029] = 1029, + [1030] = 1030, [1031] = 1031, [1032] = 1032, [1033] = 1033, [1034] = 1034, [1035] = 1035, [1036] = 1036, - [1037] = 945, + [1037] = 1037, [1038] = 1038, [1039] = 1039, [1040] = 1040, [1041] = 1041, - [1042] = 922, - [1043] = 902, + [1042] = 1035, + [1043] = 1043, [1044] = 1044, - [1045] = 905, - [1046] = 916, - [1047] = 923, - [1048] = 911, - [1049] = 1049, - [1050] = 1050, - [1051] = 918, - [1052] = 919, - [1053] = 904, - [1054] = 910, - [1055] = 1019, - [1056] = 917, - [1057] = 1057, + [1045] = 1045, + [1046] = 1046, + [1047] = 1031, + [1048] = 1048, + [1049] = 1008, + [1050] = 877, + [1051] = 1051, + [1052] = 1052, + [1053] = 1053, + [1054] = 1028, + [1055] = 1051, + [1056] = 1056, + [1057] = 1044, [1058] = 1058, [1059] = 1059, [1060] = 1060, - [1061] = 1061, + [1061] = 1038, [1062] = 1062, [1063] = 1063, [1064] = 1064, [1065] = 1065, [1066] = 1066, - [1067] = 1067, - [1068] = 1068, + [1067] = 923, + [1068] = 954, [1069] = 1069, [1070] = 1070, [1071] = 1071, - [1072] = 1072, - [1073] = 1073, - [1074] = 1062, + [1072] = 1063, + [1073] = 949, + [1074] = 1074, [1075] = 1075, - [1076] = 1061, + [1076] = 904, [1077] = 1077, [1078] = 1078, [1079] = 1079, - [1080] = 907, - [1081] = 1081, + [1080] = 1080, + [1081] = 1002, [1082] = 1082, [1083] = 1083, [1084] = 1084, [1085] = 1085, [1086] = 1086, - [1087] = 1083, - [1088] = 1079, - [1089] = 1024, - [1090] = 1058, - [1091] = 1081, + [1087] = 1087, + [1088] = 1088, + [1089] = 1089, + [1090] = 1090, + [1091] = 983, [1092] = 1092, - [1093] = 1093, + [1093] = 1086, [1094] = 1094, [1095] = 1095, [1096] = 1096, [1097] = 1097, - [1098] = 1041, - [1099] = 988, - [1100] = 948, + [1098] = 1098, + [1099] = 1099, + [1100] = 1075, [1101] = 1101, [1102] = 1102, - [1103] = 967, + [1103] = 994, [1104] = 1104, [1105] = 1105, [1106] = 1106, [1107] = 1107, [1108] = 1108, [1109] = 1109, - [1110] = 1104, - [1111] = 966, - [1112] = 1094, - [1113] = 1096, + [1110] = 1110, + [1111] = 1111, + [1112] = 1112, + [1113] = 1113, [1114] = 1114, - [1115] = 1115, + [1115] = 1109, [1116] = 1116, [1117] = 1117, - [1118] = 936, + [1118] = 1118, [1119] = 1119, [1120] = 1120, - [1121] = 1121, + [1121] = 1118, [1122] = 1122, [1123] = 1123, [1124] = 1124, [1125] = 1125, [1126] = 1126, - [1127] = 1127, + [1127] = 1123, [1128] = 1128, [1129] = 1129, [1130] = 1130, [1131] = 1131, - [1132] = 1132, + [1132] = 901, [1133] = 1133, [1134] = 1134, - [1135] = 1135, - [1136] = 1136, + [1135] = 1130, + [1136] = 1114, [1137] = 1137, [1138] = 1138, - [1139] = 1097, - [1140] = 1135, - [1141] = 1135, + [1139] = 1139, + [1140] = 1140, + [1141] = 1141, [1142] = 1142, - [1143] = 1143, - [1144] = 1138, - [1145] = 1132, + [1143] = 1098, + [1144] = 1144, + [1145] = 1145, [1146] = 1146, [1147] = 1147, [1148] = 1148, - [1149] = 1149, + [1149] = 1131, [1150] = 1150, - [1151] = 1151, - [1152] = 1152, - [1153] = 1153, + [1151] = 1111, + [1152] = 1112, + [1153] = 1138, [1154] = 1154, - [1155] = 1155, - [1156] = 1156, - [1157] = 1116, - [1158] = 1095, + [1155] = 1079, + [1156] = 1117, + [1157] = 1114, + [1158] = 1071, [1159] = 1159, [1160] = 1160, [1161] = 1161, - [1162] = 1135, - [1163] = 1138, + [1162] = 1102, + [1163] = 1146, [1164] = 1164, [1165] = 1165, - [1166] = 1166, + [1166] = 1117, [1167] = 1167, [1168] = 1168, [1169] = 1169, - [1170] = 1170, + [1170] = 1074, [1171] = 1171, - [1172] = 1172, - [1173] = 1173, + [1172] = 1113, + [1173] = 1146, [1174] = 1174, - [1175] = 1161, - [1176] = 1176, - [1177] = 1148, + [1175] = 1175, + [1176] = 1114, + [1177] = 1177, [1178] = 1178, - [1179] = 1153, - [1180] = 1152, - [1181] = 1171, - [1182] = 1138, - [1183] = 908, - [1184] = 1132, + [1179] = 1179, + [1180] = 581, + [1181] = 1181, + [1182] = 1182, + [1183] = 1183, + [1184] = 580, [1185] = 1185, [1186] = 1186, [1187] = 1187, - [1188] = 1135, - [1189] = 1159, - [1190] = 1135, - [1191] = 1164, + [1188] = 1188, + [1189] = 1189, + [1190] = 1034, + [1191] = 1191, [1192] = 1192, [1193] = 1193, [1194] = 1194, - [1195] = 1125, + [1195] = 1195, [1196] = 1196, - [1197] = 1160, + [1197] = 1197, [1198] = 1198, [1199] = 1199, - [1200] = 1132, - [1201] = 1135, + [1200] = 1200, + [1201] = 1201, [1202] = 1202, - [1203] = 1203, + [1203] = 1200, [1204] = 1204, - [1205] = 1174, + [1205] = 1160, [1206] = 1206, - [1207] = 1186, - [1208] = 1138, + [1207] = 1207, + [1208] = 1208, [1209] = 1209, - [1210] = 1138, - [1211] = 1211, - [1212] = 1138, - [1213] = 1018, - [1214] = 1214, - [1215] = 611, + [1210] = 1189, + [1211] = 1060, + [1212] = 1212, + [1213] = 1213, + [1214] = 1191, + [1215] = 1215, [1216] = 1216, - [1217] = 1217, + [1217] = 1032, [1218] = 1218, [1219] = 1219, [1220] = 1220, [1221] = 1221, [1222] = 1222, - [1223] = 1142, + [1223] = 1223, [1224] = 1224, - [1225] = 1217, - [1226] = 1063, + [1225] = 1225, + [1226] = 1223, [1227] = 1227, [1228] = 1228, [1229] = 1229, - [1230] = 1176, - [1231] = 1218, - [1232] = 1232, - [1233] = 1220, - [1234] = 1234, + [1230] = 1182, + [1231] = 1174, + [1232] = 1182, + [1233] = 1125, + [1234] = 1165, [1235] = 1235, - [1236] = 1236, - [1237] = 1237, - [1238] = 1238, + [1236] = 1195, + [1237] = 1045, + [1238] = 1187, [1239] = 1239, - [1240] = 1240, + [1240] = 1202, [1241] = 1241, - [1242] = 1242, - [1243] = 1243, - [1244] = 610, - [1245] = 1245, - [1246] = 1246, + [1242] = 1175, + [1243] = 1171, + [1244] = 1244, + [1245] = 1199, + [1246] = 1244, [1247] = 1247, [1248] = 1248, - [1249] = 1249, + [1249] = 1199, [1250] = 1250, - [1251] = 1251, - [1252] = 1250, + [1251] = 1207, + [1252] = 1219, [1253] = 1253, - [1254] = 1246, + [1254] = 1254, [1255] = 1255, - [1256] = 1243, - [1257] = 1257, + [1256] = 1195, + [1257] = 1218, [1258] = 1258, - [1259] = 1259, + [1259] = 1139, [1260] = 1260, - [1261] = 1261, - [1262] = 297, - [1263] = 1220, - [1264] = 1218, - [1265] = 1228, - [1266] = 1229, - [1267] = 1267, - [1268] = 1268, - [1269] = 1236, - [1270] = 1270, - [1271] = 1271, + [1261] = 1189, + [1262] = 1262, + [1263] = 1263, + [1264] = 1216, + [1265] = 1265, + [1266] = 1209, + [1267] = 1215, + [1268] = 1213, + [1269] = 1269, + [1270] = 1215, + [1271] = 1216, [1272] = 1272, - [1273] = 1273, - [1274] = 318, - [1275] = 1275, - [1276] = 1276, + [1273] = 1218, + [1274] = 1219, + [1275] = 1222, + [1276] = 1248, [1277] = 1277, [1278] = 1278, - [1279] = 1246, + [1279] = 1213, [1280] = 1280, [1281] = 1281, - [1282] = 1221, - [1283] = 1283, + [1282] = 1282, + [1283] = 1244, [1284] = 1284, - [1285] = 1155, - [1286] = 1222, - [1287] = 1287, - [1288] = 1216, - [1289] = 1238, - [1290] = 1250, - [1291] = 1249, - [1292] = 1251, - [1293] = 1293, - [1294] = 1229, + [1285] = 1285, + [1286] = 1286, + [1287] = 1183, + [1288] = 1288, + [1289] = 1289, + [1290] = 1290, + [1291] = 1291, + [1292] = 1292, + [1293] = 1179, + [1294] = 1248, [1295] = 1295, - [1296] = 1178, - [1297] = 1297, - [1298] = 1228, + [1296] = 1296, + [1297] = 1200, + [1298] = 1298, [1299] = 1299, [1300] = 1300, [1301] = 1301, [1302] = 1302, - [1303] = 1221, - [1304] = 1304, - [1305] = 1066, + [1303] = 1303, + [1304] = 1292, + [1305] = 1305, [1306] = 1306, - [1307] = 1224, - [1308] = 1065, + [1307] = 1307, + [1308] = 1308, [1309] = 1309, - [1310] = 1284, + [1310] = 1310, [1311] = 1311, [1312] = 1312, - [1313] = 1222, - [1314] = 1216, + [1313] = 1313, + [1314] = 1314, [1315] = 1315, - [1316] = 1238, - [1317] = 1249, - [1318] = 296, + [1316] = 1316, + [1317] = 1317, + [1318] = 1318, [1319] = 1319, - [1320] = 1251, + [1320] = 1320, [1321] = 1321, - [1322] = 1293, + [1322] = 265, [1323] = 1323, [1324] = 1324, - [1325] = 1272, - [1326] = 1227, + [1325] = 1325, + [1326] = 1326, [1327] = 1327, [1328] = 1328, [1329] = 1329, - [1330] = 1167, + [1330] = 1330, [1331] = 1331, - [1332] = 1332, + [1332] = 262, [1333] = 1333, - [1334] = 1199, - [1335] = 1198, - [1336] = 1232, - [1337] = 316, + [1334] = 1334, + [1335] = 260, + [1336] = 1198, + [1337] = 1220, [1338] = 1338, - [1339] = 312, + [1339] = 1339, [1340] = 1340, - [1341] = 1341, + [1341] = 258, [1342] = 1342, [1343] = 1343, [1344] = 1344, - [1345] = 1075, - [1346] = 1297, + [1345] = 1345, + [1346] = 1346, [1347] = 1347, - [1348] = 1348, + [1348] = 1340, [1349] = 1349, - [1350] = 1350, - [1351] = 1306, + [1350] = 1312, + [1351] = 1351, [1352] = 1352, [1353] = 1353, [1354] = 1354, @@ -4343,27 +4362,27 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1357] = 1357, [1358] = 1358, [1359] = 1359, - [1360] = 1360, + [1360] = 1330, [1361] = 1361, - [1362] = 1362, + [1362] = 1315, [1363] = 1363, - [1364] = 1364, + [1364] = 1326, [1365] = 1365, - [1366] = 1242, - [1367] = 1353, + [1366] = 1334, + [1367] = 1367, [1368] = 1368, - [1369] = 1364, - [1370] = 1370, - [1371] = 1371, + [1369] = 1024, + [1370] = 1338, + [1371] = 259, [1372] = 1372, [1373] = 1373, [1374] = 1374, - [1375] = 1375, + [1375] = 1255, [1376] = 1376, - [1377] = 1245, + [1377] = 1377, [1378] = 1378, [1379] = 1379, - [1380] = 1034, + [1380] = 1380, [1381] = 1381, [1382] = 1382, [1383] = 1383, @@ -4372,11 +4391,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1386] = 1386, [1387] = 1387, [1388] = 1388, - [1389] = 1360, + [1389] = 1389, [1390] = 1390, [1391] = 1391, - [1392] = 1361, - [1393] = 1393, + [1392] = 1392, + [1393] = 1389, [1394] = 1394, [1395] = 1395, [1396] = 1396, @@ -4384,139 +4403,103 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1398] = 1398, [1399] = 1399, [1400] = 1400, - [1401] = 1401, - [1402] = 1399, - [1403] = 1403, - [1404] = 1386, + [1401] = 1388, + [1402] = 1386, + [1403] = 1384, + [1404] = 1404, [1405] = 1405, - [1406] = 1406, - [1407] = 1407, - [1408] = 1408, - [1409] = 1409, - [1410] = 1410, + [1406] = 1387, + [1407] = 1383, + [1408] = 1382, + [1409] = 1379, + [1410] = 1378, [1411] = 1411, [1412] = 1412, - [1413] = 1398, - [1414] = 1414, - [1415] = 1415, - [1416] = 1416, - [1417] = 1417, + [1413] = 1377, + [1414] = 1380, + [1415] = 1377, + [1416] = 1381, + [1417] = 1380, [1418] = 1418, [1419] = 1419, - [1420] = 1420, - [1421] = 1421, + [1420] = 1384, + [1421] = 1386, [1422] = 1422, - [1423] = 1423, - [1424] = 1424, - [1425] = 1425, - [1426] = 1426, - [1427] = 1427, - [1428] = 1428, - [1429] = 1429, + [1423] = 1397, + [1424] = 1398, + [1425] = 1388, + [1426] = 1389, + [1427] = 1380, + [1428] = 1381, + [1429] = 1411, [1430] = 1430, [1431] = 1431, - [1432] = 1428, + [1432] = 1377, [1433] = 1433, - [1434] = 1434, - [1435] = 1425, - [1436] = 1436, + [1434] = 1412, + [1435] = 1435, + [1436] = 1378, [1437] = 1437, [1438] = 1438, [1439] = 1439, [1440] = 1440, - [1441] = 1433, - [1442] = 1439, - [1443] = 1431, - [1444] = 1429, + [1441] = 1441, + [1442] = 1442, + [1443] = 1443, + [1444] = 1444, [1445] = 1445, [1446] = 1446, [1447] = 1447, [1448] = 1448, - [1449] = 1428, - [1450] = 1439, + [1449] = 1449, + [1450] = 1431, [1451] = 1451, - [1452] = 1427, - [1453] = 1453, - [1454] = 1425, + [1452] = 1452, + [1453] = 1376, + [1454] = 1454, [1455] = 1455, - [1456] = 1456, - [1457] = 1457, + [1456] = 1455, + [1457] = 1379, [1458] = 1458, - [1459] = 1459, - [1460] = 1445, - [1461] = 1426, + [1459] = 1382, + [1460] = 1383, + [1461] = 1454, [1462] = 1462, [1463] = 1463, - [1464] = 1464, + [1464] = 1387, [1465] = 1465, [1466] = 1466, - [1467] = 1467, + [1467] = 1463, [1468] = 1468, - [1469] = 1469, - [1470] = 1470, - [1471] = 1471, - [1472] = 1472, - [1473] = 1414, + [1469] = 1451, + [1470] = 1418, + [1471] = 1435, + [1472] = 1394, + [1473] = 1449, [1474] = 1474, [1475] = 1475, - [1476] = 1423, - [1477] = 1458, - [1478] = 1440, - [1479] = 1479, - [1480] = 1465, - [1481] = 1463, - [1482] = 1479, - [1483] = 1483, - [1484] = 1468, - [1485] = 1485, - [1486] = 1486, - [1487] = 1447, + [1476] = 1476, + [1477] = 1477, + [1478] = 1444, + [1479] = 1443, + [1480] = 1480, + [1481] = 1481, + [1482] = 1482, + [1483] = 1476, + [1484] = 1399, + [1485] = 1442, + [1486] = 1404, + [1487] = 1487, [1488] = 1488, - [1489] = 1436, - [1490] = 1459, - [1491] = 1437, - [1492] = 1446, - [1493] = 1422, + [1489] = 1430, + [1490] = 1395, + [1491] = 1491, + [1492] = 1396, + [1493] = 1433, [1494] = 1494, - [1495] = 1421, - [1496] = 1420, - [1497] = 1497, - [1498] = 1498, - [1499] = 1499, - [1500] = 1472, - [1501] = 1501, - [1502] = 1474, - [1503] = 1503, - [1504] = 1504, - [1505] = 1419, - [1506] = 1420, - [1507] = 1507, - [1508] = 1421, - [1509] = 1422, - [1510] = 1423, - [1511] = 1511, - [1512] = 1467, - [1513] = 1513, - [1514] = 1464, - [1515] = 1501, - [1516] = 1425, - [1517] = 1507, - [1518] = 1518, - [1519] = 1519, - [1520] = 1520, - [1521] = 1504, - [1522] = 1427, - [1523] = 1428, - [1524] = 1429, - [1525] = 1520, - [1526] = 1418, - [1527] = 1431, - [1528] = 1416, - [1529] = 1457, - [1530] = 1433, - [1531] = 1483, - [1532] = 1419, - [1533] = 1533, + [1495] = 1448, + [1496] = 1440, + [1497] = 1437, }; static TSCharacterRange sym_identifier_character_set_1[] = { @@ -4711,44 +4694,43 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(65); + if (eof) ADVANCE(59); ADVANCE_MAP( '!', 22, - '#', 165, - '%', 98, - '&', 100, - '(', 68, - ')', 69, - '*', 71, - '+', 85, - ',', 70, - '-', 83, - '.', 67, - '/', 96, - '0', 137, - ':', 76, - ';', 166, - '<', 104, - '=', 92, - '>', 110, - '@', 95, - '[', 86, + '#', 135, + '%', 84, + '&', 86, + '(', 62, + ')', 63, + '*', 65, + '+', 73, + ',', 64, + '-', 72, + '.', 61, + '/', 82, + '0', 123, + ':', 69, + ';', 136, + '<', 90, + '=', 79, + '>', 96, + '@', 81, + '[', 74, ); if (lookahead == '\\') SKIP(54); - if (lookahead == ']') ADVANCE(87); - if (lookahead == '^') ADVANCE(101); - if (lookahead == 'e') ADVANCE(161); - if (lookahead == '{') ADVANCE(127); - if (lookahead == '|') ADVANCE(80); - if (lookahead == '}') ADVANCE(89); - if (lookahead == '~') ADVANCE(103); + if (lookahead == ']') ADVANCE(75); + if (lookahead == '^') ADVANCE(87); + if (lookahead == '{') ADVANCE(113); + if (lookahead == '|') ADVANCE(70); + if (lookahead == '}') ADVANCE(77); + if (lookahead == '~') ADVANCE(89); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(61); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(138); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(164); + lookahead == 0xfeff) SKIP(57); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(124); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(134); END_STATE(); case 1: if (lookahead == '\n') SKIP(16); @@ -4772,33 +4754,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(5); END_STATE(); case 7: - if (lookahead == '\n') ADVANCE(130); + if (lookahead == '\n') ADVANCE(116); END_STATE(); case 8: if (lookahead == '\n') SKIP(9); - if (lookahead == '#') ADVANCE(134); - if (lookahead == '\\') ADVANCE(132); - if (lookahead == '{') ADVANCE(127); - if (lookahead == '}') ADVANCE(89); + if (lookahead == '#') ADVANCE(120); + if (lookahead == '\\') ADVANCE(118); + if (lookahead == '{') ADVANCE(113); + if (lookahead == '}') ADVANCE(77); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(133); - if (lookahead != 0) ADVANCE(134); + lookahead == 0xfeff) ADVANCE(119); + if (lookahead != 0) ADVANCE(120); END_STATE(); case 9: if (lookahead == '\n') SKIP(9); - if (lookahead == '#') ADVANCE(134); - if (lookahead == '\\') ADVANCE(132); - if (lookahead == '}') ADVANCE(89); + if (lookahead == '#') ADVANCE(120); + if (lookahead == '\\') ADVANCE(118); + if (lookahead == '}') ADVANCE(77); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(133); + lookahead == 0xfeff) ADVANCE(119); if (lookahead != 0 && - lookahead != '{') ADVANCE(134); + lookahead != '{') ADVANCE(120); END_STATE(); case 10: if (lookahead == '\n') SKIP(17); @@ -4817,112 +4799,112 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 14: ADVANCE_MAP( '!', 22, - '#', 165, - '%', 98, - '&', 100, - '(', 68, - ')', 69, - '*', 71, - '+', 85, - ',', 70, - '-', 82, - '.', 66, - '/', 96, - ':', 76, - ';', 166, - '<', 104, - '=', 92, - '>', 110, - '@', 95, - '[', 86, + '#', 135, + '%', 84, + '&', 86, + '(', 62, + ')', 63, + '*', 65, + '+', 73, + ',', 64, + '-', 71, + '.', 60, + '/', 82, + ':', 69, + ';', 136, + '<', 90, + '=', 79, + '>', 96, + '@', 81, + '[', 74, ); if (lookahead == '\\') SKIP(13); - if (lookahead == ']') ADVANCE(87); - if (lookahead == '^') ADVANCE(101); - if (lookahead == '|') ADVANCE(80); - if (lookahead == '}') ADVANCE(89); + if (lookahead == ']') ADVANCE(75); + if (lookahead == '^') ADVANCE(87); + if (lookahead == '|') ADVANCE(70); + if (lookahead == '}') ADVANCE(77); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(14); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(164); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(134); END_STATE(); case 15: ADVANCE_MAP( '!', 22, - '#', 165, - '%', 98, - '&', 100, - '(', 68, - ')', 69, - '*', 71, - '+', 85, - ',', 70, - '-', 82, - '.', 66, - '/', 96, - ':', 75, - ';', 166, - '<', 104, - '=', 92, - '>', 110, - '@', 95, - '[', 86, + '#', 135, + '%', 84, + '&', 86, + '(', 62, + ')', 63, + '*', 65, + '+', 73, + ',', 64, + '-', 71, + '.', 60, + '/', 82, + ':', 68, + ';', 136, + '<', 90, + '=', 79, + '>', 96, + '@', 81, + '[', 74, ); if (lookahead == '\\') SKIP(4); - if (lookahead == ']') ADVANCE(87); - if (lookahead == '^') ADVANCE(101); - if (lookahead == '|') ADVANCE(80); - if (lookahead == '}') ADVANCE(89); + if (lookahead == ']') ADVANCE(75); + if (lookahead == '^') ADVANCE(87); + if (lookahead == '|') ADVANCE(70); + if (lookahead == '}') ADVANCE(77); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(15); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(164); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(134); END_STATE(); case 16: ADVANCE_MAP( '!', 22, - '#', 165, + '#', 135, '%', 23, '&', 24, - '(', 68, - ')', 69, - '*', 71, - '+', 85, - ',', 70, - '-', 82, + '(', 62, + ')', 63, + '*', 65, + '+', 73, + ',', 64, + '-', 71, '.', 20, - '/', 97, - '0', 137, - ':', 75, - '<', 105, - '=', 92, - '>', 111, + '/', 83, + '0', 123, + ':', 68, + '<', 91, + '=', 79, + '>', 97, '@', 25, - '[', 86, + '[', 74, ); if (lookahead == '\\') SKIP(2); - if (lookahead == ']') ADVANCE(87); + if (lookahead == ']') ADVANCE(75); if (lookahead == '^') ADVANCE(26); - if (lookahead == '{') ADVANCE(88); - if (lookahead == '|') ADVANCE(80); - if (lookahead == '}') ADVANCE(89); - if (lookahead == '~') ADVANCE(103); + if (lookahead == '{') ADVANCE(76); + if (lookahead == '|') ADVANCE(70); + if (lookahead == '}') ADVANCE(77); + if (lookahead == '~') ADVANCE(89); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(16); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(138); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(164); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(124); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(134); END_STATE(); case 17: - if (lookahead == '#') ADVANCE(165); + if (lookahead == '#') ADVANCE(135); if (lookahead == '-') ADVANCE(30); - if (lookahead == ':') ADVANCE(75); + if (lookahead == ':') ADVANCE(68); if (lookahead == '\\') SKIP(11); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || @@ -4931,9 +4913,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0xfeff) SKIP(17); END_STATE(); case 18: - if (lookahead == '#') ADVANCE(165); - if (lookahead == '\\') ADVANCE(131); - if (lookahead == '{') ADVANCE(128); + if (lookahead == '#') ADVANCE(135); + if (lookahead == '\\') ADVANCE(117); + if (lookahead == '{') ADVANCE(114); if (lookahead == '}') ADVANCE(36); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || @@ -4942,7 +4924,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0xfeff) SKIP(19); END_STATE(); case 19: - if (lookahead == '#') ADVANCE(165); + if (lookahead == '#') ADVANCE(135); if (lookahead == '\\') SKIP(6); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || @@ -4952,81 +4934,81 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 20: if (lookahead == '.') ADVANCE(21); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(144); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(130); END_STATE(); case 21: - if (lookahead == '.') ADVANCE(126); + if (lookahead == '.') ADVANCE(112); END_STATE(); case 22: - if (lookahead == '=') ADVANCE(108); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(135); + if (lookahead == '=') ADVANCE(94); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(121); END_STATE(); case 23: - if (lookahead == '=') ADVANCE(119); + if (lookahead == '=') ADVANCE(105); END_STATE(); case 24: - if (lookahead == '=') ADVANCE(123); + if (lookahead == '=') ADVANCE(109); END_STATE(); case 25: - if (lookahead == '=') ADVANCE(117); + if (lookahead == '=') ADVANCE(103); END_STATE(); case 26: - if (lookahead == '=') ADVANCE(124); + if (lookahead == '=') ADVANCE(110); END_STATE(); case 27: - if (lookahead == '=') ADVANCE(118); + if (lookahead == '=') ADVANCE(104); END_STATE(); case 28: - if (lookahead == '=') ADVANCE(122); + if (lookahead == '=') ADVANCE(108); END_STATE(); case 29: - if (lookahead == '=') ADVANCE(121); + if (lookahead == '=') ADVANCE(107); END_STATE(); case 30: - if (lookahead == '>') ADVANCE(93); + if (lookahead == '>') ADVANCE(80); END_STATE(); case 31: if (lookahead == '_') ADVANCE(38); if (lookahead == '0' || - lookahead == '1') ADVANCE(140); + lookahead == '1') ADVANCE(126); END_STATE(); case 32: if (lookahead == '_') ADVANCE(39); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(141); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(127); END_STATE(); case 33: if (lookahead == '_') ADVANCE(43); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(142); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(128); END_STATE(); case 34: if (lookahead == '{') ADVANCE(52); END_STATE(); case 35: - if (lookahead == '}') ADVANCE(130); + if (lookahead == '}') ADVANCE(116); if (lookahead != 0) ADVANCE(35); END_STATE(); case 36: - if (lookahead == '}') ADVANCE(129); + if (lookahead == '}') ADVANCE(115); END_STATE(); case 37: if (lookahead == '+' || lookahead == '-') ADVANCE(40); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(145); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(131); END_STATE(); case 38: if (lookahead == '0' || - lookahead == '1') ADVANCE(140); + lookahead == '1') ADVANCE(126); END_STATE(); case 39: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(141); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(127); END_STATE(); case 40: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(145); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(131); END_STATE(); case 41: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(130); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(116); END_STATE(); case 42: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(41); @@ -5034,12 +5016,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 43: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(142); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(128); END_STATE(); case 44: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(130); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(116); END_STATE(); case 45: if (('0' <= lookahead && lookahead <= '9') || @@ -5081,469 +5063,372 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(35); END_STATE(); case 53: - if (eof) ADVANCE(65); - if (lookahead == '\n') SKIP(61); + if (eof) ADVANCE(59); + if (lookahead == '\n') SKIP(57); END_STATE(); case 54: - if (eof) ADVANCE(65); - if (lookahead == '\n') SKIP(61); + if (eof) ADVANCE(59); + if (lookahead == '\n') SKIP(57); if (lookahead == '\r') SKIP(53); END_STATE(); case 55: - if (eof) ADVANCE(65); - if (lookahead == '\n') SKIP(62); + if (eof) ADVANCE(59); + if (lookahead == '\n') SKIP(58); END_STATE(); case 56: - if (eof) ADVANCE(65); - if (lookahead == '\n') SKIP(62); + if (eof) ADVANCE(59); + if (lookahead == '\n') SKIP(58); if (lookahead == '\r') SKIP(55); END_STATE(); case 57: - if (eof) ADVANCE(65); - if (lookahead == '\n') SKIP(63); - END_STATE(); - case 58: - if (eof) ADVANCE(65); - if (lookahead == '\n') SKIP(63); - if (lookahead == '\r') SKIP(57); - END_STATE(); - case 59: - if (eof) ADVANCE(65); - if (lookahead == '\n') SKIP(64); - END_STATE(); - case 60: - if (eof) ADVANCE(65); - if (lookahead == '\n') SKIP(64); - if (lookahead == '\r') SKIP(59); - END_STATE(); - case 61: - if (eof) ADVANCE(65); + if (eof) ADVANCE(59); ADVANCE_MAP( '!', 22, - '#', 165, - '%', 98, - '&', 100, - '(', 68, - ')', 69, - '*', 71, - '+', 85, - ',', 70, - '-', 83, - '.', 67, - '/', 96, - '0', 137, - ':', 76, - ';', 166, - '<', 104, - '=', 92, - '>', 110, - '@', 95, - '[', 86, + '#', 135, + '%', 84, + '&', 86, + '(', 62, + ')', 63, + '*', 65, + '+', 73, + ',', 64, + '-', 72, + '.', 61, + '/', 82, + '0', 123, + ':', 69, + ';', 136, + '<', 90, + '=', 79, + '>', 96, + '@', 81, + '[', 74, ); if (lookahead == '\\') SKIP(54); - if (lookahead == ']') ADVANCE(87); - if (lookahead == '^') ADVANCE(101); - if (lookahead == 'e') ADVANCE(161); - if (lookahead == '{') ADVANCE(88); - if (lookahead == '|') ADVANCE(80); - if (lookahead == '}') ADVANCE(89); - if (lookahead == '~') ADVANCE(103); + if (lookahead == ']') ADVANCE(75); + if (lookahead == '^') ADVANCE(87); + if (lookahead == '{') ADVANCE(76); + if (lookahead == '|') ADVANCE(70); + if (lookahead == '}') ADVANCE(77); + if (lookahead == '~') ADVANCE(89); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(61); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(138); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(164); + lookahead == 0xfeff) SKIP(57); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(124); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(134); END_STATE(); - case 62: - if (eof) ADVANCE(65); + case 58: + if (eof) ADVANCE(59); ADVANCE_MAP( '!', 22, - '#', 165, - '%', 98, - '&', 100, - '(', 68, - ')', 69, - '*', 71, - '+', 85, - ',', 70, - '-', 82, - '.', 67, - '/', 96, - '0', 137, - ':', 76, - ';', 166, - '<', 104, - '=', 92, - '>', 110, - '@', 95, - '[', 86, + '#', 135, + '%', 84, + '&', 86, + '(', 62, + ')', 63, + '*', 65, + '+', 73, + ',', 64, + '-', 71, + '.', 61, + '/', 82, + '0', 123, + ':', 69, + ';', 136, + '<', 90, + '=', 79, + '>', 96, + '@', 81, + '[', 74, ); if (lookahead == '\\') SKIP(56); - if (lookahead == ']') ADVANCE(87); - if (lookahead == '^') ADVANCE(101); - if (lookahead == '{') ADVANCE(88); - if (lookahead == '|') ADVANCE(80); - if (lookahead == '}') ADVANCE(89); - if (lookahead == '~') ADVANCE(103); + if (lookahead == ']') ADVANCE(75); + if (lookahead == '^') ADVANCE(87); + if (lookahead == '{') ADVANCE(76); + if (lookahead == '|') ADVANCE(70); + if (lookahead == '}') ADVANCE(77); + if (lookahead == '~') ADVANCE(89); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(62); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(138); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(164); + lookahead == 0xfeff) SKIP(58); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(124); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(134); END_STATE(); - case 63: - if (eof) ADVANCE(65); - ADVANCE_MAP( - '#', 165, - '(', 68, - '*', 72, - '+', 84, - '-', 81, - '.', 20, - '0', 137, - '@', 94, - '[', 86, - ); - if (lookahead == '\\') SKIP(58); - if (lookahead == 'e') ADVANCE(162); - if (lookahead == '{') ADVANCE(88); - if (lookahead == '~') ADVANCE(103); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(63); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(138); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(164); - END_STATE(); - case 64: - if (eof) ADVANCE(65); - ADVANCE_MAP( - '#', 165, - '(', 68, - '*', 72, - '+', 84, - '-', 81, - '.', 20, - '0', 137, - '@', 94, - '[', 86, - ); - if (lookahead == '\\') SKIP(60); - if (lookahead == 'e') ADVANCE(163); - if (lookahead == '{') ADVANCE(88); - if (lookahead == '~') ADVANCE(103); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(64); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(138); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(164); - END_STATE(); - case 65: + case 59: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 66: + case 60: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 67: + case 61: ACCEPT_TOKEN(anon_sym_DOT); if (lookahead == '.') ADVANCE(21); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(144); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(130); END_STATE(); - case 68: + case 62: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 69: + case 63: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 70: + case 64: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 71: + case 65: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(91); - if (lookahead == '=') ADVANCE(115); + if (lookahead == '*') ADVANCE(78); + if (lookahead == '=') ADVANCE(101); END_STATE(); - case 72: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(90); - END_STATE(); - case 73: + case 66: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(121); - END_STATE(); - case 74: - ACCEPT_TOKEN(anon_sym_COLON_EQ); - END_STATE(); - case 75: - ACCEPT_TOKEN(anon_sym_COLON); - END_STATE(); - case 76: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '=') ADVANCE(74); - END_STATE(); - case 77: - ACCEPT_TOKEN(anon_sym_except); - if (lookahead == '*') ADVANCE(79); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(164); - END_STATE(); - case 78: - ACCEPT_TOKEN(anon_sym_except); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(164); - END_STATE(); - case 79: - ACCEPT_TOKEN(anon_sym_except_STAR); - END_STATE(); - case 80: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(125); - END_STATE(); - case 81: - ACCEPT_TOKEN(anon_sym_DASH); - END_STATE(); - case 82: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(114); - END_STATE(); - case 83: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(114); - if (lookahead == '>') ADVANCE(93); - END_STATE(); - case 84: - ACCEPT_TOKEN(anon_sym_PLUS); - END_STATE(); - case 85: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(113); - END_STATE(); - case 86: - ACCEPT_TOKEN(anon_sym_LBRACK); - END_STATE(); - case 87: - ACCEPT_TOKEN(anon_sym_RBRACK); - END_STATE(); - case 88: - ACCEPT_TOKEN(anon_sym_LBRACE); - END_STATE(); - case 89: - ACCEPT_TOKEN(anon_sym_RBRACE); - END_STATE(); - case 90: - ACCEPT_TOKEN(anon_sym_STAR_STAR); - END_STATE(); - case 91: - ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '=') ADVANCE(120); - END_STATE(); - case 92: - ACCEPT_TOKEN(anon_sym_EQ); if (lookahead == '=') ADVANCE(107); END_STATE(); - case 93: + case 67: + ACCEPT_TOKEN(anon_sym_COLON_EQ); + END_STATE(); + case 68: + ACCEPT_TOKEN(anon_sym_COLON); + END_STATE(); + case 69: + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == '=') ADVANCE(67); + END_STATE(); + case 70: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(111); + END_STATE(); + case 71: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(100); + END_STATE(); + case 72: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(100); + if (lookahead == '>') ADVANCE(80); + END_STATE(); + case 73: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '=') ADVANCE(99); + END_STATE(); + case 74: + ACCEPT_TOKEN(anon_sym_LBRACK); + END_STATE(); + case 75: + ACCEPT_TOKEN(anon_sym_RBRACK); + END_STATE(); + case 76: + ACCEPT_TOKEN(anon_sym_LBRACE); + END_STATE(); + case 77: + ACCEPT_TOKEN(anon_sym_RBRACE); + END_STATE(); + case 78: + ACCEPT_TOKEN(anon_sym_STAR_STAR); + if (lookahead == '=') ADVANCE(106); + END_STATE(); + case 79: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(93); + END_STATE(); + case 80: ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); - case 94: + case 81: ACCEPT_TOKEN(anon_sym_AT); + if (lookahead == '=') ADVANCE(103); END_STATE(); - case 95: - ACCEPT_TOKEN(anon_sym_AT); - if (lookahead == '=') ADVANCE(117); - END_STATE(); - case 96: + case 82: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(99); - if (lookahead == '=') ADVANCE(116); + if (lookahead == '/') ADVANCE(85); + if (lookahead == '=') ADVANCE(102); END_STATE(); - case 97: + case 83: ACCEPT_TOKEN(anon_sym_SLASH); if (lookahead == '/') ADVANCE(27); - if (lookahead == '=') ADVANCE(116); + if (lookahead == '=') ADVANCE(102); END_STATE(); - case 98: + case 84: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(119); + if (lookahead == '=') ADVANCE(105); END_STATE(); - case 99: + case 85: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); - if (lookahead == '=') ADVANCE(118); + if (lookahead == '=') ADVANCE(104); END_STATE(); - case 100: + case 86: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '=') ADVANCE(123); + if (lookahead == '=') ADVANCE(109); END_STATE(); - case 101: + case 87: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(124); + if (lookahead == '=') ADVANCE(110); END_STATE(); - case 102: + case 88: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(122); + if (lookahead == '=') ADVANCE(108); END_STATE(); - case 103: + case 89: ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); - case 104: + case 90: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(102); - if (lookahead == '=') ADVANCE(106); - if (lookahead == '>') ADVANCE(112); + if (lookahead == '<') ADVANCE(88); + if (lookahead == '=') ADVANCE(92); + if (lookahead == '>') ADVANCE(98); END_STATE(); - case 105: + case 91: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '<') ADVANCE(28); - if (lookahead == '=') ADVANCE(106); - if (lookahead == '>') ADVANCE(112); + if (lookahead == '=') ADVANCE(92); + if (lookahead == '>') ADVANCE(98); END_STATE(); - case 106: + case 92: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 107: + case 93: ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); - case 108: + case 94: ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); - case 109: + case 95: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 110: + case 96: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(109); - if (lookahead == '>') ADVANCE(73); + if (lookahead == '=') ADVANCE(95); + if (lookahead == '>') ADVANCE(66); END_STATE(); - case 111: + case 97: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(109); + if (lookahead == '=') ADVANCE(95); if (lookahead == '>') ADVANCE(29); END_STATE(); - case 112: + case 98: ACCEPT_TOKEN(anon_sym_LT_GT); END_STATE(); - case 113: + case 99: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 114: + case 100: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 115: + case 101: ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); - case 116: + case 102: ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); - case 117: + case 103: ACCEPT_TOKEN(anon_sym_AT_EQ); END_STATE(); - case 118: + case 104: ACCEPT_TOKEN(anon_sym_SLASH_SLASH_EQ); END_STATE(); - case 119: + case 105: ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); - case 120: + case 106: ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); END_STATE(); - case 121: + case 107: ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); - case 122: + case 108: ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); - case 123: + case 109: ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); - case 124: + case 110: ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); - case 125: + case 111: ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); - case 126: + case 112: ACCEPT_TOKEN(sym_ellipsis); END_STATE(); - case 127: + case 113: ACCEPT_TOKEN(anon_sym_LBRACE2); END_STATE(); - case 128: + case 114: ACCEPT_TOKEN(anon_sym_LBRACE2); - if (lookahead == '{') ADVANCE(129); + if (lookahead == '{') ADVANCE(115); END_STATE(); - case 129: + case 115: ACCEPT_TOKEN(sym__escape_interpolation); END_STATE(); - case 130: + case 116: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 131: + case 117: ACCEPT_TOKEN(anon_sym_BSLASH); ADVANCE_MAP( - '\n', 130, + '\n', 116, '\r', 7, 'N', 34, 'U', 51, 'u', 47, 'x', 45, - '"', 130, - '\'', 130, - '\\', 130, - 'a', 130, - 'b', 130, - 'f', 130, - 'n', 130, - 'r', 130, - 't', 130, - 'v', 130, + '"', 116, + '\'', 116, + '\\', 116, + 'a', 116, + 'b', 116, + 'f', 116, + 'n', 116, + 'r', 116, + 't', 116, + 'v', 116, ); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(42); END_STATE(); - case 132: + case 118: ACCEPT_TOKEN(aux_sym_format_specifier_token1); - if (lookahead == '\r') ADVANCE(134); + if (lookahead == '\r') ADVANCE(120); if (lookahead != 0 && lookahead != '\n' && lookahead != '{' && - lookahead != '}') ADVANCE(134); + lookahead != '}') ADVANCE(120); END_STATE(); - case 133: + case 119: ACCEPT_TOKEN(aux_sym_format_specifier_token1); - if (lookahead == '#') ADVANCE(134); - if (lookahead == '\\') ADVANCE(132); + if (lookahead == '#') ADVANCE(120); + if (lookahead == '\\') ADVANCE(118); if (lookahead == '\t' || (0x0b <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(133); + lookahead == 0xfeff) ADVANCE(119); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '{' && - lookahead != '}') ADVANCE(134); + lookahead != '}') ADVANCE(120); END_STATE(); - case 134: + case 120: ACCEPT_TOKEN(aux_sym_format_specifier_token1); if (lookahead != 0 && lookahead != '\n' && lookahead != '{' && - lookahead != '}') ADVANCE(134); + lookahead != '}') ADVANCE(120); END_STATE(); - case 135: + case 121: ACCEPT_TOKEN(sym_type_conversion); END_STATE(); - case 136: + case 122: ACCEPT_TOKEN(sym_integer); END_STATE(); - case 137: + case 123: ACCEPT_TOKEN(sym_integer); ADVANCE_MAP( - '.', 146, - '_', 139, + '.', 132, + '_', 125, 'B', 31, 'b', 31, 'E', 37, @@ -5552,193 +5437,113 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'o', 32, 'X', 33, 'x', 33, - 'J', 136, - 'L', 136, - 'j', 136, - 'l', 136, + 'J', 122, + 'L', 122, + 'j', 122, + 'l', 122, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(138); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(124); END_STATE(); - case 138: + case 124: ACCEPT_TOKEN(sym_integer); ADVANCE_MAP( - '.', 146, - '_', 139, + '.', 132, + '_', 125, 'E', 37, 'e', 37, - 'J', 136, - 'L', 136, - 'j', 136, - 'l', 136, + 'J', 122, + 'L', 122, + 'j', 122, + 'l', 122, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(138); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(124); END_STATE(); - case 139: + case 125: ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(146); + if (lookahead == '.') ADVANCE(132); if (lookahead == 'E' || lookahead == 'e') ADVANCE(37); if (lookahead == 'J' || lookahead == 'L' || lookahead == 'j' || - lookahead == 'l') ADVANCE(136); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(138); + lookahead == 'l') ADVANCE(122); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(124); END_STATE(); - case 140: + case 126: ACCEPT_TOKEN(sym_integer); if (lookahead == '_') ADVANCE(38); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(136); + lookahead == 'l') ADVANCE(122); if (lookahead == '0' || - lookahead == '1') ADVANCE(140); + lookahead == '1') ADVANCE(126); END_STATE(); - case 141: + case 127: ACCEPT_TOKEN(sym_integer); if (lookahead == '_') ADVANCE(39); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(136); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(141); + lookahead == 'l') ADVANCE(122); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(127); END_STATE(); - case 142: + case 128: ACCEPT_TOKEN(sym_integer); if (lookahead == '_') ADVANCE(43); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(136); + lookahead == 'l') ADVANCE(122); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(142); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(128); END_STATE(); - case 143: + case 129: ACCEPT_TOKEN(sym_float); END_STATE(); - case 144: + case 130: ACCEPT_TOKEN(sym_float); - if (lookahead == '_') ADVANCE(146); + if (lookahead == '_') ADVANCE(132); if (lookahead == 'E' || lookahead == 'e') ADVANCE(37); if (lookahead == 'J' || lookahead == 'L' || lookahead == 'j' || - lookahead == 'l') ADVANCE(143); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(144); + lookahead == 'l') ADVANCE(129); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(130); END_STATE(); - case 145: + case 131: ACCEPT_TOKEN(sym_float); - if (lookahead == '_') ADVANCE(147); + if (lookahead == '_') ADVANCE(133); if (lookahead == 'J' || lookahead == 'L' || lookahead == 'j' || - lookahead == 'l') ADVANCE(143); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(145); + lookahead == 'l') ADVANCE(129); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(131); END_STATE(); - case 146: + case 132: ACCEPT_TOKEN(sym_float); if (lookahead == 'E' || lookahead == 'e') ADVANCE(37); if (lookahead == 'J' || lookahead == 'L' || lookahead == 'j' || - lookahead == 'l') ADVANCE(143); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(144); + lookahead == 'l') ADVANCE(129); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(130); END_STATE(); - case 147: + case 133: ACCEPT_TOKEN(sym_float); if (lookahead == 'J' || lookahead == 'L' || lookahead == 'j' || - lookahead == 'l') ADVANCE(143); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(145); + lookahead == 'l') ADVANCE(129); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(131); END_STATE(); - case 148: + case 134: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '*') ADVANCE(79); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(164); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(134); END_STATE(); - case 149: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(152); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(164); - END_STATE(); - case 150: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(153); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(164); - END_STATE(); - case 151: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(154); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(164); - END_STATE(); - case 152: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(155); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(164); - END_STATE(); - case 153: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(156); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(164); - END_STATE(); - case 154: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(157); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(164); - END_STATE(); - case 155: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(158); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(164); - END_STATE(); - case 156: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(159); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(164); - END_STATE(); - case 157: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(160); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(164); - END_STATE(); - case 158: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(77); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(164); - END_STATE(); - case 159: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(78); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(164); - END_STATE(); - case 160: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(148); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(164); - END_STATE(); - case 161: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'x') ADVANCE(149); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(164); - END_STATE(); - case 162: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'x') ADVANCE(150); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(164); - END_STATE(); - case 163: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'x') ADVANCE(151); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(164); - END_STATE(); - case 164: - ACCEPT_TOKEN(sym_identifier); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(164); - END_STATE(); - case 165: + case 135: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(165); + lookahead != '\n') ADVANCE(135); END_STATE(); - case 166: + case 136: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); default: @@ -5908,25 +5713,26 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 's') ADVANCE(74); END_STATE(); case 37: - if (lookahead == 'e') ADVANCE(75); + if (lookahead == 'c') ADVANCE(75); + if (lookahead == 'e') ADVANCE(76); END_STATE(); case 38: - if (lookahead == 'n') ADVANCE(76); + if (lookahead == 'n') ADVANCE(77); END_STATE(); case 39: - if (lookahead == 'r') ADVANCE(77); + if (lookahead == 'r') ADVANCE(78); END_STATE(); case 40: - if (lookahead == 'o') ADVANCE(78); + if (lookahead == 'o') ADVANCE(79); END_STATE(); case 41: - if (lookahead == 'o') ADVANCE(79); + if (lookahead == 'o') ADVANCE(80); END_STATE(); case 42: ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 43: - if (lookahead == 'p') ADVANCE(80); + if (lookahead == 'p') ADVANCE(81); END_STATE(); case 44: ACCEPT_TOKEN(anon_sym_in); @@ -5935,80 +5741,80 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_is); END_STATE(); case 46: - if (lookahead == 'm') ADVANCE(81); + if (lookahead == 'm') ADVANCE(82); END_STATE(); case 47: - if (lookahead == 't') ADVANCE(82); + if (lookahead == 't') ADVANCE(83); END_STATE(); case 48: - if (lookahead == 'n') ADVANCE(83); - if (lookahead == 't') ADVANCE(84); + if (lookahead == 'n') ADVANCE(84); + if (lookahead == 't') ADVANCE(85); END_STATE(); case 49: ACCEPT_TOKEN(anon_sym_or); END_STATE(); case 50: - if (lookahead == 's') ADVANCE(85); + if (lookahead == 's') ADVANCE(86); END_STATE(); case 51: - if (lookahead == 'i') ADVANCE(86); - END_STATE(); - case 52: if (lookahead == 'i') ADVANCE(87); END_STATE(); + case 52: + if (lookahead == 'i') ADVANCE(88); + END_STATE(); case 53: - if (lookahead == 't') ADVANCE(88); + if (lookahead == 't') ADVANCE(89); END_STATE(); case 54: - if (lookahead == 'y') ADVANCE(89); + if (lookahead == 'y') ADVANCE(90); END_STATE(); case 55: - if (lookahead == 'p') ADVANCE(90); + if (lookahead == 'p') ADVANCE(91); END_STATE(); case 56: - if (lookahead == 'i') ADVANCE(91); + if (lookahead == 'i') ADVANCE(92); END_STATE(); case 57: - if (lookahead == 't') ADVANCE(92); + if (lookahead == 't') ADVANCE(93); END_STATE(); case 58: - if (lookahead == 'e') ADVANCE(93); + if (lookahead == 'e') ADVANCE(94); END_STATE(); case 59: - if (lookahead == 's') ADVANCE(94); + if (lookahead == 's') ADVANCE(95); END_STATE(); case 60: - if (lookahead == 'e') ADVANCE(95); - END_STATE(); - case 61: if (lookahead == 'e') ADVANCE(96); END_STATE(); + case 61: + if (lookahead == 'e') ADVANCE(97); + END_STATE(); case 62: - if (lookahead == 'u') ADVANCE(97); + if (lookahead == 'u') ADVANCE(98); END_STATE(); case 63: ACCEPT_TOKEN(anon_sym_and); END_STATE(); case 64: - if (lookahead == 'e') ADVANCE(98); + if (lookahead == 'e') ADVANCE(99); END_STATE(); case 65: - if (lookahead == 'n') ADVANCE(99); + if (lookahead == 'n') ADVANCE(100); END_STATE(); case 66: - if (lookahead == 'i') ADVANCE(100); + if (lookahead == 'i') ADVANCE(101); END_STATE(); case 67: - if (lookahead == 'a') ADVANCE(101); + if (lookahead == 'a') ADVANCE(102); END_STATE(); case 68: - if (lookahead == 'e') ADVANCE(102); + if (lookahead == 'e') ADVANCE(103); END_STATE(); case 69: - if (lookahead == 's') ADVANCE(103); + if (lookahead == 's') ADVANCE(104); END_STATE(); case 70: - if (lookahead == 't') ADVANCE(104); + if (lookahead == 't') ADVANCE(105); END_STATE(); case 71: ACCEPT_TOKEN(anon_sym_def); @@ -6017,264 +5823,276 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_del); END_STATE(); case 73: - if (lookahead == 'f') ADVANCE(105); + if (lookahead == 'f') ADVANCE(106); END_STATE(); case 74: - if (lookahead == 'e') ADVANCE(106); + if (lookahead == 'e') ADVANCE(107); END_STATE(); case 75: - if (lookahead == 'c') ADVANCE(107); + if (lookahead == 'e') ADVANCE(108); END_STATE(); case 76: - if (lookahead == 'a') ADVANCE(108); + if (lookahead == 'c') ADVANCE(109); END_STATE(); case 77: - ACCEPT_TOKEN(anon_sym_for); + if (lookahead == 'a') ADVANCE(110); END_STATE(); case 78: - if (lookahead == 'm') ADVANCE(109); + ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 79: - if (lookahead == 'b') ADVANCE(110); + if (lookahead == 'm') ADVANCE(111); END_STATE(); case 80: - if (lookahead == 'o') ADVANCE(111); - END_STATE(); - case 81: if (lookahead == 'b') ADVANCE(112); END_STATE(); + case 81: + if (lookahead == 'o') ADVANCE(113); + END_STATE(); case 82: - if (lookahead == 'c') ADVANCE(113); + if (lookahead == 'b') ADVANCE(114); END_STATE(); case 83: - if (lookahead == 'l') ADVANCE(114); + if (lookahead == 'c') ADVANCE(115); END_STATE(); case 84: - ACCEPT_TOKEN(anon_sym_not); + if (lookahead == 'l') ADVANCE(116); END_STATE(); case 85: - if (lookahead == 's') ADVANCE(115); + ACCEPT_TOKEN(anon_sym_not); END_STATE(); case 86: - if (lookahead == 'n') ADVANCE(116); - END_STATE(); - case 87: if (lookahead == 's') ADVANCE(117); END_STATE(); + case 87: + if (lookahead == 'n') ADVANCE(118); + END_STATE(); case 88: - if (lookahead == 'u') ADVANCE(118); + if (lookahead == 's') ADVANCE(119); END_STATE(); case 89: - ACCEPT_TOKEN(anon_sym_try); + if (lookahead == 'u') ADVANCE(120); END_STATE(); case 90: - if (lookahead == 'e') ADVANCE(119); + ACCEPT_TOKEN(anon_sym_try); END_STATE(); case 91: - if (lookahead == 'l') ADVANCE(120); + if (lookahead == 'e') ADVANCE(121); END_STATE(); case 92: - if (lookahead == 'h') ADVANCE(121); - END_STATE(); - case 93: if (lookahead == 'l') ADVANCE(122); END_STATE(); + case 93: + if (lookahead == 'h') ADVANCE(123); + END_STATE(); case 94: - if (lookahead == 'e') ADVANCE(123); + if (lookahead == 'l') ADVANCE(124); END_STATE(); case 95: - ACCEPT_TOKEN(sym_none); + if (lookahead == 'e') ADVANCE(125); END_STATE(); case 96: - ACCEPT_TOKEN(sym_true); + ACCEPT_TOKEN(sym_none); END_STATE(); case 97: - if (lookahead == 't') ADVANCE(124); + ACCEPT_TOKEN(sym_true); END_STATE(); case 98: - if (lookahead == 'r') ADVANCE(125); + if (lookahead == 't') ADVANCE(126); END_STATE(); case 99: - if (lookahead == 'c') ADVANCE(126); + if (lookahead == 'r') ADVANCE(127); END_STATE(); case 100: - if (lookahead == 't') ADVANCE(127); + if (lookahead == 'c') ADVANCE(128); END_STATE(); case 101: - if (lookahead == 'k') ADVANCE(128); + if (lookahead == 't') ADVANCE(129); END_STATE(); case 102: - ACCEPT_TOKEN(anon_sym_case); + if (lookahead == 'k') ADVANCE(130); END_STATE(); case 103: - if (lookahead == 's') ADVANCE(129); + ACCEPT_TOKEN(anon_sym_case); END_STATE(); case 104: - if (lookahead == 'i') ADVANCE(130); + if (lookahead == 's') ADVANCE(131); END_STATE(); case 105: - ACCEPT_TOKEN(anon_sym_elif); + if (lookahead == 'i') ADVANCE(132); END_STATE(); case 106: - ACCEPT_TOKEN(anon_sym_else); + ACCEPT_TOKEN(anon_sym_elif); END_STATE(); case 107: - ACCEPT_TOKEN(anon_sym_exec); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 108: - if (lookahead == 'l') ADVANCE(131); + if (lookahead == 'p') ADVANCE(133); END_STATE(); case 109: - ACCEPT_TOKEN(anon_sym_from); + ACCEPT_TOKEN(anon_sym_exec); END_STATE(); case 110: - if (lookahead == 'a') ADVANCE(132); + if (lookahead == 'l') ADVANCE(134); END_STATE(); case 111: - if (lookahead == 'r') ADVANCE(133); + ACCEPT_TOKEN(anon_sym_from); END_STATE(); case 112: - if (lookahead == 'd') ADVANCE(134); + if (lookahead == 'a') ADVANCE(135); END_STATE(); case 113: - if (lookahead == 'h') ADVANCE(135); + if (lookahead == 'r') ADVANCE(136); END_STATE(); case 114: - if (lookahead == 'o') ADVANCE(136); + if (lookahead == 'd') ADVANCE(137); END_STATE(); case 115: - ACCEPT_TOKEN(anon_sym_pass); + if (lookahead == 'h') ADVANCE(138); END_STATE(); case 116: - if (lookahead == 't') ADVANCE(137); + if (lookahead == 'o') ADVANCE(139); END_STATE(); case 117: - if (lookahead == 'e') ADVANCE(138); + ACCEPT_TOKEN(anon_sym_pass); END_STATE(); case 118: - if (lookahead == 'r') ADVANCE(139); + if (lookahead == 't') ADVANCE(140); END_STATE(); case 119: - ACCEPT_TOKEN(anon_sym_type); + if (lookahead == 'e') ADVANCE(141); END_STATE(); case 120: - if (lookahead == 'e') ADVANCE(140); + if (lookahead == 'r') ADVANCE(142); END_STATE(); case 121: - ACCEPT_TOKEN(anon_sym_with); + ACCEPT_TOKEN(anon_sym_type); END_STATE(); case 122: - if (lookahead == 'd') ADVANCE(141); + if (lookahead == 'e') ADVANCE(143); END_STATE(); case 123: - ACCEPT_TOKEN(sym_false); + ACCEPT_TOKEN(anon_sym_with); END_STATE(); case 124: - if (lookahead == 'u') ADVANCE(142); + if (lookahead == 'd') ADVANCE(144); END_STATE(); case 125: - if (lookahead == 't') ADVANCE(143); + ACCEPT_TOKEN(sym_false); END_STATE(); case 126: - ACCEPT_TOKEN(anon_sym_async); + if (lookahead == 'u') ADVANCE(145); END_STATE(); case 127: - ACCEPT_TOKEN(anon_sym_await); + if (lookahead == 't') ADVANCE(146); END_STATE(); case 128: - ACCEPT_TOKEN(anon_sym_break); + ACCEPT_TOKEN(anon_sym_async); END_STATE(); case 129: - ACCEPT_TOKEN(anon_sym_class); + ACCEPT_TOKEN(anon_sym_await); END_STATE(); case 130: - if (lookahead == 'n') ADVANCE(144); + ACCEPT_TOKEN(anon_sym_break); END_STATE(); case 131: - if (lookahead == 'l') ADVANCE(145); + ACCEPT_TOKEN(anon_sym_class); END_STATE(); case 132: - if (lookahead == 'l') ADVANCE(146); + if (lookahead == 'n') ADVANCE(147); END_STATE(); case 133: - if (lookahead == 't') ADVANCE(147); + if (lookahead == 't') ADVANCE(148); END_STATE(); case 134: - if (lookahead == 'a') ADVANCE(148); + if (lookahead == 'l') ADVANCE(149); END_STATE(); case 135: - ACCEPT_TOKEN(anon_sym_match); + if (lookahead == 'l') ADVANCE(150); END_STATE(); case 136: - if (lookahead == 'c') ADVANCE(149); + if (lookahead == 't') ADVANCE(151); END_STATE(); case 137: - ACCEPT_TOKEN(anon_sym_print); + if (lookahead == 'a') ADVANCE(152); END_STATE(); case 138: - ACCEPT_TOKEN(anon_sym_raise); + ACCEPT_TOKEN(anon_sym_match); END_STATE(); case 139: - if (lookahead == 'n') ADVANCE(150); + if (lookahead == 'c') ADVANCE(153); END_STATE(); case 140: - ACCEPT_TOKEN(anon_sym_while); + ACCEPT_TOKEN(anon_sym_print); END_STATE(); case 141: - ACCEPT_TOKEN(anon_sym_yield); + ACCEPT_TOKEN(anon_sym_raise); END_STATE(); case 142: - if (lookahead == 'r') ADVANCE(151); + if (lookahead == 'n') ADVANCE(154); END_STATE(); case 143: - ACCEPT_TOKEN(anon_sym_assert); + ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 144: - if (lookahead == 'u') ADVANCE(152); + ACCEPT_TOKEN(anon_sym_yield); END_STATE(); case 145: - if (lookahead == 'y') ADVANCE(153); + if (lookahead == 'r') ADVANCE(155); END_STATE(); case 146: - ACCEPT_TOKEN(anon_sym_global); + ACCEPT_TOKEN(anon_sym_assert); END_STATE(); case 147: - ACCEPT_TOKEN(anon_sym_import); + if (lookahead == 'u') ADVANCE(156); END_STATE(); case 148: - ACCEPT_TOKEN(anon_sym_lambda); + ACCEPT_TOKEN(anon_sym_except); END_STATE(); case 149: - if (lookahead == 'a') ADVANCE(154); + if (lookahead == 'y') ADVANCE(157); END_STATE(); case 150: - ACCEPT_TOKEN(anon_sym_return); + ACCEPT_TOKEN(anon_sym_global); END_STATE(); case 151: - if (lookahead == 'e') ADVANCE(155); + ACCEPT_TOKEN(anon_sym_import); END_STATE(); case 152: - if (lookahead == 'e') ADVANCE(156); + ACCEPT_TOKEN(anon_sym_lambda); END_STATE(); case 153: - ACCEPT_TOKEN(anon_sym_finally); + if (lookahead == 'a') ADVANCE(158); END_STATE(); case 154: - if (lookahead == 'l') ADVANCE(157); + ACCEPT_TOKEN(anon_sym_return); END_STATE(); case 155: - if (lookahead == '_') ADVANCE(158); + if (lookahead == 'e') ADVANCE(159); END_STATE(); case 156: - ACCEPT_TOKEN(anon_sym_continue); + if (lookahead == 'e') ADVANCE(160); END_STATE(); case 157: - ACCEPT_TOKEN(anon_sym_nonlocal); + ACCEPT_TOKEN(anon_sym_finally); END_STATE(); case 158: - if (lookahead == '_') ADVANCE(159); + if (lookahead == 'l') ADVANCE(161); END_STATE(); case 159: + if (lookahead == '_') ADVANCE(162); + END_STATE(); + case 160: + ACCEPT_TOKEN(anon_sym_continue); + END_STATE(); + case 161: + ACCEPT_TOKEN(anon_sym_nonlocal); + END_STATE(); + case 162: + if (lookahead == '_') ADVANCE(163); + END_STATE(); + case 163: ACCEPT_TOKEN(anon_sym___future__); END_STATE(); default: @@ -6284,617 +6102,617 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 62, .external_lex_state = 2}, - [2] = {.lex_state = 62, .external_lex_state = 3}, - [3] = {.lex_state = 62, .external_lex_state = 3}, - [4] = {.lex_state = 62, .external_lex_state = 3}, - [5] = {.lex_state = 62, .external_lex_state = 3}, - [6] = {.lex_state = 62, .external_lex_state = 3}, - [7] = {.lex_state = 62, .external_lex_state = 3}, - [8] = {.lex_state = 62, .external_lex_state = 3}, - [9] = {.lex_state = 62, .external_lex_state = 3}, - [10] = {.lex_state = 62, .external_lex_state = 3}, - [11] = {.lex_state = 62, .external_lex_state = 3}, - [12] = {.lex_state = 62, .external_lex_state = 3}, - [13] = {.lex_state = 62, .external_lex_state = 3}, - [14] = {.lex_state = 62, .external_lex_state = 3}, - [15] = {.lex_state = 62, .external_lex_state = 3}, - [16] = {.lex_state = 62, .external_lex_state = 3}, - [17] = {.lex_state = 62, .external_lex_state = 3}, - [18] = {.lex_state = 62, .external_lex_state = 3}, - [19] = {.lex_state = 62, .external_lex_state = 3}, - [20] = {.lex_state = 62, .external_lex_state = 3}, - [21] = {.lex_state = 62, .external_lex_state = 3}, - [22] = {.lex_state = 62, .external_lex_state = 3}, - [23] = {.lex_state = 62, .external_lex_state = 3}, - [24] = {.lex_state = 62, .external_lex_state = 3}, - [25] = {.lex_state = 62, .external_lex_state = 3}, - [26] = {.lex_state = 62, .external_lex_state = 3}, - [27] = {.lex_state = 62, .external_lex_state = 3}, - [28] = {.lex_state = 62, .external_lex_state = 3}, - [29] = {.lex_state = 62, .external_lex_state = 3}, - [30] = {.lex_state = 62, .external_lex_state = 3}, - [31] = {.lex_state = 62, .external_lex_state = 3}, - [32] = {.lex_state = 62, .external_lex_state = 3}, - [33] = {.lex_state = 62, .external_lex_state = 3}, - [34] = {.lex_state = 62, .external_lex_state = 3}, - [35] = {.lex_state = 62, .external_lex_state = 3}, - [36] = {.lex_state = 62, .external_lex_state = 3}, - [37] = {.lex_state = 62, .external_lex_state = 3}, - [38] = {.lex_state = 62, .external_lex_state = 3}, - [39] = {.lex_state = 62, .external_lex_state = 3}, - [40] = {.lex_state = 62, .external_lex_state = 3}, - [41] = {.lex_state = 62, .external_lex_state = 3}, - [42] = {.lex_state = 62, .external_lex_state = 3}, - [43] = {.lex_state = 62, .external_lex_state = 3}, - [44] = {.lex_state = 62, .external_lex_state = 3}, - [45] = {.lex_state = 62, .external_lex_state = 3}, - [46] = {.lex_state = 62, .external_lex_state = 3}, - [47] = {.lex_state = 62, .external_lex_state = 3}, - [48] = {.lex_state = 62, .external_lex_state = 3}, - [49] = {.lex_state = 62, .external_lex_state = 3}, - [50] = {.lex_state = 62, .external_lex_state = 3}, - [51] = {.lex_state = 62, .external_lex_state = 3}, - [52] = {.lex_state = 62, .external_lex_state = 3}, - [53] = {.lex_state = 62, .external_lex_state = 3}, - [54] = {.lex_state = 62, .external_lex_state = 3}, - [55] = {.lex_state = 62, .external_lex_state = 3}, - [56] = {.lex_state = 62, .external_lex_state = 3}, - [57] = {.lex_state = 62, .external_lex_state = 3}, - [58] = {.lex_state = 62, .external_lex_state = 3}, - [59] = {.lex_state = 62, .external_lex_state = 3}, - [60] = {.lex_state = 62, .external_lex_state = 3}, - [61] = {.lex_state = 62, .external_lex_state = 2}, - [62] = {.lex_state = 62, .external_lex_state = 3}, - [63] = {.lex_state = 62, .external_lex_state = 3}, - [64] = {.lex_state = 62, .external_lex_state = 3}, - [65] = {.lex_state = 62, .external_lex_state = 3}, - [66] = {.lex_state = 62, .external_lex_state = 2}, - [67] = {.lex_state = 62, .external_lex_state = 3}, - [68] = {.lex_state = 62, .external_lex_state = 3}, - [69] = {.lex_state = 62, .external_lex_state = 3}, - [70] = {.lex_state = 62, .external_lex_state = 4}, - [71] = {.lex_state = 62, .external_lex_state = 4}, - [72] = {.lex_state = 62, .external_lex_state = 5}, - [73] = {.lex_state = 62, .external_lex_state = 5}, - [74] = {.lex_state = 62, .external_lex_state = 5}, - [75] = {.lex_state = 62, .external_lex_state = 5}, - [76] = {.lex_state = 62, .external_lex_state = 5}, - [77] = {.lex_state = 62, .external_lex_state = 5}, - [78] = {.lex_state = 62, .external_lex_state = 5}, - [79] = {.lex_state = 62, .external_lex_state = 5}, - [80] = {.lex_state = 62, .external_lex_state = 5}, - [81] = {.lex_state = 62, .external_lex_state = 5}, - [82] = {.lex_state = 62, .external_lex_state = 5}, - [83] = {.lex_state = 62, .external_lex_state = 5}, - [84] = {.lex_state = 62, .external_lex_state = 5}, - [85] = {.lex_state = 62, .external_lex_state = 5}, - [86] = {.lex_state = 62, .external_lex_state = 5}, - [87] = {.lex_state = 62, .external_lex_state = 5}, - [88] = {.lex_state = 62, .external_lex_state = 5}, - [89] = {.lex_state = 62, .external_lex_state = 5}, - [90] = {.lex_state = 62, .external_lex_state = 4}, - [91] = {.lex_state = 62, .external_lex_state = 5}, - [92] = {.lex_state = 62, .external_lex_state = 5}, - [93] = {.lex_state = 62, .external_lex_state = 5}, - [94] = {.lex_state = 62, .external_lex_state = 5}, - [95] = {.lex_state = 62, .external_lex_state = 5}, - [96] = {.lex_state = 62, .external_lex_state = 5}, - [97] = {.lex_state = 62, .external_lex_state = 5}, - [98] = {.lex_state = 62, .external_lex_state = 5}, - [99] = {.lex_state = 62, .external_lex_state = 5}, - [100] = {.lex_state = 62, .external_lex_state = 5}, - [101] = {.lex_state = 62, .external_lex_state = 5}, - [102] = {.lex_state = 62, .external_lex_state = 5}, - [103] = {.lex_state = 62, .external_lex_state = 5}, - [104] = {.lex_state = 62, .external_lex_state = 5}, - [105] = {.lex_state = 62, .external_lex_state = 5}, - [106] = {.lex_state = 62, .external_lex_state = 5}, - [107] = {.lex_state = 62, .external_lex_state = 5}, - [108] = {.lex_state = 62, .external_lex_state = 5}, - [109] = {.lex_state = 62, .external_lex_state = 5}, - [110] = {.lex_state = 62, .external_lex_state = 5}, - [111] = {.lex_state = 62, .external_lex_state = 5}, - [112] = {.lex_state = 62, .external_lex_state = 5}, - [113] = {.lex_state = 62, .external_lex_state = 5}, - [114] = {.lex_state = 62, .external_lex_state = 5}, - [115] = {.lex_state = 62, .external_lex_state = 5}, - [116] = {.lex_state = 62, .external_lex_state = 5}, - [117] = {.lex_state = 62, .external_lex_state = 5}, - [118] = {.lex_state = 62, .external_lex_state = 5}, - [119] = {.lex_state = 62, .external_lex_state = 5}, - [120] = {.lex_state = 62, .external_lex_state = 5}, - [121] = {.lex_state = 62, .external_lex_state = 5}, - [122] = {.lex_state = 62, .external_lex_state = 5}, - [123] = {.lex_state = 62, .external_lex_state = 5}, - [124] = {.lex_state = 62, .external_lex_state = 5}, - [125] = {.lex_state = 62, .external_lex_state = 5}, - [126] = {.lex_state = 62, .external_lex_state = 5}, - [127] = {.lex_state = 62, .external_lex_state = 5}, - [128] = {.lex_state = 62, .external_lex_state = 5}, - [129] = {.lex_state = 62, .external_lex_state = 5}, - [130] = {.lex_state = 62, .external_lex_state = 5}, - [131] = {.lex_state = 62, .external_lex_state = 2}, - [132] = {.lex_state = 62, .external_lex_state = 4}, - [133] = {.lex_state = 62, .external_lex_state = 4}, - [134] = {.lex_state = 62, .external_lex_state = 4}, - [135] = {.lex_state = 62, .external_lex_state = 4}, - [136] = {.lex_state = 62, .external_lex_state = 4}, - [137] = {.lex_state = 62, .external_lex_state = 4}, - [138] = {.lex_state = 62, .external_lex_state = 4}, - [139] = {.lex_state = 62, .external_lex_state = 4}, - [140] = {.lex_state = 62, .external_lex_state = 4}, - [141] = {.lex_state = 62, .external_lex_state = 4}, - [142] = {.lex_state = 62, .external_lex_state = 4}, - [143] = {.lex_state = 62, .external_lex_state = 4}, - [144] = {.lex_state = 62, .external_lex_state = 4}, - [145] = {.lex_state = 62, .external_lex_state = 4}, - [146] = {.lex_state = 62, .external_lex_state = 4}, - [147] = {.lex_state = 62, .external_lex_state = 2}, - [148] = {.lex_state = 62, .external_lex_state = 2}, - [149] = {.lex_state = 62, .external_lex_state = 2}, - [150] = {.lex_state = 62, .external_lex_state = 4}, - [151] = {.lex_state = 62, .external_lex_state = 2}, - [152] = {.lex_state = 62, .external_lex_state = 2}, - [153] = {.lex_state = 62, .external_lex_state = 2}, - [154] = {.lex_state = 62, .external_lex_state = 2}, - [155] = {.lex_state = 62, .external_lex_state = 2}, - [156] = {.lex_state = 62, .external_lex_state = 2}, - [157] = {.lex_state = 62, .external_lex_state = 2}, - [158] = {.lex_state = 16, .external_lex_state = 2}, - [159] = {.lex_state = 62, .external_lex_state = 2}, - [160] = {.lex_state = 62, .external_lex_state = 2}, - [161] = {.lex_state = 62, .external_lex_state = 2}, - [162] = {.lex_state = 62, .external_lex_state = 2}, - [163] = {.lex_state = 62, .external_lex_state = 2}, - [164] = {.lex_state = 62, .external_lex_state = 2}, - [165] = {.lex_state = 16, .external_lex_state = 2}, - [166] = {.lex_state = 16, .external_lex_state = 2}, - [167] = {.lex_state = 16, .external_lex_state = 2}, - [168] = {.lex_state = 16, .external_lex_state = 2}, - [169] = {.lex_state = 16, .external_lex_state = 2}, - [170] = {.lex_state = 62, .external_lex_state = 2}, - [171] = {.lex_state = 62, .external_lex_state = 2}, - [172] = {.lex_state = 62, .external_lex_state = 2}, - [173] = {.lex_state = 62, .external_lex_state = 2}, - [174] = {.lex_state = 62, .external_lex_state = 2}, - [175] = {.lex_state = 62, .external_lex_state = 2}, - [176] = {.lex_state = 62, .external_lex_state = 2}, - [177] = {.lex_state = 62, .external_lex_state = 2}, - [178] = {.lex_state = 62, .external_lex_state = 4}, - [179] = {.lex_state = 62, .external_lex_state = 2}, - [180] = {.lex_state = 62, .external_lex_state = 2}, - [181] = {.lex_state = 62, .external_lex_state = 2}, - [182] = {.lex_state = 62, .external_lex_state = 4}, - [183] = {.lex_state = 62, .external_lex_state = 2}, - [184] = {.lex_state = 62, .external_lex_state = 2}, - [185] = {.lex_state = 62, .external_lex_state = 2}, - [186] = {.lex_state = 62, .external_lex_state = 2}, - [187] = {.lex_state = 62, .external_lex_state = 2}, - [188] = {.lex_state = 62, .external_lex_state = 2}, - [189] = {.lex_state = 62, .external_lex_state = 2}, - [190] = {.lex_state = 62, .external_lex_state = 2}, - [191] = {.lex_state = 62, .external_lex_state = 2}, - [192] = {.lex_state = 62, .external_lex_state = 4}, - [193] = {.lex_state = 62, .external_lex_state = 2}, - [194] = {.lex_state = 62, .external_lex_state = 2}, - [195] = {.lex_state = 62, .external_lex_state = 2}, - [196] = {.lex_state = 62, .external_lex_state = 2}, - [197] = {.lex_state = 62, .external_lex_state = 4}, - [198] = {.lex_state = 62, .external_lex_state = 2}, - [199] = {.lex_state = 62, .external_lex_state = 4}, - [200] = {.lex_state = 62, .external_lex_state = 2}, - [201] = {.lex_state = 62, .external_lex_state = 2}, - [202] = {.lex_state = 62, .external_lex_state = 2}, - [203] = {.lex_state = 62, .external_lex_state = 2}, - [204] = {.lex_state = 62, .external_lex_state = 2}, - [205] = {.lex_state = 62, .external_lex_state = 4}, - [206] = {.lex_state = 62, .external_lex_state = 2}, - [207] = {.lex_state = 62, .external_lex_state = 2}, - [208] = {.lex_state = 62, .external_lex_state = 2}, - [209] = {.lex_state = 62, .external_lex_state = 2}, - [210] = {.lex_state = 62, .external_lex_state = 2}, - [211] = {.lex_state = 62, .external_lex_state = 2}, - [212] = {.lex_state = 62, .external_lex_state = 2}, - [213] = {.lex_state = 62, .external_lex_state = 2}, - [214] = {.lex_state = 62, .external_lex_state = 2}, - [215] = {.lex_state = 62, .external_lex_state = 2}, - [216] = {.lex_state = 62, .external_lex_state = 2}, - [217] = {.lex_state = 62, .external_lex_state = 2}, - [218] = {.lex_state = 15}, - [219] = {.lex_state = 15}, - [220] = {.lex_state = 62, .external_lex_state = 2}, - [221] = {.lex_state = 15}, - [222] = {.lex_state = 15}, - [223] = {.lex_state = 62, .external_lex_state = 2}, - [224] = {.lex_state = 15}, - [225] = {.lex_state = 15}, - [226] = {.lex_state = 62, .external_lex_state = 2}, - [227] = {.lex_state = 15}, - [228] = {.lex_state = 16, .external_lex_state = 2}, - [229] = {.lex_state = 16, .external_lex_state = 2}, - [230] = {.lex_state = 62, .external_lex_state = 2}, - [231] = {.lex_state = 62, .external_lex_state = 2}, - [232] = {.lex_state = 16, .external_lex_state = 2}, - [233] = {.lex_state = 16, .external_lex_state = 2}, - [234] = {.lex_state = 62, .external_lex_state = 2}, - [235] = {.lex_state = 16, .external_lex_state = 2}, - [236] = {.lex_state = 62, .external_lex_state = 2}, - [237] = {.lex_state = 63, .external_lex_state = 3}, - [238] = {.lex_state = 62, .external_lex_state = 2}, - [239] = {.lex_state = 64, .external_lex_state = 2}, - [240] = {.lex_state = 62, .external_lex_state = 2}, - [241] = {.lex_state = 16, .external_lex_state = 2}, - [242] = {.lex_state = 64, .external_lex_state = 3}, - [243] = {.lex_state = 63, .external_lex_state = 3}, - [244] = {.lex_state = 63, .external_lex_state = 2}, - [245] = {.lex_state = 16, .external_lex_state = 2}, + [1] = {.lex_state = 58, .external_lex_state = 2}, + [2] = {.lex_state = 58, .external_lex_state = 3}, + [3] = {.lex_state = 58, .external_lex_state = 3}, + [4] = {.lex_state = 58, .external_lex_state = 3}, + [5] = {.lex_state = 58, .external_lex_state = 3}, + [6] = {.lex_state = 58, .external_lex_state = 3}, + [7] = {.lex_state = 58, .external_lex_state = 3}, + [8] = {.lex_state = 58, .external_lex_state = 3}, + [9] = {.lex_state = 58, .external_lex_state = 3}, + [10] = {.lex_state = 58, .external_lex_state = 3}, + [11] = {.lex_state = 58, .external_lex_state = 3}, + [12] = {.lex_state = 58, .external_lex_state = 3}, + [13] = {.lex_state = 58, .external_lex_state = 3}, + [14] = {.lex_state = 58, .external_lex_state = 3}, + [15] = {.lex_state = 58, .external_lex_state = 3}, + [16] = {.lex_state = 58, .external_lex_state = 3}, + [17] = {.lex_state = 58, .external_lex_state = 3}, + [18] = {.lex_state = 58, .external_lex_state = 3}, + [19] = {.lex_state = 58, .external_lex_state = 3}, + [20] = {.lex_state = 58, .external_lex_state = 3}, + [21] = {.lex_state = 58, .external_lex_state = 3}, + [22] = {.lex_state = 58, .external_lex_state = 3}, + [23] = {.lex_state = 58, .external_lex_state = 3}, + [24] = {.lex_state = 58, .external_lex_state = 3}, + [25] = {.lex_state = 58, .external_lex_state = 3}, + [26] = {.lex_state = 58, .external_lex_state = 3}, + [27] = {.lex_state = 58, .external_lex_state = 3}, + [28] = {.lex_state = 58, .external_lex_state = 3}, + [29] = {.lex_state = 58, .external_lex_state = 3}, + [30] = {.lex_state = 58, .external_lex_state = 3}, + [31] = {.lex_state = 58, .external_lex_state = 3}, + [32] = {.lex_state = 58, .external_lex_state = 3}, + [33] = {.lex_state = 58, .external_lex_state = 3}, + [34] = {.lex_state = 58, .external_lex_state = 3}, + [35] = {.lex_state = 58, .external_lex_state = 3}, + [36] = {.lex_state = 58, .external_lex_state = 3}, + [37] = {.lex_state = 58, .external_lex_state = 3}, + [38] = {.lex_state = 58, .external_lex_state = 3}, + [39] = {.lex_state = 58, .external_lex_state = 3}, + [40] = {.lex_state = 58, .external_lex_state = 3}, + [41] = {.lex_state = 58, .external_lex_state = 3}, + [42] = {.lex_state = 58, .external_lex_state = 3}, + [43] = {.lex_state = 58, .external_lex_state = 3}, + [44] = {.lex_state = 58, .external_lex_state = 3}, + [45] = {.lex_state = 58, .external_lex_state = 3}, + [46] = {.lex_state = 58, .external_lex_state = 3}, + [47] = {.lex_state = 58, .external_lex_state = 3}, + [48] = {.lex_state = 58, .external_lex_state = 3}, + [49] = {.lex_state = 58, .external_lex_state = 3}, + [50] = {.lex_state = 58, .external_lex_state = 3}, + [51] = {.lex_state = 58, .external_lex_state = 3}, + [52] = {.lex_state = 58, .external_lex_state = 3}, + [53] = {.lex_state = 58, .external_lex_state = 3}, + [54] = {.lex_state = 58, .external_lex_state = 3}, + [55] = {.lex_state = 58, .external_lex_state = 3}, + [56] = {.lex_state = 58, .external_lex_state = 3}, + [57] = {.lex_state = 58, .external_lex_state = 3}, + [58] = {.lex_state = 58, .external_lex_state = 3}, + [59] = {.lex_state = 58, .external_lex_state = 3}, + [60] = {.lex_state = 58, .external_lex_state = 3}, + [61] = {.lex_state = 58, .external_lex_state = 2}, + [62] = {.lex_state = 58, .external_lex_state = 3}, + [63] = {.lex_state = 58, .external_lex_state = 2}, + [64] = {.lex_state = 58, .external_lex_state = 3}, + [65] = {.lex_state = 58, .external_lex_state = 3}, + [66] = {.lex_state = 58, .external_lex_state = 4}, + [67] = {.lex_state = 58, .external_lex_state = 4}, + [68] = {.lex_state = 58, .external_lex_state = 5}, + [69] = {.lex_state = 58, .external_lex_state = 5}, + [70] = {.lex_state = 58, .external_lex_state = 5}, + [71] = {.lex_state = 58, .external_lex_state = 5}, + [72] = {.lex_state = 58, .external_lex_state = 5}, + [73] = {.lex_state = 58, .external_lex_state = 5}, + [74] = {.lex_state = 58, .external_lex_state = 5}, + [75] = {.lex_state = 58, .external_lex_state = 5}, + [76] = {.lex_state = 58, .external_lex_state = 5}, + [77] = {.lex_state = 58, .external_lex_state = 5}, + [78] = {.lex_state = 58, .external_lex_state = 5}, + [79] = {.lex_state = 58, .external_lex_state = 5}, + [80] = {.lex_state = 58, .external_lex_state = 5}, + [81] = {.lex_state = 58, .external_lex_state = 5}, + [82] = {.lex_state = 58, .external_lex_state = 5}, + [83] = {.lex_state = 58, .external_lex_state = 5}, + [84] = {.lex_state = 58, .external_lex_state = 5}, + [85] = {.lex_state = 58, .external_lex_state = 5}, + [86] = {.lex_state = 58, .external_lex_state = 5}, + [87] = {.lex_state = 58, .external_lex_state = 5}, + [88] = {.lex_state = 58, .external_lex_state = 5}, + [89] = {.lex_state = 58, .external_lex_state = 5}, + [90] = {.lex_state = 58, .external_lex_state = 5}, + [91] = {.lex_state = 58, .external_lex_state = 5}, + [92] = {.lex_state = 58, .external_lex_state = 5}, + [93] = {.lex_state = 58, .external_lex_state = 5}, + [94] = {.lex_state = 58, .external_lex_state = 5}, + [95] = {.lex_state = 58, .external_lex_state = 5}, + [96] = {.lex_state = 58, .external_lex_state = 5}, + [97] = {.lex_state = 58, .external_lex_state = 5}, + [98] = {.lex_state = 58, .external_lex_state = 5}, + [99] = {.lex_state = 58, .external_lex_state = 5}, + [100] = {.lex_state = 58, .external_lex_state = 5}, + [101] = {.lex_state = 58, .external_lex_state = 5}, + [102] = {.lex_state = 58, .external_lex_state = 5}, + [103] = {.lex_state = 58, .external_lex_state = 5}, + [104] = {.lex_state = 58, .external_lex_state = 5}, + [105] = {.lex_state = 58, .external_lex_state = 5}, + [106] = {.lex_state = 58, .external_lex_state = 5}, + [107] = {.lex_state = 58, .external_lex_state = 5}, + [108] = {.lex_state = 58, .external_lex_state = 5}, + [109] = {.lex_state = 58, .external_lex_state = 5}, + [110] = {.lex_state = 58, .external_lex_state = 5}, + [111] = {.lex_state = 58, .external_lex_state = 5}, + [112] = {.lex_state = 58, .external_lex_state = 5}, + [113] = {.lex_state = 58, .external_lex_state = 5}, + [114] = {.lex_state = 58, .external_lex_state = 5}, + [115] = {.lex_state = 58, .external_lex_state = 5}, + [116] = {.lex_state = 58, .external_lex_state = 5}, + [117] = {.lex_state = 58, .external_lex_state = 5}, + [118] = {.lex_state = 58, .external_lex_state = 5}, + [119] = {.lex_state = 58, .external_lex_state = 5}, + [120] = {.lex_state = 58, .external_lex_state = 5}, + [121] = {.lex_state = 58, .external_lex_state = 5}, + [122] = {.lex_state = 58, .external_lex_state = 5}, + [123] = {.lex_state = 58, .external_lex_state = 5}, + [124] = {.lex_state = 58, .external_lex_state = 5}, + [125] = {.lex_state = 58, .external_lex_state = 4}, + [126] = {.lex_state = 58, .external_lex_state = 5}, + [127] = {.lex_state = 58, .external_lex_state = 2}, + [128] = {.lex_state = 58, .external_lex_state = 4}, + [129] = {.lex_state = 58, .external_lex_state = 4}, + [130] = {.lex_state = 58, .external_lex_state = 4}, + [131] = {.lex_state = 58, .external_lex_state = 4}, + [132] = {.lex_state = 58, .external_lex_state = 4}, + [133] = {.lex_state = 58, .external_lex_state = 4}, + [134] = {.lex_state = 58, .external_lex_state = 4}, + [135] = {.lex_state = 58, .external_lex_state = 2}, + [136] = {.lex_state = 58, .external_lex_state = 2}, + [137] = {.lex_state = 58, .external_lex_state = 2}, + [138] = {.lex_state = 58, .external_lex_state = 4}, + [139] = {.lex_state = 58, .external_lex_state = 2}, + [140] = {.lex_state = 58, .external_lex_state = 2}, + [141] = {.lex_state = 58, .external_lex_state = 2}, + [142] = {.lex_state = 58, .external_lex_state = 2}, + [143] = {.lex_state = 58, .external_lex_state = 2}, + [144] = {.lex_state = 58, .external_lex_state = 2}, + [145] = {.lex_state = 58, .external_lex_state = 2}, + [146] = {.lex_state = 16, .external_lex_state = 2}, + [147] = {.lex_state = 58, .external_lex_state = 2}, + [148] = {.lex_state = 58, .external_lex_state = 2}, + [149] = {.lex_state = 58, .external_lex_state = 2}, + [150] = {.lex_state = 58, .external_lex_state = 2}, + [151] = {.lex_state = 58, .external_lex_state = 2}, + [152] = {.lex_state = 58, .external_lex_state = 2}, + [153] = {.lex_state = 58, .external_lex_state = 2}, + [154] = {.lex_state = 16, .external_lex_state = 2}, + [155] = {.lex_state = 16, .external_lex_state = 2}, + [156] = {.lex_state = 16, .external_lex_state = 2}, + [157] = {.lex_state = 16, .external_lex_state = 2}, + [158] = {.lex_state = 58, .external_lex_state = 2}, + [159] = {.lex_state = 58, .external_lex_state = 2}, + [160] = {.lex_state = 16, .external_lex_state = 2}, + [161] = {.lex_state = 58, .external_lex_state = 4}, + [162] = {.lex_state = 58, .external_lex_state = 2}, + [163] = {.lex_state = 58, .external_lex_state = 2}, + [164] = {.lex_state = 58, .external_lex_state = 2}, + [165] = {.lex_state = 58, .external_lex_state = 2}, + [166] = {.lex_state = 58, .external_lex_state = 2}, + [167] = {.lex_state = 58, .external_lex_state = 2}, + [168] = {.lex_state = 58, .external_lex_state = 4}, + [169] = {.lex_state = 58, .external_lex_state = 2}, + [170] = {.lex_state = 58, .external_lex_state = 2}, + [171] = {.lex_state = 58, .external_lex_state = 2}, + [172] = {.lex_state = 58, .external_lex_state = 2}, + [173] = {.lex_state = 58, .external_lex_state = 2}, + [174] = {.lex_state = 58, .external_lex_state = 2}, + [175] = {.lex_state = 58, .external_lex_state = 2}, + [176] = {.lex_state = 58, .external_lex_state = 2}, + [177] = {.lex_state = 58, .external_lex_state = 2}, + [178] = {.lex_state = 58, .external_lex_state = 2}, + [179] = {.lex_state = 58, .external_lex_state = 2}, + [180] = {.lex_state = 58, .external_lex_state = 2}, + [181] = {.lex_state = 58, .external_lex_state = 2}, + [182] = {.lex_state = 58, .external_lex_state = 2}, + [183] = {.lex_state = 58, .external_lex_state = 2}, + [184] = {.lex_state = 58, .external_lex_state = 4}, + [185] = {.lex_state = 58, .external_lex_state = 2}, + [186] = {.lex_state = 58, .external_lex_state = 4}, + [187] = {.lex_state = 58, .external_lex_state = 4}, + [188] = {.lex_state = 58, .external_lex_state = 2}, + [189] = {.lex_state = 58, .external_lex_state = 2}, + [190] = {.lex_state = 58, .external_lex_state = 4}, + [191] = {.lex_state = 58, .external_lex_state = 2}, + [192] = {.lex_state = 58, .external_lex_state = 2}, + [193] = {.lex_state = 58, .external_lex_state = 2}, + [194] = {.lex_state = 58, .external_lex_state = 2}, + [195] = {.lex_state = 58, .external_lex_state = 2}, + [196] = {.lex_state = 58, .external_lex_state = 2}, + [197] = {.lex_state = 58, .external_lex_state = 2}, + [198] = {.lex_state = 58, .external_lex_state = 2}, + [199] = {.lex_state = 58, .external_lex_state = 2}, + [200] = {.lex_state = 58, .external_lex_state = 2}, + [201] = {.lex_state = 58, .external_lex_state = 2}, + [202] = {.lex_state = 58, .external_lex_state = 2}, + [203] = {.lex_state = 58, .external_lex_state = 2}, + [204] = {.lex_state = 58, .external_lex_state = 2}, + [205] = {.lex_state = 58, .external_lex_state = 2}, + [206] = {.lex_state = 15}, + [207] = {.lex_state = 15}, + [208] = {.lex_state = 58, .external_lex_state = 2}, + [209] = {.lex_state = 58, .external_lex_state = 2}, + [210] = {.lex_state = 58, .external_lex_state = 2}, + [211] = {.lex_state = 15}, + [212] = {.lex_state = 15}, + [213] = {.lex_state = 15}, + [214] = {.lex_state = 15}, + [215] = {.lex_state = 15}, + [216] = {.lex_state = 16, .external_lex_state = 2}, + [217] = {.lex_state = 58, .external_lex_state = 2}, + [218] = {.lex_state = 58, .external_lex_state = 3}, + [219] = {.lex_state = 16, .external_lex_state = 2}, + [220] = {.lex_state = 16, .external_lex_state = 2}, + [221] = {.lex_state = 58, .external_lex_state = 2}, + [222] = {.lex_state = 16, .external_lex_state = 2}, + [223] = {.lex_state = 16, .external_lex_state = 2}, + [224] = {.lex_state = 16, .external_lex_state = 2}, + [225] = {.lex_state = 58, .external_lex_state = 2}, + [226] = {.lex_state = 58, .external_lex_state = 3}, + [227] = {.lex_state = 58, .external_lex_state = 2}, + [228] = {.lex_state = 58, .external_lex_state = 3}, + [229] = {.lex_state = 58, .external_lex_state = 2}, + [230] = {.lex_state = 58, .external_lex_state = 2}, + [231] = {.lex_state = 16, .external_lex_state = 2}, + [232] = {.lex_state = 58, .external_lex_state = 2}, + [233] = {.lex_state = 58, .external_lex_state = 2}, + [234] = {.lex_state = 16, .external_lex_state = 2}, + [235] = {.lex_state = 58, .external_lex_state = 3}, + [236] = {.lex_state = 58, .external_lex_state = 2}, + [237] = {.lex_state = 16, .external_lex_state = 2}, + [238] = {.lex_state = 58, .external_lex_state = 2}, + [239] = {.lex_state = 16, .external_lex_state = 2}, + [240] = {.lex_state = 58, .external_lex_state = 2}, + [241] = {.lex_state = 58, .external_lex_state = 2}, + [242] = {.lex_state = 58, .external_lex_state = 2}, + [243] = {.lex_state = 16, .external_lex_state = 2}, + [244] = {.lex_state = 58, .external_lex_state = 2}, + [245] = {.lex_state = 58, .external_lex_state = 2}, [246] = {.lex_state = 16, .external_lex_state = 2}, - [247] = {.lex_state = 64, .external_lex_state = 2}, - [248] = {.lex_state = 63, .external_lex_state = 2}, - [249] = {.lex_state = 16, .external_lex_state = 2}, - [250] = {.lex_state = 64, .external_lex_state = 3}, - [251] = {.lex_state = 62, .external_lex_state = 2}, - [252] = {.lex_state = 62, .external_lex_state = 2}, - [253] = {.lex_state = 16, .external_lex_state = 2}, - [254] = {.lex_state = 16, .external_lex_state = 2}, - [255] = {.lex_state = 62, .external_lex_state = 2}, - [256] = {.lex_state = 62, .external_lex_state = 2}, - [257] = {.lex_state = 62, .external_lex_state = 2}, - [258] = {.lex_state = 62, .external_lex_state = 2}, - [259] = {.lex_state = 14, .external_lex_state = 6}, - [260] = {.lex_state = 62, .external_lex_state = 2}, - [261] = {.lex_state = 14, .external_lex_state = 6}, - [262] = {.lex_state = 62, .external_lex_state = 2}, - [263] = {.lex_state = 62, .external_lex_state = 2}, - [264] = {.lex_state = 62, .external_lex_state = 2}, - [265] = {.lex_state = 16, .external_lex_state = 2}, - [266] = {.lex_state = 62, .external_lex_state = 2}, - [267] = {.lex_state = 16, .external_lex_state = 2}, - [268] = {.lex_state = 62, .external_lex_state = 2}, - [269] = {.lex_state = 62, .external_lex_state = 2}, - [270] = {.lex_state = 14, .external_lex_state = 4}, - [271] = {.lex_state = 62, .external_lex_state = 2}, - [272] = {.lex_state = 62, .external_lex_state = 2}, - [273] = {.lex_state = 62, .external_lex_state = 3}, - [274] = {.lex_state = 64, .external_lex_state = 2}, - [275] = {.lex_state = 63, .external_lex_state = 2}, - [276] = {.lex_state = 62, .external_lex_state = 2}, - [277] = {.lex_state = 62, .external_lex_state = 2}, - [278] = {.lex_state = 62, .external_lex_state = 2}, - [279] = {.lex_state = 62, .external_lex_state = 2}, - [280] = {.lex_state = 16, .external_lex_state = 2}, - [281] = {.lex_state = 62, .external_lex_state = 2}, - [282] = {.lex_state = 62, .external_lex_state = 3}, - [283] = {.lex_state = 62, .external_lex_state = 2}, - [284] = {.lex_state = 62, .external_lex_state = 2}, - [285] = {.lex_state = 62, .external_lex_state = 2}, - [286] = {.lex_state = 62, .external_lex_state = 2}, - [287] = {.lex_state = 62, .external_lex_state = 2}, - [288] = {.lex_state = 62, .external_lex_state = 3}, - [289] = {.lex_state = 62, .external_lex_state = 2}, - [290] = {.lex_state = 62, .external_lex_state = 3}, - [291] = {.lex_state = 63, .external_lex_state = 3}, - [292] = {.lex_state = 64, .external_lex_state = 3}, - [293] = {.lex_state = 16, .external_lex_state = 2}, - [294] = {.lex_state = 62, .external_lex_state = 2}, - [295] = {.lex_state = 62, .external_lex_state = 4}, - [296] = {.lex_state = 62, .external_lex_state = 2}, - [297] = {.lex_state = 62, .external_lex_state = 2}, - [298] = {.lex_state = 62, .external_lex_state = 2}, - [299] = {.lex_state = 62, .external_lex_state = 4}, - [300] = {.lex_state = 62, .external_lex_state = 2}, - [301] = {.lex_state = 62, .external_lex_state = 3}, - [302] = {.lex_state = 62, .external_lex_state = 2}, - [303] = {.lex_state = 62, .external_lex_state = 3}, - [304] = {.lex_state = 62, .external_lex_state = 2}, - [305] = {.lex_state = 62, .external_lex_state = 2}, - [306] = {.lex_state = 62, .external_lex_state = 3}, - [307] = {.lex_state = 62, .external_lex_state = 2}, - [308] = {.lex_state = 62, .external_lex_state = 2}, - [309] = {.lex_state = 62, .external_lex_state = 2}, - [310] = {.lex_state = 62, .external_lex_state = 2}, - [311] = {.lex_state = 62, .external_lex_state = 2}, - [312] = {.lex_state = 62, .external_lex_state = 3}, - [313] = {.lex_state = 62, .external_lex_state = 2}, - [314] = {.lex_state = 62, .external_lex_state = 2}, - [315] = {.lex_state = 14, .external_lex_state = 6}, - [316] = {.lex_state = 62, .external_lex_state = 3}, - [317] = {.lex_state = 62, .external_lex_state = 4}, - [318] = {.lex_state = 62, .external_lex_state = 2}, - [319] = {.lex_state = 62, .external_lex_state = 4}, - [320] = {.lex_state = 62, .external_lex_state = 2}, - [321] = {.lex_state = 62, .external_lex_state = 2}, - [322] = {.lex_state = 62, .external_lex_state = 2}, - [323] = {.lex_state = 62, .external_lex_state = 2}, - [324] = {.lex_state = 62, .external_lex_state = 3}, - [325] = {.lex_state = 62, .external_lex_state = 2}, - [326] = {.lex_state = 62, .external_lex_state = 2}, - [327] = {.lex_state = 62, .external_lex_state = 2}, - [328] = {.lex_state = 64, .external_lex_state = 2}, - [329] = {.lex_state = 15, .external_lex_state = 6}, - [330] = {.lex_state = 64, .external_lex_state = 2}, - [331] = {.lex_state = 64, .external_lex_state = 2}, - [332] = {.lex_state = 64, .external_lex_state = 2}, - [333] = {.lex_state = 64, .external_lex_state = 2}, - [334] = {.lex_state = 63, .external_lex_state = 3}, - [335] = {.lex_state = 63, .external_lex_state = 2}, - [336] = {.lex_state = 64, .external_lex_state = 2}, - [337] = {.lex_state = 63, .external_lex_state = 2}, - [338] = {.lex_state = 64, .external_lex_state = 3}, - [339] = {.lex_state = 63, .external_lex_state = 3}, - [340] = {.lex_state = 63, .external_lex_state = 3}, - [341] = {.lex_state = 63, .external_lex_state = 2}, - [342] = {.lex_state = 64, .external_lex_state = 3}, - [343] = {.lex_state = 62, .external_lex_state = 3}, - [344] = {.lex_state = 14, .external_lex_state = 6}, - [345] = {.lex_state = 63, .external_lex_state = 3}, - [346] = {.lex_state = 63, .external_lex_state = 2}, - [347] = {.lex_state = 63, .external_lex_state = 3}, - [348] = {.lex_state = 62, .external_lex_state = 2}, - [349] = {.lex_state = 14, .external_lex_state = 6}, - [350] = {.lex_state = 63, .external_lex_state = 3}, - [351] = {.lex_state = 15, .external_lex_state = 6}, - [352] = {.lex_state = 63, .external_lex_state = 2}, - [353] = {.lex_state = 63, .external_lex_state = 3}, - [354] = {.lex_state = 63, .external_lex_state = 3}, - [355] = {.lex_state = 64, .external_lex_state = 3}, - [356] = {.lex_state = 64, .external_lex_state = 2}, - [357] = {.lex_state = 63, .external_lex_state = 2}, - [358] = {.lex_state = 64, .external_lex_state = 2}, - [359] = {.lex_state = 63, .external_lex_state = 2}, - [360] = {.lex_state = 64, .external_lex_state = 3}, - [361] = {.lex_state = 16, .external_lex_state = 2}, - [362] = {.lex_state = 64, .external_lex_state = 3}, - [363] = {.lex_state = 15, .external_lex_state = 6}, - [364] = {.lex_state = 63, .external_lex_state = 2}, - [365] = {.lex_state = 62, .external_lex_state = 2}, - [366] = {.lex_state = 64, .external_lex_state = 2}, + [247] = {.lex_state = 58, .external_lex_state = 2}, + [248] = {.lex_state = 16, .external_lex_state = 2}, + [249] = {.lex_state = 58, .external_lex_state = 2}, + [250] = {.lex_state = 58, .external_lex_state = 2}, + [251] = {.lex_state = 14, .external_lex_state = 6}, + [252] = {.lex_state = 58, .external_lex_state = 2}, + [253] = {.lex_state = 14, .external_lex_state = 6}, + [254] = {.lex_state = 58, .external_lex_state = 2}, + [255] = {.lex_state = 58, .external_lex_state = 2}, + [256] = {.lex_state = 58, .external_lex_state = 2}, + [257] = {.lex_state = 58, .external_lex_state = 2}, + [258] = {.lex_state = 58, .external_lex_state = 3}, + [259] = {.lex_state = 58, .external_lex_state = 3}, + [260] = {.lex_state = 58, .external_lex_state = 3}, + [261] = {.lex_state = 58, .external_lex_state = 2}, + [262] = {.lex_state = 58, .external_lex_state = 3}, + [263] = {.lex_state = 58, .external_lex_state = 2}, + [264] = {.lex_state = 16, .external_lex_state = 2}, + [265] = {.lex_state = 58, .external_lex_state = 3}, + [266] = {.lex_state = 16, .external_lex_state = 2}, + [267] = {.lex_state = 58, .external_lex_state = 2}, + [268] = {.lex_state = 58, .external_lex_state = 2}, + [269] = {.lex_state = 14, .external_lex_state = 4}, + [270] = {.lex_state = 58, .external_lex_state = 2}, + [271] = {.lex_state = 58, .external_lex_state = 2}, + [272] = {.lex_state = 58, .external_lex_state = 2}, + [273] = {.lex_state = 58, .external_lex_state = 2}, + [274] = {.lex_state = 58, .external_lex_state = 2}, + [275] = {.lex_state = 58, .external_lex_state = 2}, + [276] = {.lex_state = 58, .external_lex_state = 2}, + [277] = {.lex_state = 58, .external_lex_state = 2}, + [278] = {.lex_state = 58, .external_lex_state = 2}, + [279] = {.lex_state = 58, .external_lex_state = 3}, + [280] = {.lex_state = 58, .external_lex_state = 2}, + [281] = {.lex_state = 58, .external_lex_state = 2}, + [282] = {.lex_state = 58, .external_lex_state = 3}, + [283] = {.lex_state = 58, .external_lex_state = 2}, + [284] = {.lex_state = 58, .external_lex_state = 2}, + [285] = {.lex_state = 58, .external_lex_state = 3}, + [286] = {.lex_state = 58, .external_lex_state = 2}, + [287] = {.lex_state = 58, .external_lex_state = 3}, + [288] = {.lex_state = 58, .external_lex_state = 3}, + [289] = {.lex_state = 58, .external_lex_state = 2}, + [290] = {.lex_state = 58, .external_lex_state = 2}, + [291] = {.lex_state = 58, .external_lex_state = 2}, + [292] = {.lex_state = 58, .external_lex_state = 3}, + [293] = {.lex_state = 58, .external_lex_state = 2}, + [294] = {.lex_state = 58, .external_lex_state = 2}, + [295] = {.lex_state = 58, .external_lex_state = 2}, + [296] = {.lex_state = 14, .external_lex_state = 6}, + [297] = {.lex_state = 58, .external_lex_state = 3}, + [298] = {.lex_state = 58, .external_lex_state = 2}, + [299] = {.lex_state = 58, .external_lex_state = 2}, + [300] = {.lex_state = 58, .external_lex_state = 4}, + [301] = {.lex_state = 58, .external_lex_state = 4}, + [302] = {.lex_state = 58, .external_lex_state = 4}, + [303] = {.lex_state = 58, .external_lex_state = 2}, + [304] = {.lex_state = 58, .external_lex_state = 2}, + [305] = {.lex_state = 58, .external_lex_state = 4}, + [306] = {.lex_state = 58, .external_lex_state = 2}, + [307] = {.lex_state = 58, .external_lex_state = 2}, + [308] = {.lex_state = 16, .external_lex_state = 2}, + [309] = {.lex_state = 58, .external_lex_state = 2}, + [310] = {.lex_state = 58, .external_lex_state = 2}, + [311] = {.lex_state = 58, .external_lex_state = 2}, + [312] = {.lex_state = 16, .external_lex_state = 2}, + [313] = {.lex_state = 58, .external_lex_state = 2}, + [314] = {.lex_state = 58, .external_lex_state = 2}, + [315] = {.lex_state = 58, .external_lex_state = 2}, + [316] = {.lex_state = 58, .external_lex_state = 2}, + [317] = {.lex_state = 58, .external_lex_state = 2}, + [318] = {.lex_state = 58, .external_lex_state = 2}, + [319] = {.lex_state = 58, .external_lex_state = 2}, + [320] = {.lex_state = 15, .external_lex_state = 6}, + [321] = {.lex_state = 16, .external_lex_state = 2}, + [322] = {.lex_state = 15, .external_lex_state = 6}, + [323] = {.lex_state = 15, .external_lex_state = 6}, + [324] = {.lex_state = 15, .external_lex_state = 6}, + [325] = {.lex_state = 58, .external_lex_state = 2}, + [326] = {.lex_state = 58, .external_lex_state = 2}, + [327] = {.lex_state = 15, .external_lex_state = 6}, + [328] = {.lex_state = 15, .external_lex_state = 6}, + [329] = {.lex_state = 58, .external_lex_state = 2}, + [330] = {.lex_state = 15, .external_lex_state = 6}, + [331] = {.lex_state = 58, .external_lex_state = 2}, + [332] = {.lex_state = 58, .external_lex_state = 2}, + [333] = {.lex_state = 14}, + [334] = {.lex_state = 58, .external_lex_state = 2}, + [335] = {.lex_state = 58, .external_lex_state = 2}, + [336] = {.lex_state = 58, .external_lex_state = 2}, + [337] = {.lex_state = 58, .external_lex_state = 2}, + [338] = {.lex_state = 58, .external_lex_state = 2}, + [339] = {.lex_state = 14, .external_lex_state = 6}, + [340] = {.lex_state = 58, .external_lex_state = 2}, + [341] = {.lex_state = 14, .external_lex_state = 6}, + [342] = {.lex_state = 58, .external_lex_state = 3}, + [343] = {.lex_state = 58, .external_lex_state = 3}, + [344] = {.lex_state = 58, .external_lex_state = 3}, + [345] = {.lex_state = 58, .external_lex_state = 3}, + [346] = {.lex_state = 58, .external_lex_state = 3}, + [347] = {.lex_state = 58, .external_lex_state = 3}, + [348] = {.lex_state = 58, .external_lex_state = 3}, + [349] = {.lex_state = 58, .external_lex_state = 3}, + [350] = {.lex_state = 58, .external_lex_state = 3}, + [351] = {.lex_state = 58, .external_lex_state = 3}, + [352] = {.lex_state = 58, .external_lex_state = 3}, + [353] = {.lex_state = 58, .external_lex_state = 3}, + [354] = {.lex_state = 16, .external_lex_state = 2}, + [355] = {.lex_state = 14}, + [356] = {.lex_state = 58, .external_lex_state = 2}, + [357] = {.lex_state = 58, .external_lex_state = 2}, + [358] = {.lex_state = 15, .external_lex_state = 6}, + [359] = {.lex_state = 58, .external_lex_state = 2}, + [360] = {.lex_state = 15, .external_lex_state = 6}, + [361] = {.lex_state = 15}, + [362] = {.lex_state = 58, .external_lex_state = 2}, + [363] = {.lex_state = 58, .external_lex_state = 2}, + [364] = {.lex_state = 58, .external_lex_state = 2}, + [365] = {.lex_state = 58, .external_lex_state = 2}, + [366] = {.lex_state = 58, .external_lex_state = 2}, [367] = {.lex_state = 15, .external_lex_state = 6}, - [368] = {.lex_state = 64, .external_lex_state = 3}, - [369] = {.lex_state = 64, .external_lex_state = 3}, - [370] = {.lex_state = 63, .external_lex_state = 2}, - [371] = {.lex_state = 14}, - [372] = {.lex_state = 15, .external_lex_state = 6}, - [373] = {.lex_state = 63, .external_lex_state = 2}, - [374] = {.lex_state = 63, .external_lex_state = 2}, - [375] = {.lex_state = 14}, - [376] = {.lex_state = 62, .external_lex_state = 3}, - [377] = {.lex_state = 15, .external_lex_state = 6}, - [378] = {.lex_state = 64, .external_lex_state = 3}, - [379] = {.lex_state = 63, .external_lex_state = 3}, - [380] = {.lex_state = 64, .external_lex_state = 3}, - [381] = {.lex_state = 63, .external_lex_state = 3}, - [382] = {.lex_state = 15, .external_lex_state = 6}, - [383] = {.lex_state = 62, .external_lex_state = 2}, - [384] = {.lex_state = 16, .external_lex_state = 2}, - [385] = {.lex_state = 63, .external_lex_state = 3}, - [386] = {.lex_state = 62, .external_lex_state = 2}, - [387] = {.lex_state = 62, .external_lex_state = 2}, - [388] = {.lex_state = 62, .external_lex_state = 2}, - [389] = {.lex_state = 62, .external_lex_state = 2}, - [390] = {.lex_state = 62, .external_lex_state = 2}, - [391] = {.lex_state = 62, .external_lex_state = 2}, - [392] = {.lex_state = 15}, - [393] = {.lex_state = 62, .external_lex_state = 3}, - [394] = {.lex_state = 62, .external_lex_state = 2}, - [395] = {.lex_state = 62, .external_lex_state = 2}, - [396] = {.lex_state = 62, .external_lex_state = 2}, - [397] = {.lex_state = 15, .external_lex_state = 6}, - [398] = {.lex_state = 62, .external_lex_state = 2}, - [399] = {.lex_state = 62, .external_lex_state = 2}, - [400] = {.lex_state = 62, .external_lex_state = 2}, - [401] = {.lex_state = 62, .external_lex_state = 2}, - [402] = {.lex_state = 62, .external_lex_state = 2}, - [403] = {.lex_state = 62, .external_lex_state = 2}, - [404] = {.lex_state = 62, .external_lex_state = 2}, - [405] = {.lex_state = 62, .external_lex_state = 2}, - [406] = {.lex_state = 15, .external_lex_state = 6}, - [407] = {.lex_state = 62, .external_lex_state = 2}, - [408] = {.lex_state = 62, .external_lex_state = 2}, - [409] = {.lex_state = 62, .external_lex_state = 2}, - [410] = {.lex_state = 62, .external_lex_state = 2}, - [411] = {.lex_state = 62, .external_lex_state = 2}, - [412] = {.lex_state = 62, .external_lex_state = 2}, - [413] = {.lex_state = 62, .external_lex_state = 2}, - [414] = {.lex_state = 62, .external_lex_state = 2}, - [415] = {.lex_state = 15, .external_lex_state = 6}, - [416] = {.lex_state = 62, .external_lex_state = 2}, - [417] = {.lex_state = 62, .external_lex_state = 2}, - [418] = {.lex_state = 62, .external_lex_state = 2}, - [419] = {.lex_state = 62, .external_lex_state = 2}, - [420] = {.lex_state = 62, .external_lex_state = 2}, - [421] = {.lex_state = 62, .external_lex_state = 2}, - [422] = {.lex_state = 62, .external_lex_state = 2}, - [423] = {.lex_state = 62, .external_lex_state = 2}, - [424] = {.lex_state = 62, .external_lex_state = 2}, - [425] = {.lex_state = 62, .external_lex_state = 2}, - [426] = {.lex_state = 62, .external_lex_state = 2}, - [427] = {.lex_state = 62, .external_lex_state = 2}, - [428] = {.lex_state = 62, .external_lex_state = 3}, - [429] = {.lex_state = 62, .external_lex_state = 3}, - [430] = {.lex_state = 62, .external_lex_state = 2}, - [431] = {.lex_state = 62, .external_lex_state = 2}, - [432] = {.lex_state = 62, .external_lex_state = 3}, - [433] = {.lex_state = 62, .external_lex_state = 2}, - [434] = {.lex_state = 62, .external_lex_state = 2}, - [435] = {.lex_state = 62, .external_lex_state = 2}, - [436] = {.lex_state = 62, .external_lex_state = 2}, - [437] = {.lex_state = 62, .external_lex_state = 2}, - [438] = {.lex_state = 62, .external_lex_state = 2}, - [439] = {.lex_state = 62, .external_lex_state = 2}, - [440] = {.lex_state = 62, .external_lex_state = 3}, - [441] = {.lex_state = 62, .external_lex_state = 2}, - [442] = {.lex_state = 62, .external_lex_state = 2}, - [443] = {.lex_state = 62, .external_lex_state = 2}, - [444] = {.lex_state = 62, .external_lex_state = 2}, - [445] = {.lex_state = 62, .external_lex_state = 3}, - [446] = {.lex_state = 62, .external_lex_state = 2}, - [447] = {.lex_state = 62, .external_lex_state = 2}, - [448] = {.lex_state = 62, .external_lex_state = 2}, - [449] = {.lex_state = 62, .external_lex_state = 2}, - [450] = {.lex_state = 62, .external_lex_state = 2}, - [451] = {.lex_state = 62, .external_lex_state = 2}, - [452] = {.lex_state = 62, .external_lex_state = 2}, - [453] = {.lex_state = 62, .external_lex_state = 2}, - [454] = {.lex_state = 62, .external_lex_state = 2}, - [455] = {.lex_state = 62, .external_lex_state = 2}, - [456] = {.lex_state = 62, .external_lex_state = 2}, - [457] = {.lex_state = 62, .external_lex_state = 2}, - [458] = {.lex_state = 62, .external_lex_state = 2}, - [459] = {.lex_state = 62, .external_lex_state = 2}, - [460] = {.lex_state = 62, .external_lex_state = 2}, - [461] = {.lex_state = 62, .external_lex_state = 3}, - [462] = {.lex_state = 62, .external_lex_state = 2}, - [463] = {.lex_state = 62, .external_lex_state = 2}, - [464] = {.lex_state = 62, .external_lex_state = 3}, - [465] = {.lex_state = 62, .external_lex_state = 2}, - [466] = {.lex_state = 62, .external_lex_state = 3}, - [467] = {.lex_state = 62, .external_lex_state = 2}, - [468] = {.lex_state = 62, .external_lex_state = 2}, - [469] = {.lex_state = 62, .external_lex_state = 2}, - [470] = {.lex_state = 62, .external_lex_state = 2}, - [471] = {.lex_state = 62, .external_lex_state = 2}, - [472] = {.lex_state = 62, .external_lex_state = 2}, - [473] = {.lex_state = 62, .external_lex_state = 2}, - [474] = {.lex_state = 62, .external_lex_state = 2}, - [475] = {.lex_state = 62, .external_lex_state = 2}, - [476] = {.lex_state = 62, .external_lex_state = 3}, - [477] = {.lex_state = 62, .external_lex_state = 2}, - [478] = {.lex_state = 62, .external_lex_state = 2}, - [479] = {.lex_state = 62, .external_lex_state = 2}, - [480] = {.lex_state = 62, .external_lex_state = 2}, - [481] = {.lex_state = 62, .external_lex_state = 2}, - [482] = {.lex_state = 62, .external_lex_state = 3}, - [483] = {.lex_state = 62, .external_lex_state = 2}, - [484] = {.lex_state = 62, .external_lex_state = 2}, - [485] = {.lex_state = 62, .external_lex_state = 2}, - [486] = {.lex_state = 62, .external_lex_state = 3}, - [487] = {.lex_state = 62, .external_lex_state = 2}, - [488] = {.lex_state = 62, .external_lex_state = 3}, - [489] = {.lex_state = 62, .external_lex_state = 3}, - [490] = {.lex_state = 62, .external_lex_state = 3}, - [491] = {.lex_state = 62, .external_lex_state = 2}, - [492] = {.lex_state = 62, .external_lex_state = 3}, - [493] = {.lex_state = 62, .external_lex_state = 3}, - [494] = {.lex_state = 62, .external_lex_state = 2}, - [495] = {.lex_state = 62, .external_lex_state = 2}, - [496] = {.lex_state = 62, .external_lex_state = 2}, - [497] = {.lex_state = 62, .external_lex_state = 2}, - [498] = {.lex_state = 62, .external_lex_state = 2}, - [499] = {.lex_state = 62, .external_lex_state = 2}, - [500] = {.lex_state = 62, .external_lex_state = 3}, - [501] = {.lex_state = 62, .external_lex_state = 3}, - [502] = {.lex_state = 62, .external_lex_state = 3}, - [503] = {.lex_state = 62, .external_lex_state = 3}, - [504] = {.lex_state = 62, .external_lex_state = 3}, - [505] = {.lex_state = 62, .external_lex_state = 3}, - [506] = {.lex_state = 62, .external_lex_state = 2}, - [507] = {.lex_state = 62, .external_lex_state = 3}, - [508] = {.lex_state = 62, .external_lex_state = 2}, - [509] = {.lex_state = 62, .external_lex_state = 3}, - [510] = {.lex_state = 62, .external_lex_state = 2}, - [511] = {.lex_state = 62, .external_lex_state = 3}, - [512] = {.lex_state = 62, .external_lex_state = 2}, - [513] = {.lex_state = 62, .external_lex_state = 2}, - [514] = {.lex_state = 62, .external_lex_state = 2}, - [515] = {.lex_state = 62, .external_lex_state = 2}, - [516] = {.lex_state = 62, .external_lex_state = 2}, - [517] = {.lex_state = 62, .external_lex_state = 3}, - [518] = {.lex_state = 62, .external_lex_state = 3}, - [519] = {.lex_state = 62, .external_lex_state = 3}, - [520] = {.lex_state = 62, .external_lex_state = 3}, - [521] = {.lex_state = 62, .external_lex_state = 3}, - [522] = {.lex_state = 62, .external_lex_state = 3}, - [523] = {.lex_state = 62, .external_lex_state = 3}, - [524] = {.lex_state = 62, .external_lex_state = 3}, - [525] = {.lex_state = 62, .external_lex_state = 3}, - [526] = {.lex_state = 62, .external_lex_state = 3}, - [527] = {.lex_state = 62, .external_lex_state = 2}, - [528] = {.lex_state = 62, .external_lex_state = 3}, - [529] = {.lex_state = 62, .external_lex_state = 3}, - [530] = {.lex_state = 62, .external_lex_state = 3}, - [531] = {.lex_state = 62, .external_lex_state = 2}, - [532] = {.lex_state = 62, .external_lex_state = 2}, - [533] = {.lex_state = 62, .external_lex_state = 3}, - [534] = {.lex_state = 62, .external_lex_state = 2}, - [535] = {.lex_state = 62, .external_lex_state = 3}, - [536] = {.lex_state = 62, .external_lex_state = 3}, - [537] = {.lex_state = 62, .external_lex_state = 3}, - [538] = {.lex_state = 62, .external_lex_state = 2}, - [539] = {.lex_state = 62, .external_lex_state = 2}, - [540] = {.lex_state = 62, .external_lex_state = 2}, - [541] = {.lex_state = 62, .external_lex_state = 3}, - [542] = {.lex_state = 62, .external_lex_state = 3}, - [543] = {.lex_state = 62, .external_lex_state = 3}, - [544] = {.lex_state = 62, .external_lex_state = 3}, - [545] = {.lex_state = 62, .external_lex_state = 2}, - [546] = {.lex_state = 62, .external_lex_state = 3}, - [547] = {.lex_state = 62, .external_lex_state = 2}, - [548] = {.lex_state = 62, .external_lex_state = 2}, - [549] = {.lex_state = 62, .external_lex_state = 2}, - [550] = {.lex_state = 62, .external_lex_state = 3}, - [551] = {.lex_state = 62, .external_lex_state = 3}, - [552] = {.lex_state = 62, .external_lex_state = 2}, - [553] = {.lex_state = 62, .external_lex_state = 2}, - [554] = {.lex_state = 62, .external_lex_state = 3}, - [555] = {.lex_state = 62, .external_lex_state = 2}, - [556] = {.lex_state = 62, .external_lex_state = 2}, - [557] = {.lex_state = 62, .external_lex_state = 2}, - [558] = {.lex_state = 62, .external_lex_state = 3}, - [559] = {.lex_state = 62, .external_lex_state = 2}, - [560] = {.lex_state = 62, .external_lex_state = 3}, - [561] = {.lex_state = 62, .external_lex_state = 2}, - [562] = {.lex_state = 62, .external_lex_state = 3}, - [563] = {.lex_state = 62, .external_lex_state = 2}, - [564] = {.lex_state = 62, .external_lex_state = 2}, - [565] = {.lex_state = 62, .external_lex_state = 2}, - [566] = {.lex_state = 62, .external_lex_state = 2}, - [567] = {.lex_state = 62, .external_lex_state = 3}, - [568] = {.lex_state = 62, .external_lex_state = 2}, - [569] = {.lex_state = 62, .external_lex_state = 2}, - [570] = {.lex_state = 62, .external_lex_state = 2}, - [571] = {.lex_state = 62, .external_lex_state = 2}, - [572] = {.lex_state = 62, .external_lex_state = 2}, - [573] = {.lex_state = 62, .external_lex_state = 2}, - [574] = {.lex_state = 62, .external_lex_state = 2}, - [575] = {.lex_state = 62, .external_lex_state = 2}, - [576] = {.lex_state = 62, .external_lex_state = 2}, - [577] = {.lex_state = 62, .external_lex_state = 2}, - [578] = {.lex_state = 62, .external_lex_state = 3}, - [579] = {.lex_state = 62, .external_lex_state = 3}, - [580] = {.lex_state = 62, .external_lex_state = 3}, - [581] = {.lex_state = 62, .external_lex_state = 2}, - [582] = {.lex_state = 62, .external_lex_state = 2}, - [583] = {.lex_state = 62, .external_lex_state = 3}, - [584] = {.lex_state = 62, .external_lex_state = 2}, - [585] = {.lex_state = 62, .external_lex_state = 3}, - [586] = {.lex_state = 62, .external_lex_state = 2}, - [587] = {.lex_state = 62, .external_lex_state = 2}, - [588] = {.lex_state = 62, .external_lex_state = 3}, - [589] = {.lex_state = 62, .external_lex_state = 3}, - [590] = {.lex_state = 62, .external_lex_state = 2}, - [591] = {.lex_state = 62, .external_lex_state = 3}, - [592] = {.lex_state = 62, .external_lex_state = 3}, - [593] = {.lex_state = 62, .external_lex_state = 2}, - [594] = {.lex_state = 62, .external_lex_state = 3}, - [595] = {.lex_state = 62, .external_lex_state = 3}, - [596] = {.lex_state = 62, .external_lex_state = 2}, - [597] = {.lex_state = 62, .external_lex_state = 2}, - [598] = {.lex_state = 62, .external_lex_state = 2}, - [599] = {.lex_state = 15, .external_lex_state = 2}, - [600] = {.lex_state = 62, .external_lex_state = 2}, - [601] = {.lex_state = 15, .external_lex_state = 2}, - [602] = {.lex_state = 62, .external_lex_state = 2}, - [603] = {.lex_state = 62, .external_lex_state = 2}, - [604] = {.lex_state = 15, .external_lex_state = 2}, - [605] = {.lex_state = 62, .external_lex_state = 2}, - [606] = {.lex_state = 62, .external_lex_state = 2}, - [607] = {.lex_state = 62, .external_lex_state = 2}, - [608] = {.lex_state = 62, .external_lex_state = 2}, - [609] = {.lex_state = 62, .external_lex_state = 2}, - [610] = {.lex_state = 15, .external_lex_state = 2}, - [611] = {.lex_state = 15, .external_lex_state = 2}, + [368] = {.lex_state = 58, .external_lex_state = 2}, + [369] = {.lex_state = 58, .external_lex_state = 2}, + [370] = {.lex_state = 58, .external_lex_state = 2}, + [371] = {.lex_state = 58, .external_lex_state = 2}, + [372] = {.lex_state = 58, .external_lex_state = 2}, + [373] = {.lex_state = 58, .external_lex_state = 2}, + [374] = {.lex_state = 58, .external_lex_state = 2}, + [375] = {.lex_state = 58, .external_lex_state = 2}, + [376] = {.lex_state = 58, .external_lex_state = 2}, + [377] = {.lex_state = 58, .external_lex_state = 2}, + [378] = {.lex_state = 58, .external_lex_state = 2}, + [379] = {.lex_state = 58, .external_lex_state = 2}, + [380] = {.lex_state = 58, .external_lex_state = 2}, + [381] = {.lex_state = 58, .external_lex_state = 2}, + [382] = {.lex_state = 58, .external_lex_state = 2}, + [383] = {.lex_state = 58, .external_lex_state = 2}, + [384] = {.lex_state = 58, .external_lex_state = 2}, + [385] = {.lex_state = 58, .external_lex_state = 2}, + [386] = {.lex_state = 58, .external_lex_state = 2}, + [387] = {.lex_state = 58, .external_lex_state = 2}, + [388] = {.lex_state = 58, .external_lex_state = 2}, + [389] = {.lex_state = 58, .external_lex_state = 2}, + [390] = {.lex_state = 58, .external_lex_state = 2}, + [391] = {.lex_state = 58, .external_lex_state = 2}, + [392] = {.lex_state = 58, .external_lex_state = 2}, + [393] = {.lex_state = 58, .external_lex_state = 2}, + [394] = {.lex_state = 58, .external_lex_state = 2}, + [395] = {.lex_state = 58, .external_lex_state = 2}, + [396] = {.lex_state = 58, .external_lex_state = 2}, + [397] = {.lex_state = 58, .external_lex_state = 2}, + [398] = {.lex_state = 58, .external_lex_state = 2}, + [399] = {.lex_state = 58, .external_lex_state = 2}, + [400] = {.lex_state = 58, .external_lex_state = 2}, + [401] = {.lex_state = 58, .external_lex_state = 2}, + [402] = {.lex_state = 58, .external_lex_state = 2}, + [403] = {.lex_state = 58, .external_lex_state = 2}, + [404] = {.lex_state = 58, .external_lex_state = 2}, + [405] = {.lex_state = 58, .external_lex_state = 2}, + [406] = {.lex_state = 58, .external_lex_state = 2}, + [407] = {.lex_state = 58, .external_lex_state = 2}, + [408] = {.lex_state = 58, .external_lex_state = 2}, + [409] = {.lex_state = 58, .external_lex_state = 2}, + [410] = {.lex_state = 58, .external_lex_state = 3}, + [411] = {.lex_state = 58, .external_lex_state = 2}, + [412] = {.lex_state = 58, .external_lex_state = 2}, + [413] = {.lex_state = 58, .external_lex_state = 2}, + [414] = {.lex_state = 58, .external_lex_state = 2}, + [415] = {.lex_state = 58, .external_lex_state = 2}, + [416] = {.lex_state = 58, .external_lex_state = 2}, + [417] = {.lex_state = 58, .external_lex_state = 2}, + [418] = {.lex_state = 58, .external_lex_state = 2}, + [419] = {.lex_state = 58, .external_lex_state = 2}, + [420] = {.lex_state = 58, .external_lex_state = 2}, + [421] = {.lex_state = 58, .external_lex_state = 3}, + [422] = {.lex_state = 58, .external_lex_state = 2}, + [423] = {.lex_state = 58, .external_lex_state = 2}, + [424] = {.lex_state = 58, .external_lex_state = 3}, + [425] = {.lex_state = 58, .external_lex_state = 2}, + [426] = {.lex_state = 58, .external_lex_state = 2}, + [427] = {.lex_state = 58, .external_lex_state = 2}, + [428] = {.lex_state = 58, .external_lex_state = 2}, + [429] = {.lex_state = 58, .external_lex_state = 2}, + [430] = {.lex_state = 58, .external_lex_state = 2}, + [431] = {.lex_state = 58, .external_lex_state = 2}, + [432] = {.lex_state = 58, .external_lex_state = 2}, + [433] = {.lex_state = 58, .external_lex_state = 3}, + [434] = {.lex_state = 58, .external_lex_state = 2}, + [435] = {.lex_state = 58, .external_lex_state = 2}, + [436] = {.lex_state = 58, .external_lex_state = 2}, + [437] = {.lex_state = 58, .external_lex_state = 2}, + [438] = {.lex_state = 58, .external_lex_state = 3}, + [439] = {.lex_state = 58, .external_lex_state = 3}, + [440] = {.lex_state = 58, .external_lex_state = 2}, + [441] = {.lex_state = 58, .external_lex_state = 2}, + [442] = {.lex_state = 58, .external_lex_state = 2}, + [443] = {.lex_state = 58, .external_lex_state = 2}, + [444] = {.lex_state = 58, .external_lex_state = 3}, + [445] = {.lex_state = 58, .external_lex_state = 2}, + [446] = {.lex_state = 58, .external_lex_state = 2}, + [447] = {.lex_state = 58, .external_lex_state = 2}, + [448] = {.lex_state = 58, .external_lex_state = 2}, + [449] = {.lex_state = 58, .external_lex_state = 3}, + [450] = {.lex_state = 58, .external_lex_state = 2}, + [451] = {.lex_state = 58, .external_lex_state = 2}, + [452] = {.lex_state = 58, .external_lex_state = 2}, + [453] = {.lex_state = 58, .external_lex_state = 3}, + [454] = {.lex_state = 58, .external_lex_state = 3}, + [455] = {.lex_state = 58, .external_lex_state = 3}, + [456] = {.lex_state = 58, .external_lex_state = 2}, + [457] = {.lex_state = 58, .external_lex_state = 3}, + [458] = {.lex_state = 58, .external_lex_state = 3}, + [459] = {.lex_state = 58, .external_lex_state = 2}, + [460] = {.lex_state = 58, .external_lex_state = 3}, + [461] = {.lex_state = 58, .external_lex_state = 3}, + [462] = {.lex_state = 58, .external_lex_state = 2}, + [463] = {.lex_state = 58, .external_lex_state = 2}, + [464] = {.lex_state = 58, .external_lex_state = 2}, + [465] = {.lex_state = 58, .external_lex_state = 3}, + [466] = {.lex_state = 58, .external_lex_state = 2}, + [467] = {.lex_state = 58, .external_lex_state = 3}, + [468] = {.lex_state = 58, .external_lex_state = 2}, + [469] = {.lex_state = 58, .external_lex_state = 3}, + [470] = {.lex_state = 58, .external_lex_state = 3}, + [471] = {.lex_state = 58, .external_lex_state = 3}, + [472] = {.lex_state = 58, .external_lex_state = 2}, + [473] = {.lex_state = 58, .external_lex_state = 3}, + [474] = {.lex_state = 58, .external_lex_state = 2}, + [475] = {.lex_state = 58, .external_lex_state = 3}, + [476] = {.lex_state = 58, .external_lex_state = 2}, + [477] = {.lex_state = 58, .external_lex_state = 3}, + [478] = {.lex_state = 58, .external_lex_state = 2}, + [479] = {.lex_state = 58, .external_lex_state = 3}, + [480] = {.lex_state = 58, .external_lex_state = 3}, + [481] = {.lex_state = 58, .external_lex_state = 3}, + [482] = {.lex_state = 58, .external_lex_state = 3}, + [483] = {.lex_state = 58, .external_lex_state = 3}, + [484] = {.lex_state = 58, .external_lex_state = 3}, + [485] = {.lex_state = 58, .external_lex_state = 3}, + [486] = {.lex_state = 58, .external_lex_state = 3}, + [487] = {.lex_state = 58, .external_lex_state = 3}, + [488] = {.lex_state = 58, .external_lex_state = 3}, + [489] = {.lex_state = 58, .external_lex_state = 2}, + [490] = {.lex_state = 58, .external_lex_state = 3}, + [491] = {.lex_state = 58, .external_lex_state = 2}, + [492] = {.lex_state = 58, .external_lex_state = 3}, + [493] = {.lex_state = 58, .external_lex_state = 2}, + [494] = {.lex_state = 58, .external_lex_state = 3}, + [495] = {.lex_state = 58, .external_lex_state = 2}, + [496] = {.lex_state = 58, .external_lex_state = 3}, + [497] = {.lex_state = 58, .external_lex_state = 2}, + [498] = {.lex_state = 58, .external_lex_state = 3}, + [499] = {.lex_state = 58, .external_lex_state = 2}, + [500] = {.lex_state = 58, .external_lex_state = 3}, + [501] = {.lex_state = 58, .external_lex_state = 3}, + [502] = {.lex_state = 58, .external_lex_state = 2}, + [503] = {.lex_state = 58, .external_lex_state = 3}, + [504] = {.lex_state = 58, .external_lex_state = 2}, + [505] = {.lex_state = 58, .external_lex_state = 3}, + [506] = {.lex_state = 58, .external_lex_state = 2}, + [507] = {.lex_state = 58, .external_lex_state = 3}, + [508] = {.lex_state = 58, .external_lex_state = 3}, + [509] = {.lex_state = 58, .external_lex_state = 2}, + [510] = {.lex_state = 58, .external_lex_state = 2}, + [511] = {.lex_state = 58, .external_lex_state = 3}, + [512] = {.lex_state = 58, .external_lex_state = 2}, + [513] = {.lex_state = 58, .external_lex_state = 2}, + [514] = {.lex_state = 58, .external_lex_state = 2}, + [515] = {.lex_state = 58, .external_lex_state = 3}, + [516] = {.lex_state = 58, .external_lex_state = 2}, + [517] = {.lex_state = 58, .external_lex_state = 3}, + [518] = {.lex_state = 58, .external_lex_state = 3}, + [519] = {.lex_state = 58, .external_lex_state = 3}, + [520] = {.lex_state = 58, .external_lex_state = 2}, + [521] = {.lex_state = 58, .external_lex_state = 3}, + [522] = {.lex_state = 58, .external_lex_state = 2}, + [523] = {.lex_state = 58, .external_lex_state = 2}, + [524] = {.lex_state = 58, .external_lex_state = 2}, + [525] = {.lex_state = 58, .external_lex_state = 3}, + [526] = {.lex_state = 58, .external_lex_state = 2}, + [527] = {.lex_state = 58, .external_lex_state = 2}, + [528] = {.lex_state = 58, .external_lex_state = 3}, + [529] = {.lex_state = 58, .external_lex_state = 2}, + [530] = {.lex_state = 58, .external_lex_state = 3}, + [531] = {.lex_state = 58, .external_lex_state = 2}, + [532] = {.lex_state = 58, .external_lex_state = 3}, + [533] = {.lex_state = 58, .external_lex_state = 3}, + [534] = {.lex_state = 58, .external_lex_state = 2}, + [535] = {.lex_state = 58, .external_lex_state = 2}, + [536] = {.lex_state = 58, .external_lex_state = 2}, + [537] = {.lex_state = 58, .external_lex_state = 3}, + [538] = {.lex_state = 58, .external_lex_state = 2}, + [539] = {.lex_state = 58, .external_lex_state = 3}, + [540] = {.lex_state = 58, .external_lex_state = 2}, + [541] = {.lex_state = 58, .external_lex_state = 2}, + [542] = {.lex_state = 58, .external_lex_state = 3}, + [543] = {.lex_state = 58, .external_lex_state = 3}, + [544] = {.lex_state = 58, .external_lex_state = 2}, + [545] = {.lex_state = 58, .external_lex_state = 2}, + [546] = {.lex_state = 58, .external_lex_state = 2}, + [547] = {.lex_state = 58, .external_lex_state = 2}, + [548] = {.lex_state = 58, .external_lex_state = 3}, + [549] = {.lex_state = 58, .external_lex_state = 2}, + [550] = {.lex_state = 58, .external_lex_state = 3}, + [551] = {.lex_state = 58, .external_lex_state = 3}, + [552] = {.lex_state = 58, .external_lex_state = 2}, + [553] = {.lex_state = 58, .external_lex_state = 2}, + [554] = {.lex_state = 58, .external_lex_state = 2}, + [555] = {.lex_state = 58, .external_lex_state = 2}, + [556] = {.lex_state = 58, .external_lex_state = 2}, + [557] = {.lex_state = 58, .external_lex_state = 2}, + [558] = {.lex_state = 58, .external_lex_state = 2}, + [559] = {.lex_state = 58, .external_lex_state = 3}, + [560] = {.lex_state = 58, .external_lex_state = 2}, + [561] = {.lex_state = 58, .external_lex_state = 3}, + [562] = {.lex_state = 58, .external_lex_state = 3}, + [563] = {.lex_state = 58, .external_lex_state = 3}, + [564] = {.lex_state = 58, .external_lex_state = 2}, + [565] = {.lex_state = 58, .external_lex_state = 2}, + [566] = {.lex_state = 58, .external_lex_state = 2}, + [567] = {.lex_state = 58, .external_lex_state = 2}, + [568] = {.lex_state = 58, .external_lex_state = 2}, + [569] = {.lex_state = 58, .external_lex_state = 2}, + [570] = {.lex_state = 15, .external_lex_state = 2}, + [571] = {.lex_state = 15, .external_lex_state = 2}, + [572] = {.lex_state = 58, .external_lex_state = 2}, + [573] = {.lex_state = 58, .external_lex_state = 2}, + [574] = {.lex_state = 15, .external_lex_state = 2}, + [575] = {.lex_state = 58, .external_lex_state = 2}, + [576] = {.lex_state = 58, .external_lex_state = 2}, + [577] = {.lex_state = 58, .external_lex_state = 2}, + [578] = {.lex_state = 58, .external_lex_state = 2}, + [579] = {.lex_state = 58, .external_lex_state = 2}, + [580] = {.lex_state = 15, .external_lex_state = 2}, + [581] = {.lex_state = 15, .external_lex_state = 2}, + [582] = {.lex_state = 15}, + [583] = {.lex_state = 15}, + [584] = {.lex_state = 15}, + [585] = {.lex_state = 15}, + [586] = {.lex_state = 15}, + [587] = {.lex_state = 15}, + [588] = {.lex_state = 15}, + [589] = {.lex_state = 15}, + [590] = {.lex_state = 15}, + [591] = {.lex_state = 15}, + [592] = {.lex_state = 15}, + [593] = {.lex_state = 15}, + [594] = {.lex_state = 15}, + [595] = {.lex_state = 15}, + [596] = {.lex_state = 15}, + [597] = {.lex_state = 15}, + [598] = {.lex_state = 15}, + [599] = {.lex_state = 15}, + [600] = {.lex_state = 16, .external_lex_state = 2}, + [601] = {.lex_state = 15}, + [602] = {.lex_state = 15}, + [603] = {.lex_state = 15}, + [604] = {.lex_state = 15}, + [605] = {.lex_state = 15}, + [606] = {.lex_state = 15}, + [607] = {.lex_state = 15}, + [608] = {.lex_state = 15}, + [609] = {.lex_state = 15}, + [610] = {.lex_state = 15}, + [611] = {.lex_state = 15}, [612] = {.lex_state = 15}, [613] = {.lex_state = 15}, [614] = {.lex_state = 15}, @@ -6905,7 +6723,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [619] = {.lex_state = 15}, [620] = {.lex_state = 15}, [621] = {.lex_state = 15}, - [622] = {.lex_state = 16, .external_lex_state = 2}, + [622] = {.lex_state = 15}, [623] = {.lex_state = 15}, [624] = {.lex_state = 15}, [625] = {.lex_state = 15}, @@ -6922,139 +6740,139 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [636] = {.lex_state = 15}, [637] = {.lex_state = 15}, [638] = {.lex_state = 15}, - [639] = {.lex_state = 15}, + [639] = {.lex_state = 15, .external_lex_state = 2}, [640] = {.lex_state = 15}, - [641] = {.lex_state = 15}, - [642] = {.lex_state = 15}, - [643] = {.lex_state = 15}, - [644] = {.lex_state = 15}, - [645] = {.lex_state = 15}, - [646] = {.lex_state = 15}, - [647] = {.lex_state = 15}, - [648] = {.lex_state = 15}, - [649] = {.lex_state = 15}, - [650] = {.lex_state = 15}, - [651] = {.lex_state = 15}, - [652] = {.lex_state = 15}, - [653] = {.lex_state = 15}, - [654] = {.lex_state = 15}, - [655] = {.lex_state = 15}, - [656] = {.lex_state = 15}, - [657] = {.lex_state = 15}, - [658] = {.lex_state = 15}, - [659] = {.lex_state = 15}, - [660] = {.lex_state = 15}, - [661] = {.lex_state = 15}, - [662] = {.lex_state = 15}, - [663] = {.lex_state = 15}, - [664] = {.lex_state = 15}, - [665] = {.lex_state = 15}, - [666] = {.lex_state = 15}, - [667] = {.lex_state = 15}, - [668] = {.lex_state = 15}, - [669] = {.lex_state = 62, .external_lex_state = 2}, - [670] = {.lex_state = 15, .external_lex_state = 2}, - [671] = {.lex_state = 62, .external_lex_state = 2}, - [672] = {.lex_state = 62, .external_lex_state = 2}, - [673] = {.lex_state = 14}, - [674] = {.lex_state = 14}, - [675] = {.lex_state = 14}, - [676] = {.lex_state = 15}, - [677] = {.lex_state = 14}, - [678] = {.lex_state = 62, .external_lex_state = 2}, - [679] = {.lex_state = 15, .external_lex_state = 2}, - [680] = {.lex_state = 15}, - [681] = {.lex_state = 62, .external_lex_state = 2}, - [682] = {.lex_state = 62, .external_lex_state = 2}, - [683] = {.lex_state = 62, .external_lex_state = 2}, - [684] = {.lex_state = 62, .external_lex_state = 2}, - [685] = {.lex_state = 15, .external_lex_state = 4}, - [686] = {.lex_state = 62, .external_lex_state = 2}, - [687] = {.lex_state = 62, .external_lex_state = 2}, - [688] = {.lex_state = 62, .external_lex_state = 2}, - [689] = {.lex_state = 62, .external_lex_state = 2}, - [690] = {.lex_state = 62, .external_lex_state = 2}, - [691] = {.lex_state = 62, .external_lex_state = 2}, - [692] = {.lex_state = 62, .external_lex_state = 2}, - [693] = {.lex_state = 15}, - [694] = {.lex_state = 62, .external_lex_state = 2}, - [695] = {.lex_state = 62, .external_lex_state = 2}, - [696] = {.lex_state = 15, .external_lex_state = 6}, - [697] = {.lex_state = 62, .external_lex_state = 2}, - [698] = {.lex_state = 62, .external_lex_state = 2}, - [699] = {.lex_state = 62, .external_lex_state = 2}, - [700] = {.lex_state = 62, .external_lex_state = 2}, - [701] = {.lex_state = 15, .external_lex_state = 4}, - [702] = {.lex_state = 15, .external_lex_state = 4}, - [703] = {.lex_state = 62, .external_lex_state = 2}, - [704] = {.lex_state = 62, .external_lex_state = 2}, - [705] = {.lex_state = 62, .external_lex_state = 2}, - [706] = {.lex_state = 62, .external_lex_state = 2}, - [707] = {.lex_state = 62, .external_lex_state = 2}, - [708] = {.lex_state = 62, .external_lex_state = 2}, - [709] = {.lex_state = 62, .external_lex_state = 2}, - [710] = {.lex_state = 62, .external_lex_state = 2}, - [711] = {.lex_state = 62, .external_lex_state = 2}, - [712] = {.lex_state = 62, .external_lex_state = 2}, - [713] = {.lex_state = 62, .external_lex_state = 2}, - [714] = {.lex_state = 62, .external_lex_state = 2}, - [715] = {.lex_state = 62, .external_lex_state = 2}, - [716] = {.lex_state = 62, .external_lex_state = 2}, - [717] = {.lex_state = 62, .external_lex_state = 2}, - [718] = {.lex_state = 62, .external_lex_state = 2}, - [719] = {.lex_state = 62, .external_lex_state = 2}, - [720] = {.lex_state = 62, .external_lex_state = 2}, - [721] = {.lex_state = 62, .external_lex_state = 2}, - [722] = {.lex_state = 62, .external_lex_state = 2}, - [723] = {.lex_state = 62, .external_lex_state = 2}, - [724] = {.lex_state = 62, .external_lex_state = 2}, - [725] = {.lex_state = 62, .external_lex_state = 2}, - [726] = {.lex_state = 62, .external_lex_state = 2}, - [727] = {.lex_state = 62, .external_lex_state = 2}, - [728] = {.lex_state = 62, .external_lex_state = 2}, - [729] = {.lex_state = 62, .external_lex_state = 2}, - [730] = {.lex_state = 62, .external_lex_state = 2}, - [731] = {.lex_state = 62, .external_lex_state = 2}, - [732] = {.lex_state = 15, .external_lex_state = 6}, - [733] = {.lex_state = 15, .external_lex_state = 6}, - [734] = {.lex_state = 15, .external_lex_state = 6}, - [735] = {.lex_state = 15}, - [736] = {.lex_state = 15, .external_lex_state = 6}, - [737] = {.lex_state = 15, .external_lex_state = 2}, - [738] = {.lex_state = 15, .external_lex_state = 6}, - [739] = {.lex_state = 15, .external_lex_state = 2}, - [740] = {.lex_state = 15, .external_lex_state = 6}, - [741] = {.lex_state = 15, .external_lex_state = 2}, + [641] = {.lex_state = 14}, + [642] = {.lex_state = 14}, + [643] = {.lex_state = 58, .external_lex_state = 2}, + [644] = {.lex_state = 15, .external_lex_state = 2}, + [645] = {.lex_state = 58, .external_lex_state = 2}, + [646] = {.lex_state = 58, .external_lex_state = 2}, + [647] = {.lex_state = 58, .external_lex_state = 2}, + [648] = {.lex_state = 14}, + [649] = {.lex_state = 14}, + [650] = {.lex_state = 15, .external_lex_state = 4}, + [651] = {.lex_state = 58, .external_lex_state = 2}, + [652] = {.lex_state = 58, .external_lex_state = 2}, + [653] = {.lex_state = 58, .external_lex_state = 2}, + [654] = {.lex_state = 58, .external_lex_state = 2}, + [655] = {.lex_state = 58, .external_lex_state = 2}, + [656] = {.lex_state = 15, .external_lex_state = 4}, + [657] = {.lex_state = 15, .external_lex_state = 4}, + [658] = {.lex_state = 58, .external_lex_state = 2}, + [659] = {.lex_state = 58, .external_lex_state = 2}, + [660] = {.lex_state = 58, .external_lex_state = 2}, + [661] = {.lex_state = 58, .external_lex_state = 2}, + [662] = {.lex_state = 58, .external_lex_state = 2}, + [663] = {.lex_state = 58, .external_lex_state = 2}, + [664] = {.lex_state = 58, .external_lex_state = 2}, + [665] = {.lex_state = 58, .external_lex_state = 2}, + [666] = {.lex_state = 58, .external_lex_state = 2}, + [667] = {.lex_state = 58, .external_lex_state = 2}, + [668] = {.lex_state = 58, .external_lex_state = 2}, + [669] = {.lex_state = 58, .external_lex_state = 2}, + [670] = {.lex_state = 58, .external_lex_state = 2}, + [671] = {.lex_state = 58, .external_lex_state = 2}, + [672] = {.lex_state = 58, .external_lex_state = 2}, + [673] = {.lex_state = 58, .external_lex_state = 2}, + [674] = {.lex_state = 58, .external_lex_state = 2}, + [675] = {.lex_state = 58, .external_lex_state = 2}, + [676] = {.lex_state = 58, .external_lex_state = 2}, + [677] = {.lex_state = 58, .external_lex_state = 2}, + [678] = {.lex_state = 58, .external_lex_state = 2}, + [679] = {.lex_state = 58, .external_lex_state = 2}, + [680] = {.lex_state = 58, .external_lex_state = 2}, + [681] = {.lex_state = 58, .external_lex_state = 2}, + [682] = {.lex_state = 58, .external_lex_state = 2}, + [683] = {.lex_state = 58, .external_lex_state = 2}, + [684] = {.lex_state = 58, .external_lex_state = 2}, + [685] = {.lex_state = 58, .external_lex_state = 2}, + [686] = {.lex_state = 58, .external_lex_state = 2}, + [687] = {.lex_state = 15}, + [688] = {.lex_state = 58, .external_lex_state = 2}, + [689] = {.lex_state = 15}, + [690] = {.lex_state = 58, .external_lex_state = 2}, + [691] = {.lex_state = 58, .external_lex_state = 2}, + [692] = {.lex_state = 15, .external_lex_state = 6}, + [693] = {.lex_state = 58, .external_lex_state = 2}, + [694] = {.lex_state = 58, .external_lex_state = 2}, + [695] = {.lex_state = 58, .external_lex_state = 2}, + [696] = {.lex_state = 58, .external_lex_state = 2}, + [697] = {.lex_state = 58, .external_lex_state = 2}, + [698] = {.lex_state = 58, .external_lex_state = 2}, + [699] = {.lex_state = 58, .external_lex_state = 2}, + [700] = {.lex_state = 58, .external_lex_state = 2}, + [701] = {.lex_state = 58, .external_lex_state = 2}, + [702] = {.lex_state = 15, .external_lex_state = 6}, + [703] = {.lex_state = 15, .external_lex_state = 6}, + [704] = {.lex_state = 15, .external_lex_state = 2}, + [705] = {.lex_state = 15, .external_lex_state = 6}, + [706] = {.lex_state = 15, .external_lex_state = 6}, + [707] = {.lex_state = 15, .external_lex_state = 6}, + [708] = {.lex_state = 15, .external_lex_state = 6}, + [709] = {.lex_state = 15, .external_lex_state = 6}, + [710] = {.lex_state = 15, .external_lex_state = 6}, + [711] = {.lex_state = 15, .external_lex_state = 6}, + [712] = {.lex_state = 15}, + [713] = {.lex_state = 15, .external_lex_state = 6}, + [714] = {.lex_state = 15, .external_lex_state = 6}, + [715] = {.lex_state = 15, .external_lex_state = 2}, + [716] = {.lex_state = 15, .external_lex_state = 2}, + [717] = {.lex_state = 15}, + [718] = {.lex_state = 15}, + [719] = {.lex_state = 15}, + [720] = {.lex_state = 14}, + [721] = {.lex_state = 15}, + [722] = {.lex_state = 15, .external_lex_state = 4}, + [723] = {.lex_state = 15}, + [724] = {.lex_state = 14}, + [725] = {.lex_state = 15}, + [726] = {.lex_state = 15}, + [727] = {.lex_state = 15}, + [728] = {.lex_state = 15, .external_lex_state = 4}, + [729] = {.lex_state = 15}, + [730] = {.lex_state = 15}, + [731] = {.lex_state = 15}, + [732] = {.lex_state = 15}, + [733] = {.lex_state = 15}, + [734] = {.lex_state = 15}, + [735] = {.lex_state = 14}, + [736] = {.lex_state = 15}, + [737] = {.lex_state = 15}, + [738] = {.lex_state = 14}, + [739] = {.lex_state = 14, .external_lex_state = 6}, + [740] = {.lex_state = 15}, + [741] = {.lex_state = 14, .external_lex_state = 6}, [742] = {.lex_state = 15, .external_lex_state = 6}, [743] = {.lex_state = 15, .external_lex_state = 6}, [744] = {.lex_state = 15, .external_lex_state = 6}, [745] = {.lex_state = 15, .external_lex_state = 6}, [746] = {.lex_state = 15, .external_lex_state = 6}, - [747] = {.lex_state = 15}, - [748] = {.lex_state = 15}, - [749] = {.lex_state = 15, .external_lex_state = 4}, - [750] = {.lex_state = 15}, - [751] = {.lex_state = 15}, - [752] = {.lex_state = 15}, + [747] = {.lex_state = 15, .external_lex_state = 6}, + [748] = {.lex_state = 15, .external_lex_state = 6}, + [749] = {.lex_state = 15, .external_lex_state = 6}, + [750] = {.lex_state = 15, .external_lex_state = 6}, + [751] = {.lex_state = 15, .external_lex_state = 6}, + [752] = {.lex_state = 15, .external_lex_state = 6}, [753] = {.lex_state = 15}, - [754] = {.lex_state = 14}, - [755] = {.lex_state = 15}, - [756] = {.lex_state = 15, .external_lex_state = 4}, + [754] = {.lex_state = 15, .external_lex_state = 6}, + [755] = {.lex_state = 15, .external_lex_state = 6}, + [756] = {.lex_state = 15}, [757] = {.lex_state = 15}, - [758] = {.lex_state = 14}, - [759] = {.lex_state = 15}, - [760] = {.lex_state = 15}, - [761] = {.lex_state = 15}, - [762] = {.lex_state = 15}, - [763] = {.lex_state = 14}, - [764] = {.lex_state = 15}, - [765] = {.lex_state = 14, .external_lex_state = 6}, - [766] = {.lex_state = 14, .external_lex_state = 6}, - [767] = {.lex_state = 15}, - [768] = {.lex_state = 15}, - [769] = {.lex_state = 15}, - [770] = {.lex_state = 15}, - [771] = {.lex_state = 14}, + [758] = {.lex_state = 15, .external_lex_state = 6}, + [759] = {.lex_state = 15, .external_lex_state = 6}, + [760] = {.lex_state = 15, .external_lex_state = 6}, + [761] = {.lex_state = 15, .external_lex_state = 6}, + [762] = {.lex_state = 15, .external_lex_state = 6}, + [763] = {.lex_state = 15, .external_lex_state = 6}, + [764] = {.lex_state = 15, .external_lex_state = 6}, + [765] = {.lex_state = 15, .external_lex_state = 6}, + [766] = {.lex_state = 15, .external_lex_state = 6}, + [767] = {.lex_state = 15, .external_lex_state = 6}, + [768] = {.lex_state = 15, .external_lex_state = 6}, + [769] = {.lex_state = 15, .external_lex_state = 6}, + [770] = {.lex_state = 14}, + [771] = {.lex_state = 15, .external_lex_state = 6}, [772] = {.lex_state = 15, .external_lex_state = 6}, [773] = {.lex_state = 15, .external_lex_state = 6}, [774] = {.lex_state = 15, .external_lex_state = 6}, @@ -7062,37 +6880,37 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [776] = {.lex_state = 15, .external_lex_state = 6}, [777] = {.lex_state = 15, .external_lex_state = 6}, [778] = {.lex_state = 15, .external_lex_state = 6}, - [779] = {.lex_state = 15, .external_lex_state = 6}, - [780] = {.lex_state = 15, .external_lex_state = 6}, - [781] = {.lex_state = 15, .external_lex_state = 6}, - [782] = {.lex_state = 15, .external_lex_state = 6}, - [783] = {.lex_state = 15, .external_lex_state = 6}, - [784] = {.lex_state = 15, .external_lex_state = 6}, - [785] = {.lex_state = 15, .external_lex_state = 6}, - [786] = {.lex_state = 14}, - [787] = {.lex_state = 14}, - [788] = {.lex_state = 15, .external_lex_state = 6}, - [789] = {.lex_state = 15, .external_lex_state = 6}, - [790] = {.lex_state = 15, .external_lex_state = 6}, - [791] = {.lex_state = 15, .external_lex_state = 6}, - [792] = {.lex_state = 15, .external_lex_state = 6}, - [793] = {.lex_state = 15, .external_lex_state = 6}, - [794] = {.lex_state = 15, .external_lex_state = 6}, - [795] = {.lex_state = 15, .external_lex_state = 6}, - [796] = {.lex_state = 15, .external_lex_state = 6}, + [779] = {.lex_state = 14}, + [780] = {.lex_state = 15}, + [781] = {.lex_state = 15}, + [782] = {.lex_state = 15}, + [783] = {.lex_state = 15}, + [784] = {.lex_state = 15}, + [785] = {.lex_state = 15}, + [786] = {.lex_state = 15}, + [787] = {.lex_state = 15}, + [788] = {.lex_state = 15}, + [789] = {.lex_state = 14}, + [790] = {.lex_state = 15}, + [791] = {.lex_state = 14}, + [792] = {.lex_state = 15}, + [793] = {.lex_state = 15}, + [794] = {.lex_state = 15}, + [795] = {.lex_state = 15}, + [796] = {.lex_state = 15}, [797] = {.lex_state = 15}, - [798] = {.lex_state = 15, .external_lex_state = 6}, - [799] = {.lex_state = 15, .external_lex_state = 6}, + [798] = {.lex_state = 15}, + [799] = {.lex_state = 15}, [800] = {.lex_state = 15}, - [801] = {.lex_state = 15, .external_lex_state = 6}, - [802] = {.lex_state = 15, .external_lex_state = 6}, - [803] = {.lex_state = 15, .external_lex_state = 6}, - [804] = {.lex_state = 15, .external_lex_state = 6}, + [801] = {.lex_state = 15}, + [802] = {.lex_state = 15}, + [803] = {.lex_state = 15}, + [804] = {.lex_state = 15}, [805] = {.lex_state = 15}, - [806] = {.lex_state = 15, .external_lex_state = 6}, - [807] = {.lex_state = 15, .external_lex_state = 6}, - [808] = {.lex_state = 15, .external_lex_state = 6}, - [809] = {.lex_state = 15, .external_lex_state = 6}, + [806] = {.lex_state = 15}, + [807] = {.lex_state = 15}, + [808] = {.lex_state = 15}, + [809] = {.lex_state = 15}, [810] = {.lex_state = 15}, [811] = {.lex_state = 15}, [812] = {.lex_state = 15}, @@ -7103,465 +6921,465 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [817] = {.lex_state = 15}, [818] = {.lex_state = 15}, [819] = {.lex_state = 15}, - [820] = {.lex_state = 15}, - [821] = {.lex_state = 15}, - [822] = {.lex_state = 14}, - [823] = {.lex_state = 15}, - [824] = {.lex_state = 15}, - [825] = {.lex_state = 14}, - [826] = {.lex_state = 15}, - [827] = {.lex_state = 15}, - [828] = {.lex_state = 15}, - [829] = {.lex_state = 15}, - [830] = {.lex_state = 15}, - [831] = {.lex_state = 15}, - [832] = {.lex_state = 15}, - [833] = {.lex_state = 15}, - [834] = {.lex_state = 15}, - [835] = {.lex_state = 15}, - [836] = {.lex_state = 15}, - [837] = {.lex_state = 15}, - [838] = {.lex_state = 15}, - [839] = {.lex_state = 15}, - [840] = {.lex_state = 15}, - [841] = {.lex_state = 15}, - [842] = {.lex_state = 15}, - [843] = {.lex_state = 15}, - [844] = {.lex_state = 15}, - [845] = {.lex_state = 15}, - [846] = {.lex_state = 15}, - [847] = {.lex_state = 15}, - [848] = {.lex_state = 15}, - [849] = {.lex_state = 15}, - [850] = {.lex_state = 16, .external_lex_state = 2}, - [851] = {.lex_state = 62, .external_lex_state = 2}, - [852] = {.lex_state = 16, .external_lex_state = 2}, - [853] = {.lex_state = 62, .external_lex_state = 2}, - [854] = {.lex_state = 62, .external_lex_state = 2}, - [855] = {.lex_state = 62, .external_lex_state = 2}, - [856] = {.lex_state = 62, .external_lex_state = 2}, - [857] = {.lex_state = 62, .external_lex_state = 2}, - [858] = {.lex_state = 62, .external_lex_state = 2}, - [859] = {.lex_state = 62, .external_lex_state = 2}, - [860] = {.lex_state = 62, .external_lex_state = 2}, - [861] = {.lex_state = 62, .external_lex_state = 2}, - [862] = {.lex_state = 62, .external_lex_state = 2}, - [863] = {.lex_state = 62, .external_lex_state = 2}, - [864] = {.lex_state = 62, .external_lex_state = 2}, - [865] = {.lex_state = 62, .external_lex_state = 2}, - [866] = {.lex_state = 62, .external_lex_state = 2}, - [867] = {.lex_state = 62, .external_lex_state = 2}, - [868] = {.lex_state = 62, .external_lex_state = 2}, - [869] = {.lex_state = 16}, + [820] = {.lex_state = 16, .external_lex_state = 2}, + [821] = {.lex_state = 16, .external_lex_state = 2}, + [822] = {.lex_state = 58, .external_lex_state = 2}, + [823] = {.lex_state = 58, .external_lex_state = 2}, + [824] = {.lex_state = 58, .external_lex_state = 2}, + [825] = {.lex_state = 58, .external_lex_state = 2}, + [826] = {.lex_state = 58, .external_lex_state = 2}, + [827] = {.lex_state = 58, .external_lex_state = 2}, + [828] = {.lex_state = 58, .external_lex_state = 2}, + [829] = {.lex_state = 58, .external_lex_state = 2}, + [830] = {.lex_state = 58, .external_lex_state = 2}, + [831] = {.lex_state = 58, .external_lex_state = 2}, + [832] = {.lex_state = 58, .external_lex_state = 2}, + [833] = {.lex_state = 58, .external_lex_state = 2}, + [834] = {.lex_state = 58, .external_lex_state = 2}, + [835] = {.lex_state = 58, .external_lex_state = 2}, + [836] = {.lex_state = 58, .external_lex_state = 2}, + [837] = {.lex_state = 58, .external_lex_state = 2}, + [838] = {.lex_state = 58, .external_lex_state = 2}, + [839] = {.lex_state = 16}, + [840] = {.lex_state = 16}, + [841] = {.lex_state = 16}, + [842] = {.lex_state = 16}, + [843] = {.lex_state = 16}, + [844] = {.lex_state = 0, .external_lex_state = 6}, + [845] = {.lex_state = 0, .external_lex_state = 6}, + [846] = {.lex_state = 16}, + [847] = {.lex_state = 16}, + [848] = {.lex_state = 16}, + [849] = {.lex_state = 16}, + [850] = {.lex_state = 15}, + [851] = {.lex_state = 15}, + [852] = {.lex_state = 16}, + [853] = {.lex_state = 15}, + [854] = {.lex_state = 16}, + [855] = {.lex_state = 16}, + [856] = {.lex_state = 16}, + [857] = {.lex_state = 16}, + [858] = {.lex_state = 16}, + [859] = {.lex_state = 16}, + [860] = {.lex_state = 16}, + [861] = {.lex_state = 16}, + [862] = {.lex_state = 58, .external_lex_state = 2}, + [863] = {.lex_state = 58, .external_lex_state = 2}, + [864] = {.lex_state = 58, .external_lex_state = 2}, + [865] = {.lex_state = 0}, + [866] = {.lex_state = 16}, + [867] = {.lex_state = 0}, + [868] = {.lex_state = 16}, + [869] = {.lex_state = 0}, [870] = {.lex_state = 16}, [871] = {.lex_state = 16}, [872] = {.lex_state = 16}, - [873] = {.lex_state = 16}, + [873] = {.lex_state = 0}, [874] = {.lex_state = 16}, - [875] = {.lex_state = 62, .external_lex_state = 6}, - [876] = {.lex_state = 16}, + [875] = {.lex_state = 0}, + [876] = {.lex_state = 58, .external_lex_state = 2}, [877] = {.lex_state = 15}, - [878] = {.lex_state = 15}, - [879] = {.lex_state = 16}, - [880] = {.lex_state = 16}, - [881] = {.lex_state = 62, .external_lex_state = 6}, - [882] = {.lex_state = 16}, + [878] = {.lex_state = 16}, + [879] = {.lex_state = 0}, + [880] = {.lex_state = 15}, + [881] = {.lex_state = 16}, + [882] = {.lex_state = 18, .external_lex_state = 7}, [883] = {.lex_state = 16}, - [884] = {.lex_state = 16}, - [885] = {.lex_state = 15}, + [884] = {.lex_state = 18, .external_lex_state = 7}, + [885] = {.lex_state = 18, .external_lex_state = 7}, [886] = {.lex_state = 16}, - [887] = {.lex_state = 16}, + [887] = {.lex_state = 18, .external_lex_state = 7}, [888] = {.lex_state = 16}, [889] = {.lex_state = 16}, [890] = {.lex_state = 16}, [891] = {.lex_state = 16}, - [892] = {.lex_state = 62}, - [893] = {.lex_state = 62, .external_lex_state = 2}, - [894] = {.lex_state = 62, .external_lex_state = 2}, - [895] = {.lex_state = 62, .external_lex_state = 2}, + [892] = {.lex_state = 16}, + [893] = {.lex_state = 18, .external_lex_state = 7}, + [894] = {.lex_state = 15}, + [895] = {.lex_state = 16}, [896] = {.lex_state = 16}, [897] = {.lex_state = 16}, - [898] = {.lex_state = 62}, - [899] = {.lex_state = 62}, - [900] = {.lex_state = 16}, - [901] = {.lex_state = 62}, - [902] = {.lex_state = 16}, - [903] = {.lex_state = 62}, - [904] = {.lex_state = 16}, + [898] = {.lex_state = 16}, + [899] = {.lex_state = 16}, + [900] = {.lex_state = 18, .external_lex_state = 7}, + [901] = {.lex_state = 16, .external_lex_state = 2}, + [902] = {.lex_state = 18, .external_lex_state = 7}, + [903] = {.lex_state = 16}, + [904] = {.lex_state = 15}, [905] = {.lex_state = 16}, - [906] = {.lex_state = 62, .external_lex_state = 2}, - [907] = {.lex_state = 15}, - [908] = {.lex_state = 16, .external_lex_state = 2}, - [909] = {.lex_state = 18, .external_lex_state = 7}, - [910] = {.lex_state = 16}, - [911] = {.lex_state = 16}, - [912] = {.lex_state = 18, .external_lex_state = 7}, - [913] = {.lex_state = 62}, - [914] = {.lex_state = 18, .external_lex_state = 7}, + [906] = {.lex_state = 18, .external_lex_state = 7}, + [907] = {.lex_state = 18, .external_lex_state = 7}, + [908] = {.lex_state = 16}, + [909] = {.lex_state = 16}, + [910] = {.lex_state = 0}, + [911] = {.lex_state = 0}, + [912] = {.lex_state = 0}, + [913] = {.lex_state = 16}, + [914] = {.lex_state = 0}, [915] = {.lex_state = 16}, - [916] = {.lex_state = 16}, + [916] = {.lex_state = 0}, [917] = {.lex_state = 16}, - [918] = {.lex_state = 16}, + [918] = {.lex_state = 0}, [919] = {.lex_state = 16}, - [920] = {.lex_state = 16}, - [921] = {.lex_state = 18, .external_lex_state = 7}, - [922] = {.lex_state = 16}, + [920] = {.lex_state = 0}, + [921] = {.lex_state = 0}, + [922] = {.lex_state = 0}, [923] = {.lex_state = 16}, - [924] = {.lex_state = 18, .external_lex_state = 7}, - [925] = {.lex_state = 18, .external_lex_state = 7}, - [926] = {.lex_state = 15}, + [924] = {.lex_state = 16}, + [925] = {.lex_state = 16}, + [926] = {.lex_state = 0}, [927] = {.lex_state = 16}, - [928] = {.lex_state = 16}, + [928] = {.lex_state = 0}, [929] = {.lex_state = 16}, - [930] = {.lex_state = 15}, - [931] = {.lex_state = 18, .external_lex_state = 7}, - [932] = {.lex_state = 16}, - [933] = {.lex_state = 18, .external_lex_state = 7}, - [934] = {.lex_state = 16}, - [935] = {.lex_state = 16}, - [936] = {.lex_state = 15}, - [937] = {.lex_state = 18, .external_lex_state = 7}, + [930] = {.lex_state = 16}, + [931] = {.lex_state = 0}, + [932] = {.lex_state = 0}, + [933] = {.lex_state = 0}, + [934] = {.lex_state = 0}, + [935] = {.lex_state = 0, .external_lex_state = 6}, + [936] = {.lex_state = 16}, + [937] = {.lex_state = 16}, [938] = {.lex_state = 16}, - [939] = {.lex_state = 16}, - [940] = {.lex_state = 62}, - [941] = {.lex_state = 62}, - [942] = {.lex_state = 62}, - [943] = {.lex_state = 62}, - [944] = {.lex_state = 16}, - [945] = {.lex_state = 16}, - [946] = {.lex_state = 62}, - [947] = {.lex_state = 16}, - [948] = {.lex_state = 16}, + [939] = {.lex_state = 0, .external_lex_state = 6}, + [940] = {.lex_state = 16}, + [941] = {.lex_state = 16}, + [942] = {.lex_state = 18, .external_lex_state = 7}, + [943] = {.lex_state = 0, .external_lex_state = 6}, + [944] = {.lex_state = 0}, + [945] = {.lex_state = 0}, + [946] = {.lex_state = 16}, + [947] = {.lex_state = 0, .external_lex_state = 6}, + [948] = {.lex_state = 0}, [949] = {.lex_state = 16}, - [950] = {.lex_state = 62}, - [951] = {.lex_state = 62}, - [952] = {.lex_state = 62}, + [950] = {.lex_state = 16}, + [951] = {.lex_state = 16}, + [952] = {.lex_state = 18, .external_lex_state = 7}, [953] = {.lex_state = 16}, - [954] = {.lex_state = 62}, - [955] = {.lex_state = 62}, - [956] = {.lex_state = 16}, - [957] = {.lex_state = 16}, - [958] = {.lex_state = 16}, - [959] = {.lex_state = 62}, - [960] = {.lex_state = 62}, + [954] = {.lex_state = 16}, + [955] = {.lex_state = 16}, + [956] = {.lex_state = 0, .external_lex_state = 6}, + [957] = {.lex_state = 0, .external_lex_state = 6}, + [958] = {.lex_state = 0}, + [959] = {.lex_state = 16}, + [960] = {.lex_state = 16}, [961] = {.lex_state = 16}, - [962] = {.lex_state = 62}, - [963] = {.lex_state = 62}, - [964] = {.lex_state = 62}, + [962] = {.lex_state = 0, .external_lex_state = 6}, + [963] = {.lex_state = 0}, + [964] = {.lex_state = 0, .external_lex_state = 6}, [965] = {.lex_state = 16}, [966] = {.lex_state = 16}, [967] = {.lex_state = 16}, - [968] = {.lex_state = 16}, + [968] = {.lex_state = 0, .external_lex_state = 6}, [969] = {.lex_state = 16}, [970] = {.lex_state = 16}, [971] = {.lex_state = 16}, - [972] = {.lex_state = 62, .external_lex_state = 6}, - [973] = {.lex_state = 62}, + [972] = {.lex_state = 0, .external_lex_state = 6}, + [973] = {.lex_state = 0}, [974] = {.lex_state = 16}, - [975] = {.lex_state = 16}, - [976] = {.lex_state = 15}, - [977] = {.lex_state = 62}, - [978] = {.lex_state = 0}, - [979] = {.lex_state = 62, .external_lex_state = 6}, + [975] = {.lex_state = 15}, + [976] = {.lex_state = 0, .external_lex_state = 6}, + [977] = {.lex_state = 0}, + [978] = {.lex_state = 16}, + [979] = {.lex_state = 0, .external_lex_state = 6}, [980] = {.lex_state = 16}, - [981] = {.lex_state = 62}, - [982] = {.lex_state = 62, .external_lex_state = 6}, + [981] = {.lex_state = 16}, + [982] = {.lex_state = 0}, [983] = {.lex_state = 16}, [984] = {.lex_state = 0}, - [985] = {.lex_state = 16}, + [985] = {.lex_state = 0}, [986] = {.lex_state = 16}, - [987] = {.lex_state = 62, .external_lex_state = 6}, + [987] = {.lex_state = 16}, [988] = {.lex_state = 16}, - [989] = {.lex_state = 16}, - [990] = {.lex_state = 62}, - [991] = {.lex_state = 16}, - [992] = {.lex_state = 0}, - [993] = {.lex_state = 62, .external_lex_state = 6}, - [994] = {.lex_state = 18, .external_lex_state = 7}, - [995] = {.lex_state = 16}, - [996] = {.lex_state = 62, .external_lex_state = 6}, - [997] = {.lex_state = 62, .external_lex_state = 6}, - [998] = {.lex_state = 16}, - [999] = {.lex_state = 62}, + [989] = {.lex_state = 0, .external_lex_state = 6}, + [990] = {.lex_state = 0, .external_lex_state = 6}, + [991] = {.lex_state = 0}, + [992] = {.lex_state = 16}, + [993] = {.lex_state = 0}, + [994] = {.lex_state = 16}, + [995] = {.lex_state = 0, .external_lex_state = 6}, + [996] = {.lex_state = 16}, + [997] = {.lex_state = 16}, + [998] = {.lex_state = 0, .external_lex_state = 6}, + [999] = {.lex_state = 0}, [1000] = {.lex_state = 16}, - [1001] = {.lex_state = 16}, - [1002] = {.lex_state = 16}, - [1003] = {.lex_state = 16}, - [1004] = {.lex_state = 62}, - [1005] = {.lex_state = 18, .external_lex_state = 7}, - [1006] = {.lex_state = 16}, - [1007] = {.lex_state = 62}, - [1008] = {.lex_state = 62, .external_lex_state = 6}, - [1009] = {.lex_state = 0}, + [1001] = {.lex_state = 0, .external_lex_state = 6}, + [1002] = {.lex_state = 0}, + [1003] = {.lex_state = 0}, + [1004] = {.lex_state = 0}, + [1005] = {.lex_state = 0}, + [1006] = {.lex_state = 0, .external_lex_state = 6}, + [1007] = {.lex_state = 16}, + [1008] = {.lex_state = 16}, + [1009] = {.lex_state = 0, .external_lex_state = 6}, [1010] = {.lex_state = 16}, - [1011] = {.lex_state = 62, .external_lex_state = 6}, + [1011] = {.lex_state = 0, .external_lex_state = 6}, [1012] = {.lex_state = 16}, - [1013] = {.lex_state = 62, .external_lex_state = 6}, - [1014] = {.lex_state = 62}, - [1015] = {.lex_state = 16}, - [1016] = {.lex_state = 62, .external_lex_state = 6}, - [1017] = {.lex_state = 62, .external_lex_state = 6}, - [1018] = {.lex_state = 16}, - [1019] = {.lex_state = 16}, - [1020] = {.lex_state = 62}, - [1021] = {.lex_state = 62}, - [1022] = {.lex_state = 62, .external_lex_state = 6}, - [1023] = {.lex_state = 15}, + [1013] = {.lex_state = 16}, + [1014] = {.lex_state = 0, .external_lex_state = 6}, + [1015] = {.lex_state = 15}, + [1016] = {.lex_state = 0}, + [1017] = {.lex_state = 0, .external_lex_state = 6}, + [1018] = {.lex_state = 0}, + [1019] = {.lex_state = 0}, + [1020] = {.lex_state = 16}, + [1021] = {.lex_state = 0}, + [1022] = {.lex_state = 0}, + [1023] = {.lex_state = 16}, [1024] = {.lex_state = 16}, - [1025] = {.lex_state = 62}, - [1026] = {.lex_state = 62, .external_lex_state = 6}, - [1027] = {.lex_state = 62, .external_lex_state = 6}, - [1028] = {.lex_state = 62}, - [1029] = {.lex_state = 62}, + [1025] = {.lex_state = 16}, + [1026] = {.lex_state = 16}, + [1027] = {.lex_state = 0}, + [1028] = {.lex_state = 16}, + [1029] = {.lex_state = 0, .external_lex_state = 6}, [1030] = {.lex_state = 16}, - [1031] = {.lex_state = 62}, - [1032] = {.lex_state = 62}, - [1033] = {.lex_state = 62, .external_lex_state = 6}, - [1034] = {.lex_state = 16}, - [1035] = {.lex_state = 62, .external_lex_state = 6}, - [1036] = {.lex_state = 62}, - [1037] = {.lex_state = 62, .external_lex_state = 6}, - [1038] = {.lex_state = 62, .external_lex_state = 6}, - [1039] = {.lex_state = 62}, - [1040] = {.lex_state = 62, .external_lex_state = 6}, - [1041] = {.lex_state = 62}, - [1042] = {.lex_state = 62, .external_lex_state = 6}, - [1043] = {.lex_state = 16}, + [1031] = {.lex_state = 15, .external_lex_state = 6}, + [1032] = {.lex_state = 18, .external_lex_state = 7}, + [1033] = {.lex_state = 0, .external_lex_state = 6}, + [1034] = {.lex_state = 18, .external_lex_state = 7}, + [1035] = {.lex_state = 15, .external_lex_state = 6}, + [1036] = {.lex_state = 16}, + [1037] = {.lex_state = 18, .external_lex_state = 7}, + [1038] = {.lex_state = 16}, + [1039] = {.lex_state = 16}, + [1040] = {.lex_state = 16}, + [1041] = {.lex_state = 16}, + [1042] = {.lex_state = 15}, + [1043] = {.lex_state = 18, .external_lex_state = 7}, [1044] = {.lex_state = 16}, - [1045] = {.lex_state = 16}, - [1046] = {.lex_state = 16}, - [1047] = {.lex_state = 16}, + [1045] = {.lex_state = 18, .external_lex_state = 7}, + [1046] = {.lex_state = 0}, + [1047] = {.lex_state = 15}, [1048] = {.lex_state = 16}, - [1049] = {.lex_state = 16}, - [1050] = {.lex_state = 62, .external_lex_state = 6}, + [1049] = {.lex_state = 0, .external_lex_state = 6}, + [1050] = {.lex_state = 15, .external_lex_state = 6}, [1051] = {.lex_state = 16}, [1052] = {.lex_state = 16}, [1053] = {.lex_state = 16}, [1054] = {.lex_state = 16}, [1055] = {.lex_state = 16}, - [1056] = {.lex_state = 16}, - [1057] = {.lex_state = 62}, - [1058] = {.lex_state = 15, .external_lex_state = 6}, - [1059] = {.lex_state = 18, .external_lex_state = 7}, - [1060] = {.lex_state = 16}, - [1061] = {.lex_state = 15}, + [1056] = {.lex_state = 0, .external_lex_state = 6}, + [1057] = {.lex_state = 16}, + [1058] = {.lex_state = 0}, + [1059] = {.lex_state = 0}, + [1060] = {.lex_state = 18, .external_lex_state = 7}, + [1061] = {.lex_state = 16}, [1062] = {.lex_state = 16}, - [1063] = {.lex_state = 18, .external_lex_state = 7}, - [1064] = {.lex_state = 16}, - [1065] = {.lex_state = 18, .external_lex_state = 7}, - [1066] = {.lex_state = 18, .external_lex_state = 7}, - [1067] = {.lex_state = 16}, - [1068] = {.lex_state = 62, .external_lex_state = 6}, - [1069] = {.lex_state = 16}, - [1070] = {.lex_state = 62, .external_lex_state = 6}, - [1071] = {.lex_state = 16}, + [1063] = {.lex_state = 16}, + [1064] = {.lex_state = 8}, + [1065] = {.lex_state = 0}, + [1066] = {.lex_state = 0}, + [1067] = {.lex_state = 0, .external_lex_state = 6}, + [1068] = {.lex_state = 0, .external_lex_state = 6}, + [1069] = {.lex_state = 8}, + [1070] = {.lex_state = 0, .external_lex_state = 6}, + [1071] = {.lex_state = 0, .external_lex_state = 6}, [1072] = {.lex_state = 16}, - [1073] = {.lex_state = 62, .external_lex_state = 6}, - [1074] = {.lex_state = 16}, - [1075] = {.lex_state = 18, .external_lex_state = 7}, + [1073] = {.lex_state = 0, .external_lex_state = 6}, + [1074] = {.lex_state = 0, .external_lex_state = 6}, + [1075] = {.lex_state = 16}, [1076] = {.lex_state = 15, .external_lex_state = 6}, - [1077] = {.lex_state = 62}, - [1078] = {.lex_state = 16}, - [1079] = {.lex_state = 16}, - [1080] = {.lex_state = 15, .external_lex_state = 6}, - [1081] = {.lex_state = 16}, - [1082] = {.lex_state = 16}, + [1077] = {.lex_state = 0}, + [1078] = {.lex_state = 0}, + [1079] = {.lex_state = 0, .external_lex_state = 6}, + [1080] = {.lex_state = 0}, + [1081] = {.lex_state = 0}, + [1082] = {.lex_state = 0}, [1083] = {.lex_state = 16}, - [1084] = {.lex_state = 62}, - [1085] = {.lex_state = 16}, - [1086] = {.lex_state = 62}, + [1084] = {.lex_state = 0, .external_lex_state = 6}, + [1085] = {.lex_state = 0}, + [1086] = {.lex_state = 16}, [1087] = {.lex_state = 16}, - [1088] = {.lex_state = 16}, - [1089] = {.lex_state = 62, .external_lex_state = 6}, - [1090] = {.lex_state = 15}, - [1091] = {.lex_state = 16}, - [1092] = {.lex_state = 18, .external_lex_state = 7}, - [1093] = {.lex_state = 62}, - [1094] = {.lex_state = 16}, - [1095] = {.lex_state = 62, .external_lex_state = 6}, - [1096] = {.lex_state = 16}, - [1097] = {.lex_state = 62, .external_lex_state = 6}, - [1098] = {.lex_state = 62}, - [1099] = {.lex_state = 62, .external_lex_state = 6}, - [1100] = {.lex_state = 62, .external_lex_state = 6}, - [1101] = {.lex_state = 62, .external_lex_state = 6}, - [1102] = {.lex_state = 62, .external_lex_state = 6}, - [1103] = {.lex_state = 62, .external_lex_state = 6}, - [1104] = {.lex_state = 16}, - [1105] = {.lex_state = 62}, - [1106] = {.lex_state = 62}, - [1107] = {.lex_state = 62}, - [1108] = {.lex_state = 62}, - [1109] = {.lex_state = 62}, - [1110] = {.lex_state = 16}, - [1111] = {.lex_state = 62, .external_lex_state = 6}, - [1112] = {.lex_state = 16}, - [1113] = {.lex_state = 16}, - [1114] = {.lex_state = 62}, - [1115] = {.lex_state = 62}, - [1116] = {.lex_state = 62, .external_lex_state = 6}, - [1117] = {.lex_state = 62, .external_lex_state = 6}, - [1118] = {.lex_state = 15, .external_lex_state = 6}, - [1119] = {.lex_state = 62, .external_lex_state = 6}, + [1088] = {.lex_state = 0}, + [1089] = {.lex_state = 0}, + [1090] = {.lex_state = 8}, + [1091] = {.lex_state = 0, .external_lex_state = 6}, + [1092] = {.lex_state = 0, .external_lex_state = 6}, + [1093] = {.lex_state = 16}, + [1094] = {.lex_state = 0}, + [1095] = {.lex_state = 0}, + [1096] = {.lex_state = 0}, + [1097] = {.lex_state = 0, .external_lex_state = 6}, + [1098] = {.lex_state = 0, .external_lex_state = 6}, + [1099] = {.lex_state = 0}, + [1100] = {.lex_state = 16}, + [1101] = {.lex_state = 16}, + [1102] = {.lex_state = 16}, + [1103] = {.lex_state = 0, .external_lex_state = 6}, + [1104] = {.lex_state = 0, .external_lex_state = 6}, + [1105] = {.lex_state = 0}, + [1106] = {.lex_state = 0, .external_lex_state = 6}, + [1107] = {.lex_state = 0}, + [1108] = {.lex_state = 0}, + [1109] = {.lex_state = 16}, + [1110] = {.lex_state = 0, .external_lex_state = 6}, + [1111] = {.lex_state = 0}, + [1112] = {.lex_state = 0}, + [1113] = {.lex_state = 0}, + [1114] = {.lex_state = 0}, + [1115] = {.lex_state = 16}, + [1116] = {.lex_state = 0, .external_lex_state = 6}, + [1117] = {.lex_state = 0, .external_lex_state = 6}, + [1118] = {.lex_state = 16}, + [1119] = {.lex_state = 0}, [1120] = {.lex_state = 0}, [1121] = {.lex_state = 16}, - [1122] = {.lex_state = 0}, - [1123] = {.lex_state = 8}, - [1124] = {.lex_state = 0}, - [1125] = {.lex_state = 62, .external_lex_state = 6}, - [1126] = {.lex_state = 8}, + [1122] = {.lex_state = 0, .external_lex_state = 6}, + [1123] = {.lex_state = 16}, + [1124] = {.lex_state = 16}, + [1125] = {.lex_state = 0, .external_lex_state = 6}, + [1126] = {.lex_state = 0}, [1127] = {.lex_state = 16}, - [1128] = {.lex_state = 0}, - [1129] = {.lex_state = 8}, - [1130] = {.lex_state = 62}, - [1131] = {.lex_state = 0, .external_lex_state = 6}, - [1132] = {.lex_state = 62}, - [1133] = {.lex_state = 0, .external_lex_state = 6}, - [1134] = {.lex_state = 62}, - [1135] = {.lex_state = 0, .external_lex_state = 6}, + [1128] = {.lex_state = 15}, + [1129] = {.lex_state = 0, .external_lex_state = 6}, + [1130] = {.lex_state = 16}, + [1131] = {.lex_state = 0}, + [1132] = {.lex_state = 16, .external_lex_state = 2}, + [1133] = {.lex_state = 16}, + [1134] = {.lex_state = 0}, + [1135] = {.lex_state = 16}, [1136] = {.lex_state = 0}, [1137] = {.lex_state = 0}, - [1138] = {.lex_state = 0, .external_lex_state = 6}, - [1139] = {.lex_state = 62}, + [1138] = {.lex_state = 16}, + [1139] = {.lex_state = 0, .external_lex_state = 6}, [1140] = {.lex_state = 0, .external_lex_state = 6}, - [1141] = {.lex_state = 0, .external_lex_state = 6}, - [1142] = {.lex_state = 16}, - [1143] = {.lex_state = 15}, - [1144] = {.lex_state = 0, .external_lex_state = 6}, - [1145] = {.lex_state = 62}, - [1146] = {.lex_state = 0}, - [1147] = {.lex_state = 0}, - [1148] = {.lex_state = 16}, - [1149] = {.lex_state = 16}, - [1150] = {.lex_state = 0, .external_lex_state = 6}, - [1151] = {.lex_state = 62}, - [1152] = {.lex_state = 16}, - [1153] = {.lex_state = 62}, - [1154] = {.lex_state = 62}, - [1155] = {.lex_state = 0, .external_lex_state = 6}, + [1141] = {.lex_state = 16}, + [1142] = {.lex_state = 0}, + [1143] = {.lex_state = 0}, + [1144] = {.lex_state = 15}, + [1145] = {.lex_state = 0}, + [1146] = {.lex_state = 0, .external_lex_state = 6}, + [1147] = {.lex_state = 0, .external_lex_state = 6}, + [1148] = {.lex_state = 0, .external_lex_state = 6}, + [1149] = {.lex_state = 0}, + [1150] = {.lex_state = 0}, + [1151] = {.lex_state = 0}, + [1152] = {.lex_state = 0}, + [1153] = {.lex_state = 16}, + [1154] = {.lex_state = 0, .external_lex_state = 6}, + [1155] = {.lex_state = 0}, [1156] = {.lex_state = 0, .external_lex_state = 6}, - [1157] = {.lex_state = 62}, - [1158] = {.lex_state = 62}, - [1159] = {.lex_state = 16}, + [1157] = {.lex_state = 0}, + [1158] = {.lex_state = 0}, + [1159] = {.lex_state = 0, .external_lex_state = 6}, [1160] = {.lex_state = 16}, - [1161] = {.lex_state = 16}, - [1162] = {.lex_state = 0, .external_lex_state = 6}, + [1161] = {.lex_state = 0, .external_lex_state = 6}, + [1162] = {.lex_state = 16}, [1163] = {.lex_state = 0, .external_lex_state = 6}, [1164] = {.lex_state = 16}, - [1165] = {.lex_state = 16}, + [1165] = {.lex_state = 0, .external_lex_state = 6}, [1166] = {.lex_state = 0, .external_lex_state = 6}, - [1167] = {.lex_state = 16}, + [1167] = {.lex_state = 0, .external_lex_state = 6}, [1168] = {.lex_state = 0, .external_lex_state = 6}, - [1169] = {.lex_state = 16}, - [1170] = {.lex_state = 16}, - [1171] = {.lex_state = 62}, + [1169] = {.lex_state = 0}, + [1170] = {.lex_state = 0}, + [1171] = {.lex_state = 0, .external_lex_state = 6}, [1172] = {.lex_state = 0}, - [1173] = {.lex_state = 62}, - [1174] = {.lex_state = 0}, - [1175] = {.lex_state = 16}, - [1176] = {.lex_state = 0, .external_lex_state = 6}, - [1177] = {.lex_state = 16}, - [1178] = {.lex_state = 62, .external_lex_state = 6}, - [1179] = {.lex_state = 62}, - [1180] = {.lex_state = 16}, - [1181] = {.lex_state = 62}, - [1182] = {.lex_state = 0, .external_lex_state = 6}, - [1183] = {.lex_state = 16, .external_lex_state = 2}, - [1184] = {.lex_state = 62}, - [1185] = {.lex_state = 0, .external_lex_state = 6}, - [1186] = {.lex_state = 0}, + [1173] = {.lex_state = 0, .external_lex_state = 6}, + [1174] = {.lex_state = 16}, + [1175] = {.lex_state = 0, .external_lex_state = 6}, + [1176] = {.lex_state = 0}, + [1177] = {.lex_state = 0}, + [1178] = {.lex_state = 15}, + [1179] = {.lex_state = 0}, + [1180] = {.lex_state = 0, .external_lex_state = 6}, + [1181] = {.lex_state = 0}, + [1182] = {.lex_state = 0}, + [1183] = {.lex_state = 0}, + [1184] = {.lex_state = 0, .external_lex_state = 6}, + [1185] = {.lex_state = 0}, + [1186] = {.lex_state = 16}, [1187] = {.lex_state = 16}, - [1188] = {.lex_state = 0, .external_lex_state = 6}, - [1189] = {.lex_state = 16}, - [1190] = {.lex_state = 0, .external_lex_state = 6}, + [1188] = {.lex_state = 0}, + [1189] = {.lex_state = 0}, + [1190] = {.lex_state = 8}, [1191] = {.lex_state = 16}, - [1192] = {.lex_state = 0, .external_lex_state = 6}, - [1193] = {.lex_state = 0, .external_lex_state = 6}, - [1194] = {.lex_state = 0}, - [1195] = {.lex_state = 62}, - [1196] = {.lex_state = 15}, - [1197] = {.lex_state = 16}, + [1192] = {.lex_state = 0}, + [1193] = {.lex_state = 16}, + [1194] = {.lex_state = 16}, + [1195] = {.lex_state = 0}, + [1196] = {.lex_state = 16}, + [1197] = {.lex_state = 0}, [1198] = {.lex_state = 0, .external_lex_state = 6}, - [1199] = {.lex_state = 0, .external_lex_state = 6}, - [1200] = {.lex_state = 62}, - [1201] = {.lex_state = 0, .external_lex_state = 6}, - [1202] = {.lex_state = 0}, + [1199] = {.lex_state = 0}, + [1200] = {.lex_state = 0}, + [1201] = {.lex_state = 0}, + [1202] = {.lex_state = 16}, [1203] = {.lex_state = 0}, - [1204] = {.lex_state = 62, .external_lex_state = 6}, - [1205] = {.lex_state = 0}, - [1206] = {.lex_state = 0, .external_lex_state = 6}, - [1207] = {.lex_state = 0}, - [1208] = {.lex_state = 0, .external_lex_state = 6}, - [1209] = {.lex_state = 0, .external_lex_state = 6}, - [1210] = {.lex_state = 0, .external_lex_state = 6}, - [1211] = {.lex_state = 0, .external_lex_state = 6}, - [1212] = {.lex_state = 0, .external_lex_state = 6}, - [1213] = {.lex_state = 62, .external_lex_state = 6}, - [1214] = {.lex_state = 0, .external_lex_state = 6}, - [1215] = {.lex_state = 62, .external_lex_state = 6}, + [1204] = {.lex_state = 0, .external_lex_state = 6}, + [1205] = {.lex_state = 16}, + [1206] = {.lex_state = 16}, + [1207] = {.lex_state = 16}, + [1208] = {.lex_state = 16}, + [1209] = {.lex_state = 16}, + [1210] = {.lex_state = 0}, + [1211] = {.lex_state = 8}, + [1212] = {.lex_state = 16}, + [1213] = {.lex_state = 0}, + [1214] = {.lex_state = 0}, + [1215] = {.lex_state = 0}, [1216] = {.lex_state = 0}, - [1217] = {.lex_state = 62}, + [1217] = {.lex_state = 8}, [1218] = {.lex_state = 0}, - [1219] = {.lex_state = 0, .external_lex_state = 6}, - [1220] = {.lex_state = 0}, - [1221] = {.lex_state = 0}, - [1222] = {.lex_state = 0}, - [1223] = {.lex_state = 0, .external_lex_state = 6}, - [1224] = {.lex_state = 62}, - [1225] = {.lex_state = 62}, - [1226] = {.lex_state = 8}, - [1227] = {.lex_state = 62}, - [1228] = {.lex_state = 0}, + [1219] = {.lex_state = 0}, + [1220] = {.lex_state = 0, .external_lex_state = 6}, + [1221] = {.lex_state = 8}, + [1222] = {.lex_state = 16}, + [1223] = {.lex_state = 0}, + [1224] = {.lex_state = 0}, + [1225] = {.lex_state = 0}, + [1226] = {.lex_state = 0}, + [1227] = {.lex_state = 0}, + [1228] = {.lex_state = 16}, [1229] = {.lex_state = 0}, [1230] = {.lex_state = 0}, - [1231] = {.lex_state = 0}, + [1231] = {.lex_state = 0, .external_lex_state = 6}, [1232] = {.lex_state = 0}, [1233] = {.lex_state = 0}, - [1234] = {.lex_state = 16}, - [1235] = {.lex_state = 62}, - [1236] = {.lex_state = 16}, - [1237] = {.lex_state = 0}, + [1234] = {.lex_state = 0}, + [1235] = {.lex_state = 0, .external_lex_state = 6}, + [1236] = {.lex_state = 0}, + [1237] = {.lex_state = 8}, [1238] = {.lex_state = 0}, - [1239] = {.lex_state = 16}, - [1240] = {.lex_state = 62}, + [1239] = {.lex_state = 0, .external_lex_state = 6}, + [1240] = {.lex_state = 16}, [1241] = {.lex_state = 0}, - [1242] = {.lex_state = 0, .external_lex_state = 6}, - [1243] = {.lex_state = 16}, - [1244] = {.lex_state = 62, .external_lex_state = 6}, - [1245] = {.lex_state = 0, .external_lex_state = 6}, + [1242] = {.lex_state = 0}, + [1243] = {.lex_state = 0}, + [1244] = {.lex_state = 0}, + [1245] = {.lex_state = 0}, [1246] = {.lex_state = 0}, [1247] = {.lex_state = 0}, [1248] = {.lex_state = 0}, [1249] = {.lex_state = 0}, - [1250] = {.lex_state = 0}, - [1251] = {.lex_state = 0}, + [1250] = {.lex_state = 16}, + [1251] = {.lex_state = 16}, [1252] = {.lex_state = 0}, - [1253] = {.lex_state = 0}, + [1253] = {.lex_state = 16}, [1254] = {.lex_state = 0}, - [1255] = {.lex_state = 0}, + [1255] = {.lex_state = 16}, [1256] = {.lex_state = 0}, - [1257] = {.lex_state = 16}, + [1257] = {.lex_state = 0}, [1258] = {.lex_state = 0}, - [1259] = {.lex_state = 62, .external_lex_state = 6}, - [1260] = {.lex_state = 62}, - [1261] = {.lex_state = 62}, + [1259] = {.lex_state = 0}, + [1260] = {.lex_state = 0}, + [1261] = {.lex_state = 0}, [1262] = {.lex_state = 0}, [1263] = {.lex_state = 0}, [1264] = {.lex_state = 0}, [1265] = {.lex_state = 0}, [1266] = {.lex_state = 0}, [1267] = {.lex_state = 0}, - [1268] = {.lex_state = 16}, - [1269] = {.lex_state = 16}, - [1270] = {.lex_state = 62}, + [1268] = {.lex_state = 0}, + [1269] = {.lex_state = 0}, + [1270] = {.lex_state = 0}, [1271] = {.lex_state = 0}, - [1272] = {.lex_state = 16}, - [1273] = {.lex_state = 62}, + [1272] = {.lex_state = 0}, + [1273] = {.lex_state = 0}, [1274] = {.lex_state = 0}, - [1275] = {.lex_state = 0}, + [1275] = {.lex_state = 16}, [1276] = {.lex_state = 0}, [1277] = {.lex_state = 0}, - [1278] = {.lex_state = 16}, + [1278] = {.lex_state = 0}, [1279] = {.lex_state = 0}, [1280] = {.lex_state = 0}, [1281] = {.lex_state = 16}, @@ -7575,95 +7393,95 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1289] = {.lex_state = 0}, [1290] = {.lex_state = 0}, [1291] = {.lex_state = 0}, - [1292] = {.lex_state = 0}, - [1293] = {.lex_state = 16}, + [1292] = {.lex_state = 16}, + [1293] = {.lex_state = 0}, [1294] = {.lex_state = 0}, - [1295] = {.lex_state = 0}, - [1296] = {.lex_state = 62}, - [1297] = {.lex_state = 16}, + [1295] = {.lex_state = 0, .external_lex_state = 6}, + [1296] = {.lex_state = 0}, + [1297] = {.lex_state = 0}, [1298] = {.lex_state = 0}, - [1299] = {.lex_state = 16}, - [1300] = {.lex_state = 0}, + [1299] = {.lex_state = 0}, + [1300] = {.lex_state = 16}, [1301] = {.lex_state = 0}, [1302] = {.lex_state = 0}, [1303] = {.lex_state = 0}, - [1304] = {.lex_state = 0, .external_lex_state = 6}, - [1305] = {.lex_state = 8}, - [1306] = {.lex_state = 16}, - [1307] = {.lex_state = 62}, - [1308] = {.lex_state = 8}, - [1309] = {.lex_state = 62, .external_lex_state = 6}, - [1310] = {.lex_state = 16}, + [1304] = {.lex_state = 16}, + [1305] = {.lex_state = 0, .external_lex_state = 6}, + [1306] = {.lex_state = 0}, + [1307] = {.lex_state = 0, .external_lex_state = 6}, + [1308] = {.lex_state = 0}, + [1309] = {.lex_state = 0}, + [1310] = {.lex_state = 0}, [1311] = {.lex_state = 0}, - [1312] = {.lex_state = 16}, - [1313] = {.lex_state = 0}, - [1314] = {.lex_state = 0}, - [1315] = {.lex_state = 0}, + [1312] = {.lex_state = 17}, + [1313] = {.lex_state = 0, .external_lex_state = 6}, + [1314] = {.lex_state = 0, .external_lex_state = 6}, + [1315] = {.lex_state = 17}, [1316] = {.lex_state = 0}, [1317] = {.lex_state = 0}, - [1318] = {.lex_state = 0}, + [1318] = {.lex_state = 0, .external_lex_state = 6}, [1319] = {.lex_state = 0}, [1320] = {.lex_state = 0}, - [1321] = {.lex_state = 8}, - [1322] = {.lex_state = 16}, + [1321] = {.lex_state = 0, .external_lex_state = 6}, + [1322] = {.lex_state = 0}, [1323] = {.lex_state = 0}, - [1324] = {.lex_state = 0}, - [1325] = {.lex_state = 16}, - [1326] = {.lex_state = 62}, - [1327] = {.lex_state = 16}, - [1328] = {.lex_state = 16}, + [1324] = {.lex_state = 0, .external_lex_state = 6}, + [1325] = {.lex_state = 0, .external_lex_state = 6}, + [1326] = {.lex_state = 0}, + [1327] = {.lex_state = 0}, + [1328] = {.lex_state = 0}, [1329] = {.lex_state = 0}, - [1330] = {.lex_state = 16}, - [1331] = {.lex_state = 62}, + [1330] = {.lex_state = 0}, + [1331] = {.lex_state = 0, .external_lex_state = 6}, [1332] = {.lex_state = 0}, [1333] = {.lex_state = 0}, - [1334] = {.lex_state = 0}, + [1334] = {.lex_state = 17}, [1335] = {.lex_state = 0}, - [1336] = {.lex_state = 16}, + [1336] = {.lex_state = 0}, [1337] = {.lex_state = 0}, [1338] = {.lex_state = 0}, - [1339] = {.lex_state = 0}, - [1340] = {.lex_state = 62}, - [1341] = {.lex_state = 62}, - [1342] = {.lex_state = 15}, - [1343] = {.lex_state = 16}, + [1339] = {.lex_state = 0, .external_lex_state = 6}, + [1340] = {.lex_state = 17}, + [1341] = {.lex_state = 0}, + [1342] = {.lex_state = 0}, + [1343] = {.lex_state = 0}, [1344] = {.lex_state = 0}, - [1345] = {.lex_state = 8}, - [1346] = {.lex_state = 16}, - [1347] = {.lex_state = 16}, - [1348] = {.lex_state = 0}, - [1349] = {.lex_state = 0, .external_lex_state = 6}, - [1350] = {.lex_state = 0}, - [1351] = {.lex_state = 16}, - [1352] = {.lex_state = 0}, - [1353] = {.lex_state = 17}, - [1354] = {.lex_state = 0}, + [1345] = {.lex_state = 0}, + [1346] = {.lex_state = 0}, + [1347] = {.lex_state = 0, .external_lex_state = 6}, + [1348] = {.lex_state = 17}, + [1349] = {.lex_state = 0}, + [1350] = {.lex_state = 17}, + [1351] = {.lex_state = 0}, + [1352] = {.lex_state = 15}, + [1353] = {.lex_state = 0}, + [1354] = {.lex_state = 0, .external_lex_state = 6}, [1355] = {.lex_state = 0}, - [1356] = {.lex_state = 0, .external_lex_state = 6}, - [1357] = {.lex_state = 17}, - [1358] = {.lex_state = 0}, + [1356] = {.lex_state = 0}, + [1357] = {.lex_state = 0}, + [1358] = {.lex_state = 0, .external_lex_state = 6}, [1359] = {.lex_state = 0}, - [1360] = {.lex_state = 17}, + [1360] = {.lex_state = 0}, [1361] = {.lex_state = 17}, - [1362] = {.lex_state = 0}, - [1363] = {.lex_state = 15}, - [1364] = {.lex_state = 17}, - [1365] = {.lex_state = 0, .external_lex_state = 6}, - [1366] = {.lex_state = 0}, - [1367] = {.lex_state = 17}, - [1368] = {.lex_state = 0}, - [1369] = {.lex_state = 17}, + [1362] = {.lex_state = 17}, + [1363] = {.lex_state = 17}, + [1364] = {.lex_state = 0}, + [1365] = {.lex_state = 0}, + [1366] = {.lex_state = 17}, + [1367] = {.lex_state = 0, .external_lex_state = 6}, + [1368] = {.lex_state = 0, .external_lex_state = 6}, + [1369] = {.lex_state = 0, .external_lex_state = 6}, [1370] = {.lex_state = 0}, [1371] = {.lex_state = 0}, [1372] = {.lex_state = 0}, - [1373] = {.lex_state = 0}, - [1374] = {.lex_state = 17}, - [1375] = {.lex_state = 0}, - [1376] = {.lex_state = 0}, + [1373] = {.lex_state = 0, .external_lex_state = 6}, + [1374] = {.lex_state = 0, .external_lex_state = 6}, + [1375] = {.lex_state = 16}, + [1376] = {.lex_state = 16}, [1377] = {.lex_state = 0}, - [1378] = {.lex_state = 0, .external_lex_state = 6}, - [1379] = {.lex_state = 0, .external_lex_state = 6}, - [1380] = {.lex_state = 0, .external_lex_state = 6}, + [1378] = {.lex_state = 0}, + [1379] = {.lex_state = 0}, + [1380] = {.lex_state = 16}, [1381] = {.lex_state = 0}, [1382] = {.lex_state = 0}, [1383] = {.lex_state = 0}, @@ -7671,152 +7489,116 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1385] = {.lex_state = 0}, [1386] = {.lex_state = 0}, [1387] = {.lex_state = 0}, - [1388] = {.lex_state = 0, .external_lex_state = 6}, - [1389] = {.lex_state = 17}, + [1388] = {.lex_state = 0}, + [1389] = {.lex_state = 0}, [1390] = {.lex_state = 0}, [1391] = {.lex_state = 0}, - [1392] = {.lex_state = 17}, - [1393] = {.lex_state = 0, .external_lex_state = 6}, - [1394] = {.lex_state = 62}, + [1392] = {.lex_state = 0}, + [1393] = {.lex_state = 0}, + [1394] = {.lex_state = 0}, [1395] = {.lex_state = 0}, - [1396] = {.lex_state = 0, .external_lex_state = 6}, - [1397] = {.lex_state = 0, .external_lex_state = 6}, - [1398] = {.lex_state = 0}, + [1396] = {.lex_state = 0}, + [1397] = {.lex_state = 16}, + [1398] = {.lex_state = 16}, [1399] = {.lex_state = 0}, - [1400] = {.lex_state = 0, .external_lex_state = 6}, - [1401] = {.lex_state = 0, .external_lex_state = 6}, + [1400] = {.lex_state = 16}, + [1401] = {.lex_state = 0}, [1402] = {.lex_state = 0}, - [1403] = {.lex_state = 62}, + [1403] = {.lex_state = 0}, [1404] = {.lex_state = 0}, - [1405] = {.lex_state = 0, .external_lex_state = 6}, - [1406] = {.lex_state = 0, .external_lex_state = 6}, - [1407] = {.lex_state = 0, .external_lex_state = 6}, - [1408] = {.lex_state = 0, .external_lex_state = 6}, - [1409] = {.lex_state = 0, .external_lex_state = 6}, - [1410] = {.lex_state = 0, .external_lex_state = 6}, + [1405] = {.lex_state = 0}, + [1406] = {.lex_state = 0}, + [1407] = {.lex_state = 0}, + [1408] = {.lex_state = 0}, + [1409] = {.lex_state = 0}, + [1410] = {.lex_state = 0}, [1411] = {.lex_state = 0}, [1412] = {.lex_state = 0}, [1413] = {.lex_state = 0}, - [1414] = {.lex_state = 0}, - [1415] = {.lex_state = 16}, - [1416] = {.lex_state = 62}, + [1414] = {.lex_state = 16}, + [1415] = {.lex_state = 0}, + [1416] = {.lex_state = 0}, [1417] = {.lex_state = 16}, - [1418] = {.lex_state = 62}, + [1418] = {.lex_state = 0}, [1419] = {.lex_state = 0}, [1420] = {.lex_state = 0}, [1421] = {.lex_state = 0}, [1422] = {.lex_state = 0}, - [1423] = {.lex_state = 0}, - [1424] = {.lex_state = 62}, - [1425] = {.lex_state = 62}, - [1426] = {.lex_state = 16}, - [1427] = {.lex_state = 62}, - [1428] = {.lex_state = 16}, + [1423] = {.lex_state = 16}, + [1424] = {.lex_state = 16}, + [1425] = {.lex_state = 0}, + [1426] = {.lex_state = 0}, + [1427] = {.lex_state = 16}, + [1428] = {.lex_state = 0}, [1429] = {.lex_state = 0}, - [1430] = {.lex_state = 16}, - [1431] = {.lex_state = 0}, - [1432] = {.lex_state = 16}, + [1430] = {.lex_state = 0}, + [1431] = {.lex_state = 16}, + [1432] = {.lex_state = 0}, [1433] = {.lex_state = 0}, [1434] = {.lex_state = 0}, - [1435] = {.lex_state = 62}, - [1436] = {.lex_state = 16}, + [1435] = {.lex_state = 16}, + [1436] = {.lex_state = 0}, [1437] = {.lex_state = 16}, - [1438] = {.lex_state = 16}, + [1438] = {.lex_state = 0}, [1439] = {.lex_state = 0}, - [1440] = {.lex_state = 0}, + [1440] = {.lex_state = 16}, [1441] = {.lex_state = 0}, - [1442] = {.lex_state = 0}, - [1443] = {.lex_state = 0}, - [1444] = {.lex_state = 0}, - [1445] = {.lex_state = 16}, - [1446] = {.lex_state = 16}, + [1442] = {.lex_state = 16}, + [1443] = {.lex_state = 16}, + [1444] = {.lex_state = 16}, + [1445] = {.lex_state = 0}, + [1446] = {.lex_state = 0}, [1447] = {.lex_state = 16}, [1448] = {.lex_state = 0}, [1449] = {.lex_state = 16}, - [1450] = {.lex_state = 0}, - [1451] = {.lex_state = 0}, - [1452] = {.lex_state = 62}, - [1453] = {.lex_state = 62}, - [1454] = {.lex_state = 62}, - [1455] = {.lex_state = 62}, - [1456] = {.lex_state = 0}, - [1457] = {.lex_state = 62}, + [1450] = {.lex_state = 16}, + [1451] = {.lex_state = 16}, + [1452] = {.lex_state = 0}, + [1453] = {.lex_state = 16}, + [1454] = {.lex_state = 16}, + [1455] = {.lex_state = 16}, + [1456] = {.lex_state = 16}, + [1457] = {.lex_state = 0}, [1458] = {.lex_state = 16}, - [1459] = {.lex_state = 16}, - [1460] = {.lex_state = 16}, + [1459] = {.lex_state = 0}, + [1460] = {.lex_state = 0}, [1461] = {.lex_state = 16}, - [1462] = {.lex_state = 16}, + [1462] = {.lex_state = 0}, [1463] = {.lex_state = 16}, - [1464] = {.lex_state = 62}, + [1464] = {.lex_state = 0}, [1465] = {.lex_state = 16}, - [1466] = {.lex_state = 62}, - [1467] = {.lex_state = 62}, - [1468] = {.lex_state = 16}, - [1469] = {.lex_state = 0}, + [1466] = {.lex_state = 0}, + [1467] = {.lex_state = 16}, + [1468] = {.lex_state = 0}, + [1469] = {.lex_state = 16}, [1470] = {.lex_state = 0}, - [1471] = {.lex_state = 62}, - [1472] = {.lex_state = 16}, - [1473] = {.lex_state = 0}, - [1474] = {.lex_state = 16}, - [1475] = {.lex_state = 62}, + [1471] = {.lex_state = 16}, + [1472] = {.lex_state = 0}, + [1473] = {.lex_state = 16}, + [1474] = {.lex_state = 0}, + [1475] = {.lex_state = 16}, [1476] = {.lex_state = 0}, - [1477] = {.lex_state = 16}, - [1478] = {.lex_state = 0}, + [1477] = {.lex_state = 0}, + [1478] = {.lex_state = 16}, [1479] = {.lex_state = 16}, - [1480] = {.lex_state = 16}, - [1481] = {.lex_state = 16}, - [1482] = {.lex_state = 16}, - [1483] = {.lex_state = 62}, - [1484] = {.lex_state = 16}, - [1485] = {.lex_state = 62}, - [1486] = {.lex_state = 62}, - [1487] = {.lex_state = 16}, + [1480] = {.lex_state = 0}, + [1481] = {.lex_state = 0}, + [1482] = {.lex_state = 0}, + [1483] = {.lex_state = 0}, + [1484] = {.lex_state = 0}, + [1485] = {.lex_state = 16}, + [1486] = {.lex_state = 0}, + [1487] = {.lex_state = 0}, [1488] = {.lex_state = 0}, - [1489] = {.lex_state = 16}, - [1490] = {.lex_state = 16}, - [1491] = {.lex_state = 16}, - [1492] = {.lex_state = 16}, + [1489] = {.lex_state = 0}, + [1490] = {.lex_state = 0}, + [1491] = {.lex_state = 0}, + [1492] = {.lex_state = 0}, [1493] = {.lex_state = 0}, - [1494] = {.lex_state = 0}, + [1494] = {.lex_state = 16}, [1495] = {.lex_state = 0}, - [1496] = {.lex_state = 0}, - [1497] = {.lex_state = 62}, - [1498] = {.lex_state = 16}, - [1499] = {.lex_state = 0}, - [1500] = {.lex_state = 16}, - [1501] = {.lex_state = 0}, - [1502] = {.lex_state = 16}, - [1503] = {.lex_state = 62}, - [1504] = {.lex_state = 16}, - [1505] = {.lex_state = 0}, - [1506] = {.lex_state = 0}, - [1507] = {.lex_state = 62}, - [1508] = {.lex_state = 0}, - [1509] = {.lex_state = 0}, - [1510] = {.lex_state = 0}, - [1511] = {.lex_state = 0}, - [1512] = {.lex_state = 62}, - [1513] = {.lex_state = 0}, - [1514] = {.lex_state = 62}, - [1515] = {.lex_state = 0}, - [1516] = {.lex_state = 62}, - [1517] = {.lex_state = 62}, - [1518] = {.lex_state = 62}, - [1519] = {.lex_state = 62}, - [1520] = {.lex_state = 62}, - [1521] = {.lex_state = 16}, - [1522] = {.lex_state = 62}, - [1523] = {.lex_state = 16}, - [1524] = {.lex_state = 0}, - [1525] = {.lex_state = 62}, - [1526] = {.lex_state = 62}, - [1527] = {.lex_state = 0}, - [1528] = {.lex_state = 62}, - [1529] = {.lex_state = 62}, - [1530] = {.lex_state = 0}, - [1531] = {.lex_state = 62}, - [1532] = {.lex_state = 0}, - [1533] = {.lex_state = 0}, + [1496] = {.lex_state = 16}, + [1497] = {.lex_state = 16}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -7852,7 +7634,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1), [anon_sym_try] = ACTIONS(1), [anon_sym_except] = ACTIONS(1), - [anon_sym_except_STAR] = ACTIONS(1), [anon_sym_finally] = ACTIONS(1), [anon_sym_with] = ACTIONS(1), [anon_sym_match] = ACTIONS(1), @@ -7927,22 +7708,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_end] = ACTIONS(1), }, [1] = { - [sym_module] = STATE(1513), + [sym_module] = STATE(1405), [sym__statement] = STATE(61), [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1210), - [sym_future_import_statement] = STATE(1210), - [sym_import_from_statement] = STATE(1210), - [sym_print_statement] = STATE(1210), - [sym_assert_statement] = STATE(1210), - [sym_expression_statement] = STATE(1210), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1210), - [sym_delete_statement] = STATE(1210), - [sym_raise_statement] = STATE(1210), - [sym_pass_statement] = STATE(1210), - [sym_break_statement] = STATE(1210), - [sym_continue_statement] = STATE(1210), + [sym_import_statement] = STATE(1173), + [sym_future_import_statement] = STATE(1173), + [sym_import_from_statement] = STATE(1173), + [sym_print_statement] = STATE(1173), + [sym_assert_statement] = STATE(1173), + [sym_expression_statement] = STATE(1173), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1173), + [sym_delete_statement] = STATE(1173), + [sym_raise_statement] = STATE(1173), + [sym_pass_statement] = STATE(1173), + [sym_break_statement] = STATE(1173), + [sym_continue_statement] = STATE(1173), [sym_if_statement] = STATE(61), [sym_for_statement] = STATE(61), [sym_while_statement] = STATE(61), @@ -7950,50 +7731,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(61), [sym_match_statement] = STATE(61), [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1210), - [sym_nonlocal_statement] = STATE(1210), - [sym_exec_statement] = STATE(1210), - [sym_type_alias_statement] = STATE(1210), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1173), + [sym_nonlocal_statement] = STATE(1173), + [sym_exec_statement] = STATE(1173), + [sym_type_alias_statement] = STATE(1173), [sym_class_definition] = STATE(61), [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(973), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [sym_decorator] = STATE(944), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(973), + [aux_sym_decorated_definition_repeat1] = STATE(944), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), @@ -8042,73 +7823,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [2] = { - [sym__statement] = STATE(69), - [sym__simple_statements] = STATE(69), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_if_statement] = STATE(69), - [sym_for_statement] = STATE(69), - [sym_while_statement] = STATE(69), - [sym_try_statement] = STATE(69), - [sym_with_statement] = STATE(69), - [sym_match_statement] = STATE(69), - [sym_function_definition] = STATE(69), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_class_definition] = STATE(69), - [sym_decorated_definition] = STATE(69), - [sym_decorator] = STATE(999), - [sym_block] = STATE(357), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(69), - [aux_sym_decorated_definition_repeat1] = STATE(999), + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_if_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_with_statement] = STATE(60), + [sym_match_statement] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(977), + [sym_block] = STATE(337), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(977), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -8157,73 +7938,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [3] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_if_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(999), - [sym_block] = STATE(581), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(999), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(977), + [sym_block] = STATE(470), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(977), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -8272,366 +8053,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [4] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_if_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(999), - [sym_block] = STATE(540), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(999), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), - [anon_sym_AT] = ACTIONS(67), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(47), - [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__dedent] = ACTIONS(103), - [sym__string_start] = ACTIONS(81), - }, - [5] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_if_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(999), - [sym_block] = STATE(276), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(999), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), - [anon_sym_AT] = ACTIONS(67), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(47), - [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__dedent] = ACTIONS(103), - [sym__string_start] = ACTIONS(81), - }, - [6] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_if_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(999), - [sym_block] = STATE(574), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(999), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), - [anon_sym_AT] = ACTIONS(67), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(47), - [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__dedent] = ACTIONS(103), - [sym__string_start] = ACTIONS(81), - }, - [7] = { [sym__statement] = STATE(60), [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), [sym_if_statement] = STATE(60), [sym_for_statement] = STATE(60), [sym_while_statement] = STATE(60), @@ -8639,1661 +8075,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(60), [sym_match_statement] = STATE(60), [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), [sym_class_definition] = STATE(60), [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(999), - [sym_block] = STATE(588), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [sym_decorator] = STATE(977), + [sym_block] = STATE(432), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(999), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), - [anon_sym_AT] = ACTIONS(67), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(47), - [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__dedent] = ACTIONS(105), - [sym__string_start] = ACTIONS(81), - }, - [8] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(999), - [sym_block] = STATE(282), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(999), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), - [anon_sym_AT] = ACTIONS(67), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(47), - [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__dedent] = ACTIONS(105), - [sym__string_start] = ACTIONS(81), - }, - [9] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(999), - [sym_block] = STATE(536), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(999), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), - [anon_sym_AT] = ACTIONS(67), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(47), - [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__dedent] = ACTIONS(105), - [sym__string_start] = ACTIONS(81), - }, - [10] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_if_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(999), - [sym_block] = STATE(984), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(999), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), - [anon_sym_AT] = ACTIONS(67), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(47), - [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__dedent] = ACTIONS(107), - [sym__string_start] = ACTIONS(81), - }, - [11] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_if_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(999), - [sym_block] = STATE(358), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(999), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), - [anon_sym_AT] = ACTIONS(67), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(47), - [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__dedent] = ACTIONS(109), - [sym__string_start] = ACTIONS(81), - }, - [12] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(999), - [sym_block] = STATE(528), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(999), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), - [anon_sym_AT] = ACTIONS(67), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(47), - [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__dedent] = ACTIONS(105), - [sym__string_start] = ACTIONS(81), - }, - [13] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(999), - [sym_block] = STATE(519), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(999), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), - [anon_sym_AT] = ACTIONS(67), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(47), - [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__dedent] = ACTIONS(105), - [sym__string_start] = ACTIONS(81), - }, - [14] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(999), - [sym_block] = STATE(466), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(999), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), - [anon_sym_AT] = ACTIONS(67), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(47), - [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__dedent] = ACTIONS(105), - [sym__string_start] = ACTIONS(81), - }, - [15] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_if_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(999), - [sym_block] = STATE(385), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(999), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), - [anon_sym_AT] = ACTIONS(67), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(47), - [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__dedent] = ACTIONS(111), - [sym__string_start] = ACTIONS(81), - }, - [16] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_if_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(999), - [sym_block] = STATE(494), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(999), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), - [anon_sym_AT] = ACTIONS(67), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(47), - [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__dedent] = ACTIONS(103), - [sym__string_start] = ACTIONS(81), - }, - [17] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(999), - [sym_block] = STATE(511), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(999), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), - [anon_sym_AT] = ACTIONS(67), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(47), - [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__dedent] = ACTIONS(105), - [sym__string_start] = ACTIONS(81), - }, - [18] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(999), - [sym_block] = STATE(505), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(999), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), - [anon_sym_AT] = ACTIONS(67), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(47), - [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__dedent] = ACTIONS(105), - [sym__string_start] = ACTIONS(81), - }, - [19] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(999), - [sym_block] = STATE(504), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(999), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), - [anon_sym_AT] = ACTIONS(67), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(47), - [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__dedent] = ACTIONS(105), - [sym__string_start] = ACTIONS(81), - }, - [20] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(999), - [sym_block] = STATE(486), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(999), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), - [anon_sym_AT] = ACTIONS(67), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(47), - [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__dedent] = ACTIONS(105), - [sym__string_start] = ACTIONS(81), - }, - [21] = { - [sym__statement] = STATE(69), - [sym__simple_statements] = STATE(69), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_if_statement] = STATE(69), - [sym_for_statement] = STATE(69), - [sym_while_statement] = STATE(69), - [sym_try_statement] = STATE(69), - [sym_with_statement] = STATE(69), - [sym_match_statement] = STATE(69), - [sym_function_definition] = STATE(69), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_class_definition] = STATE(69), - [sym_decorated_definition] = STATE(69), - [sym_decorator] = STATE(999), - [sym_block] = STATE(359), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(69), - [aux_sym_decorated_definition_repeat1] = STATE(999), + [aux_sym_decorated_definition_repeat1] = STATE(977), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -10341,22 +8167,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(101), [sym__string_start] = ACTIONS(81), }, - [22] = { + [5] = { [sym__statement] = STATE(60), [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), [sym_if_statement] = STATE(60), [sym_for_statement] = STATE(60), [sym_while_statement] = STATE(60), @@ -10364,51 +8190,2006 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(60), [sym_match_statement] = STATE(60), [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), [sym_class_definition] = STATE(60), [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(999), - [sym_block] = STATE(476), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [sym_decorator] = STATE(977), + [sym_block] = STATE(553), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(999), + [aux_sym_decorated_definition_repeat1] = STATE(977), + [sym_identifier] = ACTIONS(7), + [anon_sym_import] = ACTIONS(9), + [anon_sym_from] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_print] = ACTIONS(17), + [anon_sym_assert] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_raise] = ACTIONS(25), + [anon_sym_pass] = ACTIONS(27), + [anon_sym_break] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_if] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_match] = ACTIONS(95), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_STAR_STAR] = ACTIONS(53), + [anon_sym_def] = ACTIONS(97), + [anon_sym_global] = ACTIONS(57), + [anon_sym_nonlocal] = ACTIONS(59), + [anon_sym_exec] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_class] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(67), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(47), + [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__dedent] = ACTIONS(101), + [sym__string_start] = ACTIONS(81), + }, + [6] = { + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_if_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_with_statement] = STATE(60), + [sym_match_statement] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(977), + [sym_block] = STATE(476), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(977), + [sym_identifier] = ACTIONS(7), + [anon_sym_import] = ACTIONS(9), + [anon_sym_from] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_print] = ACTIONS(17), + [anon_sym_assert] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_raise] = ACTIONS(25), + [anon_sym_pass] = ACTIONS(27), + [anon_sym_break] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_if] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_match] = ACTIONS(95), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_STAR_STAR] = ACTIONS(53), + [anon_sym_def] = ACTIONS(97), + [anon_sym_global] = ACTIONS(57), + [anon_sym_nonlocal] = ACTIONS(59), + [anon_sym_exec] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_class] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(67), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(47), + [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__dedent] = ACTIONS(101), + [sym__string_start] = ACTIONS(81), + }, + [7] = { + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_if_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_with_statement] = STATE(60), + [sym_match_statement] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(977), + [sym_block] = STATE(560), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(977), + [sym_identifier] = ACTIONS(7), + [anon_sym_import] = ACTIONS(9), + [anon_sym_from] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_print] = ACTIONS(17), + [anon_sym_assert] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_raise] = ACTIONS(25), + [anon_sym_pass] = ACTIONS(27), + [anon_sym_break] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_if] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_match] = ACTIONS(95), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_STAR_STAR] = ACTIONS(53), + [anon_sym_def] = ACTIONS(97), + [anon_sym_global] = ACTIONS(57), + [anon_sym_nonlocal] = ACTIONS(59), + [anon_sym_exec] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_class] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(67), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(47), + [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__dedent] = ACTIONS(101), + [sym__string_start] = ACTIONS(81), + }, + [8] = { + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(977), + [sym_block] = STATE(480), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(977), + [sym_identifier] = ACTIONS(7), + [anon_sym_import] = ACTIONS(9), + [anon_sym_from] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_print] = ACTIONS(17), + [anon_sym_assert] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_raise] = ACTIONS(25), + [anon_sym_pass] = ACTIONS(27), + [anon_sym_break] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_if] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_match] = ACTIONS(95), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_STAR_STAR] = ACTIONS(53), + [anon_sym_def] = ACTIONS(97), + [anon_sym_global] = ACTIONS(57), + [anon_sym_nonlocal] = ACTIONS(59), + [anon_sym_exec] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_class] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(67), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(47), + [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__dedent] = ACTIONS(103), + [sym__string_start] = ACTIONS(81), + }, + [9] = { + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_if_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_with_statement] = STATE(60), + [sym_match_statement] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(977), + [sym_block] = STATE(556), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(977), + [sym_identifier] = ACTIONS(7), + [anon_sym_import] = ACTIONS(9), + [anon_sym_from] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_print] = ACTIONS(17), + [anon_sym_assert] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_raise] = ACTIONS(25), + [anon_sym_pass] = ACTIONS(27), + [anon_sym_break] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_if] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_match] = ACTIONS(95), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_STAR_STAR] = ACTIONS(53), + [anon_sym_def] = ACTIONS(97), + [anon_sym_global] = ACTIONS(57), + [anon_sym_nonlocal] = ACTIONS(59), + [anon_sym_exec] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_class] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(67), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(47), + [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__dedent] = ACTIONS(101), + [sym__string_start] = ACTIONS(81), + }, + [10] = { + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_if_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_with_statement] = STATE(60), + [sym_match_statement] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(977), + [sym_block] = STATE(552), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(977), + [sym_identifier] = ACTIONS(7), + [anon_sym_import] = ACTIONS(9), + [anon_sym_from] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_print] = ACTIONS(17), + [anon_sym_assert] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_raise] = ACTIONS(25), + [anon_sym_pass] = ACTIONS(27), + [anon_sym_break] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_if] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_match] = ACTIONS(95), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_STAR_STAR] = ACTIONS(53), + [anon_sym_def] = ACTIONS(97), + [anon_sym_global] = ACTIONS(57), + [anon_sym_nonlocal] = ACTIONS(59), + [anon_sym_exec] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_class] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(67), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(47), + [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__dedent] = ACTIONS(101), + [sym__string_start] = ACTIONS(81), + }, + [11] = { + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_if_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_with_statement] = STATE(60), + [sym_match_statement] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(977), + [sym_block] = STATE(547), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(977), + [sym_identifier] = ACTIONS(7), + [anon_sym_import] = ACTIONS(9), + [anon_sym_from] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_print] = ACTIONS(17), + [anon_sym_assert] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_raise] = ACTIONS(25), + [anon_sym_pass] = ACTIONS(27), + [anon_sym_break] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_if] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_match] = ACTIONS(95), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_STAR_STAR] = ACTIONS(53), + [anon_sym_def] = ACTIONS(97), + [anon_sym_global] = ACTIONS(57), + [anon_sym_nonlocal] = ACTIONS(59), + [anon_sym_exec] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_class] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(67), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(47), + [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__dedent] = ACTIONS(101), + [sym__string_start] = ACTIONS(81), + }, + [12] = { + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_if_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_with_statement] = STATE(60), + [sym_match_statement] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(977), + [sym_block] = STATE(412), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(977), + [sym_identifier] = ACTIONS(7), + [anon_sym_import] = ACTIONS(9), + [anon_sym_from] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_print] = ACTIONS(17), + [anon_sym_assert] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_raise] = ACTIONS(25), + [anon_sym_pass] = ACTIONS(27), + [anon_sym_break] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_if] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_match] = ACTIONS(95), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_STAR_STAR] = ACTIONS(53), + [anon_sym_def] = ACTIONS(97), + [anon_sym_global] = ACTIONS(57), + [anon_sym_nonlocal] = ACTIONS(59), + [anon_sym_exec] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_class] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(67), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(47), + [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__dedent] = ACTIONS(101), + [sym__string_start] = ACTIONS(81), + }, + [13] = { + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_if_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_with_statement] = STATE(60), + [sym_match_statement] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(977), + [sym_block] = STATE(329), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(977), + [sym_identifier] = ACTIONS(7), + [anon_sym_import] = ACTIONS(9), + [anon_sym_from] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_print] = ACTIONS(17), + [anon_sym_assert] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_raise] = ACTIONS(25), + [anon_sym_pass] = ACTIONS(27), + [anon_sym_break] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_if] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_match] = ACTIONS(95), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_STAR_STAR] = ACTIONS(53), + [anon_sym_def] = ACTIONS(97), + [anon_sym_global] = ACTIONS(57), + [anon_sym_nonlocal] = ACTIONS(59), + [anon_sym_exec] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_class] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(67), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(47), + [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__dedent] = ACTIONS(101), + [sym__string_start] = ACTIONS(81), + }, + [14] = { + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_if_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_with_statement] = STATE(60), + [sym_match_statement] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(977), + [sym_block] = STATE(540), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(977), + [sym_identifier] = ACTIONS(7), + [anon_sym_import] = ACTIONS(9), + [anon_sym_from] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_print] = ACTIONS(17), + [anon_sym_assert] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_raise] = ACTIONS(25), + [anon_sym_pass] = ACTIONS(27), + [anon_sym_break] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_if] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_match] = ACTIONS(95), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_STAR_STAR] = ACTIONS(53), + [anon_sym_def] = ACTIONS(97), + [anon_sym_global] = ACTIONS(57), + [anon_sym_nonlocal] = ACTIONS(59), + [anon_sym_exec] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_class] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(67), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(47), + [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__dedent] = ACTIONS(101), + [sym__string_start] = ACTIONS(81), + }, + [15] = { + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(977), + [sym_block] = STATE(410), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(977), + [sym_identifier] = ACTIONS(7), + [anon_sym_import] = ACTIONS(9), + [anon_sym_from] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_print] = ACTIONS(17), + [anon_sym_assert] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_raise] = ACTIONS(25), + [anon_sym_pass] = ACTIONS(27), + [anon_sym_break] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_if] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_match] = ACTIONS(95), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_STAR_STAR] = ACTIONS(53), + [anon_sym_def] = ACTIONS(97), + [anon_sym_global] = ACTIONS(57), + [anon_sym_nonlocal] = ACTIONS(59), + [anon_sym_exec] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_class] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(67), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(47), + [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__dedent] = ACTIONS(103), + [sym__string_start] = ACTIONS(81), + }, + [16] = { + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_if_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_with_statement] = STATE(60), + [sym_match_statement] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(977), + [sym_block] = STATE(535), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(977), + [sym_identifier] = ACTIONS(7), + [anon_sym_import] = ACTIONS(9), + [anon_sym_from] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_print] = ACTIONS(17), + [anon_sym_assert] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_raise] = ACTIONS(25), + [anon_sym_pass] = ACTIONS(27), + [anon_sym_break] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_if] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_match] = ACTIONS(95), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_STAR_STAR] = ACTIONS(53), + [anon_sym_def] = ACTIONS(97), + [anon_sym_global] = ACTIONS(57), + [anon_sym_nonlocal] = ACTIONS(59), + [anon_sym_exec] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_class] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(67), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(47), + [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__dedent] = ACTIONS(101), + [sym__string_start] = ACTIONS(81), + }, + [17] = { + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_if_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_with_statement] = STATE(60), + [sym_match_statement] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(977), + [sym_block] = STATE(534), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(977), + [sym_identifier] = ACTIONS(7), + [anon_sym_import] = ACTIONS(9), + [anon_sym_from] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_print] = ACTIONS(17), + [anon_sym_assert] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_raise] = ACTIONS(25), + [anon_sym_pass] = ACTIONS(27), + [anon_sym_break] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_if] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_match] = ACTIONS(95), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_STAR_STAR] = ACTIONS(53), + [anon_sym_def] = ACTIONS(97), + [anon_sym_global] = ACTIONS(57), + [anon_sym_nonlocal] = ACTIONS(59), + [anon_sym_exec] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_class] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(67), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(47), + [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__dedent] = ACTIONS(101), + [sym__string_start] = ACTIONS(81), + }, + [18] = { + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_if_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_with_statement] = STATE(60), + [sym_match_statement] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(977), + [sym_block] = STATE(463), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(977), + [sym_identifier] = ACTIONS(7), + [anon_sym_import] = ACTIONS(9), + [anon_sym_from] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_print] = ACTIONS(17), + [anon_sym_assert] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_raise] = ACTIONS(25), + [anon_sym_pass] = ACTIONS(27), + [anon_sym_break] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_if] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_match] = ACTIONS(95), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_STAR_STAR] = ACTIONS(53), + [anon_sym_def] = ACTIONS(97), + [anon_sym_global] = ACTIONS(57), + [anon_sym_nonlocal] = ACTIONS(59), + [anon_sym_exec] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_class] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(67), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(47), + [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__dedent] = ACTIONS(101), + [sym__string_start] = ACTIONS(81), + }, + [19] = { + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_if_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_with_statement] = STATE(60), + [sym_match_statement] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(977), + [sym_block] = STATE(417), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(977), + [sym_identifier] = ACTIONS(7), + [anon_sym_import] = ACTIONS(9), + [anon_sym_from] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_print] = ACTIONS(17), + [anon_sym_assert] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_raise] = ACTIONS(25), + [anon_sym_pass] = ACTIONS(27), + [anon_sym_break] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_if] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_match] = ACTIONS(95), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_STAR_STAR] = ACTIONS(53), + [anon_sym_def] = ACTIONS(97), + [anon_sym_global] = ACTIONS(57), + [anon_sym_nonlocal] = ACTIONS(59), + [anon_sym_exec] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_class] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(67), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(47), + [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__dedent] = ACTIONS(101), + [sym__string_start] = ACTIONS(81), + }, + [20] = { + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_if_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_with_statement] = STATE(60), + [sym_match_statement] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(977), + [sym_block] = STATE(527), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(977), + [sym_identifier] = ACTIONS(7), + [anon_sym_import] = ACTIONS(9), + [anon_sym_from] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_print] = ACTIONS(17), + [anon_sym_assert] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_raise] = ACTIONS(25), + [anon_sym_pass] = ACTIONS(27), + [anon_sym_break] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_if] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_match] = ACTIONS(95), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_STAR_STAR] = ACTIONS(53), + [anon_sym_def] = ACTIONS(97), + [anon_sym_global] = ACTIONS(57), + [anon_sym_nonlocal] = ACTIONS(59), + [anon_sym_exec] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_class] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(67), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(47), + [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__dedent] = ACTIONS(101), + [sym__string_start] = ACTIONS(81), + }, + [21] = { + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(977), + [sym_block] = STATE(561), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(977), + [sym_identifier] = ACTIONS(7), + [anon_sym_import] = ACTIONS(9), + [anon_sym_from] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_print] = ACTIONS(17), + [anon_sym_assert] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_raise] = ACTIONS(25), + [anon_sym_pass] = ACTIONS(27), + [anon_sym_break] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_if] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_match] = ACTIONS(95), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_STAR_STAR] = ACTIONS(53), + [anon_sym_def] = ACTIONS(97), + [anon_sym_global] = ACTIONS(57), + [anon_sym_nonlocal] = ACTIONS(59), + [anon_sym_exec] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_class] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(67), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(47), + [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__dedent] = ACTIONS(103), + [sym__string_start] = ACTIONS(81), + }, + [22] = { + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_if_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(977), + [sym_block] = STATE(985), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(977), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -10457,73 +10238,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [23] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(999), - [sym_block] = STATE(501), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(999), + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_if_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(977), + [sym_block] = STATE(1019), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(977), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -10572,73 +10353,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [24] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_if_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(999), - [sym_block] = STATE(379), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(999), + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_if_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_with_statement] = STATE(60), + [sym_match_statement] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(977), + [sym_block] = STATE(334), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(977), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -10683,77 +10464,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(111), + [sym__dedent] = ACTIONS(101), [sym__string_start] = ACTIONS(81), }, [25] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(999), - [sym_block] = STATE(378), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(999), + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_if_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_with_statement] = STATE(60), + [sym_match_statement] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(977), + [sym_block] = STATE(456), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(977), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -10798,25 +10579,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(113), + [sym__dedent] = ACTIONS(101), [sym__string_start] = ACTIONS(81), }, [26] = { [sym__statement] = STATE(60), [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), [sym_if_statement] = STATE(60), [sym_for_statement] = STATE(60), [sym_while_statement] = STATE(60), @@ -10824,51 +10605,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(60), [sym_match_statement] = STATE(60), [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), [sym_class_definition] = STATE(60), [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(999), - [sym_block] = STATE(488), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [sym_decorator] = STATE(977), + [sym_block] = STATE(523), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(999), + [aux_sym_decorated_definition_repeat1] = STATE(977), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -10913,77 +10694,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(101), [sym__string_start] = ACTIONS(81), }, [27] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(999), - [sym_block] = STATE(520), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(999), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(977), + [sym_block] = STATE(454), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(977), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11028,25 +10809,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), }, [28] = { [sym__statement] = STATE(60), [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), [sym_if_statement] = STATE(60), [sym_for_statement] = STATE(60), [sym_while_statement] = STATE(60), @@ -11054,51 +10835,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(60), [sym_match_statement] = STATE(60), [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), [sym_class_definition] = STATE(60), [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(999), - [sym_block] = STATE(461), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [sym_decorator] = STATE(977), + [sym_block] = STATE(422), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(999), + [aux_sym_decorated_definition_repeat1] = STATE(977), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11143,25 +10924,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(101), [sym__string_start] = ACTIONS(81), }, [29] = { [sym__statement] = STATE(60), [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), [sym_if_statement] = STATE(60), [sym_for_statement] = STATE(60), [sym_while_statement] = STATE(60), @@ -11169,51 +10950,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(60), [sym_match_statement] = STATE(60), [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), [sym_class_definition] = STATE(60), [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(999), - [sym_block] = STATE(524), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [sym_decorator] = STATE(977), + [sym_block] = STATE(468), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(999), + [aux_sym_decorated_definition_repeat1] = STATE(977), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11258,600 +11039,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(101), [sym__string_start] = ACTIONS(81), }, [30] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_if_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(999), - [sym_block] = STATE(590), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(999), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), - [anon_sym_AT] = ACTIONS(67), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(47), - [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__dedent] = ACTIONS(103), - [sym__string_start] = ACTIONS(81), - }, - [31] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_if_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(999), - [sym_block] = STATE(419), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(999), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), - [anon_sym_AT] = ACTIONS(67), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(47), - [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__dedent] = ACTIONS(103), - [sym__string_start] = ACTIONS(81), - }, - [32] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_if_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(999), - [sym_block] = STATE(552), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(999), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), - [anon_sym_AT] = ACTIONS(67), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(47), - [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__dedent] = ACTIONS(103), - [sym__string_start] = ACTIONS(81), - }, - [33] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_if_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(999), - [sym_block] = STATE(527), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(999), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), - [anon_sym_AT] = ACTIONS(67), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(47), - [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__dedent] = ACTIONS(103), - [sym__string_start] = ACTIONS(81), - }, - [34] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_if_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(999), - [sym_block] = STATE(557), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(999), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), - [anon_sym_AT] = ACTIONS(67), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(47), - [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__dedent] = ACTIONS(103), - [sym__string_start] = ACTIONS(81), - }, - [35] = { [sym__statement] = STATE(60), [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), [sym_if_statement] = STATE(60), [sym_for_statement] = STATE(60), [sym_while_statement] = STATE(60), @@ -11859,51 +11065,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(60), [sym_match_statement] = STATE(60), [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), [sym_class_definition] = STATE(60), [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(999), - [sym_block] = STATE(493), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [sym_decorator] = STATE(977), + [sym_block] = STATE(335), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(999), + [aux_sym_decorated_definition_repeat1] = STATE(977), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11948,25 +11154,600 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(101), + [sym__string_start] = ACTIONS(81), + }, + [31] = { + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_if_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_with_statement] = STATE(60), + [sym_match_statement] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(977), + [sym_block] = STATE(466), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(977), + [sym_identifier] = ACTIONS(7), + [anon_sym_import] = ACTIONS(9), + [anon_sym_from] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_print] = ACTIONS(17), + [anon_sym_assert] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_raise] = ACTIONS(25), + [anon_sym_pass] = ACTIONS(27), + [anon_sym_break] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_if] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_match] = ACTIONS(95), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_STAR_STAR] = ACTIONS(53), + [anon_sym_def] = ACTIONS(97), + [anon_sym_global] = ACTIONS(57), + [anon_sym_nonlocal] = ACTIONS(59), + [anon_sym_exec] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_class] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(67), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(47), + [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__dedent] = ACTIONS(101), + [sym__string_start] = ACTIONS(81), + }, + [32] = { + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_if_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_with_statement] = STATE(60), + [sym_match_statement] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(977), + [sym_block] = STATE(514), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(977), + [sym_identifier] = ACTIONS(7), + [anon_sym_import] = ACTIONS(9), + [anon_sym_from] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_print] = ACTIONS(17), + [anon_sym_assert] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_raise] = ACTIONS(25), + [anon_sym_pass] = ACTIONS(27), + [anon_sym_break] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_if] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_match] = ACTIONS(95), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_STAR_STAR] = ACTIONS(53), + [anon_sym_def] = ACTIONS(97), + [anon_sym_global] = ACTIONS(57), + [anon_sym_nonlocal] = ACTIONS(59), + [anon_sym_exec] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_class] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(67), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(47), + [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__dedent] = ACTIONS(101), + [sym__string_start] = ACTIONS(81), + }, + [33] = { + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_if_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_with_statement] = STATE(60), + [sym_match_statement] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(977), + [sym_block] = STATE(513), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(977), + [sym_identifier] = ACTIONS(7), + [anon_sym_import] = ACTIONS(9), + [anon_sym_from] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_print] = ACTIONS(17), + [anon_sym_assert] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_raise] = ACTIONS(25), + [anon_sym_pass] = ACTIONS(27), + [anon_sym_break] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_if] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_match] = ACTIONS(95), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_STAR_STAR] = ACTIONS(53), + [anon_sym_def] = ACTIONS(97), + [anon_sym_global] = ACTIONS(57), + [anon_sym_nonlocal] = ACTIONS(59), + [anon_sym_exec] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_class] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(67), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(47), + [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__dedent] = ACTIONS(101), + [sym__string_start] = ACTIONS(81), + }, + [34] = { + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_if_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_with_statement] = STATE(60), + [sym_match_statement] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(977), + [sym_block] = STATE(516), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(977), + [sym_identifier] = ACTIONS(7), + [anon_sym_import] = ACTIONS(9), + [anon_sym_from] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_print] = ACTIONS(17), + [anon_sym_assert] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_raise] = ACTIONS(25), + [anon_sym_pass] = ACTIONS(27), + [anon_sym_break] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_if] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_match] = ACTIONS(95), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_STAR_STAR] = ACTIONS(53), + [anon_sym_def] = ACTIONS(97), + [anon_sym_global] = ACTIONS(57), + [anon_sym_nonlocal] = ACTIONS(59), + [anon_sym_exec] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_class] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(67), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(47), + [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__dedent] = ACTIONS(101), + [sym__string_start] = ACTIONS(81), + }, + [35] = { + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(977), + [sym_block] = STATE(521), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(977), + [sym_identifier] = ACTIONS(7), + [anon_sym_import] = ACTIONS(9), + [anon_sym_from] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_print] = ACTIONS(17), + [anon_sym_assert] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_raise] = ACTIONS(25), + [anon_sym_pass] = ACTIONS(27), + [anon_sym_break] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_if] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_match] = ACTIONS(95), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_STAR_STAR] = ACTIONS(53), + [anon_sym_def] = ACTIONS(97), + [anon_sym_global] = ACTIONS(57), + [anon_sym_nonlocal] = ACTIONS(59), + [anon_sym_exec] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_class] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(67), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(47), + [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__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), }, [36] = { [sym__statement] = STATE(60), [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), [sym_if_statement] = STATE(60), [sym_for_statement] = STATE(60), [sym_while_statement] = STATE(60), @@ -11974,51 +11755,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(60), [sym_match_statement] = STATE(60), [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), [sym_class_definition] = STATE(60), [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(999), - [sym_block] = STATE(551), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [sym_decorator] = STATE(977), + [sym_block] = STATE(271), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(999), + [aux_sym_decorated_definition_repeat1] = STATE(977), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12063,77 +11844,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(101), [sym__string_start] = ACTIONS(81), }, [37] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(999), - [sym_block] = STATE(594), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(999), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(977), + [sym_block] = STATE(349), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(977), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12178,77 +11959,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), }, [38] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(999), - [sym_block] = STATE(530), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(999), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(977), + [sym_block] = STATE(287), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(977), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12293,77 +12074,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), }, [39] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(999), - [sym_block] = STATE(543), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(999), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(977), + [sym_block] = STATE(548), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(977), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12408,77 +12189,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), }, [40] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(999), - [sym_block] = STATE(546), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(999), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(977), + [sym_block] = STATE(501), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(977), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12523,77 +12304,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), }, [41] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_if_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(999), - [sym_block] = STATE(473), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(999), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(977), + [sym_block] = STATE(461), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(977), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12642,73 +12423,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [42] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_if_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(999), - [sym_block] = STATE(586), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(999), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(977), + [sym_block] = STATE(348), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(977), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12757,73 +12538,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [43] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_if_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(999), - [sym_block] = STATE(340), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(999), + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_if_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_with_statement] = STATE(60), + [sym_match_statement] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(977), + [sym_block] = STATE(338), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(977), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12868,77 +12649,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(111), + [sym__dedent] = ACTIONS(101), [sym__string_start] = ACTIONS(81), }, [44] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(999), - [sym_block] = STATE(342), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(999), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(977), + [sym_block] = STATE(533), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(977), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12983,77 +12764,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(113), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), }, [45] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_if_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(999), - [sym_block] = STATE(563), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(999), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(977), + [sym_block] = STATE(507), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(977), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13102,73 +12883,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [46] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_if_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(999), - [sym_block] = STATE(564), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(999), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(977), + [sym_block] = STATE(345), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(977), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13217,73 +12998,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [47] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_if_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(999), - [sym_block] = STATE(496), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(999), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(977), + [sym_block] = STATE(433), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(977), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13332,73 +13113,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [48] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_if_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(999), - [sym_block] = STATE(495), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(999), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(977), + [sym_block] = STATE(543), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(977), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13447,73 +13228,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [49] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_if_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(999), - [sym_block] = STATE(549), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(999), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(977), + [sym_block] = STATE(494), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(977), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13562,73 +13343,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [50] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_if_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(999), - [sym_block] = STATE(395), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(999), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(977), + [sym_block] = STATE(488), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(977), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13677,73 +13458,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [51] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_if_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(999), - [sym_block] = STATE(515), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(999), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(977), + [sym_block] = STATE(458), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(977), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13792,73 +13573,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [52] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(999), - [sym_block] = STATE(429), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(999), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(977), + [sym_block] = STATE(517), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(977), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13903,77 +13684,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), }, [53] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_if_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(999), - [sym_block] = STATE(538), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(999), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(977), + [sym_block] = STATE(421), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(977), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14022,73 +13803,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [54] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_if_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(999), - [sym_block] = STATE(570), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(999), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(977), + [sym_block] = STATE(465), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(977), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14137,73 +13918,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [55] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_if_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(999), - [sym_block] = STATE(356), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(999), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(977), + [sym_block] = STATE(485), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(977), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14248,77 +14029,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(109), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), }, [56] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_if_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(999), - [sym_block] = STATE(531), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(999), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(977), + [sym_block] = STATE(353), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(977), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14367,73 +14148,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [57] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_if_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(999), - [sym_block] = STATE(992), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(999), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(977), + [sym_block] = STATE(352), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(977), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14478,77 +14259,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), }, [58] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_if_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(999), - [sym_block] = STATE(467), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(999), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(977), + [sym_block] = STATE(508), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(977), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14597,136 +14378,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [59] = { - [sym__statement] = STATE(69), - [sym__simple_statements] = STATE(69), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_if_statement] = STATE(69), - [sym_for_statement] = STATE(69), - [sym_while_statement] = STATE(69), - [sym_try_statement] = STATE(69), - [sym_with_statement] = STATE(69), - [sym_match_statement] = STATE(69), - [sym_function_definition] = STATE(69), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_class_definition] = STATE(69), - [sym_decorated_definition] = STATE(69), - [sym_decorator] = STATE(999), - [sym_block] = STATE(374), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(69), - [aux_sym_decorated_definition_repeat1] = STATE(999), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), - [anon_sym_AT] = ACTIONS(67), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(47), - [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__dedent] = ACTIONS(101), - [sym__string_start] = ACTIONS(81), - }, - [60] = { [sym__statement] = STATE(62), [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), [sym_if_statement] = STATE(62), [sym_for_statement] = STATE(62), [sym_while_statement] = STATE(62), @@ -14734,50 +14400,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(62), [sym_match_statement] = STATE(62), [sym_function_definition] = STATE(62), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), [sym_class_definition] = STATE(62), [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(999), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [sym_decorator] = STATE(977), + [sym_block] = STATE(511), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(999), + [aux_sym_decorated_definition_repeat1] = STATE(977), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14822,77 +14489,191 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(115), + [sym__dedent] = ACTIONS(103), + [sym__string_start] = ACTIONS(81), + }, + [60] = { + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_if_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(977), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(977), + [sym_identifier] = ACTIONS(7), + [anon_sym_import] = ACTIONS(9), + [anon_sym_from] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_print] = ACTIONS(17), + [anon_sym_assert] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_raise] = ACTIONS(25), + [anon_sym_pass] = ACTIONS(27), + [anon_sym_break] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_if] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_match] = ACTIONS(95), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_STAR_STAR] = ACTIONS(53), + [anon_sym_def] = ACTIONS(97), + [anon_sym_global] = ACTIONS(57), + [anon_sym_nonlocal] = ACTIONS(59), + [anon_sym_exec] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_class] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(67), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(47), + [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__dedent] = ACTIONS(107), [sym__string_start] = ACTIONS(81), }, [61] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(1210), - [sym_future_import_statement] = STATE(1210), - [sym_import_from_statement] = STATE(1210), - [sym_print_statement] = STATE(1210), - [sym_assert_statement] = STATE(1210), - [sym_expression_statement] = STATE(1210), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1210), - [sym_delete_statement] = STATE(1210), - [sym_raise_statement] = STATE(1210), - [sym_pass_statement] = STATE(1210), - [sym_break_statement] = STATE(1210), - [sym_continue_statement] = STATE(1210), - [sym_if_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1210), - [sym_nonlocal_statement] = STATE(1210), - [sym_exec_statement] = STATE(1210), - [sym_type_alias_statement] = STATE(1210), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(973), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(973), - [ts_builtin_sym_end] = ACTIONS(117), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1173), + [sym_future_import_statement] = STATE(1173), + [sym_import_from_statement] = STATE(1173), + [sym_print_statement] = STATE(1173), + [sym_assert_statement] = STATE(1173), + [sym_expression_statement] = STATE(1173), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1173), + [sym_delete_statement] = STATE(1173), + [sym_raise_statement] = STATE(1173), + [sym_pass_statement] = STATE(1173), + [sym_break_statement] = STATE(1173), + [sym_continue_statement] = STATE(1173), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1173), + [sym_nonlocal_statement] = STATE(1173), + [sym_exec_statement] = STATE(1173), + [sym_type_alias_statement] = STATE(1173), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(944), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(944), + [ts_builtin_sym_end] = ACTIONS(109), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14940,414 +14721,414 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [62] = { - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_if_statement] = STATE(62), - [sym_for_statement] = STATE(62), - [sym_while_statement] = STATE(62), - [sym_try_statement] = STATE(62), - [sym_with_statement] = STATE(62), - [sym_match_statement] = STATE(62), - [sym_function_definition] = STATE(62), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(999), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(999), - [sym_identifier] = ACTIONS(119), - [anon_sym_import] = ACTIONS(122), - [anon_sym_from] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(128), - [anon_sym_STAR] = ACTIONS(131), - [anon_sym_print] = ACTIONS(134), - [anon_sym_assert] = ACTIONS(137), - [anon_sym_return] = ACTIONS(140), - [anon_sym_del] = ACTIONS(143), - [anon_sym_raise] = ACTIONS(146), - [anon_sym_pass] = ACTIONS(149), - [anon_sym_break] = ACTIONS(152), - [anon_sym_continue] = ACTIONS(155), - [anon_sym_if] = ACTIONS(158), - [anon_sym_async] = ACTIONS(161), - [anon_sym_for] = ACTIONS(164), - [anon_sym_while] = ACTIONS(167), - [anon_sym_try] = ACTIONS(170), - [anon_sym_with] = ACTIONS(173), - [anon_sym_match] = ACTIONS(176), - [anon_sym_DASH] = ACTIONS(179), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_LBRACK] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(185), - [anon_sym_STAR_STAR] = ACTIONS(188), - [anon_sym_def] = ACTIONS(191), - [anon_sym_global] = ACTIONS(194), - [anon_sym_nonlocal] = ACTIONS(197), - [anon_sym_exec] = ACTIONS(200), - [anon_sym_type] = ACTIONS(203), - [anon_sym_class] = ACTIONS(206), - [anon_sym_AT] = ACTIONS(209), - [anon_sym_not] = ACTIONS(212), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_lambda] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(218), - [sym_ellipsis] = ACTIONS(221), - [sym_integer] = ACTIONS(224), - [sym_float] = ACTIONS(221), - [anon_sym_await] = ACTIONS(227), - [sym_true] = ACTIONS(224), - [sym_false] = ACTIONS(224), - [sym_none] = ACTIONS(224), + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_if_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(977), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(977), + [sym_identifier] = ACTIONS(7), + [anon_sym_import] = ACTIONS(9), + [anon_sym_from] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_print] = ACTIONS(17), + [anon_sym_assert] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_raise] = ACTIONS(25), + [anon_sym_pass] = ACTIONS(27), + [anon_sym_break] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_if] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_match] = ACTIONS(95), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_STAR_STAR] = ACTIONS(53), + [anon_sym_def] = ACTIONS(97), + [anon_sym_global] = ACTIONS(57), + [anon_sym_nonlocal] = ACTIONS(59), + [anon_sym_exec] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_class] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(67), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(47), + [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__dedent] = ACTIONS(230), - [sym__string_start] = ACTIONS(232), + [sym__dedent] = ACTIONS(111), + [sym__string_start] = ACTIONS(81), }, [63] = { - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_if_statement] = STATE(62), - [sym_for_statement] = STATE(62), - [sym_while_statement] = STATE(62), - [sym_try_statement] = STATE(62), - [sym_with_statement] = STATE(62), - [sym_match_statement] = STATE(62), - [sym_function_definition] = STATE(62), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(999), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(999), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), - [anon_sym_AT] = ACTIONS(67), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(47), - [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__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1173), + [sym_future_import_statement] = STATE(1173), + [sym_import_from_statement] = STATE(1173), + [sym_print_statement] = STATE(1173), + [sym_assert_statement] = STATE(1173), + [sym_expression_statement] = STATE(1173), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1173), + [sym_delete_statement] = STATE(1173), + [sym_raise_statement] = STATE(1173), + [sym_pass_statement] = STATE(1173), + [sym_break_statement] = STATE(1173), + [sym_continue_statement] = STATE(1173), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1173), + [sym_nonlocal_statement] = STATE(1173), + [sym_exec_statement] = STATE(1173), + [sym_type_alias_statement] = STATE(1173), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(944), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(944), + [ts_builtin_sym_end] = ACTIONS(113), + [sym_identifier] = ACTIONS(115), + [anon_sym_import] = ACTIONS(118), + [anon_sym_from] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(124), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_print] = ACTIONS(130), + [anon_sym_assert] = ACTIONS(133), + [anon_sym_return] = ACTIONS(136), + [anon_sym_del] = ACTIONS(139), + [anon_sym_raise] = ACTIONS(142), + [anon_sym_pass] = ACTIONS(145), + [anon_sym_break] = ACTIONS(148), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_if] = ACTIONS(154), + [anon_sym_async] = ACTIONS(157), + [anon_sym_for] = ACTIONS(160), + [anon_sym_while] = ACTIONS(163), + [anon_sym_try] = ACTIONS(166), + [anon_sym_with] = ACTIONS(169), + [anon_sym_match] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(178), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_STAR_STAR] = ACTIONS(184), + [anon_sym_def] = ACTIONS(187), + [anon_sym_global] = ACTIONS(190), + [anon_sym_nonlocal] = ACTIONS(193), + [anon_sym_exec] = ACTIONS(196), + [anon_sym_type] = ACTIONS(199), + [anon_sym_class] = ACTIONS(202), + [anon_sym_AT] = ACTIONS(205), + [anon_sym_not] = ACTIONS(208), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_lambda] = ACTIONS(211), + [anon_sym_yield] = ACTIONS(214), + [sym_ellipsis] = ACTIONS(217), + [sym_integer] = ACTIONS(220), + [sym_float] = ACTIONS(217), + [anon_sym_await] = ACTIONS(223), + [sym_true] = ACTIONS(220), + [sym_false] = ACTIONS(220), + [sym_none] = ACTIONS(220), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(235), - [sym__string_start] = ACTIONS(81), + [sym__string_start] = ACTIONS(226), }, [64] = { - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_if_statement] = STATE(62), - [sym_for_statement] = STATE(62), - [sym_while_statement] = STATE(62), - [sym_try_statement] = STATE(62), - [sym_with_statement] = STATE(62), - [sym_match_statement] = STATE(62), - [sym_function_definition] = STATE(62), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(999), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(999), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), - [anon_sym_AT] = ACTIONS(67), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(47), - [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__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_if_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(977), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(977), + [sym_identifier] = ACTIONS(115), + [anon_sym_import] = ACTIONS(118), + [anon_sym_from] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(124), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_print] = ACTIONS(130), + [anon_sym_assert] = ACTIONS(133), + [anon_sym_return] = ACTIONS(136), + [anon_sym_del] = ACTIONS(139), + [anon_sym_raise] = ACTIONS(142), + [anon_sym_pass] = ACTIONS(145), + [anon_sym_break] = ACTIONS(148), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_if] = ACTIONS(229), + [anon_sym_async] = ACTIONS(232), + [anon_sym_for] = ACTIONS(235), + [anon_sym_while] = ACTIONS(238), + [anon_sym_try] = ACTIONS(241), + [anon_sym_with] = ACTIONS(244), + [anon_sym_match] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(178), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_STAR_STAR] = ACTIONS(184), + [anon_sym_def] = ACTIONS(250), + [anon_sym_global] = ACTIONS(190), + [anon_sym_nonlocal] = ACTIONS(193), + [anon_sym_exec] = ACTIONS(196), + [anon_sym_type] = ACTIONS(199), + [anon_sym_class] = ACTIONS(253), + [anon_sym_AT] = ACTIONS(205), + [anon_sym_not] = ACTIONS(208), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_lambda] = ACTIONS(211), + [anon_sym_yield] = ACTIONS(214), + [sym_ellipsis] = ACTIONS(217), + [sym_integer] = ACTIONS(220), + [sym_float] = ACTIONS(217), + [anon_sym_await] = ACTIONS(223), + [sym_true] = ACTIONS(220), + [sym_false] = ACTIONS(220), + [sym_none] = ACTIONS(220), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(237), - [sym__string_start] = ACTIONS(81), + [sym__dedent] = ACTIONS(113), + [sym__string_start] = ACTIONS(226), }, [65] = { - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_if_statement] = STATE(62), - [sym_for_statement] = STATE(62), - [sym_while_statement] = STATE(62), - [sym_try_statement] = STATE(62), - [sym_with_statement] = STATE(62), - [sym_match_statement] = STATE(62), - [sym_function_definition] = STATE(62), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(999), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(999), + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_if_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(977), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(977), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -15392,304 +15173,255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(239), + [sym__dedent] = ACTIONS(256), [sym__string_start] = ACTIONS(81), }, [66] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(1210), - [sym_future_import_statement] = STATE(1210), - [sym_import_from_statement] = STATE(1210), - [sym_print_statement] = STATE(1210), - [sym_assert_statement] = STATE(1210), - [sym_expression_statement] = STATE(1210), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1210), - [sym_delete_statement] = STATE(1210), - [sym_raise_statement] = STATE(1210), - [sym_pass_statement] = STATE(1210), - [sym_break_statement] = STATE(1210), - [sym_continue_statement] = STATE(1210), - [sym_if_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1210), - [sym_nonlocal_statement] = STATE(1210), - [sym_exec_statement] = STATE(1210), - [sym_type_alias_statement] = STATE(1210), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(973), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(973), - [ts_builtin_sym_end] = ACTIONS(230), - [sym_identifier] = ACTIONS(119), - [anon_sym_import] = ACTIONS(122), - [anon_sym_from] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(128), - [anon_sym_STAR] = ACTIONS(131), - [anon_sym_print] = ACTIONS(134), - [anon_sym_assert] = ACTIONS(137), - [anon_sym_return] = ACTIONS(140), - [anon_sym_del] = ACTIONS(143), - [anon_sym_raise] = ACTIONS(146), - [anon_sym_pass] = ACTIONS(149), - [anon_sym_break] = ACTIONS(152), - [anon_sym_continue] = ACTIONS(155), - [anon_sym_if] = 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_match] = ACTIONS(259), - [anon_sym_DASH] = ACTIONS(179), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_LBRACK] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(185), - [anon_sym_STAR_STAR] = ACTIONS(188), - [anon_sym_def] = ACTIONS(262), - [anon_sym_global] = ACTIONS(194), - [anon_sym_nonlocal] = ACTIONS(197), - [anon_sym_exec] = ACTIONS(200), - [anon_sym_type] = ACTIONS(203), - [anon_sym_class] = ACTIONS(265), - [anon_sym_AT] = ACTIONS(209), - [anon_sym_not] = ACTIONS(212), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_lambda] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(218), - [sym_ellipsis] = ACTIONS(221), - [sym_integer] = ACTIONS(224), - [sym_float] = ACTIONS(221), - [anon_sym_await] = ACTIONS(227), - [sym_true] = ACTIONS(224), - [sym_false] = ACTIONS(224), - [sym_none] = ACTIONS(224), + [sym_named_expression] = STATE(874), + [sym_list_splat] = STATE(1364), + [sym_dictionary_splat] = STATE(1364), + [sym_expression_list] = STATE(1398), + [sym_expression] = STATE(1054), + [sym_primary_expression] = STATE(582), + [sym_not_operator] = STATE(874), + [sym_boolean_operator] = STATE(874), + [sym_binary_operator] = STATE(607), + [sym_unary_operator] = STATE(607), + [sym_comparison_operator] = STATE(874), + [sym_lambda] = STATE(874), + [sym_attribute] = STATE(607), + [sym_subscript] = STATE(607), + [sym_call] = STATE(607), + [sym_list] = STATE(607), + [sym_set] = STATE(607), + [sym_tuple] = STATE(607), + [sym_dictionary] = STATE(607), + [sym_list_comprehension] = STATE(607), + [sym_dictionary_comprehension] = STATE(607), + [sym_set_comprehension] = STATE(607), + [sym_generator_expression] = STATE(607), + [sym_parenthesized_expression] = STATE(607), + [sym_conditional_expression] = STATE(874), + [sym_concatenated_string] = STATE(607), + [sym_string] = STATE(570), + [sym_await] = STATE(874), + [sym_identifier] = ACTIONS(258), + [anon_sym_DOT] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_COMMA] = ACTIONS(264), + [anon_sym_STAR] = ACTIONS(267), + [anon_sym_print] = ACTIONS(269), + [anon_sym_GT_GT] = ACTIONS(260), + [anon_sym_COLON_EQ] = ACTIONS(271), + [anon_sym_if] = ACTIONS(260), + [anon_sym_COLON] = ACTIONS(273), + [anon_sym_async] = ACTIONS(269), + [anon_sym_in] = ACTIONS(260), + [anon_sym_match] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(260), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_PLUS] = ACTIONS(275), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_STAR_STAR] = ACTIONS(281), + [anon_sym_EQ] = ACTIONS(273), + [anon_sym_exec] = ACTIONS(269), + [anon_sym_type] = ACTIONS(269), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_not] = ACTIONS(283), + [anon_sym_and] = ACTIONS(260), + [anon_sym_or] = ACTIONS(260), + [anon_sym_SLASH] = ACTIONS(260), + [anon_sym_PERCENT] = ACTIONS(260), + [anon_sym_SLASH_SLASH] = ACTIONS(260), + [anon_sym_AMP] = ACTIONS(260), + [anon_sym_CARET] = ACTIONS(260), + [anon_sym_LT_LT] = ACTIONS(260), + [anon_sym_TILDE] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(260), + [anon_sym_LT_EQ] = ACTIONS(287), + [anon_sym_EQ_EQ] = ACTIONS(287), + [anon_sym_BANG_EQ] = ACTIONS(287), + [anon_sym_GT_EQ] = ACTIONS(287), + [anon_sym_GT] = ACTIONS(260), + [anon_sym_LT_GT] = ACTIONS(287), + [anon_sym_is] = ACTIONS(260), + [anon_sym_lambda] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(291), + [anon_sym_DASH_EQ] = ACTIONS(291), + [anon_sym_STAR_EQ] = ACTIONS(291), + [anon_sym_SLASH_EQ] = ACTIONS(291), + [anon_sym_AT_EQ] = ACTIONS(291), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(291), + [anon_sym_PERCENT_EQ] = ACTIONS(291), + [anon_sym_STAR_STAR_EQ] = ACTIONS(291), + [anon_sym_GT_GT_EQ] = ACTIONS(291), + [anon_sym_LT_LT_EQ] = ACTIONS(291), + [anon_sym_AMP_EQ] = ACTIONS(291), + [anon_sym_CARET_EQ] = ACTIONS(291), + [anon_sym_PIPE_EQ] = ACTIONS(291), + [sym_ellipsis] = ACTIONS(293), + [sym_integer] = ACTIONS(295), + [sym_float] = ACTIONS(293), + [anon_sym_await] = ACTIONS(297), + [sym_true] = ACTIONS(295), + [sym_false] = ACTIONS(295), + [sym_none] = ACTIONS(295), [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(232), + [anon_sym_SEMI] = ACTIONS(287), + [sym__newline] = ACTIONS(287), + [sym__string_start] = ACTIONS(299), }, [67] = { - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_if_statement] = STATE(62), - [sym_for_statement] = STATE(62), - [sym_while_statement] = STATE(62), - [sym_try_statement] = STATE(62), - [sym_with_statement] = STATE(62), - [sym_match_statement] = STATE(62), - [sym_function_definition] = STATE(62), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(999), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(999), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), - [anon_sym_AT] = ACTIONS(67), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(47), - [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_named_expression] = STATE(874), + [sym_list_splat] = STATE(1364), + [sym_dictionary_splat] = STATE(1364), + [sym_expression_list] = STATE(1424), + [sym_expression] = STATE(1028), + [sym_primary_expression] = STATE(582), + [sym_not_operator] = STATE(874), + [sym_boolean_operator] = STATE(874), + [sym_binary_operator] = STATE(607), + [sym_unary_operator] = STATE(607), + [sym_comparison_operator] = STATE(874), + [sym_lambda] = STATE(874), + [sym_attribute] = STATE(607), + [sym_subscript] = STATE(607), + [sym_call] = STATE(607), + [sym_list] = STATE(607), + [sym_set] = STATE(607), + [sym_tuple] = STATE(607), + [sym_dictionary] = STATE(607), + [sym_list_comprehension] = STATE(607), + [sym_dictionary_comprehension] = STATE(607), + [sym_set_comprehension] = STATE(607), + [sym_generator_expression] = STATE(607), + [sym_parenthesized_expression] = STATE(607), + [sym_conditional_expression] = STATE(874), + [sym_concatenated_string] = STATE(607), + [sym_string] = STATE(570), + [sym_await] = STATE(874), + [sym_identifier] = ACTIONS(258), + [anon_sym_DOT] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_COMMA] = ACTIONS(264), + [anon_sym_STAR] = ACTIONS(267), + [anon_sym_print] = ACTIONS(269), + [anon_sym_GT_GT] = ACTIONS(260), + [anon_sym_COLON_EQ] = ACTIONS(271), + [anon_sym_if] = ACTIONS(260), + [anon_sym_COLON] = ACTIONS(273), + [anon_sym_async] = ACTIONS(269), + [anon_sym_in] = ACTIONS(260), + [anon_sym_match] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(260), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_PLUS] = ACTIONS(275), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_STAR_STAR] = ACTIONS(281), + [anon_sym_EQ] = ACTIONS(273), + [anon_sym_exec] = ACTIONS(269), + [anon_sym_type] = ACTIONS(269), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_not] = ACTIONS(283), + [anon_sym_and] = ACTIONS(260), + [anon_sym_or] = ACTIONS(260), + [anon_sym_SLASH] = ACTIONS(260), + [anon_sym_PERCENT] = ACTIONS(260), + [anon_sym_SLASH_SLASH] = ACTIONS(260), + [anon_sym_AMP] = ACTIONS(260), + [anon_sym_CARET] = ACTIONS(260), + [anon_sym_LT_LT] = ACTIONS(260), + [anon_sym_TILDE] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(260), + [anon_sym_LT_EQ] = ACTIONS(287), + [anon_sym_EQ_EQ] = ACTIONS(287), + [anon_sym_BANG_EQ] = ACTIONS(287), + [anon_sym_GT_EQ] = ACTIONS(287), + [anon_sym_GT] = ACTIONS(260), + [anon_sym_LT_GT] = ACTIONS(287), + [anon_sym_is] = ACTIONS(260), + [anon_sym_lambda] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(291), + [anon_sym_DASH_EQ] = ACTIONS(291), + [anon_sym_STAR_EQ] = ACTIONS(291), + [anon_sym_SLASH_EQ] = ACTIONS(291), + [anon_sym_AT_EQ] = ACTIONS(291), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(291), + [anon_sym_PERCENT_EQ] = ACTIONS(291), + [anon_sym_STAR_STAR_EQ] = ACTIONS(291), + [anon_sym_GT_GT_EQ] = ACTIONS(291), + [anon_sym_LT_LT_EQ] = ACTIONS(291), + [anon_sym_AMP_EQ] = ACTIONS(291), + [anon_sym_CARET_EQ] = ACTIONS(291), + [anon_sym_PIPE_EQ] = ACTIONS(291), + [sym_ellipsis] = ACTIONS(293), + [sym_integer] = ACTIONS(295), + [sym_float] = ACTIONS(293), + [anon_sym_await] = ACTIONS(297), + [sym_true] = ACTIONS(295), + [sym_false] = ACTIONS(295), + [sym_none] = ACTIONS(295), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(268), - [sym__string_start] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(287), + [sym__newline] = ACTIONS(287), + [sym__string_start] = ACTIONS(299), }, [68] = { - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_if_statement] = STATE(62), - [sym_for_statement] = STATE(62), - [sym_while_statement] = STATE(62), - [sym_try_statement] = STATE(62), - [sym_with_statement] = STATE(62), - [sym_match_statement] = STATE(62), - [sym_function_definition] = STATE(62), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(999), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(999), + [sym__simple_statements] = STATE(545), + [sym_import_statement] = STATE(1173), + [sym_future_import_statement] = STATE(1173), + [sym_import_from_statement] = STATE(1173), + [sym_print_statement] = STATE(1173), + [sym_assert_statement] = STATE(1173), + [sym_expression_statement] = STATE(1173), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1173), + [sym_delete_statement] = STATE(1173), + [sym_raise_statement] = STATE(1173), + [sym_pass_statement] = STATE(1173), + [sym_break_statement] = STATE(1173), + [sym_continue_statement] = STATE(1173), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1173), + [sym_nonlocal_statement] = STATE(1173), + [sym_exec_statement] = STATE(1173), + [sym_type_alias_statement] = STATE(1173), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -15703,25 +15435,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), - [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), [anon_sym_lambda] = ACTIONS(71), @@ -15734,76 +15458,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(270), + [sym__newline] = ACTIONS(303), + [sym__indent] = ACTIONS(305), [sym__string_start] = ACTIONS(81), }, [69] = { - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_if_statement] = STATE(62), - [sym_for_statement] = STATE(62), - [sym_while_statement] = STATE(62), - [sym_try_statement] = STATE(62), - [sym_with_statement] = STATE(62), - [sym_match_statement] = STATE(62), - [sym_function_definition] = STATE(62), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(999), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(999), + [sym__simple_statements] = STATE(509), + [sym_import_statement] = STATE(1173), + [sym_future_import_statement] = STATE(1173), + [sym_import_from_statement] = STATE(1173), + [sym_print_statement] = STATE(1173), + [sym_assert_statement] = STATE(1173), + [sym_expression_statement] = STATE(1173), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1173), + [sym_delete_statement] = STATE(1173), + [sym_raise_statement] = STATE(1173), + [sym_pass_statement] = STATE(1173), + [sym_break_statement] = STATE(1173), + [sym_continue_statement] = STATE(1173), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1173), + [sym_nonlocal_statement] = STATE(1173), + [sym_exec_statement] = STATE(1173), + [sym_type_alias_statement] = STATE(1173), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -15817,25 +15529,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), - [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), [anon_sym_lambda] = ACTIONS(71), @@ -15848,255 +15552,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(272), + [sym__newline] = ACTIONS(307), + [sym__indent] = ACTIONS(309), [sym__string_start] = ACTIONS(81), }, [70] = { - [sym_named_expression] = STATE(904), - [sym_list_splat] = STATE(1413), - [sym_dictionary_splat] = STATE(1413), - [sym_expression_list] = STATE(1461), - [sym_expression] = STATE(1062), - [sym_primary_expression] = STATE(620), - [sym_not_operator] = STATE(904), - [sym_boolean_operator] = STATE(904), - [sym_binary_operator] = STATE(619), - [sym_unary_operator] = STATE(619), - [sym_comparison_operator] = STATE(904), - [sym_lambda] = STATE(904), - [sym_attribute] = STATE(619), - [sym_subscript] = STATE(619), - [sym_call] = STATE(619), - [sym_list] = STATE(619), - [sym_set] = STATE(619), - [sym_tuple] = STATE(619), - [sym_dictionary] = STATE(619), - [sym_list_comprehension] = STATE(619), - [sym_dictionary_comprehension] = STATE(619), - [sym_set_comprehension] = STATE(619), - [sym_generator_expression] = STATE(619), - [sym_parenthesized_expression] = STATE(619), - [sym_conditional_expression] = STATE(904), - [sym_concatenated_string] = STATE(619), - [sym_string] = STATE(604), - [sym_await] = STATE(904), - [sym_identifier] = ACTIONS(274), - [anon_sym_DOT] = ACTIONS(276), - [anon_sym_LPAREN] = ACTIONS(278), - [anon_sym_COMMA] = ACTIONS(280), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_print] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(276), - [anon_sym_COLON_EQ] = ACTIONS(287), - [anon_sym_if] = ACTIONS(276), - [anon_sym_COLON] = ACTIONS(289), - [anon_sym_async] = ACTIONS(285), - [anon_sym_in] = ACTIONS(276), - [anon_sym_match] = ACTIONS(285), - [anon_sym_PIPE] = ACTIONS(276), - [anon_sym_DASH] = ACTIONS(291), - [anon_sym_PLUS] = ACTIONS(291), - [anon_sym_LBRACK] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(295), - [anon_sym_STAR_STAR] = ACTIONS(297), - [anon_sym_EQ] = ACTIONS(289), - [anon_sym_exec] = ACTIONS(285), - [anon_sym_type] = ACTIONS(285), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_not] = ACTIONS(299), - [anon_sym_and] = ACTIONS(276), - [anon_sym_or] = ACTIONS(276), - [anon_sym_SLASH] = ACTIONS(276), - [anon_sym_PERCENT] = ACTIONS(276), - [anon_sym_SLASH_SLASH] = ACTIONS(276), - [anon_sym_AMP] = ACTIONS(276), - [anon_sym_CARET] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(276), - [anon_sym_TILDE] = ACTIONS(301), - [anon_sym_LT] = ACTIONS(276), - [anon_sym_LT_EQ] = ACTIONS(303), - [anon_sym_EQ_EQ] = ACTIONS(303), - [anon_sym_BANG_EQ] = ACTIONS(303), - [anon_sym_GT_EQ] = ACTIONS(303), - [anon_sym_GT] = ACTIONS(276), - [anon_sym_LT_GT] = ACTIONS(303), - [anon_sym_is] = ACTIONS(276), - [anon_sym_lambda] = ACTIONS(305), - [anon_sym_PLUS_EQ] = ACTIONS(307), - [anon_sym_DASH_EQ] = ACTIONS(307), - [anon_sym_STAR_EQ] = ACTIONS(307), - [anon_sym_SLASH_EQ] = ACTIONS(307), - [anon_sym_AT_EQ] = ACTIONS(307), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(307), - [anon_sym_PERCENT_EQ] = ACTIONS(307), - [anon_sym_STAR_STAR_EQ] = ACTIONS(307), - [anon_sym_GT_GT_EQ] = ACTIONS(307), - [anon_sym_LT_LT_EQ] = ACTIONS(307), - [anon_sym_AMP_EQ] = ACTIONS(307), - [anon_sym_CARET_EQ] = ACTIONS(307), - [anon_sym_PIPE_EQ] = ACTIONS(307), - [sym_ellipsis] = ACTIONS(309), - [sym_integer] = ACTIONS(311), - [sym_float] = ACTIONS(309), - [anon_sym_await] = ACTIONS(313), - [sym_true] = ACTIONS(311), - [sym_false] = ACTIONS(311), - [sym_none] = ACTIONS(311), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(303), - [sym__newline] = ACTIONS(303), - [sym__string_start] = ACTIONS(315), - }, - [71] = { - [sym_named_expression] = STATE(904), - [sym_list_splat] = STATE(1413), - [sym_dictionary_splat] = STATE(1413), - [sym_expression_list] = STATE(1426), - [sym_expression] = STATE(1074), - [sym_primary_expression] = STATE(620), - [sym_not_operator] = STATE(904), - [sym_boolean_operator] = STATE(904), - [sym_binary_operator] = STATE(619), - [sym_unary_operator] = STATE(619), - [sym_comparison_operator] = STATE(904), - [sym_lambda] = STATE(904), - [sym_attribute] = STATE(619), - [sym_subscript] = STATE(619), - [sym_call] = STATE(619), - [sym_list] = STATE(619), - [sym_set] = STATE(619), - [sym_tuple] = STATE(619), - [sym_dictionary] = STATE(619), - [sym_list_comprehension] = STATE(619), - [sym_dictionary_comprehension] = STATE(619), - [sym_set_comprehension] = STATE(619), - [sym_generator_expression] = STATE(619), - [sym_parenthesized_expression] = STATE(619), - [sym_conditional_expression] = STATE(904), - [sym_concatenated_string] = STATE(619), - [sym_string] = STATE(604), - [sym_await] = STATE(904), - [sym_identifier] = ACTIONS(274), - [anon_sym_DOT] = ACTIONS(276), - [anon_sym_LPAREN] = ACTIONS(278), - [anon_sym_COMMA] = ACTIONS(280), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_print] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(276), - [anon_sym_COLON_EQ] = ACTIONS(287), - [anon_sym_if] = ACTIONS(276), - [anon_sym_COLON] = ACTIONS(289), - [anon_sym_async] = ACTIONS(285), - [anon_sym_in] = ACTIONS(276), - [anon_sym_match] = ACTIONS(285), - [anon_sym_PIPE] = ACTIONS(276), - [anon_sym_DASH] = ACTIONS(291), - [anon_sym_PLUS] = ACTIONS(291), - [anon_sym_LBRACK] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(295), - [anon_sym_STAR_STAR] = ACTIONS(297), - [anon_sym_EQ] = ACTIONS(289), - [anon_sym_exec] = ACTIONS(285), - [anon_sym_type] = ACTIONS(285), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_not] = ACTIONS(299), - [anon_sym_and] = ACTIONS(276), - [anon_sym_or] = ACTIONS(276), - [anon_sym_SLASH] = ACTIONS(276), - [anon_sym_PERCENT] = ACTIONS(276), - [anon_sym_SLASH_SLASH] = ACTIONS(276), - [anon_sym_AMP] = ACTIONS(276), - [anon_sym_CARET] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(276), - [anon_sym_TILDE] = ACTIONS(301), - [anon_sym_LT] = ACTIONS(276), - [anon_sym_LT_EQ] = ACTIONS(303), - [anon_sym_EQ_EQ] = ACTIONS(303), - [anon_sym_BANG_EQ] = ACTIONS(303), - [anon_sym_GT_EQ] = ACTIONS(303), - [anon_sym_GT] = ACTIONS(276), - [anon_sym_LT_GT] = ACTIONS(303), - [anon_sym_is] = ACTIONS(276), - [anon_sym_lambda] = ACTIONS(305), - [anon_sym_PLUS_EQ] = ACTIONS(307), - [anon_sym_DASH_EQ] = ACTIONS(307), - [anon_sym_STAR_EQ] = ACTIONS(307), - [anon_sym_SLASH_EQ] = ACTIONS(307), - [anon_sym_AT_EQ] = ACTIONS(307), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(307), - [anon_sym_PERCENT_EQ] = ACTIONS(307), - [anon_sym_STAR_STAR_EQ] = ACTIONS(307), - [anon_sym_GT_GT_EQ] = ACTIONS(307), - [anon_sym_LT_LT_EQ] = ACTIONS(307), - [anon_sym_AMP_EQ] = ACTIONS(307), - [anon_sym_CARET_EQ] = ACTIONS(307), - [anon_sym_PIPE_EQ] = ACTIONS(307), - [sym_ellipsis] = ACTIONS(309), - [sym_integer] = ACTIONS(311), - [sym_float] = ACTIONS(309), - [anon_sym_await] = ACTIONS(313), - [sym_true] = ACTIONS(311), - [sym_false] = ACTIONS(311), - [sym_none] = ACTIONS(311), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(303), - [sym__newline] = ACTIONS(303), - [sym__string_start] = ACTIONS(315), - }, - [72] = { - [sym__simple_statements] = STATE(370), - [sym_import_statement] = STATE(1163), - [sym_future_import_statement] = STATE(1163), - [sym_import_from_statement] = STATE(1163), - [sym_print_statement] = STATE(1163), - [sym_assert_statement] = STATE(1163), - [sym_expression_statement] = STATE(1163), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1163), - [sym_delete_statement] = STATE(1163), - [sym_raise_statement] = STATE(1163), - [sym_pass_statement] = STATE(1163), - [sym_break_statement] = STATE(1163), - [sym_continue_statement] = STATE(1163), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1163), - [sym_nonlocal_statement] = STATE(1163), - [sym_exec_statement] = STATE(1163), - [sym_type_alias_statement] = STATE(1163), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [sym__simple_statements] = STATE(369), + [sym_import_statement] = STATE(1173), + [sym_future_import_statement] = STATE(1173), + [sym_import_from_statement] = STATE(1173), + [sym_print_statement] = STATE(1173), + [sym_assert_statement] = STATE(1173), + [sym_expression_statement] = STATE(1173), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1173), + [sym_delete_statement] = STATE(1173), + [sym_raise_statement] = STATE(1173), + [sym_pass_statement] = STATE(1173), + [sym_break_statement] = STATE(1173), + [sym_continue_statement] = STATE(1173), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1173), + [sym_nonlocal_statement] = STATE(1173), + [sym_exec_statement] = STATE(1173), + [sym_type_alias_statement] = STATE(1173), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16110,8 +15623,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_STAR_STAR] = ACTIONS(53), + [anon_sym_global] = ACTIONS(57), + [anon_sym_nonlocal] = ACTIONS(59), + [anon_sym_exec] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(47), + [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__newline] = ACTIONS(311), + [sym__indent] = ACTIONS(313), + [sym__string_start] = ACTIONS(81), + }, + [71] = { + [sym__simple_statements] = STATE(331), + [sym_import_statement] = STATE(1173), + [sym_future_import_statement] = STATE(1173), + [sym_import_from_statement] = STATE(1173), + [sym_print_statement] = STATE(1173), + [sym_assert_statement] = STATE(1173), + [sym_expression_statement] = STATE(1173), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1173), + [sym_delete_statement] = STATE(1173), + [sym_raise_statement] = STATE(1173), + [sym_pass_statement] = STATE(1173), + [sym_break_statement] = STATE(1173), + [sym_continue_statement] = STATE(1173), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1173), + [sym_nonlocal_statement] = STATE(1173), + [sym_exec_statement] = STATE(1173), + [sym_type_alias_statement] = STATE(1173), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [sym_identifier] = ACTIONS(7), + [anon_sym_import] = ACTIONS(9), + [anon_sym_from] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_print] = ACTIONS(17), + [anon_sym_assert] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_raise] = ACTIONS(25), + [anon_sym_pass] = ACTIONS(27), + [anon_sym_break] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_STAR_STAR] = ACTIONS(53), + [anon_sym_global] = ACTIONS(57), + [anon_sym_nonlocal] = ACTIONS(59), + [anon_sym_exec] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(47), + [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__newline] = ACTIONS(315), + [sym__indent] = ACTIONS(317), + [sym__string_start] = ACTIONS(81), + }, + [72] = { + [sym__simple_statements] = STATE(504), + [sym_import_statement] = STATE(1173), + [sym_future_import_statement] = STATE(1173), + [sym_import_from_statement] = STATE(1173), + [sym_print_statement] = STATE(1173), + [sym_assert_statement] = STATE(1173), + [sym_expression_statement] = STATE(1173), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1173), + [sym_delete_statement] = STATE(1173), + [sym_raise_statement] = STATE(1173), + [sym_pass_statement] = STATE(1173), + [sym_break_statement] = STATE(1173), + [sym_continue_statement] = STATE(1173), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1173), + [sym_nonlocal_statement] = STATE(1173), + [sym_exec_statement] = STATE(1173), + [sym_type_alias_statement] = STATE(1173), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [sym_identifier] = ACTIONS(7), + [anon_sym_import] = ACTIONS(9), + [anon_sym_from] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_print] = ACTIONS(17), + [anon_sym_assert] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_raise] = ACTIONS(25), + [anon_sym_pass] = ACTIONS(27), + [anon_sym_break] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -16138,59 +15839,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [73] = { - [sym__simple_statements] = STATE(334), - [sym_import_statement] = STATE(1144), - [sym_future_import_statement] = STATE(1144), - [sym_import_from_statement] = STATE(1144), - [sym_print_statement] = STATE(1144), - [sym_assert_statement] = STATE(1144), - [sym_expression_statement] = STATE(1144), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1144), - [sym_delete_statement] = STATE(1144), - [sym_raise_statement] = STATE(1144), - [sym_pass_statement] = STATE(1144), - [sym_break_statement] = STATE(1144), - [sym_continue_statement] = STATE(1144), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1144), - [sym_nonlocal_statement] = STATE(1144), - [sym_exec_statement] = STATE(1144), - [sym_type_alias_statement] = STATE(1144), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [sym__simple_statements] = STATE(493), + [sym_import_statement] = STATE(1173), + [sym_future_import_statement] = STATE(1173), + [sym_import_from_statement] = STATE(1173), + [sym_print_statement] = STATE(1173), + [sym_assert_statement] = STATE(1173), + [sym_expression_statement] = STATE(1173), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1173), + [sym_delete_statement] = STATE(1173), + [sym_raise_statement] = STATE(1173), + [sym_pass_statement] = STATE(1173), + [sym_break_statement] = STATE(1173), + [sym_continue_statement] = STATE(1173), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1173), + [sym_nonlocal_statement] = STATE(1173), + [sym_exec_statement] = STATE(1173), + [sym_type_alias_statement] = STATE(1173), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16204,8 +15905,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -16232,59 +15933,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [74] = { - [sym__simple_statements] = STATE(502), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [sym__simple_statements] = STATE(282), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16298,8 +15999,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -16326,59 +16027,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [75] = { - [sym__simple_statements] = STATE(482), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [sym__simple_statements] = STATE(439), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16392,8 +16093,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -16420,59 +16121,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [76] = { - [sym__simple_statements] = STATE(1009), - [sym_import_statement] = STATE(1208), - [sym_future_import_statement] = STATE(1208), - [sym_import_from_statement] = STATE(1208), - [sym_print_statement] = STATE(1208), - [sym_assert_statement] = STATE(1208), - [sym_expression_statement] = STATE(1208), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1208), - [sym_delete_statement] = STATE(1208), - [sym_raise_statement] = STATE(1208), - [sym_pass_statement] = STATE(1208), - [sym_break_statement] = STATE(1208), - [sym_continue_statement] = STATE(1208), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1208), - [sym_nonlocal_statement] = STATE(1208), - [sym_exec_statement] = STATE(1208), - [sym_type_alias_statement] = STATE(1208), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [sym__simple_statements] = STATE(526), + [sym_import_statement] = STATE(1173), + [sym_future_import_statement] = STATE(1173), + [sym_import_from_statement] = STATE(1173), + [sym_print_statement] = STATE(1173), + [sym_assert_statement] = STATE(1173), + [sym_expression_statement] = STATE(1173), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1173), + [sym_delete_statement] = STATE(1173), + [sym_raise_statement] = STATE(1173), + [sym_pass_statement] = STATE(1173), + [sym_break_statement] = STATE(1173), + [sym_continue_statement] = STATE(1173), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1173), + [sym_nonlocal_statement] = STATE(1173), + [sym_exec_statement] = STATE(1173), + [sym_type_alias_statement] = STATE(1173), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16486,8 +16187,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -16514,59 +16215,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [77] = { - [sym__simple_statements] = STATE(507), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [sym__simple_statements] = STATE(555), + [sym_import_statement] = STATE(1173), + [sym_future_import_statement] = STATE(1173), + [sym_import_from_statement] = STATE(1173), + [sym_print_statement] = STATE(1173), + [sym_assert_statement] = STATE(1173), + [sym_expression_statement] = STATE(1173), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1173), + [sym_delete_statement] = STATE(1173), + [sym_raise_statement] = STATE(1173), + [sym_pass_statement] = STATE(1173), + [sym_break_statement] = STATE(1173), + [sym_continue_statement] = STATE(1173), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1173), + [sym_nonlocal_statement] = STATE(1173), + [sym_exec_statement] = STATE(1173), + [sym_type_alias_statement] = STATE(1173), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16580,8 +16281,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -16608,59 +16309,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [78] = { - [sym__simple_statements] = STATE(548), - [sym_import_statement] = STATE(1210), - [sym_future_import_statement] = STATE(1210), - [sym_import_from_statement] = STATE(1210), - [sym_print_statement] = STATE(1210), - [sym_assert_statement] = STATE(1210), - [sym_expression_statement] = STATE(1210), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1210), - [sym_delete_statement] = STATE(1210), - [sym_raise_statement] = STATE(1210), - [sym_pass_statement] = STATE(1210), - [sym_break_statement] = STATE(1210), - [sym_continue_statement] = STATE(1210), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1210), - [sym_nonlocal_statement] = STATE(1210), - [sym_exec_statement] = STATE(1210), - [sym_type_alias_statement] = STATE(1210), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [sym__simple_statements] = STATE(487), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16674,8 +16375,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -16702,59 +16403,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [79] = { - [sym__simple_statements] = STATE(522), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [sym__simple_statements] = STATE(482), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16768,8 +16469,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -16796,59 +16497,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [80] = { - [sym__simple_statements] = STATE(497), - [sym_import_statement] = STATE(1210), - [sym_future_import_statement] = STATE(1210), - [sym_import_from_statement] = STATE(1210), - [sym_print_statement] = STATE(1210), - [sym_assert_statement] = STATE(1210), - [sym_expression_statement] = STATE(1210), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1210), - [sym_delete_statement] = STATE(1210), - [sym_raise_statement] = STATE(1210), - [sym_pass_statement] = STATE(1210), - [sym_break_statement] = STATE(1210), - [sym_continue_statement] = STATE(1210), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1210), - [sym_nonlocal_statement] = STATE(1210), - [sym_exec_statement] = STATE(1210), - [sym_type_alias_statement] = STATE(1210), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [sym__simple_statements] = STATE(459), + [sym_import_statement] = STATE(1173), + [sym_future_import_statement] = STATE(1173), + [sym_import_from_statement] = STATE(1173), + [sym_print_statement] = STATE(1173), + [sym_assert_statement] = STATE(1173), + [sym_expression_statement] = STATE(1173), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1173), + [sym_delete_statement] = STATE(1173), + [sym_raise_statement] = STATE(1173), + [sym_pass_statement] = STATE(1173), + [sym_break_statement] = STATE(1173), + [sym_continue_statement] = STATE(1173), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1173), + [sym_nonlocal_statement] = STATE(1173), + [sym_exec_statement] = STATE(1173), + [sym_type_alias_statement] = STATE(1173), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16862,8 +16563,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -16890,59 +16591,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [81] = { - [sym__simple_statements] = STATE(565), - [sym_import_statement] = STATE(1210), - [sym_future_import_statement] = STATE(1210), - [sym_import_from_statement] = STATE(1210), - [sym_print_statement] = STATE(1210), - [sym_assert_statement] = STATE(1210), - [sym_expression_statement] = STATE(1210), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1210), - [sym_delete_statement] = STATE(1210), - [sym_raise_statement] = STATE(1210), - [sym_pass_statement] = STATE(1210), - [sym_break_statement] = STATE(1210), - [sym_continue_statement] = STATE(1210), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1210), - [sym_nonlocal_statement] = STATE(1210), - [sym_exec_statement] = STATE(1210), - [sym_type_alias_statement] = STATE(1210), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [sym__simple_statements] = STATE(411), + [sym_import_statement] = STATE(1173), + [sym_future_import_statement] = STATE(1173), + [sym_import_from_statement] = STATE(1173), + [sym_print_statement] = STATE(1173), + [sym_assert_statement] = STATE(1173), + [sym_expression_statement] = STATE(1173), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1173), + [sym_delete_statement] = STATE(1173), + [sym_raise_statement] = STATE(1173), + [sym_pass_statement] = STATE(1173), + [sym_break_statement] = STATE(1173), + [sym_continue_statement] = STATE(1173), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1173), + [sym_nonlocal_statement] = STATE(1173), + [sym_exec_statement] = STATE(1173), + [sym_type_alias_statement] = STATE(1173), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16956,8 +16657,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -16984,59 +16685,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [82] = { - [sym__simple_statements] = STATE(499), - [sym_import_statement] = STATE(1210), - [sym_future_import_statement] = STATE(1210), - [sym_import_from_statement] = STATE(1210), - [sym_print_statement] = STATE(1210), - [sym_assert_statement] = STATE(1210), - [sym_expression_statement] = STATE(1210), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1210), - [sym_delete_statement] = STATE(1210), - [sym_raise_statement] = STATE(1210), - [sym_pass_statement] = STATE(1210), - [sym_break_statement] = STATE(1210), - [sym_continue_statement] = STATE(1210), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1210), - [sym_nonlocal_statement] = STATE(1210), - [sym_exec_statement] = STATE(1210), - [sym_type_alias_statement] = STATE(1210), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [sym__simple_statements] = STATE(502), + [sym_import_statement] = STATE(1173), + [sym_future_import_statement] = STATE(1173), + [sym_import_from_statement] = STATE(1173), + [sym_print_statement] = STATE(1173), + [sym_assert_statement] = STATE(1173), + [sym_expression_statement] = STATE(1173), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1173), + [sym_delete_statement] = STATE(1173), + [sym_raise_statement] = STATE(1173), + [sym_pass_statement] = STATE(1173), + [sym_break_statement] = STATE(1173), + [sym_continue_statement] = STATE(1173), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1173), + [sym_nonlocal_statement] = STATE(1173), + [sym_exec_statement] = STATE(1173), + [sym_type_alias_statement] = STATE(1173), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17050,8 +16751,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -17078,59 +16779,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [83] = { - [sym__simple_statements] = STATE(553), - [sym_import_statement] = STATE(1210), - [sym_future_import_statement] = STATE(1210), - [sym_import_from_statement] = STATE(1210), - [sym_print_statement] = STATE(1210), - [sym_assert_statement] = STATE(1210), - [sym_expression_statement] = STATE(1210), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1210), - [sym_delete_statement] = STATE(1210), - [sym_raise_statement] = STATE(1210), - [sym_pass_statement] = STATE(1210), - [sym_break_statement] = STATE(1210), - [sym_continue_statement] = STATE(1210), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1210), - [sym_nonlocal_statement] = STATE(1210), - [sym_exec_statement] = STATE(1210), - [sym_type_alias_statement] = STATE(1210), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [sym__simple_statements] = STATE(319), + [sym_import_statement] = STATE(1173), + [sym_future_import_statement] = STATE(1173), + [sym_import_from_statement] = STATE(1173), + [sym_print_statement] = STATE(1173), + [sym_assert_statement] = STATE(1173), + [sym_expression_statement] = STATE(1173), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1173), + [sym_delete_statement] = STATE(1173), + [sym_raise_statement] = STATE(1173), + [sym_pass_statement] = STATE(1173), + [sym_break_statement] = STATE(1173), + [sym_continue_statement] = STATE(1173), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1173), + [sym_nonlocal_statement] = STATE(1173), + [sym_exec_statement] = STATE(1173), + [sym_type_alias_statement] = STATE(1173), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17144,8 +16845,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -17172,59 +16873,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [84] = { - [sym__simple_statements] = STATE(578), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [sym__simple_statements] = STATE(351), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17238,8 +16939,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -17266,59 +16967,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [85] = { - [sym__simple_statements] = STATE(492), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [sym__simple_statements] = STATE(350), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17332,8 +17033,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -17360,59 +17061,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [86] = { - [sym__simple_statements] = STATE(547), - [sym_import_statement] = STATE(1210), - [sym_future_import_statement] = STATE(1210), - [sym_import_from_statement] = STATE(1210), - [sym_print_statement] = STATE(1210), - [sym_assert_statement] = STATE(1210), - [sym_expression_statement] = STATE(1210), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1210), - [sym_delete_statement] = STATE(1210), - [sym_raise_statement] = STATE(1210), - [sym_pass_statement] = STATE(1210), - [sym_break_statement] = STATE(1210), - [sym_continue_statement] = STATE(1210), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1210), - [sym_nonlocal_statement] = STATE(1210), - [sym_exec_statement] = STATE(1210), - [sym_type_alias_statement] = STATE(1210), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [sym__simple_statements] = STATE(562), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17426,8 +17127,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -17454,59 +17155,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [87] = { - [sym__simple_statements] = STATE(380), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [sym__simple_statements] = STATE(462), + [sym_import_statement] = STATE(1173), + [sym_future_import_statement] = STATE(1173), + [sym_import_from_statement] = STATE(1173), + [sym_print_statement] = STATE(1173), + [sym_assert_statement] = STATE(1173), + [sym_expression_statement] = STATE(1173), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1173), + [sym_delete_statement] = STATE(1173), + [sym_raise_statement] = STATE(1173), + [sym_pass_statement] = STATE(1173), + [sym_break_statement] = STATE(1173), + [sym_continue_statement] = STATE(1173), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1173), + [sym_nonlocal_statement] = STATE(1173), + [sym_exec_statement] = STATE(1173), + [sym_type_alias_statement] = STATE(1173), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17520,8 +17221,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -17548,59 +17249,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [88] = { - [sym__simple_statements] = STATE(381), - [sym_import_statement] = STATE(1144), - [sym_future_import_statement] = STATE(1144), - [sym_import_from_statement] = STATE(1144), - [sym_print_statement] = STATE(1144), - [sym_assert_statement] = STATE(1144), - [sym_expression_statement] = STATE(1144), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1144), - [sym_delete_statement] = STATE(1144), - [sym_raise_statement] = STATE(1144), - [sym_pass_statement] = STATE(1144), - [sym_break_statement] = STATE(1144), - [sym_continue_statement] = STATE(1144), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1144), - [sym_nonlocal_statement] = STATE(1144), - [sym_exec_statement] = STATE(1144), - [sym_type_alias_statement] = STATE(1144), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [sym__simple_statements] = STATE(551), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17614,8 +17315,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -17642,59 +17343,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [89] = { - [sym__simple_statements] = STATE(533), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [sym__simple_statements] = STATE(460), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17708,8 +17409,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -17736,153 +17437,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [90] = { - [sym_chevron] = STATE(1133), - [sym_named_expression] = STATE(993), - [sym_expression] = STATE(1026), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_attribute] = STATE(801), - [sym_subscript] = STATE(801), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [sym_identifier] = ACTIONS(391), - [anon_sym_DOT] = ACTIONS(276), - [anon_sym_LPAREN] = ACTIONS(303), - [anon_sym_COMMA] = ACTIONS(280), - [anon_sym_STAR] = ACTIONS(276), - [anon_sym_print] = ACTIONS(393), - [anon_sym_GT_GT] = ACTIONS(395), - [anon_sym_COLON_EQ] = ACTIONS(287), - [anon_sym_if] = ACTIONS(276), - [anon_sym_COLON] = ACTIONS(289), - [anon_sym_async] = ACTIONS(393), - [anon_sym_in] = ACTIONS(276), - [anon_sym_match] = ACTIONS(393), - [anon_sym_PIPE] = ACTIONS(276), - [anon_sym_DASH] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(303), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(276), - [anon_sym_EQ] = ACTIONS(289), - [anon_sym_exec] = ACTIONS(393), - [anon_sym_type] = ACTIONS(393), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_not] = ACTIONS(276), - [anon_sym_and] = ACTIONS(276), - [anon_sym_or] = ACTIONS(276), - [anon_sym_SLASH] = ACTIONS(276), - [anon_sym_PERCENT] = ACTIONS(276), - [anon_sym_SLASH_SLASH] = ACTIONS(276), - [anon_sym_AMP] = ACTIONS(276), - [anon_sym_CARET] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(276), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(276), - [anon_sym_LT_EQ] = ACTIONS(303), - [anon_sym_EQ_EQ] = ACTIONS(303), - [anon_sym_BANG_EQ] = ACTIONS(303), - [anon_sym_GT_EQ] = ACTIONS(303), - [anon_sym_GT] = ACTIONS(276), - [anon_sym_LT_GT] = ACTIONS(303), - [anon_sym_is] = ACTIONS(276), - [anon_sym_lambda] = ACTIONS(71), - [anon_sym_PLUS_EQ] = ACTIONS(307), - [anon_sym_DASH_EQ] = ACTIONS(307), - [anon_sym_STAR_EQ] = ACTIONS(307), - [anon_sym_SLASH_EQ] = ACTIONS(307), - [anon_sym_AT_EQ] = ACTIONS(307), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(307), - [anon_sym_PERCENT_EQ] = ACTIONS(307), - [anon_sym_STAR_STAR_EQ] = ACTIONS(307), - [anon_sym_GT_GT_EQ] = ACTIONS(307), - [anon_sym_LT_LT_EQ] = ACTIONS(307), - [anon_sym_AMP_EQ] = ACTIONS(307), - [anon_sym_CARET_EQ] = ACTIONS(307), - [anon_sym_PIPE_EQ] = ACTIONS(307), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(397), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(303), - [sym__newline] = ACTIONS(303), - [sym__string_start] = ACTIONS(81), - }, - [91] = { - [sym__simple_statements] = STATE(491), - [sym_import_statement] = STATE(1210), - [sym_future_import_statement] = STATE(1210), - [sym_import_from_statement] = STATE(1210), - [sym_print_statement] = STATE(1210), - [sym_assert_statement] = STATE(1210), - [sym_expression_statement] = STATE(1210), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1210), - [sym_delete_statement] = STATE(1210), - [sym_raise_statement] = STATE(1210), - [sym_pass_statement] = STATE(1210), - [sym_break_statement] = STATE(1210), - [sym_continue_statement] = STATE(1210), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1210), - [sym_nonlocal_statement] = STATE(1210), - [sym_exec_statement] = STATE(1210), - [sym_type_alias_statement] = STATE(1210), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [sym__simple_statements] = STATE(347), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17896,8 +17503,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_STAR_STAR] = ACTIONS(53), + [anon_sym_global] = ACTIONS(57), + [anon_sym_nonlocal] = ACTIONS(59), + [anon_sym_exec] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(47), + [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__newline] = ACTIONS(391), + [sym__indent] = ACTIONS(393), + [sym__string_start] = ACTIONS(81), + }, + [91] = { + [sym__simple_statements] = STATE(530), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [sym_identifier] = ACTIONS(7), + [anon_sym_import] = ACTIONS(9), + [anon_sym_from] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_print] = ACTIONS(17), + [anon_sym_assert] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_raise] = ACTIONS(25), + [anon_sym_pass] = ACTIONS(27), + [anon_sym_break] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_STAR_STAR] = ACTIONS(53), + [anon_sym_global] = ACTIONS(57), + [anon_sym_nonlocal] = ACTIONS(59), + [anon_sym_exec] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(47), + [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__newline] = ACTIONS(395), + [sym__indent] = ACTIONS(397), + [sym__string_start] = ACTIONS(81), + }, + [92] = { + [sym__simple_statements] = STATE(536), + [sym_import_statement] = STATE(1173), + [sym_future_import_statement] = STATE(1173), + [sym_import_from_statement] = STATE(1173), + [sym_print_statement] = STATE(1173), + [sym_assert_statement] = STATE(1173), + [sym_expression_statement] = STATE(1173), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1173), + [sym_delete_statement] = STATE(1173), + [sym_raise_statement] = STATE(1173), + [sym_pass_statement] = STATE(1173), + [sym_break_statement] = STATE(1173), + [sym_continue_statement] = STATE(1173), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1173), + [sym_nonlocal_statement] = STATE(1173), + [sym_exec_statement] = STATE(1173), + [sym_type_alias_statement] = STATE(1173), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [sym_identifier] = ACTIONS(7), + [anon_sym_import] = ACTIONS(9), + [anon_sym_from] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_print] = ACTIONS(17), + [anon_sym_assert] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_raise] = ACTIONS(25), + [anon_sym_pass] = ACTIONS(27), + [anon_sym_break] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -17923,60 +17718,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(401), [sym__string_start] = ACTIONS(81), }, - [92] = { - [sym__simple_statements] = STATE(589), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [93] = { + [sym__simple_statements] = STATE(356), + [sym_import_statement] = STATE(1173), + [sym_future_import_statement] = STATE(1173), + [sym_import_from_statement] = STATE(1173), + [sym_print_statement] = STATE(1173), + [sym_assert_statement] = STATE(1173), + [sym_expression_statement] = STATE(1173), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1173), + [sym_delete_statement] = STATE(1173), + [sym_raise_statement] = STATE(1173), + [sym_pass_statement] = STATE(1173), + [sym_break_statement] = STATE(1173), + [sym_continue_statement] = STATE(1173), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1173), + [sym_nonlocal_statement] = STATE(1173), + [sym_exec_statement] = STATE(1173), + [sym_type_alias_statement] = STATE(1173), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17990,8 +17785,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -18017,60 +17812,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(405), [sym__string_start] = ACTIONS(81), }, - [93] = { - [sym__simple_statements] = STATE(516), - [sym_import_statement] = STATE(1210), - [sym_future_import_statement] = STATE(1210), - [sym_import_from_statement] = STATE(1210), - [sym_print_statement] = STATE(1210), - [sym_assert_statement] = STATE(1210), - [sym_expression_statement] = STATE(1210), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1210), - [sym_delete_statement] = STATE(1210), - [sym_raise_statement] = STATE(1210), - [sym_pass_statement] = STATE(1210), - [sym_break_statement] = STATE(1210), - [sym_continue_statement] = STATE(1210), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1210), - [sym_nonlocal_statement] = STATE(1210), - [sym_exec_statement] = STATE(1210), - [sym_type_alias_statement] = STATE(1210), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [94] = { + [sym__simple_statements] = STATE(529), + [sym_import_statement] = STATE(1173), + [sym_future_import_statement] = STATE(1173), + [sym_import_from_statement] = STATE(1173), + [sym_print_statement] = STATE(1173), + [sym_assert_statement] = STATE(1173), + [sym_expression_statement] = STATE(1173), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1173), + [sym_delete_statement] = STATE(1173), + [sym_raise_statement] = STATE(1173), + [sym_pass_statement] = STATE(1173), + [sym_break_statement] = STATE(1173), + [sym_continue_statement] = STATE(1173), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1173), + [sym_nonlocal_statement] = STATE(1173), + [sym_exec_statement] = STATE(1173), + [sym_type_alias_statement] = STATE(1173), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18084,8 +17879,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -18111,60 +17906,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(409), [sym__string_start] = ACTIONS(81), }, - [94] = { - [sym__simple_statements] = STATE(585), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [95] = { + [sym__simple_statements] = STATE(332), + [sym_import_statement] = STATE(1173), + [sym_future_import_statement] = STATE(1173), + [sym_import_from_statement] = STATE(1173), + [sym_print_statement] = STATE(1173), + [sym_assert_statement] = STATE(1173), + [sym_expression_statement] = STATE(1173), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1173), + [sym_delete_statement] = STATE(1173), + [sym_raise_statement] = STATE(1173), + [sym_pass_statement] = STATE(1173), + [sym_break_statement] = STATE(1173), + [sym_continue_statement] = STATE(1173), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1173), + [sym_nonlocal_statement] = STATE(1173), + [sym_exec_statement] = STATE(1173), + [sym_type_alias_statement] = STATE(1173), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18178,8 +17973,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -18205,60 +18000,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(413), [sym__string_start] = ACTIONS(81), }, - [95] = { - [sym__simple_statements] = STATE(583), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [96] = { + [sym__simple_statements] = STATE(469), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18272,8 +18067,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -18299,60 +18094,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(417), [sym__string_start] = ACTIONS(81), }, - [96] = { - [sym__simple_statements] = STATE(446), - [sym_import_statement] = STATE(1210), - [sym_future_import_statement] = STATE(1210), - [sym_import_from_statement] = STATE(1210), - [sym_print_statement] = STATE(1210), - [sym_assert_statement] = STATE(1210), - [sym_expression_statement] = STATE(1210), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1210), - [sym_delete_statement] = STATE(1210), - [sym_raise_statement] = STATE(1210), - [sym_pass_statement] = STATE(1210), - [sym_break_statement] = STATE(1210), - [sym_continue_statement] = STATE(1210), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1210), - [sym_nonlocal_statement] = STATE(1210), - [sym_exec_statement] = STATE(1210), - [sym_type_alias_statement] = STATE(1210), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [97] = { + [sym__simple_statements] = STATE(424), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18366,8 +18161,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -18393,60 +18188,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(421), [sym__string_start] = ACTIONS(81), }, - [97] = { - [sym__simple_statements] = STATE(364), - [sym_import_statement] = STATE(1163), - [sym_future_import_statement] = STATE(1163), - [sym_import_from_statement] = STATE(1163), - [sym_print_statement] = STATE(1163), - [sym_assert_statement] = STATE(1163), - [sym_expression_statement] = STATE(1163), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1163), - [sym_delete_statement] = STATE(1163), - [sym_raise_statement] = STATE(1163), - [sym_pass_statement] = STATE(1163), - [sym_break_statement] = STATE(1163), - [sym_continue_statement] = STATE(1163), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1163), - [sym_nonlocal_statement] = STATE(1163), - [sym_exec_statement] = STATE(1163), - [sym_type_alias_statement] = STATE(1163), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [98] = { + [sym__simple_statements] = STATE(505), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18460,8 +18255,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -18487,60 +18282,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(425), [sym__string_start] = ACTIONS(81), }, - [98] = { - [sym__simple_statements] = STATE(532), - [sym_import_statement] = STATE(1210), - [sym_future_import_statement] = STATE(1210), - [sym_import_from_statement] = STATE(1210), - [sym_print_statement] = STATE(1210), - [sym_assert_statement] = STATE(1210), - [sym_expression_statement] = STATE(1210), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1210), - [sym_delete_statement] = STATE(1210), - [sym_raise_statement] = STATE(1210), - [sym_pass_statement] = STATE(1210), - [sym_break_statement] = STATE(1210), - [sym_continue_statement] = STATE(1210), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1210), - [sym_nonlocal_statement] = STATE(1210), - [sym_exec_statement] = STATE(1210), - [sym_type_alias_statement] = STATE(1210), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [99] = { + [sym__simple_statements] = STATE(546), + [sym_import_statement] = STATE(1173), + [sym_future_import_statement] = STATE(1173), + [sym_import_from_statement] = STATE(1173), + [sym_print_statement] = STATE(1173), + [sym_assert_statement] = STATE(1173), + [sym_expression_statement] = STATE(1173), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1173), + [sym_delete_statement] = STATE(1173), + [sym_raise_statement] = STATE(1173), + [sym_pass_statement] = STATE(1173), + [sym_break_statement] = STATE(1173), + [sym_continue_statement] = STATE(1173), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1173), + [sym_nonlocal_statement] = STATE(1173), + [sym_exec_statement] = STATE(1173), + [sym_type_alias_statement] = STATE(1173), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18554,8 +18349,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -18581,60 +18376,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(429), [sym__string_start] = ACTIONS(81), }, - [99] = { - [sym__simple_statements] = STATE(487), - [sym_import_statement] = STATE(1210), - [sym_future_import_statement] = STATE(1210), - [sym_import_from_statement] = STATE(1210), - [sym_print_statement] = STATE(1210), - [sym_assert_statement] = STATE(1210), - [sym_expression_statement] = STATE(1210), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1210), - [sym_delete_statement] = STATE(1210), - [sym_raise_statement] = STATE(1210), - [sym_pass_statement] = STATE(1210), - [sym_break_statement] = STATE(1210), - [sym_continue_statement] = STATE(1210), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1210), - [sym_nonlocal_statement] = STATE(1210), - [sym_exec_statement] = STATE(1210), - [sym_type_alias_statement] = STATE(1210), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [100] = { + [sym__simple_statements] = STATE(457), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18648,8 +18443,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -18675,60 +18470,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(433), [sym__string_start] = ACTIONS(81), }, - [100] = { - [sym__simple_statements] = STATE(550), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [101] = { + [sym__simple_statements] = STATE(346), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18742,8 +18537,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -18769,60 +18564,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(437), [sym__string_start] = ACTIONS(81), }, - [101] = { - [sym__simple_statements] = STATE(432), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [102] = { + [sym__simple_statements] = STATE(498), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18836,8 +18631,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -18863,60 +18658,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(441), [sym__string_start] = ACTIONS(81), }, - [102] = { - [sym__simple_statements] = STATE(339), - [sym_import_statement] = STATE(1144), - [sym_future_import_statement] = STATE(1144), - [sym_import_from_statement] = STATE(1144), - [sym_print_statement] = STATE(1144), - [sym_assert_statement] = STATE(1144), - [sym_expression_statement] = STATE(1144), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1144), - [sym_delete_statement] = STATE(1144), - [sym_raise_statement] = STATE(1144), - [sym_pass_statement] = STATE(1144), - [sym_break_statement] = STATE(1144), - [sym_continue_statement] = STATE(1144), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1144), - [sym_nonlocal_statement] = STATE(1144), - [sym_exec_statement] = STATE(1144), - [sym_type_alias_statement] = STATE(1144), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [103] = { + [sym__simple_statements] = STATE(438), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18930,8 +18725,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -18957,60 +18752,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(445), [sym__string_start] = ACTIONS(81), }, - [103] = { - [sym__simple_statements] = STATE(472), - [sym_import_statement] = STATE(1210), - [sym_future_import_statement] = STATE(1210), - [sym_import_from_statement] = STATE(1210), - [sym_print_statement] = STATE(1210), - [sym_assert_statement] = STATE(1210), - [sym_expression_statement] = STATE(1210), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1210), - [sym_delete_statement] = STATE(1210), - [sym_raise_statement] = STATE(1210), - [sym_pass_statement] = STATE(1210), - [sym_break_statement] = STATE(1210), - [sym_continue_statement] = STATE(1210), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1210), - [sym_nonlocal_statement] = STATE(1210), - [sym_exec_statement] = STATE(1210), - [sym_type_alias_statement] = STATE(1210), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [104] = { + [sym__simple_statements] = STATE(467), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19024,8 +18819,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -19051,60 +18846,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(449), [sym__string_start] = ACTIONS(81), }, - [104] = { - [sym__simple_statements] = STATE(593), - [sym_import_statement] = STATE(1210), - [sym_future_import_statement] = STATE(1210), - [sym_import_from_statement] = STATE(1210), - [sym_print_statement] = STATE(1210), - [sym_assert_statement] = STATE(1210), - [sym_expression_statement] = STATE(1210), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1210), - [sym_delete_statement] = STATE(1210), - [sym_raise_statement] = STATE(1210), - [sym_pass_statement] = STATE(1210), - [sym_break_statement] = STATE(1210), - [sym_continue_statement] = STATE(1210), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1210), - [sym_nonlocal_statement] = STATE(1210), - [sym_exec_statement] = STATE(1210), - [sym_type_alias_statement] = STATE(1210), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [105] = { + [sym__simple_statements] = STATE(474), + [sym_import_statement] = STATE(1173), + [sym_future_import_statement] = STATE(1173), + [sym_import_from_statement] = STATE(1173), + [sym_print_statement] = STATE(1173), + [sym_assert_statement] = STATE(1173), + [sym_expression_statement] = STATE(1173), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1173), + [sym_delete_statement] = STATE(1173), + [sym_raise_statement] = STATE(1173), + [sym_pass_statement] = STATE(1173), + [sym_break_statement] = STATE(1173), + [sym_continue_statement] = STATE(1173), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1173), + [sym_nonlocal_statement] = STATE(1173), + [sym_exec_statement] = STATE(1173), + [sym_type_alias_statement] = STATE(1173), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19118,8 +18913,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -19145,60 +18940,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(453), [sym__string_start] = ACTIONS(81), }, - [105] = { - [sym__simple_statements] = STATE(542), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [106] = { + [sym__simple_statements] = STATE(384), + [sym_import_statement] = STATE(1173), + [sym_future_import_statement] = STATE(1173), + [sym_import_from_statement] = STATE(1173), + [sym_print_statement] = STATE(1173), + [sym_assert_statement] = STATE(1173), + [sym_expression_statement] = STATE(1173), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1173), + [sym_delete_statement] = STATE(1173), + [sym_raise_statement] = STATE(1173), + [sym_pass_statement] = STATE(1173), + [sym_break_statement] = STATE(1173), + [sym_continue_statement] = STATE(1173), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1173), + [sym_nonlocal_statement] = STATE(1173), + [sym_exec_statement] = STATE(1173), + [sym_type_alias_statement] = STATE(1173), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19212,8 +19007,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -19239,60 +19034,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(457), [sym__string_start] = ACTIONS(81), }, - [106] = { - [sym__simple_statements] = STATE(587), - [sym_import_statement] = STATE(1210), - [sym_future_import_statement] = STATE(1210), - [sym_import_from_statement] = STATE(1210), - [sym_print_statement] = STATE(1210), - [sym_assert_statement] = STATE(1210), - [sym_expression_statement] = STATE(1210), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1210), - [sym_delete_statement] = STATE(1210), - [sym_raise_statement] = STATE(1210), - [sym_pass_statement] = STATE(1210), - [sym_break_statement] = STATE(1210), - [sym_continue_statement] = STATE(1210), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1210), - [sym_nonlocal_statement] = STATE(1210), - [sym_exec_statement] = STATE(1210), - [sym_type_alias_statement] = STATE(1210), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [107] = { + [sym__simple_statements] = STATE(1003), + [sym_import_statement] = STATE(1163), + [sym_future_import_statement] = STATE(1163), + [sym_import_from_statement] = STATE(1163), + [sym_print_statement] = STATE(1163), + [sym_assert_statement] = STATE(1163), + [sym_expression_statement] = STATE(1163), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1163), + [sym_delete_statement] = STATE(1163), + [sym_raise_statement] = STATE(1163), + [sym_pass_statement] = STATE(1163), + [sym_break_statement] = STATE(1163), + [sym_continue_statement] = STATE(1163), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1163), + [sym_nonlocal_statement] = STATE(1163), + [sym_exec_statement] = STATE(1163), + [sym_type_alias_statement] = STATE(1163), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19306,8 +19101,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -19333,60 +19128,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(461), [sym__string_start] = ACTIONS(81), }, - [107] = { - [sym__simple_statements] = STATE(508), - [sym_import_statement] = STATE(1210), - [sym_future_import_statement] = STATE(1210), - [sym_import_from_statement] = STATE(1210), - [sym_print_statement] = STATE(1210), - [sym_assert_statement] = STATE(1210), - [sym_expression_statement] = STATE(1210), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1210), - [sym_delete_statement] = STATE(1210), - [sym_raise_statement] = STATE(1210), - [sym_pass_statement] = STATE(1210), - [sym_break_statement] = STATE(1210), - [sym_continue_statement] = STATE(1210), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1210), - [sym_nonlocal_statement] = STATE(1210), - [sym_exec_statement] = STATE(1210), - [sym_type_alias_statement] = STATE(1210), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [108] = { + [sym__simple_statements] = STATE(464), + [sym_import_statement] = STATE(1173), + [sym_future_import_statement] = STATE(1173), + [sym_import_from_statement] = STATE(1173), + [sym_print_statement] = STATE(1173), + [sym_assert_statement] = STATE(1173), + [sym_expression_statement] = STATE(1173), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1173), + [sym_delete_statement] = STATE(1173), + [sym_raise_statement] = STATE(1173), + [sym_pass_statement] = STATE(1173), + [sym_break_statement] = STATE(1173), + [sym_continue_statement] = STATE(1173), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1173), + [sym_nonlocal_statement] = STATE(1173), + [sym_exec_statement] = STATE(1173), + [sym_type_alias_statement] = STATE(1173), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19400,8 +19195,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -19427,60 +19222,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(465), [sym__string_start] = ACTIONS(81), }, - [108] = { - [sym__simple_statements] = STATE(535), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [109] = { + [sym__simple_statements] = STATE(522), + [sym_import_statement] = STATE(1173), + [sym_future_import_statement] = STATE(1173), + [sym_import_from_statement] = STATE(1173), + [sym_print_statement] = STATE(1173), + [sym_assert_statement] = STATE(1173), + [sym_expression_statement] = STATE(1173), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1173), + [sym_delete_statement] = STATE(1173), + [sym_raise_statement] = STATE(1173), + [sym_pass_statement] = STATE(1173), + [sym_break_statement] = STATE(1173), + [sym_continue_statement] = STATE(1173), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1173), + [sym_nonlocal_statement] = STATE(1173), + [sym_exec_statement] = STATE(1173), + [sym_type_alias_statement] = STATE(1173), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19494,8 +19289,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -19521,60 +19316,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(469), [sym__string_start] = ACTIONS(81), }, - [109] = { - [sym__simple_statements] = STATE(386), - [sym_import_statement] = STATE(1210), - [sym_future_import_statement] = STATE(1210), - [sym_import_from_statement] = STATE(1210), - [sym_print_statement] = STATE(1210), - [sym_assert_statement] = STATE(1210), - [sym_expression_statement] = STATE(1210), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1210), - [sym_delete_statement] = STATE(1210), - [sym_raise_statement] = STATE(1210), - [sym_pass_statement] = STATE(1210), - [sym_break_statement] = STATE(1210), - [sym_continue_statement] = STATE(1210), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1210), - [sym_nonlocal_statement] = STATE(1210), - [sym_exec_statement] = STATE(1210), - [sym_type_alias_statement] = STATE(1210), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [110] = { + [sym__simple_statements] = STATE(256), + [sym_import_statement] = STATE(1173), + [sym_future_import_statement] = STATE(1173), + [sym_import_from_statement] = STATE(1173), + [sym_print_statement] = STATE(1173), + [sym_assert_statement] = STATE(1173), + [sym_expression_statement] = STATE(1173), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1173), + [sym_delete_statement] = STATE(1173), + [sym_raise_statement] = STATE(1173), + [sym_pass_statement] = STATE(1173), + [sym_break_statement] = STATE(1173), + [sym_continue_statement] = STATE(1173), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1173), + [sym_nonlocal_statement] = STATE(1173), + [sym_exec_statement] = STATE(1173), + [sym_type_alias_statement] = STATE(1173), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19588,8 +19383,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -19615,60 +19410,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(473), [sym__string_start] = ACTIONS(81), }, - [110] = { - [sym__simple_statements] = STATE(529), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [111] = { + [sym__simple_statements] = STATE(486), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19682,8 +19477,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -19709,60 +19504,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(477), [sym__string_start] = ACTIONS(81), }, - [111] = { - [sym__simple_statements] = STATE(294), - [sym_import_statement] = STATE(1210), - [sym_future_import_statement] = STATE(1210), - [sym_import_from_statement] = STATE(1210), - [sym_print_statement] = STATE(1210), - [sym_assert_statement] = STATE(1210), - [sym_expression_statement] = STATE(1210), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1210), - [sym_delete_statement] = STATE(1210), - [sym_raise_statement] = STATE(1210), - [sym_pass_statement] = STATE(1210), - [sym_break_statement] = STATE(1210), - [sym_continue_statement] = STATE(1210), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1210), - [sym_nonlocal_statement] = STATE(1210), - [sym_exec_statement] = STATE(1210), - [sym_type_alias_statement] = STATE(1210), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [112] = { + [sym__simple_statements] = STATE(481), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19776,8 +19571,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -19803,60 +19598,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(481), [sym__string_start] = ACTIONS(81), }, - [112] = { - [sym__simple_statements] = STATE(591), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [113] = { + [sym__simple_statements] = STATE(524), + [sym_import_statement] = STATE(1173), + [sym_future_import_statement] = STATE(1173), + [sym_import_from_statement] = STATE(1173), + [sym_print_statement] = STATE(1173), + [sym_assert_statement] = STATE(1173), + [sym_expression_statement] = STATE(1173), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1173), + [sym_delete_statement] = STATE(1173), + [sym_raise_statement] = STATE(1173), + [sym_pass_statement] = STATE(1173), + [sym_break_statement] = STATE(1173), + [sym_continue_statement] = STATE(1173), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1173), + [sym_nonlocal_statement] = STATE(1173), + [sym_exec_statement] = STATE(1173), + [sym_type_alias_statement] = STATE(1173), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19870,8 +19665,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -19897,60 +19692,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(485), [sym__string_start] = ACTIONS(81), }, - [113] = { - [sym__simple_statements] = STATE(393), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [114] = { + [sym__simple_statements] = STATE(984), + [sym_import_statement] = STATE(1163), + [sym_future_import_statement] = STATE(1163), + [sym_import_from_statement] = STATE(1163), + [sym_print_statement] = STATE(1163), + [sym_assert_statement] = STATE(1163), + [sym_expression_statement] = STATE(1163), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1163), + [sym_delete_statement] = STATE(1163), + [sym_raise_statement] = STATE(1163), + [sym_pass_statement] = STATE(1163), + [sym_break_statement] = STATE(1163), + [sym_continue_statement] = STATE(1163), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1163), + [sym_nonlocal_statement] = STATE(1163), + [sym_exec_statement] = STATE(1163), + [sym_type_alias_statement] = STATE(1163), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19964,8 +19759,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -19991,60 +19786,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(489), [sym__string_start] = ACTIONS(81), }, - [114] = { - [sym__simple_statements] = STATE(978), - [sym_import_statement] = STATE(1208), - [sym_future_import_statement] = STATE(1208), - [sym_import_from_statement] = STATE(1208), - [sym_print_statement] = STATE(1208), - [sym_assert_statement] = STATE(1208), - [sym_expression_statement] = STATE(1208), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1208), - [sym_delete_statement] = STATE(1208), - [sym_raise_statement] = STATE(1208), - [sym_pass_statement] = STATE(1208), - [sym_break_statement] = STATE(1208), - [sym_continue_statement] = STATE(1208), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1208), - [sym_nonlocal_statement] = STATE(1208), - [sym_exec_statement] = STATE(1208), - [sym_type_alias_statement] = STATE(1208), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [115] = { + [sym__simple_statements] = STATE(318), + [sym_import_statement] = STATE(1173), + [sym_future_import_statement] = STATE(1173), + [sym_import_from_statement] = STATE(1173), + [sym_print_statement] = STATE(1173), + [sym_assert_statement] = STATE(1173), + [sym_expression_statement] = STATE(1173), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1173), + [sym_delete_statement] = STATE(1173), + [sym_raise_statement] = STATE(1173), + [sym_pass_statement] = STATE(1173), + [sym_break_statement] = STATE(1173), + [sym_continue_statement] = STATE(1173), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1173), + [sym_nonlocal_statement] = STATE(1173), + [sym_exec_statement] = STATE(1173), + [sym_type_alias_statement] = STATE(1173), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20058,8 +19853,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -20085,60 +19880,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(493), [sym__string_start] = ACTIONS(81), }, - [115] = { - [sym__simple_statements] = STATE(489), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [116] = { + [sym__simple_statements] = STATE(515), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20152,8 +19947,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -20179,60 +19974,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(497), [sym__string_start] = ACTIONS(81), }, - [116] = { - [sym__simple_statements] = STATE(534), - [sym_import_statement] = STATE(1210), - [sym_future_import_statement] = STATE(1210), - [sym_import_from_statement] = STATE(1210), - [sym_print_statement] = STATE(1210), - [sym_assert_statement] = STATE(1210), - [sym_expression_statement] = STATE(1210), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1210), - [sym_delete_statement] = STATE(1210), - [sym_raise_statement] = STATE(1210), - [sym_pass_statement] = STATE(1210), - [sym_break_statement] = STATE(1210), - [sym_continue_statement] = STATE(1210), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1210), - [sym_nonlocal_statement] = STATE(1210), - [sym_exec_statement] = STATE(1210), - [sym_type_alias_statement] = STATE(1210), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [117] = { + [sym__simple_statements] = STATE(344), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20246,8 +20041,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -20273,60 +20068,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(501), [sym__string_start] = ACTIONS(81), }, - [117] = { - [sym__simple_statements] = STATE(288), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [118] = { + [sym__simple_statements] = STATE(455), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20340,8 +20135,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -20367,60 +20162,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(505), [sym__string_start] = ACTIONS(81), }, - [118] = { - [sym__simple_statements] = STATE(559), - [sym_import_statement] = STATE(1210), - [sym_future_import_statement] = STATE(1210), - [sym_import_from_statement] = STATE(1210), - [sym_print_statement] = STATE(1210), - [sym_assert_statement] = STATE(1210), - [sym_expression_statement] = STATE(1210), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1210), - [sym_delete_statement] = STATE(1210), - [sym_raise_statement] = STATE(1210), - [sym_pass_statement] = STATE(1210), - [sym_break_statement] = STATE(1210), - [sym_continue_statement] = STATE(1210), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1210), - [sym_nonlocal_statement] = STATE(1210), - [sym_exec_statement] = STATE(1210), - [sym_type_alias_statement] = STATE(1210), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [119] = { + [sym__simple_statements] = STATE(550), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20434,8 +20229,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -20461,60 +20256,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(509), [sym__string_start] = ACTIONS(81), }, - [119] = { - [sym__simple_statements] = STATE(579), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [120] = { + [sym__simple_statements] = STATE(557), + [sym_import_statement] = STATE(1173), + [sym_future_import_statement] = STATE(1173), + [sym_import_from_statement] = STATE(1173), + [sym_print_statement] = STATE(1173), + [sym_assert_statement] = STATE(1173), + [sym_expression_statement] = STATE(1173), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1173), + [sym_delete_statement] = STATE(1173), + [sym_raise_statement] = STATE(1173), + [sym_pass_statement] = STATE(1173), + [sym_break_statement] = STATE(1173), + [sym_continue_statement] = STATE(1173), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1173), + [sym_nonlocal_statement] = STATE(1173), + [sym_exec_statement] = STATE(1173), + [sym_type_alias_statement] = STATE(1173), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20528,8 +20323,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -20555,60 +20350,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(513), [sym__string_start] = ACTIONS(81), }, - [120] = { - [sym__simple_statements] = STATE(338), - [sym_import_statement] = STATE(1138), - [sym_future_import_statement] = STATE(1138), - [sym_import_from_statement] = STATE(1138), - [sym_print_statement] = STATE(1138), - [sym_assert_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1138), - [sym_delete_statement] = STATE(1138), - [sym_raise_statement] = STATE(1138), - [sym_pass_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1138), - [sym_nonlocal_statement] = STATE(1138), - [sym_exec_statement] = STATE(1138), - [sym_type_alias_statement] = STATE(1138), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [121] = { + [sym__simple_statements] = STATE(336), + [sym_import_statement] = STATE(1173), + [sym_future_import_statement] = STATE(1173), + [sym_import_from_statement] = STATE(1173), + [sym_print_statement] = STATE(1173), + [sym_assert_statement] = STATE(1173), + [sym_expression_statement] = STATE(1173), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1173), + [sym_delete_statement] = STATE(1173), + [sym_raise_statement] = STATE(1173), + [sym_pass_statement] = STATE(1173), + [sym_break_statement] = STATE(1173), + [sym_continue_statement] = STATE(1173), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1173), + [sym_nonlocal_statement] = STATE(1173), + [sym_exec_statement] = STATE(1173), + [sym_type_alias_statement] = STATE(1173), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20622,8 +20417,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -20649,60 +20444,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(517), [sym__string_start] = ACTIONS(81), }, - [121] = { - [sym__simple_statements] = STATE(490), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [122] = { + [sym__simple_statements] = STATE(554), + [sym_import_statement] = STATE(1173), + [sym_future_import_statement] = STATE(1173), + [sym_import_from_statement] = STATE(1173), + [sym_print_statement] = STATE(1173), + [sym_assert_statement] = STATE(1173), + [sym_expression_statement] = STATE(1173), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1173), + [sym_delete_statement] = STATE(1173), + [sym_raise_statement] = STATE(1173), + [sym_pass_statement] = STATE(1173), + [sym_break_statement] = STATE(1173), + [sym_continue_statement] = STATE(1173), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1173), + [sym_nonlocal_statement] = STATE(1173), + [sym_exec_statement] = STATE(1173), + [sym_type_alias_statement] = STATE(1173), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20716,8 +20511,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -20743,60 +20538,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(521), [sym__string_start] = ACTIONS(81), }, - [122] = { - [sym__simple_statements] = STATE(572), - [sym_import_statement] = STATE(1210), - [sym_future_import_statement] = STATE(1210), - [sym_import_from_statement] = STATE(1210), - [sym_print_statement] = STATE(1210), - [sym_assert_statement] = STATE(1210), - [sym_expression_statement] = STATE(1210), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1210), - [sym_delete_statement] = STATE(1210), - [sym_raise_statement] = STATE(1210), - [sym_pass_statement] = STATE(1210), - [sym_break_statement] = STATE(1210), - [sym_continue_statement] = STATE(1210), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1210), - [sym_nonlocal_statement] = STATE(1210), - [sym_exec_statement] = STATE(1210), - [sym_type_alias_statement] = STATE(1210), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [123] = { + [sym__simple_statements] = STATE(532), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20810,8 +20605,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -20837,60 +20632,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(525), [sym__string_start] = ACTIONS(81), }, - [123] = { - [sym__simple_statements] = STATE(366), - [sym_import_statement] = STATE(1182), - [sym_future_import_statement] = STATE(1182), - [sym_import_from_statement] = STATE(1182), - [sym_print_statement] = STATE(1182), - [sym_assert_statement] = STATE(1182), - [sym_expression_statement] = STATE(1182), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1182), - [sym_delete_statement] = STATE(1182), - [sym_raise_statement] = STATE(1182), - [sym_pass_statement] = STATE(1182), - [sym_break_statement] = STATE(1182), - [sym_continue_statement] = STATE(1182), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1182), - [sym_nonlocal_statement] = STATE(1182), - [sym_exec_statement] = STATE(1182), - [sym_type_alias_statement] = STATE(1182), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [124] = { + [sym__simple_statements] = STATE(518), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20904,8 +20699,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -20931,248 +20726,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(529), [sym__string_start] = ACTIONS(81), }, - [124] = { - [sym__simple_statements] = STATE(464), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(47), - [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__newline] = ACTIONS(531), - [sym__indent] = ACTIONS(533), - [sym__string_start] = ACTIONS(81), - }, [125] = { - [sym__simple_statements] = STATE(518), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), + [sym_chevron] = STATE(1110), + [sym_named_expression] = STATE(962), + [sym_expression] = STATE(1014), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_attribute] = STATE(752), + [sym_subscript] = STATE(752), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [sym_identifier] = ACTIONS(531), + [anon_sym_DOT] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(287), + [anon_sym_COMMA] = ACTIONS(264), + [anon_sym_STAR] = ACTIONS(260), + [anon_sym_print] = ACTIONS(533), + [anon_sym_GT_GT] = ACTIONS(535), + [anon_sym_COLON_EQ] = ACTIONS(271), + [anon_sym_if] = ACTIONS(260), + [anon_sym_COLON] = ACTIONS(273), + [anon_sym_async] = ACTIONS(533), + [anon_sym_in] = ACTIONS(260), + [anon_sym_match] = ACTIONS(533), + [anon_sym_PIPE] = ACTIONS(260), + [anon_sym_DASH] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(260), + [anon_sym_LBRACK] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_not] = ACTIONS(69), + [anon_sym_STAR_STAR] = ACTIONS(260), + [anon_sym_EQ] = ACTIONS(273), + [anon_sym_exec] = ACTIONS(533), + [anon_sym_type] = ACTIONS(533), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_not] = ACTIONS(260), + [anon_sym_and] = ACTIONS(260), + [anon_sym_or] = ACTIONS(260), + [anon_sym_SLASH] = ACTIONS(260), + [anon_sym_PERCENT] = ACTIONS(260), + [anon_sym_SLASH_SLASH] = ACTIONS(260), + [anon_sym_AMP] = ACTIONS(260), + [anon_sym_CARET] = ACTIONS(260), + [anon_sym_LT_LT] = ACTIONS(260), [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_LT] = ACTIONS(260), + [anon_sym_LT_EQ] = ACTIONS(287), + [anon_sym_EQ_EQ] = ACTIONS(287), + [anon_sym_BANG_EQ] = ACTIONS(287), + [anon_sym_GT_EQ] = ACTIONS(287), + [anon_sym_GT] = ACTIONS(260), + [anon_sym_LT_GT] = ACTIONS(287), + [anon_sym_is] = ACTIONS(260), [anon_sym_lambda] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), + [anon_sym_PLUS_EQ] = ACTIONS(291), + [anon_sym_DASH_EQ] = ACTIONS(291), + [anon_sym_STAR_EQ] = ACTIONS(291), + [anon_sym_SLASH_EQ] = ACTIONS(291), + [anon_sym_AT_EQ] = ACTIONS(291), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(291), + [anon_sym_PERCENT_EQ] = ACTIONS(291), + [anon_sym_STAR_STAR_EQ] = ACTIONS(291), + [anon_sym_GT_GT_EQ] = ACTIONS(291), + [anon_sym_LT_LT_EQ] = ACTIONS(291), + [anon_sym_AMP_EQ] = ACTIONS(291), + [anon_sym_CARET_EQ] = ACTIONS(291), + [anon_sym_PIPE_EQ] = ACTIONS(291), [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(79), + [anon_sym_await] = ACTIONS(537), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(535), - [sym__indent] = ACTIONS(537), + [anon_sym_SEMI] = ACTIONS(287), + [sym__newline] = ACTIONS(287), [sym__string_start] = ACTIONS(81), }, [126] = { - [sym__simple_statements] = STATE(401), - [sym_import_statement] = STATE(1210), - [sym_future_import_statement] = STATE(1210), - [sym_import_from_statement] = STATE(1210), - [sym_print_statement] = STATE(1210), - [sym_assert_statement] = STATE(1210), - [sym_expression_statement] = STATE(1210), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1210), - [sym_delete_statement] = STATE(1210), - [sym_raise_statement] = STATE(1210), - [sym_pass_statement] = STATE(1210), - [sym_break_statement] = STATE(1210), - [sym_continue_statement] = STATE(1210), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1210), - [sym_nonlocal_statement] = STATE(1210), - [sym_exec_statement] = STATE(1210), - [sym_type_alias_statement] = STATE(1210), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [sym__simple_statements] = STATE(525), + [sym_import_statement] = STATE(1146), + [sym_future_import_statement] = STATE(1146), + [sym_import_from_statement] = STATE(1146), + [sym_print_statement] = STATE(1146), + [sym_assert_statement] = STATE(1146), + [sym_expression_statement] = STATE(1146), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_raise_statement] = STATE(1146), + [sym_pass_statement] = STATE(1146), + [sym_break_statement] = STATE(1146), + [sym_continue_statement] = STATE(1146), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1146), + [sym_nonlocal_statement] = STATE(1146), + [sym_exec_statement] = STATE(1146), + [sym_type_alias_statement] = STATE(1146), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21186,8 +20887,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -21214,247 +20915,244 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [127] = { - [sym__simple_statements] = STATE(328), - [sym_import_statement] = STATE(1182), - [sym_future_import_statement] = STATE(1182), - [sym_import_from_statement] = STATE(1182), - [sym_print_statement] = STATE(1182), - [sym_assert_statement] = STATE(1182), - [sym_expression_statement] = STATE(1182), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1182), - [sym_delete_statement] = STATE(1182), - [sym_raise_statement] = STATE(1182), - [sym_pass_statement] = STATE(1182), - [sym_break_statement] = STATE(1182), - [sym_continue_statement] = STATE(1182), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1182), - [sym_nonlocal_statement] = STATE(1182), - [sym_exec_statement] = STATE(1182), - [sym_type_alias_statement] = STATE(1182), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(47), - [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_named_expression] = STATE(874), + [sym_expression] = STATE(872), + [sym_primary_expression] = STATE(582), + [sym_not_operator] = STATE(874), + [sym_boolean_operator] = STATE(874), + [sym_binary_operator] = STATE(607), + [sym_unary_operator] = STATE(607), + [sym_comparison_operator] = STATE(874), + [sym_lambda] = STATE(874), + [sym_attribute] = STATE(607), + [sym_subscript] = STATE(607), + [sym_call] = STATE(607), + [sym_list] = STATE(607), + [sym_set] = STATE(607), + [sym_tuple] = STATE(607), + [sym_dictionary] = STATE(607), + [sym_list_comprehension] = STATE(607), + [sym_dictionary_comprehension] = STATE(607), + [sym_set_comprehension] = STATE(607), + [sym_generator_expression] = STATE(607), + [sym_parenthesized_expression] = STATE(607), + [sym_conditional_expression] = STATE(874), + [sym_concatenated_string] = STATE(607), + [sym_string] = STATE(570), + [sym_await] = STATE(874), + [sym_identifier] = ACTIONS(258), + [anon_sym_DOT] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_RPAREN] = ACTIONS(543), + [anon_sym_COMMA] = ACTIONS(543), + [anon_sym_STAR] = ACTIONS(260), + [anon_sym_print] = ACTIONS(269), + [anon_sym_GT_GT] = ACTIONS(260), + [anon_sym_COLON_EQ] = ACTIONS(546), + [anon_sym_if] = ACTIONS(260), + [anon_sym_COLON] = ACTIONS(548), + [anon_sym_async] = ACTIONS(269), + [anon_sym_in] = ACTIONS(260), + [anon_sym_match] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(260), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_PLUS] = ACTIONS(275), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_RBRACK] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_STAR_STAR] = ACTIONS(260), + [anon_sym_EQ] = ACTIONS(548), + [anon_sym_exec] = ACTIONS(269), + [anon_sym_type] = ACTIONS(269), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_not] = ACTIONS(283), + [anon_sym_and] = ACTIONS(260), + [anon_sym_or] = ACTIONS(260), + [anon_sym_SLASH] = ACTIONS(260), + [anon_sym_PERCENT] = ACTIONS(260), + [anon_sym_SLASH_SLASH] = ACTIONS(260), + [anon_sym_AMP] = ACTIONS(260), + [anon_sym_CARET] = ACTIONS(260), + [anon_sym_LT_LT] = ACTIONS(260), + [anon_sym_TILDE] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(260), + [anon_sym_LT_EQ] = ACTIONS(287), + [anon_sym_EQ_EQ] = ACTIONS(287), + [anon_sym_BANG_EQ] = ACTIONS(287), + [anon_sym_GT_EQ] = ACTIONS(287), + [anon_sym_GT] = ACTIONS(260), + [anon_sym_LT_GT] = ACTIONS(287), + [anon_sym_is] = ACTIONS(260), + [anon_sym_lambda] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(550), + [anon_sym_DASH_EQ] = ACTIONS(550), + [anon_sym_STAR_EQ] = ACTIONS(550), + [anon_sym_SLASH_EQ] = ACTIONS(550), + [anon_sym_AT_EQ] = ACTIONS(550), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(550), + [anon_sym_PERCENT_EQ] = ACTIONS(550), + [anon_sym_STAR_STAR_EQ] = ACTIONS(550), + [anon_sym_GT_GT_EQ] = ACTIONS(550), + [anon_sym_LT_LT_EQ] = ACTIONS(550), + [anon_sym_AMP_EQ] = ACTIONS(550), + [anon_sym_CARET_EQ] = ACTIONS(550), + [anon_sym_PIPE_EQ] = ACTIONS(550), + [sym_ellipsis] = ACTIONS(293), + [sym_integer] = ACTIONS(295), + [sym_float] = ACTIONS(293), + [anon_sym_await] = ACTIONS(297), + [sym_true] = ACTIONS(295), + [sym_false] = ACTIONS(295), + [sym_none] = ACTIONS(295), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(543), - [sym__indent] = ACTIONS(545), - [sym__string_start] = ACTIONS(81), + [sym__string_start] = ACTIONS(299), }, [128] = { - [sym__simple_statements] = STATE(584), - [sym_import_statement] = STATE(1210), - [sym_future_import_statement] = STATE(1210), - [sym_import_from_statement] = STATE(1210), - [sym_print_statement] = STATE(1210), - [sym_assert_statement] = STATE(1210), - [sym_expression_statement] = STATE(1210), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1210), - [sym_delete_statement] = STATE(1210), - [sym_raise_statement] = STATE(1210), - [sym_pass_statement] = STATE(1210), - [sym_break_statement] = STATE(1210), - [sym_continue_statement] = STATE(1210), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1210), - [sym_nonlocal_statement] = STATE(1210), - [sym_exec_statement] = STATE(1210), - [sym_type_alias_statement] = STATE(1210), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), + [sym_named_expression] = STATE(962), + [sym_expression] = STATE(968), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_attribute] = STATE(752), + [sym_subscript] = STATE(752), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [sym_identifier] = ACTIONS(531), + [anon_sym_DOT] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(552), + [anon_sym_COMMA] = ACTIONS(264), + [anon_sym_STAR] = ACTIONS(260), + [anon_sym_print] = ACTIONS(533), + [anon_sym_GT_GT] = ACTIONS(260), + [anon_sym_COLON_EQ] = ACTIONS(271), + [anon_sym_if] = ACTIONS(260), + [anon_sym_COLON] = ACTIONS(273), + [anon_sym_async] = ACTIONS(533), + [anon_sym_in] = ACTIONS(260), + [anon_sym_match] = ACTIONS(533), + [anon_sym_PIPE] = ACTIONS(260), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_LBRACK] = ACTIONS(556), [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), + [anon_sym_STAR_STAR] = ACTIONS(260), + [anon_sym_EQ] = ACTIONS(273), + [anon_sym_exec] = ACTIONS(533), + [anon_sym_type] = ACTIONS(533), + [anon_sym_AT] = ACTIONS(260), [anon_sym_not] = ACTIONS(69), + [anon_sym_and] = ACTIONS(260), + [anon_sym_or] = ACTIONS(260), + [anon_sym_SLASH] = ACTIONS(260), + [anon_sym_PERCENT] = ACTIONS(260), + [anon_sym_SLASH_SLASH] = ACTIONS(260), + [anon_sym_AMP] = ACTIONS(260), + [anon_sym_CARET] = ACTIONS(260), + [anon_sym_LT_LT] = ACTIONS(260), [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_LT] = ACTIONS(260), + [anon_sym_LT_EQ] = ACTIONS(287), + [anon_sym_EQ_EQ] = ACTIONS(287), + [anon_sym_BANG_EQ] = ACTIONS(287), + [anon_sym_GT_EQ] = ACTIONS(287), + [anon_sym_GT] = ACTIONS(260), + [anon_sym_LT_GT] = ACTIONS(287), + [anon_sym_is] = ACTIONS(260), [anon_sym_lambda] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), + [anon_sym_PLUS_EQ] = ACTIONS(291), + [anon_sym_DASH_EQ] = ACTIONS(291), + [anon_sym_STAR_EQ] = ACTIONS(291), + [anon_sym_SLASH_EQ] = ACTIONS(291), + [anon_sym_AT_EQ] = ACTIONS(291), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(291), + [anon_sym_PERCENT_EQ] = ACTIONS(291), + [anon_sym_STAR_STAR_EQ] = ACTIONS(291), + [anon_sym_GT_GT_EQ] = ACTIONS(291), + [anon_sym_LT_LT_EQ] = ACTIONS(291), + [anon_sym_AMP_EQ] = ACTIONS(291), + [anon_sym_CARET_EQ] = ACTIONS(291), + [anon_sym_PIPE_EQ] = ACTIONS(291), [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(79), + [anon_sym_await] = ACTIONS(537), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(547), - [sym__indent] = ACTIONS(549), + [anon_sym_SEMI] = ACTIONS(287), + [sym__newline] = ACTIONS(287), [sym__string_start] = ACTIONS(81), }, [129] = { - [sym__simple_statements] = STATE(545), - [sym_import_statement] = STATE(1210), - [sym_future_import_statement] = STATE(1210), - [sym_import_from_statement] = STATE(1210), - [sym_print_statement] = STATE(1210), - [sym_assert_statement] = STATE(1210), - [sym_expression_statement] = STATE(1210), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1210), - [sym_delete_statement] = STATE(1210), - [sym_raise_statement] = STATE(1210), - [sym_pass_statement] = STATE(1210), - [sym_break_statement] = STATE(1210), - [sym_continue_statement] = STATE(1210), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1210), - [sym_nonlocal_statement] = STATE(1210), - [sym_exec_statement] = STATE(1210), - [sym_type_alias_statement] = STATE(1210), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [sym_import_statement] = STATE(1374), + [sym_future_import_statement] = STATE(1374), + [sym_import_from_statement] = STATE(1374), + [sym_print_statement] = STATE(1374), + [sym_assert_statement] = STATE(1374), + [sym_expression_statement] = STATE(1374), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1374), + [sym_delete_statement] = STATE(1374), + [sym_raise_statement] = STATE(1374), + [sym_pass_statement] = STATE(1374), + [sym_break_statement] = STATE(1374), + [sym_continue_statement] = STATE(1374), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1374), + [sym_nonlocal_statement] = STATE(1374), + [sym_exec_statement] = STATE(1374), + [sym_type_alias_statement] = STATE(1374), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21468,8 +21166,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -21491,64 +21189,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(551), - [sym__indent] = ACTIONS(553), + [sym__newline] = ACTIONS(558), [sym__string_start] = ACTIONS(81), }, [130] = { - [sym__simple_statements] = STATE(373), - [sym_import_statement] = STATE(1163), - [sym_future_import_statement] = STATE(1163), - [sym_import_from_statement] = STATE(1163), - [sym_print_statement] = STATE(1163), - [sym_assert_statement] = STATE(1163), - [sym_expression_statement] = STATE(1163), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1163), - [sym_delete_statement] = STATE(1163), - [sym_raise_statement] = STATE(1163), - [sym_pass_statement] = STATE(1163), - [sym_break_statement] = STATE(1163), - [sym_continue_statement] = STATE(1163), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1163), - [sym_nonlocal_statement] = STATE(1163), - [sym_exec_statement] = STATE(1163), - [sym_type_alias_statement] = STATE(1163), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [sym_import_statement] = STATE(1374), + [sym_future_import_statement] = STATE(1374), + [sym_import_from_statement] = STATE(1374), + [sym_print_statement] = STATE(1374), + [sym_assert_statement] = STATE(1374), + [sym_expression_statement] = STATE(1374), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1374), + [sym_delete_statement] = STATE(1374), + [sym_raise_statement] = STATE(1374), + [sym_pass_statement] = STATE(1374), + [sym_break_statement] = STATE(1374), + [sym_continue_statement] = STATE(1374), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1374), + [sym_nonlocal_statement] = STATE(1374), + [sym_exec_statement] = STATE(1374), + [sym_type_alias_statement] = STATE(1374), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21562,8 +21258,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -21585,249 +21281,246 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(555), - [sym__indent] = ACTIONS(557), + [sym__newline] = ACTIONS(560), [sym__string_start] = ACTIONS(81), }, [131] = { - [sym_named_expression] = STATE(904), - [sym_expression] = STATE(902), - [sym_primary_expression] = STATE(620), - [sym_not_operator] = STATE(904), - [sym_boolean_operator] = STATE(904), - [sym_binary_operator] = STATE(619), - [sym_unary_operator] = STATE(619), - [sym_comparison_operator] = STATE(904), - [sym_lambda] = STATE(904), - [sym_attribute] = STATE(619), - [sym_subscript] = STATE(619), - [sym_call] = STATE(619), - [sym_list] = STATE(619), - [sym_set] = STATE(619), - [sym_tuple] = STATE(619), - [sym_dictionary] = STATE(619), - [sym_list_comprehension] = STATE(619), - [sym_dictionary_comprehension] = STATE(619), - [sym_set_comprehension] = STATE(619), - [sym_generator_expression] = STATE(619), - [sym_parenthesized_expression] = STATE(619), - [sym_conditional_expression] = STATE(904), - [sym_concatenated_string] = STATE(619), - [sym_string] = STATE(604), - [sym_await] = STATE(904), - [sym_identifier] = ACTIONS(274), - [anon_sym_DOT] = ACTIONS(276), - [anon_sym_LPAREN] = ACTIONS(278), - [anon_sym_RPAREN] = ACTIONS(559), - [anon_sym_COMMA] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(276), - [anon_sym_print] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(276), - [anon_sym_COLON_EQ] = ACTIONS(562), - [anon_sym_if] = ACTIONS(276), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_async] = ACTIONS(285), - [anon_sym_in] = ACTIONS(276), - [anon_sym_match] = ACTIONS(285), - [anon_sym_PIPE] = ACTIONS(276), - [anon_sym_DASH] = ACTIONS(291), - [anon_sym_PLUS] = ACTIONS(291), - [anon_sym_LBRACK] = ACTIONS(293), - [anon_sym_RBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(295), - [anon_sym_STAR_STAR] = ACTIONS(276), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_exec] = ACTIONS(285), - [anon_sym_type] = ACTIONS(285), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_not] = ACTIONS(299), - [anon_sym_and] = ACTIONS(276), - [anon_sym_or] = ACTIONS(276), - [anon_sym_SLASH] = ACTIONS(276), - [anon_sym_PERCENT] = ACTIONS(276), - [anon_sym_SLASH_SLASH] = ACTIONS(276), - [anon_sym_AMP] = ACTIONS(276), - [anon_sym_CARET] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(276), - [anon_sym_TILDE] = ACTIONS(301), - [anon_sym_LT] = ACTIONS(276), - [anon_sym_LT_EQ] = ACTIONS(303), - [anon_sym_EQ_EQ] = ACTIONS(303), - [anon_sym_BANG_EQ] = ACTIONS(303), - [anon_sym_GT_EQ] = ACTIONS(303), - [anon_sym_GT] = ACTIONS(276), - [anon_sym_LT_GT] = ACTIONS(303), - [anon_sym_is] = ACTIONS(276), - [anon_sym_lambda] = ACTIONS(305), - [anon_sym_PLUS_EQ] = ACTIONS(566), - [anon_sym_DASH_EQ] = ACTIONS(566), - [anon_sym_STAR_EQ] = ACTIONS(566), - [anon_sym_SLASH_EQ] = ACTIONS(566), - [anon_sym_AT_EQ] = ACTIONS(566), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(566), - [anon_sym_PERCENT_EQ] = ACTIONS(566), - [anon_sym_STAR_STAR_EQ] = ACTIONS(566), - [anon_sym_GT_GT_EQ] = ACTIONS(566), - [anon_sym_LT_LT_EQ] = ACTIONS(566), - [anon_sym_AMP_EQ] = ACTIONS(566), - [anon_sym_CARET_EQ] = ACTIONS(566), - [anon_sym_PIPE_EQ] = ACTIONS(566), - [sym_ellipsis] = ACTIONS(309), - [sym_integer] = ACTIONS(311), - [sym_float] = ACTIONS(309), - [anon_sym_await] = ACTIONS(313), - [sym_true] = ACTIONS(311), - [sym_false] = ACTIONS(311), - [sym_none] = ACTIONS(311), - [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(315), - }, - [132] = { - [sym_named_expression] = STATE(993), - [sym_expression] = STATE(997), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_attribute] = STATE(801), - [sym_subscript] = STATE(801), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [sym_identifier] = ACTIONS(391), - [anon_sym_DOT] = ACTIONS(276), - [anon_sym_LPAREN] = ACTIONS(568), - [anon_sym_COMMA] = ACTIONS(280), - [anon_sym_STAR] = ACTIONS(276), - [anon_sym_print] = ACTIONS(393), - [anon_sym_GT_GT] = ACTIONS(276), - [anon_sym_COLON_EQ] = ACTIONS(287), - [anon_sym_if] = ACTIONS(276), - [anon_sym_COLON] = ACTIONS(289), - [anon_sym_async] = ACTIONS(393), - [anon_sym_in] = ACTIONS(276), - [anon_sym_match] = ACTIONS(393), - [anon_sym_PIPE] = ACTIONS(276), - [anon_sym_DASH] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(570), - [anon_sym_LBRACK] = ACTIONS(572), + [sym_import_statement] = STATE(1374), + [sym_future_import_statement] = STATE(1374), + [sym_import_from_statement] = STATE(1374), + [sym_print_statement] = STATE(1374), + [sym_assert_statement] = STATE(1374), + [sym_expression_statement] = STATE(1374), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1374), + [sym_delete_statement] = STATE(1374), + [sym_raise_statement] = STATE(1374), + [sym_pass_statement] = STATE(1374), + [sym_break_statement] = STATE(1374), + [sym_continue_statement] = STATE(1374), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1374), + [sym_nonlocal_statement] = STATE(1374), + [sym_exec_statement] = STATE(1374), + [sym_type_alias_statement] = STATE(1374), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [sym_identifier] = ACTIONS(7), + [anon_sym_import] = ACTIONS(9), + [anon_sym_from] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_print] = ACTIONS(17), + [anon_sym_assert] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_raise] = ACTIONS(25), + [anon_sym_pass] = ACTIONS(27), + [anon_sym_break] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(276), - [anon_sym_EQ] = ACTIONS(289), - [anon_sym_exec] = ACTIONS(393), - [anon_sym_type] = ACTIONS(393), - [anon_sym_AT] = ACTIONS(276), + [anon_sym_STAR_STAR] = ACTIONS(53), + [anon_sym_global] = ACTIONS(57), + [anon_sym_nonlocal] = ACTIONS(59), + [anon_sym_exec] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), [anon_sym_not] = ACTIONS(69), - [anon_sym_and] = ACTIONS(276), - [anon_sym_or] = ACTIONS(276), - [anon_sym_SLASH] = ACTIONS(276), - [anon_sym_PERCENT] = ACTIONS(276), - [anon_sym_SLASH_SLASH] = ACTIONS(276), - [anon_sym_AMP] = ACTIONS(276), - [anon_sym_CARET] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(276), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(276), - [anon_sym_LT_EQ] = ACTIONS(303), - [anon_sym_EQ_EQ] = ACTIONS(303), - [anon_sym_BANG_EQ] = ACTIONS(303), - [anon_sym_GT_EQ] = ACTIONS(303), - [anon_sym_GT] = ACTIONS(276), - [anon_sym_LT_GT] = ACTIONS(303), - [anon_sym_is] = ACTIONS(276), [anon_sym_lambda] = ACTIONS(71), - [anon_sym_PLUS_EQ] = ACTIONS(307), - [anon_sym_DASH_EQ] = ACTIONS(307), - [anon_sym_STAR_EQ] = ACTIONS(307), - [anon_sym_SLASH_EQ] = ACTIONS(307), - [anon_sym_AT_EQ] = ACTIONS(307), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(307), - [anon_sym_PERCENT_EQ] = ACTIONS(307), - [anon_sym_STAR_STAR_EQ] = ACTIONS(307), - [anon_sym_GT_GT_EQ] = ACTIONS(307), - [anon_sym_LT_LT_EQ] = ACTIONS(307), - [anon_sym_AMP_EQ] = ACTIONS(307), - [anon_sym_CARET_EQ] = ACTIONS(307), - [anon_sym_PIPE_EQ] = ACTIONS(307), + [anon_sym_yield] = ACTIONS(73), [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(397), + [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(303), - [sym__newline] = ACTIONS(303), + [sym__newline] = ACTIONS(562), + [sym__string_start] = ACTIONS(81), + }, + [132] = { + [sym_import_statement] = STATE(1374), + [sym_future_import_statement] = STATE(1374), + [sym_import_from_statement] = STATE(1374), + [sym_print_statement] = STATE(1374), + [sym_assert_statement] = STATE(1374), + [sym_expression_statement] = STATE(1374), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1374), + [sym_delete_statement] = STATE(1374), + [sym_raise_statement] = STATE(1374), + [sym_pass_statement] = STATE(1374), + [sym_break_statement] = STATE(1374), + [sym_continue_statement] = STATE(1374), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1374), + [sym_nonlocal_statement] = STATE(1374), + [sym_exec_statement] = STATE(1374), + [sym_type_alias_statement] = STATE(1374), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [sym_identifier] = ACTIONS(7), + [anon_sym_import] = ACTIONS(9), + [anon_sym_from] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_print] = ACTIONS(17), + [anon_sym_assert] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_raise] = ACTIONS(25), + [anon_sym_pass] = ACTIONS(27), + [anon_sym_break] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_STAR_STAR] = ACTIONS(53), + [anon_sym_global] = ACTIONS(57), + [anon_sym_nonlocal] = ACTIONS(59), + [anon_sym_exec] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(47), + [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__newline] = ACTIONS(564), [sym__string_start] = ACTIONS(81), }, [133] = { - [sym_import_statement] = STATE(1405), - [sym_future_import_statement] = STATE(1405), - [sym_import_from_statement] = STATE(1405), - [sym_print_statement] = STATE(1405), - [sym_assert_statement] = STATE(1405), - [sym_expression_statement] = STATE(1405), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1405), - [sym_delete_statement] = STATE(1405), - [sym_raise_statement] = STATE(1405), - [sym_pass_statement] = STATE(1405), - [sym_break_statement] = STATE(1405), - [sym_continue_statement] = STATE(1405), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1405), - [sym_nonlocal_statement] = STATE(1405), - [sym_exec_statement] = STATE(1405), - [sym_type_alias_statement] = STATE(1405), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [sym_import_statement] = STATE(1374), + [sym_future_import_statement] = STATE(1374), + [sym_import_from_statement] = STATE(1374), + [sym_print_statement] = STATE(1374), + [sym_assert_statement] = STATE(1374), + [sym_expression_statement] = STATE(1374), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1374), + [sym_delete_statement] = STATE(1374), + [sym_raise_statement] = STATE(1374), + [sym_pass_statement] = STATE(1374), + [sym_break_statement] = STATE(1374), + [sym_continue_statement] = STATE(1374), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1374), + [sym_nonlocal_statement] = STATE(1374), + [sym_exec_statement] = STATE(1374), + [sym_type_alias_statement] = STATE(1374), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21841,8 +21534,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -21864,62 +21557,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(574), + [sym__newline] = ACTIONS(566), [sym__string_start] = ACTIONS(81), }, [134] = { - [sym_import_statement] = STATE(1405), - [sym_future_import_statement] = STATE(1405), - [sym_import_from_statement] = STATE(1405), - [sym_print_statement] = STATE(1405), - [sym_assert_statement] = STATE(1405), - [sym_expression_statement] = STATE(1405), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1405), - [sym_delete_statement] = STATE(1405), - [sym_raise_statement] = STATE(1405), - [sym_pass_statement] = STATE(1405), - [sym_break_statement] = STATE(1405), - [sym_continue_statement] = STATE(1405), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1405), - [sym_nonlocal_statement] = STATE(1405), - [sym_exec_statement] = STATE(1405), - [sym_type_alias_statement] = STATE(1405), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [sym_import_statement] = STATE(1374), + [sym_future_import_statement] = STATE(1374), + [sym_import_from_statement] = STATE(1374), + [sym_print_statement] = STATE(1374), + [sym_assert_statement] = STATE(1374), + [sym_expression_statement] = STATE(1374), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1374), + [sym_delete_statement] = STATE(1374), + [sym_raise_statement] = STATE(1374), + [sym_pass_statement] = STATE(1374), + [sym_break_statement] = STATE(1374), + [sym_continue_statement] = STATE(1374), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1374), + [sym_nonlocal_statement] = STATE(1374), + [sym_exec_statement] = STATE(1374), + [sym_type_alias_statement] = STATE(1374), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21933,8 +21626,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -21956,62 +21649,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(576), + [sym__newline] = ACTIONS(568), [sym__string_start] = ACTIONS(81), }, [135] = { - [sym_import_statement] = STATE(1405), - [sym_future_import_statement] = STATE(1405), - [sym_import_from_statement] = STATE(1405), - [sym_print_statement] = STATE(1405), - [sym_assert_statement] = STATE(1405), - [sym_expression_statement] = STATE(1405), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1405), - [sym_delete_statement] = STATE(1405), - [sym_raise_statement] = STATE(1405), - [sym_pass_statement] = STATE(1405), - [sym_break_statement] = STATE(1405), - [sym_continue_statement] = STATE(1405), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1405), - [sym_nonlocal_statement] = STATE(1405), - [sym_exec_statement] = STATE(1405), - [sym_type_alias_statement] = STATE(1405), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), + [sym_import_statement] = STATE(1374), + [sym_future_import_statement] = STATE(1374), + [sym_import_from_statement] = STATE(1374), + [sym_print_statement] = STATE(1374), + [sym_assert_statement] = STATE(1374), + [sym_expression_statement] = STATE(1374), + [sym_named_expression] = STATE(962), + [sym_return_statement] = STATE(1374), + [sym_delete_statement] = STATE(1374), + [sym_raise_statement] = STATE(1374), + [sym_pass_statement] = STATE(1374), + [sym_break_statement] = STATE(1374), + [sym_continue_statement] = STATE(1374), + [sym_list_splat] = STATE(1326), + [sym_dictionary_splat] = STATE(1326), + [sym_global_statement] = STATE(1374), + [sym_nonlocal_statement] = STATE(1374), + [sym_exec_statement] = STATE(1374), + [sym_type_alias_statement] = STATE(1374), + [sym_expression_list] = STATE(1324), + [sym_pattern] = STATE(856), + [sym_tuple_pattern] = STATE(846), + [sym_list_pattern] = STATE(846), + [sym_list_splat_pattern] = STATE(846), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_assignment] = STATE(1324), + [sym_augmented_assignment] = STATE(1324), + [sym_pattern_list] = STATE(866), + [sym_yield] = STATE(1324), + [sym_attribute] = STATE(358), + [sym_subscript] = STATE(358), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -22025,8 +21718,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -22048,1671 +21741,567 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(578), [sym__string_start] = ACTIONS(81), }, [136] = { - [sym_import_statement] = STATE(1405), - [sym_future_import_statement] = STATE(1405), - [sym_import_from_statement] = STATE(1405), - [sym_print_statement] = STATE(1405), - [sym_assert_statement] = STATE(1405), - [sym_expression_statement] = STATE(1405), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1405), - [sym_delete_statement] = STATE(1405), - [sym_raise_statement] = STATE(1405), - [sym_pass_statement] = STATE(1405), - [sym_break_statement] = STATE(1405), - [sym_continue_statement] = STATE(1405), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1405), - [sym_nonlocal_statement] = STATE(1405), - [sym_exec_statement] = STATE(1405), - [sym_type_alias_statement] = STATE(1405), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(47), - [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_named_expression] = STATE(874), + [sym_expression] = STATE(872), + [sym_primary_expression] = STATE(582), + [sym_not_operator] = STATE(874), + [sym_boolean_operator] = STATE(874), + [sym_binary_operator] = STATE(607), + [sym_unary_operator] = STATE(607), + [sym_comparison_operator] = STATE(874), + [sym_lambda] = STATE(874), + [sym_attribute] = STATE(607), + [sym_subscript] = STATE(607), + [sym_call] = STATE(607), + [sym_list] = STATE(607), + [sym_set] = STATE(607), + [sym_tuple] = STATE(607), + [sym_dictionary] = STATE(607), + [sym_list_comprehension] = STATE(607), + [sym_dictionary_comprehension] = STATE(607), + [sym_set_comprehension] = STATE(607), + [sym_generator_expression] = STATE(607), + [sym_parenthesized_expression] = STATE(607), + [sym_conditional_expression] = STATE(874), + [sym_concatenated_string] = STATE(607), + [sym_string] = STATE(570), + [sym_await] = STATE(874), + [sym_identifier] = ACTIONS(258), + [anon_sym_DOT] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_RPAREN] = ACTIONS(287), + [anon_sym_COMMA] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(260), + [anon_sym_print] = ACTIONS(269), + [anon_sym_GT_GT] = ACTIONS(287), + [anon_sym_COLON_EQ] = ACTIONS(546), + [anon_sym_if] = ACTIONS(260), + [anon_sym_COLON] = ACTIONS(260), + [anon_sym_else] = ACTIONS(260), + [anon_sym_async] = ACTIONS(269), + [anon_sym_in] = ACTIONS(260), + [anon_sym_match] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(285), + [anon_sym_PLUS] = ACTIONS(285), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_RBRACK] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_RBRACE] = ACTIONS(287), + [anon_sym_STAR_STAR] = ACTIONS(287), + [anon_sym_EQ] = ACTIONS(260), + [anon_sym_exec] = ACTIONS(269), + [anon_sym_type] = ACTIONS(269), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_not] = ACTIONS(283), + [anon_sym_and] = ACTIONS(260), + [anon_sym_or] = ACTIONS(260), + [anon_sym_SLASH] = ACTIONS(260), + [anon_sym_PERCENT] = ACTIONS(287), + [anon_sym_SLASH_SLASH] = ACTIONS(287), + [anon_sym_AMP] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_LT_LT] = ACTIONS(287), + [anon_sym_TILDE] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(260), + [anon_sym_LT_EQ] = ACTIONS(287), + [anon_sym_EQ_EQ] = ACTIONS(287), + [anon_sym_BANG_EQ] = ACTIONS(287), + [anon_sym_GT_EQ] = ACTIONS(287), + [anon_sym_GT] = ACTIONS(260), + [anon_sym_LT_GT] = ACTIONS(287), + [anon_sym_is] = ACTIONS(260), + [anon_sym_lambda] = ACTIONS(289), + [sym_ellipsis] = ACTIONS(293), + [sym_type_conversion] = ACTIONS(287), + [sym_integer] = ACTIONS(295), + [sym_float] = ACTIONS(293), + [anon_sym_await] = ACTIONS(297), + [sym_true] = ACTIONS(295), + [sym_false] = ACTIONS(295), + [sym_none] = ACTIONS(295), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(580), - [sym__string_start] = ACTIONS(81), + [sym__string_start] = ACTIONS(299), }, [137] = { - [sym_import_statement] = STATE(1405), - [sym_future_import_statement] = STATE(1405), - [sym_import_from_statement] = STATE(1405), - [sym_print_statement] = STATE(1405), - [sym_assert_statement] = STATE(1405), - [sym_expression_statement] = STATE(1405), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1405), - [sym_delete_statement] = STATE(1405), - [sym_raise_statement] = STATE(1405), - [sym_pass_statement] = STATE(1405), - [sym_break_statement] = STATE(1405), - [sym_continue_statement] = STATE(1405), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1405), - [sym_nonlocal_statement] = STATE(1405), - [sym_exec_statement] = STATE(1405), - [sym_type_alias_statement] = STATE(1405), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(47), - [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_named_expression] = STATE(874), + [sym_expression] = STATE(872), + [sym_primary_expression] = STATE(614), + [sym_not_operator] = STATE(874), + [sym_boolean_operator] = STATE(874), + [sym_binary_operator] = STATE(607), + [sym_unary_operator] = STATE(607), + [sym_comparison_operator] = STATE(874), + [sym_lambda] = STATE(874), + [sym_attribute] = STATE(607), + [sym_subscript] = STATE(607), + [sym_call] = STATE(607), + [sym_list] = STATE(607), + [sym_set] = STATE(607), + [sym_tuple] = STATE(607), + [sym_dictionary] = STATE(607), + [sym_list_comprehension] = STATE(607), + [sym_dictionary_comprehension] = STATE(607), + [sym_set_comprehension] = STATE(607), + [sym_generator_expression] = STATE(607), + [sym_parenthesized_expression] = STATE(607), + [sym_conditional_expression] = STATE(874), + [sym_concatenated_string] = STATE(607), + [sym_string] = STATE(570), + [sym_await] = STATE(874), + [sym_identifier] = ACTIONS(570), + [anon_sym_DOT] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(572), + [anon_sym_RPAREN] = ACTIONS(287), + [anon_sym_COMMA] = ACTIONS(287), + [anon_sym_as] = ACTIONS(260), + [anon_sym_STAR] = ACTIONS(260), + [anon_sym_print] = ACTIONS(574), + [anon_sym_GT_GT] = ACTIONS(287), + [anon_sym_COLON_EQ] = ACTIONS(576), + [anon_sym_if] = ACTIONS(260), + [anon_sym_COLON] = ACTIONS(260), + [anon_sym_async] = ACTIONS(574), + [anon_sym_for] = ACTIONS(260), + [anon_sym_in] = ACTIONS(260), + [anon_sym_match] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(578), + [anon_sym_LBRACK] = ACTIONS(580), + [anon_sym_RBRACK] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_RBRACE] = ACTIONS(287), + [anon_sym_STAR_STAR] = ACTIONS(287), + [anon_sym_exec] = ACTIONS(574), + [anon_sym_type] = ACTIONS(574), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_not] = ACTIONS(582), + [anon_sym_and] = ACTIONS(260), + [anon_sym_or] = ACTIONS(260), + [anon_sym_SLASH] = ACTIONS(260), + [anon_sym_PERCENT] = ACTIONS(287), + [anon_sym_SLASH_SLASH] = ACTIONS(287), + [anon_sym_AMP] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_LT_LT] = ACTIONS(287), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_LT] = ACTIONS(260), + [anon_sym_LT_EQ] = ACTIONS(287), + [anon_sym_EQ_EQ] = ACTIONS(287), + [anon_sym_BANG_EQ] = ACTIONS(287), + [anon_sym_GT_EQ] = ACTIONS(287), + [anon_sym_GT] = ACTIONS(260), + [anon_sym_LT_GT] = ACTIONS(287), + [anon_sym_is] = ACTIONS(260), + [anon_sym_lambda] = ACTIONS(584), + [sym_ellipsis] = ACTIONS(293), + [sym_integer] = ACTIONS(295), + [sym_float] = ACTIONS(293), + [anon_sym_await] = ACTIONS(586), + [sym_true] = ACTIONS(295), + [sym_false] = ACTIONS(295), + [sym_none] = ACTIONS(295), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(582), - [sym__string_start] = ACTIONS(81), + [sym__string_start] = ACTIONS(299), }, [138] = { - [sym_import_statement] = STATE(1405), - [sym_future_import_statement] = STATE(1405), - [sym_import_from_statement] = STATE(1405), - [sym_print_statement] = STATE(1405), - [sym_assert_statement] = STATE(1405), - [sym_expression_statement] = STATE(1405), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1405), - [sym_delete_statement] = STATE(1405), - [sym_raise_statement] = STATE(1405), - [sym_pass_statement] = STATE(1405), - [sym_break_statement] = STATE(1405), - [sym_continue_statement] = STATE(1405), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1405), - [sym_nonlocal_statement] = STATE(1405), - [sym_exec_statement] = STATE(1405), - [sym_type_alias_statement] = STATE(1405), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), + [sym_named_expression] = STATE(962), + [sym_expression] = STATE(968), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(962), + [sym_boolean_operator] = STATE(962), + [sym_binary_operator] = STATE(752), + [sym_unary_operator] = STATE(752), + [sym_comparison_operator] = STATE(962), + [sym_lambda] = STATE(962), + [sym_attribute] = STATE(752), + [sym_subscript] = STATE(752), + [sym_call] = STATE(752), + [sym_list] = STATE(752), + [sym_set] = STATE(752), + [sym_tuple] = STATE(752), + [sym_dictionary] = STATE(752), + [sym_list_comprehension] = STATE(752), + [sym_dictionary_comprehension] = STATE(752), + [sym_set_comprehension] = STATE(752), + [sym_generator_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_conditional_expression] = STATE(962), + [sym_concatenated_string] = STATE(752), + [sym_string] = STATE(657), + [sym_await] = STATE(962), + [sym_identifier] = ACTIONS(531), + [anon_sym_DOT] = ACTIONS(260), + [anon_sym_from] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(552), + [anon_sym_COMMA] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(260), + [anon_sym_print] = ACTIONS(533), + [anon_sym_GT_GT] = ACTIONS(287), + [anon_sym_COLON_EQ] = ACTIONS(271), + [anon_sym_if] = ACTIONS(260), + [anon_sym_async] = ACTIONS(533), + [anon_sym_in] = ACTIONS(260), + [anon_sym_match] = ACTIONS(533), + [anon_sym_PIPE] = ACTIONS(287), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(556), [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), + [anon_sym_STAR_STAR] = ACTIONS(287), + [anon_sym_EQ] = ACTIONS(260), + [anon_sym_exec] = ACTIONS(533), + [anon_sym_type] = ACTIONS(533), + [anon_sym_AT] = ACTIONS(287), [anon_sym_not] = ACTIONS(69), + [anon_sym_and] = ACTIONS(260), + [anon_sym_or] = ACTIONS(260), + [anon_sym_SLASH] = ACTIONS(260), + [anon_sym_PERCENT] = ACTIONS(287), + [anon_sym_SLASH_SLASH] = ACTIONS(287), + [anon_sym_AMP] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_LT_LT] = ACTIONS(287), [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_LT] = ACTIONS(260), + [anon_sym_LT_EQ] = ACTIONS(287), + [anon_sym_EQ_EQ] = ACTIONS(287), + [anon_sym_BANG_EQ] = ACTIONS(287), + [anon_sym_GT_EQ] = ACTIONS(287), + [anon_sym_GT] = ACTIONS(260), + [anon_sym_LT_GT] = ACTIONS(287), + [anon_sym_is] = ACTIONS(260), [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), + [anon_sym_await] = ACTIONS(537), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(584), + [anon_sym_SEMI] = ACTIONS(287), + [sym__newline] = ACTIONS(287), [sym__string_start] = ACTIONS(81), }, [139] = { - [sym_import_statement] = STATE(1405), - [sym_future_import_statement] = STATE(1405), - [sym_import_from_statement] = STATE(1405), - [sym_print_statement] = STATE(1405), - [sym_assert_statement] = STATE(1405), - [sym_expression_statement] = STATE(1405), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1405), - [sym_delete_statement] = STATE(1405), - [sym_raise_statement] = STATE(1405), - [sym_pass_statement] = STATE(1405), - [sym_break_statement] = STATE(1405), - [sym_continue_statement] = STATE(1405), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1405), - [sym_nonlocal_statement] = STATE(1405), - [sym_exec_statement] = STATE(1405), - [sym_type_alias_statement] = STATE(1405), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(47), - [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_named_expression] = STATE(874), + [sym_expression] = STATE(872), + [sym_primary_expression] = STATE(614), + [sym_not_operator] = STATE(874), + [sym_boolean_operator] = STATE(874), + [sym_binary_operator] = STATE(607), + [sym_unary_operator] = STATE(607), + [sym_comparison_operator] = STATE(874), + [sym_lambda] = STATE(874), + [sym_attribute] = STATE(607), + [sym_subscript] = STATE(607), + [sym_call] = STATE(607), + [sym_list] = STATE(607), + [sym_set] = STATE(607), + [sym_tuple] = STATE(607), + [sym_dictionary] = STATE(607), + [sym_list_comprehension] = STATE(607), + [sym_dictionary_comprehension] = STATE(607), + [sym_set_comprehension] = STATE(607), + [sym_generator_expression] = STATE(607), + [sym_parenthesized_expression] = STATE(607), + [sym_conditional_expression] = STATE(874), + [sym_concatenated_string] = STATE(607), + [sym_string] = STATE(570), + [sym_await] = STATE(874), + [sym_identifier] = ACTIONS(570), + [anon_sym_DOT] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(572), + [anon_sym_RPAREN] = ACTIONS(264), + [anon_sym_COMMA] = ACTIONS(264), + [anon_sym_STAR] = ACTIONS(260), + [anon_sym_print] = ACTIONS(574), + [anon_sym_GT_GT] = ACTIONS(287), + [anon_sym_COLON_EQ] = ACTIONS(576), + [anon_sym_if] = ACTIONS(260), + [anon_sym_async] = ACTIONS(574), + [anon_sym_for] = ACTIONS(260), + [anon_sym_in] = ACTIONS(260), + [anon_sym_match] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(578), + [anon_sym_LBRACK] = ACTIONS(580), + [anon_sym_RBRACK] = ACTIONS(264), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_STAR_STAR] = ACTIONS(287), + [anon_sym_exec] = ACTIONS(574), + [anon_sym_type] = ACTIONS(574), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_not] = ACTIONS(582), + [anon_sym_and] = ACTIONS(260), + [anon_sym_or] = ACTIONS(260), + [anon_sym_SLASH] = ACTIONS(260), + [anon_sym_PERCENT] = ACTIONS(287), + [anon_sym_SLASH_SLASH] = ACTIONS(287), + [anon_sym_AMP] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_LT_LT] = ACTIONS(287), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_LT] = ACTIONS(260), + [anon_sym_LT_EQ] = ACTIONS(287), + [anon_sym_EQ_EQ] = ACTIONS(287), + [anon_sym_BANG_EQ] = ACTIONS(287), + [anon_sym_GT_EQ] = ACTIONS(287), + [anon_sym_GT] = ACTIONS(260), + [anon_sym_LT_GT] = ACTIONS(287), + [anon_sym_is] = ACTIONS(260), + [anon_sym_lambda] = ACTIONS(584), + [sym_ellipsis] = ACTIONS(293), + [sym_integer] = ACTIONS(295), + [sym_float] = ACTIONS(293), + [anon_sym_await] = ACTIONS(586), + [sym_true] = ACTIONS(295), + [sym_false] = ACTIONS(295), + [sym_none] = ACTIONS(295), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(586), - [sym__string_start] = ACTIONS(81), + [sym__string_start] = ACTIONS(299), }, [140] = { - [sym_import_statement] = STATE(1405), - [sym_future_import_statement] = STATE(1405), - [sym_import_from_statement] = STATE(1405), - [sym_print_statement] = STATE(1405), - [sym_assert_statement] = STATE(1405), - [sym_expression_statement] = STATE(1405), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1405), - [sym_delete_statement] = STATE(1405), - [sym_raise_statement] = STATE(1405), - [sym_pass_statement] = STATE(1405), - [sym_break_statement] = STATE(1405), - [sym_continue_statement] = STATE(1405), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1405), - [sym_nonlocal_statement] = STATE(1405), - [sym_exec_statement] = STATE(1405), - [sym_type_alias_statement] = STATE(1405), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(47), - [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_named_expression] = STATE(986), + [sym_expression] = STATE(1025), + [sym_primary_expression] = STATE(712), + [sym_not_operator] = STATE(986), + [sym_boolean_operator] = STATE(986), + [sym_binary_operator] = STATE(782), + [sym_unary_operator] = STATE(782), + [sym_comparison_operator] = STATE(986), + [sym_lambda] = STATE(986), + [sym_attribute] = STATE(782), + [sym_subscript] = STATE(782), + [sym_call] = STATE(782), + [sym_list] = STATE(782), + [sym_set] = STATE(782), + [sym_tuple] = STATE(782), + [sym_dictionary] = STATE(782), + [sym_list_comprehension] = STATE(782), + [sym_dictionary_comprehension] = STATE(782), + [sym_set_comprehension] = STATE(782), + [sym_generator_expression] = STATE(782), + [sym_parenthesized_expression] = STATE(782), + [sym_conditional_expression] = STATE(986), + [sym_concatenated_string] = STATE(782), + [sym_string] = STATE(715), + [sym_await] = STATE(986), + [sym_identifier] = ACTIONS(588), + [anon_sym_DOT] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(590), + [anon_sym_RPAREN] = ACTIONS(287), + [anon_sym_COMMA] = ACTIONS(287), + [anon_sym_as] = ACTIONS(260), + [anon_sym_STAR] = ACTIONS(260), + [anon_sym_print] = ACTIONS(592), + [anon_sym_GT_GT] = ACTIONS(287), + [anon_sym_COLON_EQ] = ACTIONS(594), + [anon_sym_if] = ACTIONS(260), + [anon_sym_COLON] = ACTIONS(260), + [anon_sym_async] = ACTIONS(592), + [anon_sym_in] = ACTIONS(260), + [anon_sym_match] = ACTIONS(592), + [anon_sym_PIPE] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(596), + [anon_sym_PLUS] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_LBRACE] = ACTIONS(600), + [anon_sym_STAR_STAR] = ACTIONS(287), + [anon_sym_exec] = ACTIONS(592), + [anon_sym_type] = ACTIONS(592), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_not] = ACTIONS(602), + [anon_sym_and] = ACTIONS(260), + [anon_sym_or] = ACTIONS(260), + [anon_sym_SLASH] = ACTIONS(260), + [anon_sym_PERCENT] = ACTIONS(287), + [anon_sym_SLASH_SLASH] = ACTIONS(287), + [anon_sym_AMP] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_LT_LT] = ACTIONS(287), + [anon_sym_TILDE] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(260), + [anon_sym_LT_EQ] = ACTIONS(287), + [anon_sym_EQ_EQ] = ACTIONS(287), + [anon_sym_BANG_EQ] = ACTIONS(287), + [anon_sym_GT_EQ] = ACTIONS(287), + [anon_sym_GT] = ACTIONS(260), + [anon_sym_LT_GT] = ACTIONS(287), + [anon_sym_is] = ACTIONS(260), + [anon_sym_lambda] = ACTIONS(604), + [sym_ellipsis] = ACTIONS(606), + [sym_integer] = ACTIONS(608), + [sym_float] = ACTIONS(606), + [anon_sym_await] = ACTIONS(610), + [sym_true] = ACTIONS(608), + [sym_false] = ACTIONS(608), + [sym_none] = ACTIONS(608), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(588), - [sym__string_start] = ACTIONS(81), + [sym__string_start] = ACTIONS(612), }, [141] = { - [sym_import_statement] = STATE(1405), - [sym_future_import_statement] = STATE(1405), - [sym_import_from_statement] = STATE(1405), - [sym_print_statement] = STATE(1405), - [sym_assert_statement] = STATE(1405), - [sym_expression_statement] = STATE(1405), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1405), - [sym_delete_statement] = STATE(1405), - [sym_raise_statement] = STATE(1405), - [sym_pass_statement] = STATE(1405), - [sym_break_statement] = STATE(1405), - [sym_continue_statement] = STATE(1405), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1405), - [sym_nonlocal_statement] = STATE(1405), - [sym_exec_statement] = STATE(1405), - [sym_type_alias_statement] = STATE(1405), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(47), - [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_named_expression] = STATE(874), + [sym_expression] = STATE(872), + [sym_primary_expression] = STATE(614), + [sym_not_operator] = STATE(874), + [sym_boolean_operator] = STATE(874), + [sym_binary_operator] = STATE(607), + [sym_unary_operator] = STATE(607), + [sym_comparison_operator] = STATE(874), + [sym_lambda] = STATE(874), + [sym_attribute] = STATE(607), + [sym_subscript] = STATE(607), + [sym_call] = STATE(607), + [sym_list] = STATE(607), + [sym_set] = STATE(607), + [sym_tuple] = STATE(607), + [sym_dictionary] = STATE(607), + [sym_list_comprehension] = STATE(607), + [sym_dictionary_comprehension] = STATE(607), + [sym_set_comprehension] = STATE(607), + [sym_generator_expression] = STATE(607), + [sym_parenthesized_expression] = STATE(607), + [sym_conditional_expression] = STATE(874), + [sym_concatenated_string] = STATE(607), + [sym_string] = STATE(570), + [sym_await] = STATE(874), + [sym_identifier] = ACTIONS(570), + [anon_sym_DOT] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(572), + [anon_sym_RPAREN] = ACTIONS(287), + [anon_sym_COMMA] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(260), + [anon_sym_print] = ACTIONS(574), + [anon_sym_GT_GT] = ACTIONS(287), + [anon_sym_COLON_EQ] = ACTIONS(576), + [anon_sym_if] = ACTIONS(260), + [anon_sym_async] = ACTIONS(574), + [anon_sym_for] = ACTIONS(260), + [anon_sym_in] = ACTIONS(260), + [anon_sym_match] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(578), + [anon_sym_LBRACK] = ACTIONS(580), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_STAR_STAR] = ACTIONS(287), + [anon_sym_EQ] = ACTIONS(614), + [anon_sym_exec] = ACTIONS(574), + [anon_sym_type] = ACTIONS(574), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_not] = ACTIONS(582), + [anon_sym_and] = ACTIONS(260), + [anon_sym_or] = ACTIONS(260), + [anon_sym_SLASH] = ACTIONS(260), + [anon_sym_PERCENT] = ACTIONS(287), + [anon_sym_SLASH_SLASH] = ACTIONS(287), + [anon_sym_AMP] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_LT_LT] = ACTIONS(287), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_LT] = ACTIONS(260), + [anon_sym_LT_EQ] = ACTIONS(287), + [anon_sym_EQ_EQ] = ACTIONS(287), + [anon_sym_BANG_EQ] = ACTIONS(287), + [anon_sym_GT_EQ] = ACTIONS(287), + [anon_sym_GT] = ACTIONS(260), + [anon_sym_LT_GT] = ACTIONS(287), + [anon_sym_is] = ACTIONS(260), + [anon_sym_lambda] = ACTIONS(584), + [sym_ellipsis] = ACTIONS(293), + [sym_integer] = ACTIONS(295), + [sym_float] = ACTIONS(293), + [anon_sym_await] = ACTIONS(586), + [sym_true] = ACTIONS(295), + [sym_false] = ACTIONS(295), + [sym_none] = ACTIONS(295), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(590), - [sym__string_start] = ACTIONS(81), + [sym__string_start] = ACTIONS(299), }, [142] = { - [sym_import_statement] = STATE(1405), - [sym_future_import_statement] = STATE(1405), - [sym_import_from_statement] = STATE(1405), - [sym_print_statement] = STATE(1405), - [sym_assert_statement] = STATE(1405), - [sym_expression_statement] = STATE(1405), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1405), - [sym_delete_statement] = STATE(1405), - [sym_raise_statement] = STATE(1405), - [sym_pass_statement] = STATE(1405), - [sym_break_statement] = STATE(1405), - [sym_continue_statement] = STATE(1405), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1405), - [sym_nonlocal_statement] = STATE(1405), - [sym_exec_statement] = STATE(1405), - [sym_type_alias_statement] = STATE(1405), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(47), - [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_named_expression] = STATE(874), + [sym_expression] = STATE(872), + [sym_primary_expression] = STATE(582), + [sym_not_operator] = STATE(874), + [sym_boolean_operator] = STATE(874), + [sym_binary_operator] = STATE(607), + [sym_unary_operator] = STATE(607), + [sym_comparison_operator] = STATE(874), + [sym_lambda] = STATE(874), + [sym_attribute] = STATE(607), + [sym_subscript] = STATE(607), + [sym_call] = STATE(607), + [sym_list] = STATE(607), + [sym_set] = STATE(607), + [sym_tuple] = STATE(607), + [sym_dictionary] = STATE(607), + [sym_list_comprehension] = STATE(607), + [sym_dictionary_comprehension] = STATE(607), + [sym_set_comprehension] = STATE(607), + [sym_generator_expression] = STATE(607), + [sym_parenthesized_expression] = STATE(607), + [sym_conditional_expression] = STATE(874), + [sym_concatenated_string] = STATE(607), + [sym_string] = STATE(570), + [sym_await] = STATE(874), + [sym_identifier] = ACTIONS(258), + [anon_sym_DOT] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_RPAREN] = ACTIONS(287), + [anon_sym_COMMA] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(260), + [anon_sym_print] = ACTIONS(269), + [anon_sym_GT_GT] = ACTIONS(287), + [anon_sym_COLON_EQ] = ACTIONS(546), + [anon_sym_if] = ACTIONS(260), + [anon_sym_async] = ACTIONS(269), + [anon_sym_in] = ACTIONS(260), + [anon_sym_match] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(285), + [anon_sym_PLUS] = ACTIONS(285), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_STAR_STAR] = ACTIONS(287), + [anon_sym_EQ] = ACTIONS(614), + [anon_sym_exec] = ACTIONS(269), + [anon_sym_type] = ACTIONS(269), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_not] = ACTIONS(283), + [anon_sym_and] = ACTIONS(260), + [anon_sym_or] = ACTIONS(260), + [anon_sym_SLASH] = ACTIONS(260), + [anon_sym_PERCENT] = ACTIONS(287), + [anon_sym_SLASH_SLASH] = ACTIONS(287), + [anon_sym_AMP] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_LT_LT] = ACTIONS(287), + [anon_sym_TILDE] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(260), + [anon_sym_LT_EQ] = ACTIONS(287), + [anon_sym_EQ_EQ] = ACTIONS(287), + [anon_sym_BANG_EQ] = ACTIONS(287), + [anon_sym_GT_EQ] = ACTIONS(287), + [anon_sym_GT] = ACTIONS(260), + [anon_sym_LT_GT] = ACTIONS(287), + [anon_sym_is] = ACTIONS(260), + [anon_sym_lambda] = ACTIONS(289), + [sym_ellipsis] = ACTIONS(293), + [sym_integer] = ACTIONS(295), + [sym_float] = ACTIONS(293), + [anon_sym_await] = ACTIONS(297), + [sym_true] = ACTIONS(295), + [sym_false] = ACTIONS(295), + [sym_none] = ACTIONS(295), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(592), - [sym__string_start] = ACTIONS(81), - }, - [143] = { - [sym_import_statement] = STATE(1405), - [sym_future_import_statement] = STATE(1405), - [sym_import_from_statement] = STATE(1405), - [sym_print_statement] = STATE(1405), - [sym_assert_statement] = STATE(1405), - [sym_expression_statement] = STATE(1405), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1405), - [sym_delete_statement] = STATE(1405), - [sym_raise_statement] = STATE(1405), - [sym_pass_statement] = STATE(1405), - [sym_break_statement] = STATE(1405), - [sym_continue_statement] = STATE(1405), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1405), - [sym_nonlocal_statement] = STATE(1405), - [sym_exec_statement] = STATE(1405), - [sym_type_alias_statement] = STATE(1405), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(47), - [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__newline] = ACTIONS(594), - [sym__string_start] = ACTIONS(81), - }, - [144] = { - [sym_import_statement] = STATE(1405), - [sym_future_import_statement] = STATE(1405), - [sym_import_from_statement] = STATE(1405), - [sym_print_statement] = STATE(1405), - [sym_assert_statement] = STATE(1405), - [sym_expression_statement] = STATE(1405), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1405), - [sym_delete_statement] = STATE(1405), - [sym_raise_statement] = STATE(1405), - [sym_pass_statement] = STATE(1405), - [sym_break_statement] = STATE(1405), - [sym_continue_statement] = STATE(1405), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1405), - [sym_nonlocal_statement] = STATE(1405), - [sym_exec_statement] = STATE(1405), - [sym_type_alias_statement] = STATE(1405), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(47), - [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__newline] = ACTIONS(596), - [sym__string_start] = ACTIONS(81), - }, - [145] = { - [sym_import_statement] = STATE(1405), - [sym_future_import_statement] = STATE(1405), - [sym_import_from_statement] = STATE(1405), - [sym_print_statement] = STATE(1405), - [sym_assert_statement] = STATE(1405), - [sym_expression_statement] = STATE(1405), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1405), - [sym_delete_statement] = STATE(1405), - [sym_raise_statement] = STATE(1405), - [sym_pass_statement] = STATE(1405), - [sym_break_statement] = STATE(1405), - [sym_continue_statement] = STATE(1405), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1405), - [sym_nonlocal_statement] = STATE(1405), - [sym_exec_statement] = STATE(1405), - [sym_type_alias_statement] = STATE(1405), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(47), - [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__newline] = ACTIONS(598), - [sym__string_start] = ACTIONS(81), - }, - [146] = { - [sym_import_statement] = STATE(1405), - [sym_future_import_statement] = STATE(1405), - [sym_import_from_statement] = STATE(1405), - [sym_print_statement] = STATE(1405), - [sym_assert_statement] = STATE(1405), - [sym_expression_statement] = STATE(1405), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1405), - [sym_delete_statement] = STATE(1405), - [sym_raise_statement] = STATE(1405), - [sym_pass_statement] = STATE(1405), - [sym_break_statement] = STATE(1405), - [sym_continue_statement] = STATE(1405), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1405), - [sym_nonlocal_statement] = STATE(1405), - [sym_exec_statement] = STATE(1405), - [sym_type_alias_statement] = STATE(1405), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(47), - [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__newline] = ACTIONS(600), - [sym__string_start] = ACTIONS(81), - }, - [147] = { - [sym_import_statement] = STATE(1405), - [sym_future_import_statement] = STATE(1405), - [sym_import_from_statement] = STATE(1405), - [sym_print_statement] = STATE(1405), - [sym_assert_statement] = STATE(1405), - [sym_expression_statement] = STATE(1405), - [sym_named_expression] = STATE(993), - [sym_return_statement] = STATE(1405), - [sym_delete_statement] = STATE(1405), - [sym_raise_statement] = STATE(1405), - [sym_pass_statement] = STATE(1405), - [sym_break_statement] = STATE(1405), - [sym_continue_statement] = STATE(1405), - [sym_list_splat] = STATE(1398), - [sym_dictionary_splat] = STATE(1398), - [sym_global_statement] = STATE(1405), - [sym_nonlocal_statement] = STATE(1405), - [sym_exec_statement] = STATE(1405), - [sym_type_alias_statement] = STATE(1405), - [sym_expression_list] = STATE(1397), - [sym_pattern] = STATE(891), - [sym_tuple_pattern] = STATE(880), - [sym_list_pattern] = STATE(880), - [sym_list_splat_pattern] = STATE(880), - [sym_expression] = STATE(1040), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_assignment] = STATE(1397), - [sym_augmented_assignment] = STATE(1397), - [sym_pattern_list] = STATE(900), - [sym_yield] = STATE(1397), - [sym_attribute] = STATE(415), - [sym_subscript] = STATE(415), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(47), - [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__string_start] = ACTIONS(81), - }, - [148] = { - [sym_named_expression] = STATE(904), - [sym_expression] = STATE(902), - [sym_primary_expression] = STATE(620), - [sym_not_operator] = STATE(904), - [sym_boolean_operator] = STATE(904), - [sym_binary_operator] = STATE(619), - [sym_unary_operator] = STATE(619), - [sym_comparison_operator] = STATE(904), - [sym_lambda] = STATE(904), - [sym_attribute] = STATE(619), - [sym_subscript] = STATE(619), - [sym_call] = STATE(619), - [sym_list] = STATE(619), - [sym_set] = STATE(619), - [sym_tuple] = STATE(619), - [sym_dictionary] = STATE(619), - [sym_list_comprehension] = STATE(619), - [sym_dictionary_comprehension] = STATE(619), - [sym_set_comprehension] = STATE(619), - [sym_generator_expression] = STATE(619), - [sym_parenthesized_expression] = STATE(619), - [sym_conditional_expression] = STATE(904), - [sym_concatenated_string] = STATE(619), - [sym_string] = STATE(604), - [sym_await] = STATE(904), - [sym_identifier] = ACTIONS(274), - [anon_sym_DOT] = ACTIONS(276), - [anon_sym_LPAREN] = ACTIONS(278), - [anon_sym_RPAREN] = ACTIONS(303), - [anon_sym_COMMA] = ACTIONS(303), - [anon_sym_STAR] = ACTIONS(276), - [anon_sym_print] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(303), - [anon_sym_COLON_EQ] = ACTIONS(562), - [anon_sym_if] = ACTIONS(276), - [anon_sym_COLON] = ACTIONS(276), - [anon_sym_else] = ACTIONS(276), - [anon_sym_async] = ACTIONS(285), - [anon_sym_in] = ACTIONS(276), - [anon_sym_match] = ACTIONS(285), - [anon_sym_PIPE] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(301), - [anon_sym_LBRACK] = ACTIONS(293), - [anon_sym_RBRACK] = ACTIONS(303), - [anon_sym_LBRACE] = ACTIONS(295), - [anon_sym_RBRACE] = ACTIONS(303), - [anon_sym_STAR_STAR] = ACTIONS(303), - [anon_sym_EQ] = ACTIONS(276), - [anon_sym_exec] = ACTIONS(285), - [anon_sym_type] = ACTIONS(285), - [anon_sym_AT] = ACTIONS(303), - [anon_sym_not] = ACTIONS(299), - [anon_sym_and] = ACTIONS(276), - [anon_sym_or] = ACTIONS(276), - [anon_sym_SLASH] = ACTIONS(276), - [anon_sym_PERCENT] = ACTIONS(303), - [anon_sym_SLASH_SLASH] = ACTIONS(303), - [anon_sym_AMP] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(303), - [anon_sym_LT_LT] = ACTIONS(303), - [anon_sym_TILDE] = ACTIONS(301), - [anon_sym_LT] = ACTIONS(276), - [anon_sym_LT_EQ] = ACTIONS(303), - [anon_sym_EQ_EQ] = ACTIONS(303), - [anon_sym_BANG_EQ] = ACTIONS(303), - [anon_sym_GT_EQ] = ACTIONS(303), - [anon_sym_GT] = ACTIONS(276), - [anon_sym_LT_GT] = ACTIONS(303), - [anon_sym_is] = ACTIONS(276), - [anon_sym_lambda] = ACTIONS(305), - [sym_ellipsis] = ACTIONS(309), - [sym_type_conversion] = ACTIONS(303), - [sym_integer] = ACTIONS(311), - [sym_float] = ACTIONS(309), - [anon_sym_await] = ACTIONS(313), - [sym_true] = ACTIONS(311), - [sym_false] = ACTIONS(311), - [sym_none] = ACTIONS(311), - [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(315), - }, - [149] = { - [sym_named_expression] = STATE(904), - [sym_expression] = STATE(902), - [sym_primary_expression] = STATE(618), - [sym_not_operator] = STATE(904), - [sym_boolean_operator] = STATE(904), - [sym_binary_operator] = STATE(619), - [sym_unary_operator] = STATE(619), - [sym_comparison_operator] = STATE(904), - [sym_lambda] = STATE(904), - [sym_attribute] = STATE(619), - [sym_subscript] = STATE(619), - [sym_call] = STATE(619), - [sym_list] = STATE(619), - [sym_set] = STATE(619), - [sym_tuple] = STATE(619), - [sym_dictionary] = STATE(619), - [sym_list_comprehension] = STATE(619), - [sym_dictionary_comprehension] = STATE(619), - [sym_set_comprehension] = STATE(619), - [sym_generator_expression] = STATE(619), - [sym_parenthesized_expression] = STATE(619), - [sym_conditional_expression] = STATE(904), - [sym_concatenated_string] = STATE(619), - [sym_string] = STATE(604), - [sym_await] = STATE(904), - [sym_identifier] = ACTIONS(602), - [anon_sym_DOT] = ACTIONS(276), - [anon_sym_LPAREN] = ACTIONS(604), - [anon_sym_RPAREN] = ACTIONS(303), - [anon_sym_COMMA] = ACTIONS(303), - [anon_sym_as] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(276), - [anon_sym_print] = ACTIONS(606), - [anon_sym_GT_GT] = ACTIONS(303), - [anon_sym_COLON_EQ] = ACTIONS(608), - [anon_sym_if] = ACTIONS(276), - [anon_sym_COLON] = ACTIONS(276), - [anon_sym_async] = ACTIONS(606), - [anon_sym_for] = ACTIONS(276), - [anon_sym_in] = ACTIONS(276), - [anon_sym_match] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(610), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_RBRACK] = ACTIONS(303), - [anon_sym_LBRACE] = ACTIONS(295), - [anon_sym_RBRACE] = ACTIONS(303), - [anon_sym_STAR_STAR] = ACTIONS(303), - [anon_sym_exec] = ACTIONS(606), - [anon_sym_type] = ACTIONS(606), - [anon_sym_AT] = ACTIONS(303), - [anon_sym_not] = ACTIONS(614), - [anon_sym_and] = ACTIONS(276), - [anon_sym_or] = ACTIONS(276), - [anon_sym_SLASH] = ACTIONS(276), - [anon_sym_PERCENT] = ACTIONS(303), - [anon_sym_SLASH_SLASH] = ACTIONS(303), - [anon_sym_AMP] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(303), - [anon_sym_LT_LT] = ACTIONS(303), - [anon_sym_TILDE] = ACTIONS(610), - [anon_sym_LT] = ACTIONS(276), - [anon_sym_LT_EQ] = ACTIONS(303), - [anon_sym_EQ_EQ] = ACTIONS(303), - [anon_sym_BANG_EQ] = ACTIONS(303), - [anon_sym_GT_EQ] = ACTIONS(303), - [anon_sym_GT] = ACTIONS(276), - [anon_sym_LT_GT] = ACTIONS(303), - [anon_sym_is] = ACTIONS(276), - [anon_sym_lambda] = ACTIONS(616), - [sym_ellipsis] = ACTIONS(309), - [sym_integer] = ACTIONS(311), - [sym_float] = ACTIONS(309), - [anon_sym_await] = ACTIONS(618), - [sym_true] = ACTIONS(311), - [sym_false] = ACTIONS(311), - [sym_none] = ACTIONS(311), - [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(315), - }, - [150] = { - [sym_named_expression] = STATE(993), - [sym_expression] = STATE(997), - [sym_primary_expression] = STATE(696), - [sym_not_operator] = STATE(993), - [sym_boolean_operator] = STATE(993), - [sym_binary_operator] = STATE(801), - [sym_unary_operator] = STATE(801), - [sym_comparison_operator] = STATE(993), - [sym_lambda] = STATE(993), - [sym_attribute] = STATE(801), - [sym_subscript] = STATE(801), - [sym_call] = STATE(801), - [sym_list] = STATE(801), - [sym_set] = STATE(801), - [sym_tuple] = STATE(801), - [sym_dictionary] = STATE(801), - [sym_list_comprehension] = STATE(801), - [sym_dictionary_comprehension] = STATE(801), - [sym_set_comprehension] = STATE(801), - [sym_generator_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_conditional_expression] = STATE(993), - [sym_concatenated_string] = STATE(801), - [sym_string] = STATE(702), - [sym_await] = STATE(993), - [sym_identifier] = ACTIONS(391), - [anon_sym_DOT] = ACTIONS(276), - [anon_sym_from] = ACTIONS(276), - [anon_sym_LPAREN] = ACTIONS(568), - [anon_sym_COMMA] = ACTIONS(303), - [anon_sym_STAR] = ACTIONS(276), - [anon_sym_print] = ACTIONS(393), - [anon_sym_GT_GT] = ACTIONS(303), - [anon_sym_COLON_EQ] = ACTIONS(287), - [anon_sym_if] = ACTIONS(276), - [anon_sym_async] = ACTIONS(393), - [anon_sym_in] = ACTIONS(276), - [anon_sym_match] = ACTIONS(393), - [anon_sym_PIPE] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(303), - [anon_sym_EQ] = ACTIONS(276), - [anon_sym_exec] = ACTIONS(393), - [anon_sym_type] = ACTIONS(393), - [anon_sym_AT] = ACTIONS(303), - [anon_sym_not] = ACTIONS(69), - [anon_sym_and] = ACTIONS(276), - [anon_sym_or] = ACTIONS(276), - [anon_sym_SLASH] = ACTIONS(276), - [anon_sym_PERCENT] = ACTIONS(303), - [anon_sym_SLASH_SLASH] = ACTIONS(303), - [anon_sym_AMP] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(303), - [anon_sym_LT_LT] = ACTIONS(303), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(276), - [anon_sym_LT_EQ] = ACTIONS(303), - [anon_sym_EQ_EQ] = ACTIONS(303), - [anon_sym_BANG_EQ] = ACTIONS(303), - [anon_sym_GT_EQ] = ACTIONS(303), - [anon_sym_GT] = ACTIONS(276), - [anon_sym_LT_GT] = ACTIONS(303), - [anon_sym_is] = ACTIONS(276), - [anon_sym_lambda] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(397), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(303), - [sym__newline] = ACTIONS(303), - [sym__string_start] = ACTIONS(81), - }, - [151] = { - [sym_named_expression] = STATE(904), - [sym_expression] = STATE(902), - [sym_primary_expression] = STATE(618), - [sym_not_operator] = STATE(904), - [sym_boolean_operator] = STATE(904), - [sym_binary_operator] = STATE(619), - [sym_unary_operator] = STATE(619), - [sym_comparison_operator] = STATE(904), - [sym_lambda] = STATE(904), - [sym_attribute] = STATE(619), - [sym_subscript] = STATE(619), - [sym_call] = STATE(619), - [sym_list] = STATE(619), - [sym_set] = STATE(619), - [sym_tuple] = STATE(619), - [sym_dictionary] = STATE(619), - [sym_list_comprehension] = STATE(619), - [sym_dictionary_comprehension] = STATE(619), - [sym_set_comprehension] = STATE(619), - [sym_generator_expression] = STATE(619), - [sym_parenthesized_expression] = STATE(619), - [sym_conditional_expression] = STATE(904), - [sym_concatenated_string] = STATE(619), - [sym_string] = STATE(604), - [sym_await] = STATE(904), - [sym_identifier] = ACTIONS(602), - [anon_sym_DOT] = ACTIONS(276), - [anon_sym_LPAREN] = ACTIONS(604), - [anon_sym_RPAREN] = ACTIONS(280), - [anon_sym_COMMA] = ACTIONS(280), - [anon_sym_STAR] = ACTIONS(276), - [anon_sym_print] = ACTIONS(606), - [anon_sym_GT_GT] = ACTIONS(303), - [anon_sym_COLON_EQ] = ACTIONS(608), - [anon_sym_if] = ACTIONS(276), - [anon_sym_async] = ACTIONS(606), - [anon_sym_for] = ACTIONS(276), - [anon_sym_in] = ACTIONS(276), - [anon_sym_match] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(610), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_RBRACK] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(295), - [anon_sym_STAR_STAR] = ACTIONS(303), - [anon_sym_exec] = ACTIONS(606), - [anon_sym_type] = ACTIONS(606), - [anon_sym_AT] = ACTIONS(303), - [anon_sym_not] = ACTIONS(614), - [anon_sym_and] = ACTIONS(276), - [anon_sym_or] = ACTIONS(276), - [anon_sym_SLASH] = ACTIONS(276), - [anon_sym_PERCENT] = ACTIONS(303), - [anon_sym_SLASH_SLASH] = ACTIONS(303), - [anon_sym_AMP] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(303), - [anon_sym_LT_LT] = ACTIONS(303), - [anon_sym_TILDE] = ACTIONS(610), - [anon_sym_LT] = ACTIONS(276), - [anon_sym_LT_EQ] = ACTIONS(303), - [anon_sym_EQ_EQ] = ACTIONS(303), - [anon_sym_BANG_EQ] = ACTIONS(303), - [anon_sym_GT_EQ] = ACTIONS(303), - [anon_sym_GT] = ACTIONS(276), - [anon_sym_LT_GT] = ACTIONS(303), - [anon_sym_is] = ACTIONS(276), - [anon_sym_lambda] = ACTIONS(616), - [sym_ellipsis] = ACTIONS(309), - [sym_integer] = ACTIONS(311), - [sym_float] = ACTIONS(309), - [anon_sym_await] = ACTIONS(618), - [sym_true] = ACTIONS(311), - [sym_false] = ACTIONS(311), - [sym_none] = ACTIONS(311), - [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(315), - }, - [152] = { - [sym_named_expression] = STATE(904), - [sym_expression] = STATE(902), - [sym_primary_expression] = STATE(618), - [sym_not_operator] = STATE(904), - [sym_boolean_operator] = STATE(904), - [sym_binary_operator] = STATE(619), - [sym_unary_operator] = STATE(619), - [sym_comparison_operator] = STATE(904), - [sym_lambda] = STATE(904), - [sym_attribute] = STATE(619), - [sym_subscript] = STATE(619), - [sym_call] = STATE(619), - [sym_list] = STATE(619), - [sym_set] = STATE(619), - [sym_tuple] = STATE(619), - [sym_dictionary] = STATE(619), - [sym_list_comprehension] = STATE(619), - [sym_dictionary_comprehension] = STATE(619), - [sym_set_comprehension] = STATE(619), - [sym_generator_expression] = STATE(619), - [sym_parenthesized_expression] = STATE(619), - [sym_conditional_expression] = STATE(904), - [sym_concatenated_string] = STATE(619), - [sym_string] = STATE(604), - [sym_await] = STATE(904), - [sym_identifier] = ACTIONS(602), - [anon_sym_DOT] = ACTIONS(276), - [anon_sym_LPAREN] = ACTIONS(604), - [anon_sym_RPAREN] = ACTIONS(303), - [anon_sym_COMMA] = ACTIONS(303), - [anon_sym_STAR] = ACTIONS(276), - [anon_sym_print] = ACTIONS(606), - [anon_sym_GT_GT] = ACTIONS(303), - [anon_sym_COLON_EQ] = ACTIONS(608), - [anon_sym_if] = ACTIONS(276), - [anon_sym_async] = ACTIONS(606), - [anon_sym_for] = ACTIONS(276), - [anon_sym_in] = ACTIONS(276), - [anon_sym_match] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(610), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(295), - [anon_sym_STAR_STAR] = ACTIONS(303), - [anon_sym_EQ] = ACTIONS(620), - [anon_sym_exec] = ACTIONS(606), - [anon_sym_type] = ACTIONS(606), - [anon_sym_AT] = ACTIONS(303), - [anon_sym_not] = ACTIONS(614), - [anon_sym_and] = ACTIONS(276), - [anon_sym_or] = ACTIONS(276), - [anon_sym_SLASH] = ACTIONS(276), - [anon_sym_PERCENT] = ACTIONS(303), - [anon_sym_SLASH_SLASH] = ACTIONS(303), - [anon_sym_AMP] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(303), - [anon_sym_LT_LT] = ACTIONS(303), - [anon_sym_TILDE] = ACTIONS(610), - [anon_sym_LT] = ACTIONS(276), - [anon_sym_LT_EQ] = ACTIONS(303), - [anon_sym_EQ_EQ] = ACTIONS(303), - [anon_sym_BANG_EQ] = ACTIONS(303), - [anon_sym_GT_EQ] = ACTIONS(303), - [anon_sym_GT] = ACTIONS(276), - [anon_sym_LT_GT] = ACTIONS(303), - [anon_sym_is] = ACTIONS(276), - [anon_sym_lambda] = ACTIONS(616), - [sym_ellipsis] = ACTIONS(309), - [sym_integer] = ACTIONS(311), - [sym_float] = ACTIONS(309), - [anon_sym_await] = ACTIONS(618), - [sym_true] = ACTIONS(311), - [sym_false] = ACTIONS(311), - [sym_none] = ACTIONS(311), - [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(315), - }, - [153] = { - [sym_named_expression] = STATE(1053), - [sym_expression] = STATE(1043), - [sym_primary_expression] = STATE(735), - [sym_not_operator] = STATE(1053), - [sym_boolean_operator] = STATE(1053), - [sym_binary_operator] = STATE(812), - [sym_unary_operator] = STATE(812), - [sym_comparison_operator] = STATE(1053), - [sym_lambda] = STATE(1053), - [sym_attribute] = STATE(812), - [sym_subscript] = STATE(812), - [sym_call] = STATE(812), - [sym_list] = STATE(812), - [sym_set] = STATE(812), - [sym_tuple] = STATE(812), - [sym_dictionary] = STATE(812), - [sym_list_comprehension] = STATE(812), - [sym_dictionary_comprehension] = STATE(812), - [sym_set_comprehension] = STATE(812), - [sym_generator_expression] = STATE(812), - [sym_parenthesized_expression] = STATE(812), - [sym_conditional_expression] = STATE(1053), - [sym_concatenated_string] = STATE(812), - [sym_string] = STATE(741), - [sym_await] = STATE(1053), - [sym_identifier] = ACTIONS(622), - [anon_sym_DOT] = ACTIONS(276), - [anon_sym_LPAREN] = ACTIONS(624), - [anon_sym_RPAREN] = ACTIONS(303), - [anon_sym_COMMA] = ACTIONS(303), - [anon_sym_as] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(276), - [anon_sym_print] = ACTIONS(626), - [anon_sym_GT_GT] = ACTIONS(303), - [anon_sym_COLON_EQ] = ACTIONS(628), - [anon_sym_if] = ACTIONS(276), - [anon_sym_COLON] = ACTIONS(276), - [anon_sym_async] = ACTIONS(626), - [anon_sym_in] = ACTIONS(276), - [anon_sym_match] = ACTIONS(626), - [anon_sym_PIPE] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(630), - [anon_sym_PLUS] = ACTIONS(630), - [anon_sym_LBRACK] = ACTIONS(632), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_STAR_STAR] = ACTIONS(303), - [anon_sym_exec] = ACTIONS(626), - [anon_sym_type] = ACTIONS(626), - [anon_sym_AT] = ACTIONS(303), - [anon_sym_not] = ACTIONS(636), - [anon_sym_and] = ACTIONS(276), - [anon_sym_or] = ACTIONS(276), - [anon_sym_SLASH] = ACTIONS(276), - [anon_sym_PERCENT] = ACTIONS(303), - [anon_sym_SLASH_SLASH] = ACTIONS(303), - [anon_sym_AMP] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(303), - [anon_sym_LT_LT] = ACTIONS(303), - [anon_sym_TILDE] = ACTIONS(630), - [anon_sym_LT] = ACTIONS(276), - [anon_sym_LT_EQ] = ACTIONS(303), - [anon_sym_EQ_EQ] = ACTIONS(303), - [anon_sym_BANG_EQ] = ACTIONS(303), - [anon_sym_GT_EQ] = ACTIONS(303), - [anon_sym_GT] = ACTIONS(276), - [anon_sym_LT_GT] = ACTIONS(303), - [anon_sym_is] = ACTIONS(276), - [anon_sym_lambda] = ACTIONS(638), - [sym_ellipsis] = ACTIONS(640), - [sym_integer] = ACTIONS(642), - [sym_float] = ACTIONS(640), - [anon_sym_await] = ACTIONS(644), - [sym_true] = ACTIONS(642), - [sym_false] = ACTIONS(642), - [sym_none] = ACTIONS(642), - [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(646), - }, - [154] = { - [sym_named_expression] = STATE(904), - [sym_expression] = STATE(902), - [sym_primary_expression] = STATE(620), - [sym_not_operator] = STATE(904), - [sym_boolean_operator] = STATE(904), - [sym_binary_operator] = STATE(619), - [sym_unary_operator] = STATE(619), - [sym_comparison_operator] = STATE(904), - [sym_lambda] = STATE(904), - [sym_attribute] = STATE(619), - [sym_subscript] = STATE(619), - [sym_call] = STATE(619), - [sym_list] = STATE(619), - [sym_set] = STATE(619), - [sym_tuple] = STATE(619), - [sym_dictionary] = STATE(619), - [sym_list_comprehension] = STATE(619), - [sym_dictionary_comprehension] = STATE(619), - [sym_set_comprehension] = STATE(619), - [sym_generator_expression] = STATE(619), - [sym_parenthesized_expression] = STATE(619), - [sym_conditional_expression] = STATE(904), - [sym_concatenated_string] = STATE(619), - [sym_string] = STATE(604), - [sym_await] = STATE(904), - [sym_identifier] = ACTIONS(274), - [anon_sym_DOT] = ACTIONS(276), - [anon_sym_LPAREN] = ACTIONS(278), - [anon_sym_RPAREN] = ACTIONS(303), - [anon_sym_COMMA] = ACTIONS(303), - [anon_sym_STAR] = ACTIONS(276), - [anon_sym_print] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(303), - [anon_sym_COLON_EQ] = ACTIONS(562), - [anon_sym_if] = ACTIONS(276), - [anon_sym_async] = ACTIONS(285), - [anon_sym_in] = ACTIONS(276), - [anon_sym_match] = ACTIONS(285), - [anon_sym_PIPE] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(301), - [anon_sym_LBRACK] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(295), - [anon_sym_STAR_STAR] = ACTIONS(303), - [anon_sym_EQ] = ACTIONS(620), - [anon_sym_exec] = ACTIONS(285), - [anon_sym_type] = ACTIONS(285), - [anon_sym_AT] = ACTIONS(303), - [anon_sym_not] = ACTIONS(299), - [anon_sym_and] = ACTIONS(276), - [anon_sym_or] = ACTIONS(276), - [anon_sym_SLASH] = ACTIONS(276), - [anon_sym_PERCENT] = ACTIONS(303), - [anon_sym_SLASH_SLASH] = ACTIONS(303), - [anon_sym_AMP] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(303), - [anon_sym_LT_LT] = ACTIONS(303), - [anon_sym_TILDE] = ACTIONS(301), - [anon_sym_LT] = ACTIONS(276), - [anon_sym_LT_EQ] = ACTIONS(303), - [anon_sym_EQ_EQ] = ACTIONS(303), - [anon_sym_BANG_EQ] = ACTIONS(303), - [anon_sym_GT_EQ] = ACTIONS(303), - [anon_sym_GT] = ACTIONS(276), - [anon_sym_LT_GT] = ACTIONS(303), - [anon_sym_is] = ACTIONS(276), - [anon_sym_lambda] = ACTIONS(305), - [sym_ellipsis] = ACTIONS(309), - [sym_integer] = ACTIONS(311), - [sym_float] = ACTIONS(309), - [anon_sym_await] = ACTIONS(313), - [sym_true] = ACTIONS(311), - [sym_false] = ACTIONS(311), - [sym_none] = ACTIONS(311), - [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(315), + [sym__string_start] = ACTIONS(299), }, }; @@ -23742,30 +22331,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(81), 1, sym__string_start, - STATE(696), 1, - sym_primary_expression, - STATE(702), 1, + STATE(657), 1, sym_string, - STATE(891), 1, + STATE(692), 1, + sym_primary_expression, + STATE(856), 1, sym_pattern, - STATE(900), 1, + STATE(866), 1, sym_pattern_list, - STATE(1038), 1, + STATE(1017), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, sym_float, - STATE(415), 2, + STATE(358), 2, sym_attribute, sym_subscript, - STATE(1398), 2, + STATE(1326), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(880), 3, + STATE(846), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, @@ -23774,19 +22363,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(317), 5, + ACTIONS(301), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1365), 5, + STATE(1313), 5, sym_expression_list, sym_assignment, sym_augmented_assignment, sym__right_hand_side, sym_yield, - STATE(993), 7, + STATE(962), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -23794,7 +22383,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(801), 13, + STATE(752), 13, sym_binary_operator, sym_unary_operator, sym_call, @@ -23833,30 +22422,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(81), 1, sym__string_start, - STATE(696), 1, - sym_primary_expression, - STATE(702), 1, + STATE(657), 1, sym_string, - STATE(891), 1, + STATE(692), 1, + sym_primary_expression, + STATE(856), 1, sym_pattern, - STATE(900), 1, + STATE(866), 1, sym_pattern_list, - STATE(1038), 1, + STATE(1017), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, sym_float, - STATE(415), 2, + STATE(358), 2, sym_attribute, sym_subscript, - STATE(1398), 2, + STATE(1326), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(880), 3, + STATE(846), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, @@ -23865,19 +22454,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(317), 5, + ACTIONS(301), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1408), 5, + STATE(1314), 5, sym_expression_list, sym_assignment, sym_augmented_assignment, sym__right_hand_side, sym_yield, - STATE(993), 7, + STATE(962), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -23885,7 +22474,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(801), 13, + STATE(752), 13, sym_binary_operator, sym_unary_operator, sym_call, @@ -23924,30 +22513,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(81), 1, sym__string_start, - STATE(696), 1, - sym_primary_expression, - STATE(702), 1, + STATE(657), 1, sym_string, - STATE(891), 1, + STATE(692), 1, + sym_primary_expression, + STATE(856), 1, sym_pattern, - STATE(900), 1, + STATE(866), 1, sym_pattern_list, - STATE(1038), 1, + STATE(1017), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, sym_float, - STATE(415), 2, + STATE(358), 2, sym_attribute, sym_subscript, - STATE(1398), 2, + STATE(1326), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(880), 3, + STATE(846), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, @@ -23956,19 +22545,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(317), 5, + ACTIONS(301), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1410), 5, + STATE(1339), 5, sym_expression_list, sym_assignment, sym_augmented_assignment, sym__right_hand_side, sym_yield, - STATE(993), 7, + STATE(962), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -23976,7 +22565,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(801), 13, + STATE(752), 13, sym_binary_operator, sym_unary_operator, sym_call, @@ -23995,56 +22584,56 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(274), 1, + ACTIONS(258), 1, sym_identifier, - ACTIONS(278), 1, + ACTIONS(262), 1, anon_sym_LPAREN, - ACTIONS(283), 1, + ACTIONS(267), 1, anon_sym_STAR, - ACTIONS(293), 1, + ACTIONS(277), 1, anon_sym_LBRACK, - ACTIONS(295), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(299), 1, + ACTIONS(283), 1, anon_sym_not, - ACTIONS(305), 1, + ACTIONS(289), 1, anon_sym_lambda, - ACTIONS(313), 1, + ACTIONS(297), 1, anon_sym_await, - ACTIONS(315), 1, + ACTIONS(299), 1, sym__string_start, - ACTIONS(648), 1, + ACTIONS(616), 1, anon_sym_from, - STATE(604), 1, + STATE(570), 1, sym_string, - STATE(620), 1, + STATE(582), 1, sym_primary_expression, - STATE(922), 1, + STATE(895), 1, sym_expression, - STATE(1034), 1, + STATE(1024), 1, sym_expression_list, - ACTIONS(309), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(1413), 2, + STATE(1364), 2, sym_list_splat, sym_dictionary_splat, - ACTIONS(301), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(285), 5, + ACTIONS(269), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - ACTIONS(650), 7, + ACTIONS(618), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -24052,7 +22641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - STATE(904), 7, + STATE(874), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -24060,7 +22649,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(619), 15, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -24076,1008 +22665,163 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [464] = 27, + [464] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(652), 1, - sym_identifier, - ACTIONS(654), 1, - anon_sym_LPAREN, - ACTIONS(656), 1, - anon_sym_STAR, - ACTIONS(660), 1, - anon_sym_LBRACK, - ACTIONS(662), 1, - anon_sym_RBRACK, - ACTIONS(664), 1, - anon_sym_yield, - ACTIONS(666), 1, - anon_sym_await, - STATE(604), 1, - sym_string, - STATE(618), 1, - sym_primary_expression, - STATE(941), 1, - sym_expression, - STATE(1137), 1, - sym_pattern, - STATE(1434), 1, - sym__patterns, - STATE(1441), 1, - sym__collection_elements, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(797), 2, - sym_attribute, - sym_subscript, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(880), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - STATE(1122), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(658), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 13, - 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, - [579] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(652), 1, - sym_identifier, - ACTIONS(654), 1, - anon_sym_LPAREN, - ACTIONS(656), 1, - anon_sym_STAR, - ACTIONS(660), 1, - anon_sym_LBRACK, - ACTIONS(664), 1, - anon_sym_yield, - ACTIONS(666), 1, - anon_sym_await, - ACTIONS(668), 1, - anon_sym_RPAREN, - STATE(604), 1, - sym_string, - STATE(618), 1, - sym_primary_expression, - STATE(951), 1, - sym_expression, - STATE(1137), 1, - sym_pattern, - STATE(1221), 1, - sym_yield, - STATE(1448), 1, - sym__patterns, - STATE(1450), 1, - sym__collection_elements, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(797), 2, - sym_attribute, - sym_subscript, - STATE(1122), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(880), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(658), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 13, - 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, - [696] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(652), 1, - sym_identifier, - ACTIONS(654), 1, - anon_sym_LPAREN, - ACTIONS(656), 1, - anon_sym_STAR, - ACTIONS(660), 1, - anon_sym_LBRACK, - ACTIONS(664), 1, - anon_sym_yield, - ACTIONS(666), 1, - anon_sym_await, - ACTIONS(670), 1, - anon_sym_RPAREN, - STATE(604), 1, - sym_string, - STATE(618), 1, - sym_primary_expression, - STATE(951), 1, - sym_expression, - STATE(1137), 1, - sym_pattern, - STATE(1221), 1, - sym_yield, - STATE(1323), 1, - sym_parenthesized_list_splat, - STATE(1324), 1, - sym_list_splat, - STATE(1448), 1, - sym__patterns, - STATE(1450), 1, - sym__collection_elements, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(797), 2, - sym_attribute, - sym_subscript, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(880), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(658), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 13, - 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, - [815] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(652), 1, - sym_identifier, - ACTIONS(654), 1, - anon_sym_LPAREN, - ACTIONS(656), 1, - anon_sym_STAR, - ACTIONS(660), 1, - anon_sym_LBRACK, - ACTIONS(664), 1, - anon_sym_yield, - ACTIONS(666), 1, - anon_sym_await, - ACTIONS(672), 1, - anon_sym_RPAREN, - STATE(604), 1, - sym_string, - STATE(618), 1, - sym_primary_expression, - STATE(940), 1, - sym_expression, - STATE(1137), 1, - sym_pattern, - STATE(1303), 1, - sym_yield, - STATE(1442), 1, - sym__collection_elements, - STATE(1448), 1, - sym__patterns, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(797), 2, - sym_attribute, - sym_subscript, - STATE(1122), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(880), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(658), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 13, - 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, - [932] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(652), 1, - sym_identifier, - ACTIONS(654), 1, - anon_sym_LPAREN, - ACTIONS(656), 1, - anon_sym_STAR, - ACTIONS(660), 1, - anon_sym_LBRACK, - ACTIONS(664), 1, - anon_sym_yield, - ACTIONS(666), 1, - anon_sym_await, - ACTIONS(674), 1, - anon_sym_RBRACK, - STATE(604), 1, - sym_string, - STATE(618), 1, - sym_primary_expression, - STATE(952), 1, - sym_expression, - STATE(1137), 1, - sym_pattern, - STATE(1434), 1, - sym__patterns, - STATE(1530), 1, - sym__collection_elements, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(797), 2, - sym_attribute, - sym_subscript, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(880), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - STATE(1122), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(658), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 13, - 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, - [1047] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(652), 1, - sym_identifier, - ACTIONS(654), 1, - anon_sym_LPAREN, - ACTIONS(656), 1, - anon_sym_STAR, - ACTIONS(660), 1, - anon_sym_LBRACK, - ACTIONS(664), 1, - anon_sym_yield, - ACTIONS(666), 1, - anon_sym_await, - ACTIONS(676), 1, - anon_sym_RBRACK, - STATE(604), 1, - sym_string, - STATE(618), 1, - sym_primary_expression, - STATE(952), 1, - sym_expression, - STATE(1137), 1, - sym_pattern, - STATE(1434), 1, - sym__patterns, - STATE(1530), 1, - sym__collection_elements, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(797), 2, - sym_attribute, - sym_subscript, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(880), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - STATE(1122), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(658), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 13, - 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, - [1162] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(301), 1, - anon_sym_TILDE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(678), 1, - sym_identifier, - ACTIONS(680), 1, - anon_sym_LPAREN, - ACTIONS(682), 1, - anon_sym_STAR, - ACTIONS(688), 1, - anon_sym_in, - ACTIONS(690), 1, - anon_sym_LBRACK, - STATE(604), 1, - sym_string, - STATE(874), 1, - sym_pattern, - STATE(885), 1, - sym_primary_expression, - ACTIONS(291), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(768), 2, - sym_attribute, - sym_subscript, - STATE(880), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(684), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(619), 13, - 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, - ACTIONS(686), 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, - [1262] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(301), 1, - anon_sym_TILDE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(678), 1, - sym_identifier, - ACTIONS(680), 1, - anon_sym_LPAREN, - ACTIONS(682), 1, - anon_sym_STAR, - ACTIONS(690), 1, - anon_sym_LBRACK, - ACTIONS(694), 1, - anon_sym_in, - STATE(604), 1, - sym_string, - STATE(874), 1, - sym_pattern, - STATE(885), 1, - sym_primary_expression, - ACTIONS(291), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(768), 2, - sym_attribute, - sym_subscript, - STATE(880), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(684), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(619), 13, - 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, - ACTIONS(692), 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, - [1362] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(283), 1, - anon_sym_STAR, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, + ACTIONS(279), 1, anon_sym_LBRACE, ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, sym__string_start, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(949), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(1018), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - ACTIONS(696), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [1466] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(274), 1, + ACTIONS(582), 1, + anon_sym_not, + ACTIONS(584), 1, + anon_sym_lambda, + ACTIONS(620), 1, sym_identifier, - ACTIONS(278), 1, + ACTIONS(622), 1, anon_sym_LPAREN, - ACTIONS(283), 1, - anon_sym_STAR, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(949), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(1018), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - ACTIONS(698), 7, + ACTIONS(624), 1, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [1570] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(283), 1, + ACTIONS(626), 1, anon_sym_STAR, - ACTIONS(293), 1, + ACTIONS(630), 1, anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(949), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(1018), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - ACTIONS(698), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [1674] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(283), 1, - anon_sym_STAR, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(618), 1, - anon_sym_await, - ACTIONS(664), 1, + ACTIONS(632), 1, anon_sym_yield, - ACTIONS(700), 1, - anon_sym_LPAREN, - ACTIONS(702), 1, - anon_sym_COMMA, - ACTIONS(704), 1, - anon_sym_RBRACE, - STATE(604), 1, + ACTIONS(634), 1, + anon_sym_await, + STATE(570), 1, sym_string, - STATE(618), 1, + STATE(614), 1, sym_primary_expression, - STATE(932), 1, + STATE(921), 1, sym_expression, - STATE(1020), 1, - sym_pair, - STATE(1228), 1, - sym_dictionary_splat, - STATE(1524), 1, + STATE(1120), 1, + sym_pattern, + STATE(1203), 1, + sym_yield, + STATE(1247), 1, + sym_list_splat, + STATE(1262), 1, + sym_parenthesized_list_splat, + STATE(1392), 1, + sym__patterns, + STATE(1426), 1, sym__collection_elements, - ACTIONS(309), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(610), 3, + STATE(757), 2, + sym_attribute, + sym_subscript, + ACTIONS(578), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1122), 3, + STATE(846), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(628), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 13, + 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, + [583] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(582), 1, + anon_sym_not, + ACTIONS(584), 1, + anon_sym_lambda, + ACTIONS(620), 1, + sym_identifier, + ACTIONS(622), 1, + anon_sym_LPAREN, + ACTIONS(626), 1, + anon_sym_STAR, + ACTIONS(630), 1, + anon_sym_LBRACK, + ACTIONS(632), 1, + anon_sym_yield, + ACTIONS(634), 1, + anon_sym_await, + ACTIONS(636), 1, + anon_sym_RBRACK, + STATE(570), 1, + sym_string, + STATE(614), 1, + sym_primary_expression, + STATE(914), 1, + sym_expression, + STATE(1120), 1, + sym_pattern, + STATE(1385), 1, + sym__patterns, + STATE(1425), 1, + sym__collection_elements, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + STATE(757), 2, + sym_attribute, + sym_subscript, + ACTIONS(578), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(846), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + STATE(1078), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(311), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(606), 5, + ACTIONS(628), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(904), 7, + STATE(874), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -25085,11 +22829,9 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(619), 15, + STATE(607), 13, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -25101,70 +22843,424 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [1788] = 27, + [698] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(582), 1, + anon_sym_not, + ACTIONS(584), 1, + anon_sym_lambda, + ACTIONS(620), 1, + sym_identifier, + ACTIONS(622), 1, + anon_sym_LPAREN, + ACTIONS(626), 1, + anon_sym_STAR, + ACTIONS(630), 1, + anon_sym_LBRACK, + ACTIONS(632), 1, + anon_sym_yield, + ACTIONS(634), 1, + anon_sym_await, + ACTIONS(638), 1, + anon_sym_RBRACK, + STATE(570), 1, + sym_string, + STATE(614), 1, + sym_primary_expression, + STATE(911), 1, + sym_expression, + STATE(1120), 1, + sym_pattern, + STATE(1385), 1, + sym__patterns, + STATE(1401), 1, + sym__collection_elements, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + STATE(757), 2, + sym_attribute, + sym_subscript, + ACTIONS(578), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(846), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + STATE(1078), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(628), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 13, + 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, + [813] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(582), 1, + anon_sym_not, + ACTIONS(584), 1, + anon_sym_lambda, + ACTIONS(620), 1, + sym_identifier, + ACTIONS(622), 1, + anon_sym_LPAREN, + ACTIONS(626), 1, + anon_sym_STAR, + ACTIONS(630), 1, + anon_sym_LBRACK, + ACTIONS(632), 1, + anon_sym_yield, + ACTIONS(634), 1, + anon_sym_await, + ACTIONS(640), 1, + anon_sym_RPAREN, + STATE(570), 1, + sym_string, + STATE(614), 1, + sym_primary_expression, + STATE(916), 1, + sym_expression, + STATE(1120), 1, + sym_pattern, + STATE(1297), 1, + sym_yield, + STATE(1392), 1, + sym__patterns, + STATE(1393), 1, + sym__collection_elements, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + STATE(757), 2, + sym_attribute, + sym_subscript, + STATE(1078), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(578), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(846), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(628), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 13, + 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, + [930] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(582), 1, + anon_sym_not, + ACTIONS(584), 1, + anon_sym_lambda, + ACTIONS(620), 1, + sym_identifier, + ACTIONS(622), 1, + anon_sym_LPAREN, + ACTIONS(626), 1, + anon_sym_STAR, + ACTIONS(630), 1, + anon_sym_LBRACK, + ACTIONS(632), 1, + anon_sym_yield, + ACTIONS(634), 1, + anon_sym_await, + ACTIONS(642), 1, + anon_sym_RBRACK, + STATE(570), 1, + sym_string, + STATE(614), 1, + sym_primary_expression, + STATE(914), 1, + sym_expression, + STATE(1120), 1, + sym_pattern, + STATE(1385), 1, + sym__patterns, + STATE(1425), 1, + sym__collection_elements, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + STATE(757), 2, + sym_attribute, + sym_subscript, + ACTIONS(578), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(846), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + STATE(1078), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(628), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 13, + 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, + [1045] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(582), 1, + anon_sym_not, + ACTIONS(584), 1, + anon_sym_lambda, + ACTIONS(620), 1, + sym_identifier, + ACTIONS(622), 1, + anon_sym_LPAREN, + ACTIONS(626), 1, + anon_sym_STAR, + ACTIONS(630), 1, + anon_sym_LBRACK, + ACTIONS(632), 1, + anon_sym_yield, + ACTIONS(634), 1, + anon_sym_await, + ACTIONS(644), 1, + anon_sym_RPAREN, + STATE(570), 1, + sym_string, + STATE(614), 1, + sym_primary_expression, + STATE(921), 1, + sym_expression, + STATE(1120), 1, + sym_pattern, + STATE(1203), 1, + sym_yield, + STATE(1392), 1, + sym__patterns, + STATE(1426), 1, + sym__collection_elements, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + STATE(757), 2, + sym_attribute, + sym_subscript, + STATE(1078), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(578), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(846), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(628), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 13, + 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, + [1162] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(283), 1, + ACTIONS(267), 1, anon_sym_STAR, - ACTIONS(295), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(315), 1, + ACTIONS(299), 1, sym__string_start, - ACTIONS(602), 1, + ACTIONS(570), 1, sym_identifier, - ACTIONS(612), 1, + ACTIONS(580), 1, anon_sym_LBRACK, - ACTIONS(614), 1, + ACTIONS(582), 1, anon_sym_not, - ACTIONS(616), 1, + ACTIONS(584), 1, anon_sym_lambda, - ACTIONS(618), 1, + ACTIONS(586), 1, anon_sym_await, - ACTIONS(664), 1, + ACTIONS(632), 1, anon_sym_yield, - ACTIONS(700), 1, + ACTIONS(646), 1, anon_sym_LPAREN, - ACTIONS(706), 1, + ACTIONS(648), 1, anon_sym_COMMA, - ACTIONS(708), 1, + ACTIONS(650), 1, anon_sym_RBRACE, - STATE(604), 1, + STATE(570), 1, sym_string, - STATE(618), 1, + STATE(614), 1, sym_primary_expression, - STATE(927), 1, + STATE(890), 1, sym_expression, STATE(1021), 1, sym_pair, - STATE(1265), 1, + STATE(1189), 1, sym_dictionary_splat, - STATE(1429), 1, + STATE(1384), 1, sym__collection_elements, - ACTIONS(309), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(610), 3, + ACTIONS(578), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1122), 3, + STATE(1078), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(311), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(606), 5, + ACTIONS(574), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(904), 7, + STATE(874), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -25172,7 +23268,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(619), 15, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25188,70 +23284,396 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [1902] = 27, + [1276] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(283), 1, - anon_sym_STAR, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(602), 1, + ACTIONS(258), 1, sym_identifier, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(618), 1, - anon_sym_await, - ACTIONS(664), 1, - anon_sym_yield, - ACTIONS(700), 1, + ACTIONS(262), 1, anon_sym_LPAREN, - ACTIONS(710), 1, - anon_sym_COMMA, - ACTIONS(712), 1, - anon_sym_RBRACE, - STATE(604), 1, + ACTIONS(267), 1, + anon_sym_STAR, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + STATE(570), 1, sym_string, - STATE(618), 1, + STATE(582), 1, sym_primary_expression, - STATE(920), 1, + STATE(915), 1, sym_expression, - STATE(1029), 1, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + STATE(994), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + ACTIONS(652), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [1380] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(267), 1, + anon_sym_STAR, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(915), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + STATE(994), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + ACTIONS(654), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [1484] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(267), 1, + anon_sym_STAR, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(915), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + STATE(994), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + ACTIONS(654), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [1588] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(285), 1, + anon_sym_TILDE, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(656), 1, + sym_identifier, + ACTIONS(658), 1, + anon_sym_LPAREN, + ACTIONS(660), 1, + anon_sym_STAR, + ACTIONS(666), 1, + anon_sym_in, + ACTIONS(668), 1, + anon_sym_LBRACK, + STATE(570), 1, + sym_string, + STATE(847), 1, + sym_pattern, + STATE(853), 1, + sym_primary_expression, + ACTIONS(275), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + STATE(726), 2, + sym_attribute, + sym_subscript, + STATE(846), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(662), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(607), 13, + 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, + ACTIONS(664), 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, + [1688] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(267), 1, + anon_sym_STAR, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(570), 1, + sym_identifier, + ACTIONS(580), 1, + anon_sym_LBRACK, + ACTIONS(582), 1, + anon_sym_not, + ACTIONS(584), 1, + anon_sym_lambda, + ACTIONS(586), 1, + anon_sym_await, + ACTIONS(632), 1, + anon_sym_yield, + ACTIONS(646), 1, + anon_sym_LPAREN, + ACTIONS(670), 1, + anon_sym_COMMA, + ACTIONS(672), 1, + anon_sym_RBRACE, + STATE(570), 1, + sym_string, + STATE(614), 1, + sym_primary_expression, + STATE(892), 1, + sym_expression, + STATE(1027), 1, sym_pair, - STATE(1298), 1, + STATE(1210), 1, sym_dictionary_splat, - STATE(1444), 1, + STATE(1420), 1, sym__collection_elements, - ACTIONS(309), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(610), 3, + ACTIONS(578), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1122), 3, + STATE(1078), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(311), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(606), 5, + ACTIONS(574), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(904), 7, + STATE(874), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -25259,7 +23681,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(619), 15, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25275,382 +23697,70 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [2016] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(664), 1, - anon_sym_yield, - ACTIONS(714), 1, - anon_sym_LPAREN, - ACTIONS(718), 1, - anon_sym_STAR, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(1025), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(716), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(1136), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [2117] = 23, + [1802] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(283), 1, + ACTIONS(267), 1, anon_sym_STAR, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, + ACTIONS(279), 1, anon_sym_LBRACE, ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, sym__string_start, - ACTIONS(664), 1, - anon_sym_yield, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(956), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(1413), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1110), 3, - sym_expression_list, - sym_yield, - sym__f_expression, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [2220] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(283), 1, - anon_sym_STAR, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(700), 1, - anon_sym_LPAREN, - ACTIONS(720), 1, + ACTIONS(570), 1, sym_identifier, - ACTIONS(722), 1, - anon_sym_RPAREN, - ACTIONS(724), 1, + ACTIONS(580), 1, + anon_sym_LBRACK, + ACTIONS(582), 1, + anon_sym_not, + ACTIONS(584), 1, + anon_sym_lambda, + ACTIONS(586), 1, + anon_sym_await, + ACTIONS(632), 1, + anon_sym_yield, + ACTIONS(646), 1, + anon_sym_LPAREN, + ACTIONS(674), 1, anon_sym_COMMA, - ACTIONS(728), 1, - anon_sym_await, - STATE(604), 1, - sym_string, - STATE(618), 1, - sym_primary_expression, - STATE(943), 1, - sym_expression, - STATE(1218), 1, - sym_parenthesized_list_splat, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1220), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(726), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [2325] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(664), 1, - anon_sym_yield, - ACTIONS(714), 1, - anon_sym_LPAREN, - ACTIONS(718), 1, - anon_sym_STAR, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(1025), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(716), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(676), 1, anon_sym_RBRACE, - STATE(1136), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [2426] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(283), 1, - anon_sym_STAR, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(664), 1, - anon_sym_yield, - STATE(604), 1, + STATE(570), 1, sym_string, - STATE(620), 1, + STATE(614), 1, sym_primary_expression, - STATE(956), 1, + STATE(886), 1, sym_expression, - ACTIONS(309), 2, + STATE(1018), 1, + sym_pair, + STATE(1261), 1, + sym_dictionary_splat, + STATE(1403), 1, + sym__collection_elements, + ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(1413), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(301), 3, + ACTIONS(578), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1104), 3, - sym_expression_list, + STATE(1078), 3, + sym_list_splat, + sym_parenthesized_list_splat, sym_yield, - sym__f_expression, - ACTIONS(311), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(285), 5, + ACTIONS(574), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(904), 7, + STATE(874), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -25658,7 +23768,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(619), 15, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25674,7 +23784,87 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [2529] = 24, + [1916] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(285), 1, + anon_sym_TILDE, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(656), 1, + sym_identifier, + ACTIONS(658), 1, + anon_sym_LPAREN, + ACTIONS(660), 1, + anon_sym_STAR, + ACTIONS(668), 1, + anon_sym_LBRACK, + ACTIONS(680), 1, + anon_sym_in, + STATE(570), 1, + sym_string, + STATE(847), 1, + sym_pattern, + STATE(853), 1, + sym_primary_expression, + ACTIONS(275), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + STATE(726), 2, + sym_attribute, + sym_subscript, + STATE(846), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(662), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(607), 13, + 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, + ACTIONS(678), 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, + [2016] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -25687,33 +23877,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(283), 1, + ACTIONS(267), 1, anon_sym_STAR, - ACTIONS(391), 1, + ACTIONS(531), 1, sym_identifier, - ACTIONS(397), 1, + ACTIONS(537), 1, anon_sym_await, - ACTIONS(568), 1, + ACTIONS(552), 1, anon_sym_LPAREN, - ACTIONS(572), 1, + ACTIONS(556), 1, anon_sym_LBRACK, - ACTIONS(730), 1, + ACTIONS(682), 1, anon_sym_from, - STATE(696), 1, - sym_primary_expression, - STATE(702), 1, + STATE(657), 1, sym_string, - STATE(1042), 1, + STATE(692), 1, + sym_primary_expression, + STATE(979), 1, sym_expression, - STATE(1380), 1, + STATE(1295), 1, sym_expression_list, ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(650), 2, + ACTIONS(684), 2, sym__newline, anon_sym_SEMI, - STATE(1398), 2, + STATE(1326), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(47), 3, @@ -25725,13 +23915,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(393), 5, + ACTIONS(533), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(993), 7, + STATE(962), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -25739,7 +23929,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(801), 15, + STATE(752), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25755,227 +23945,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [2634] = 24, + [2121] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(283), 1, - anon_sym_STAR, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(700), 1, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, anon_sym_LPAREN, - ACTIONS(720), 1, - sym_identifier, - ACTIONS(728), 1, - anon_sym_await, - ACTIONS(732), 1, - anon_sym_RPAREN, - ACTIONS(734), 1, - anon_sym_COMMA, - STATE(604), 1, - sym_string, - STATE(618), 1, - sym_primary_expression, - STATE(950), 1, - sym_expression, - STATE(1264), 1, - sym_parenthesized_list_splat, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1263), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(726), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [2739] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(283), 1, + ACTIONS(267), 1, anon_sym_STAR, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(612), 1, + ACTIONS(277), 1, anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(700), 1, - anon_sym_LPAREN, - ACTIONS(720), 1, - sym_identifier, - ACTIONS(728), 1, - anon_sym_await, - ACTIONS(736), 1, - anon_sym_RPAREN, - ACTIONS(738), 1, - anon_sym_COMMA, - STATE(604), 1, - sym_string, - STATE(618), 1, - sym_primary_expression, - STATE(946), 1, - sym_expression, - STATE(1231), 1, - sym_parenthesized_list_splat, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1233), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(726), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [2844] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, + ACTIONS(283), 1, anon_sym_not, - ACTIONS(616), 1, + ACTIONS(289), 1, anon_sym_lambda, - ACTIONS(618), 1, + ACTIONS(297), 1, anon_sym_await, - ACTIONS(664), 1, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(632), 1, anon_sym_yield, - ACTIONS(700), 1, - anon_sym_LPAREN, - ACTIONS(718), 1, - anon_sym_STAR, - ACTIONS(740), 1, - anon_sym_RPAREN, - STATE(604), 1, + STATE(570), 1, sym_string, - STATE(618), 1, + STATE(582), 1, sym_primary_expression, - STATE(913), 1, + STATE(929), 1, sym_expression, - STATE(1282), 1, - sym_yield, - STATE(1302), 1, - sym_with_item, - STATE(1439), 1, - sym__collection_elements, - ACTIONS(309), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(1122), 2, + STATE(1364), 2, sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(610), 3, + sym_dictionary_splat, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + STATE(1093), 3, + sym_expression_list, + sym_yield, + sym__f_expression, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(606), 5, + ACTIONS(269), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(904), 7, + STATE(874), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -25983,7 +24009,570 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(619), 15, + STATE(607), 15, + 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, + [2224] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(267), 1, + anon_sym_STAR, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(580), 1, + anon_sym_LBRACK, + ACTIONS(582), 1, + anon_sym_not, + ACTIONS(584), 1, + anon_sym_lambda, + ACTIONS(646), 1, + anon_sym_LPAREN, + ACTIONS(686), 1, + sym_identifier, + ACTIONS(688), 1, + anon_sym_RPAREN, + ACTIONS(690), 1, + anon_sym_COMMA, + ACTIONS(694), 1, + anon_sym_await, + STATE(570), 1, + sym_string, + STATE(614), 1, + sym_primary_expression, + STATE(910), 1, + sym_expression, + STATE(1283), 1, + sym_parenthesized_list_splat, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(578), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1199), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(692), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [2329] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(570), 1, + sym_identifier, + ACTIONS(580), 1, + anon_sym_LBRACK, + ACTIONS(582), 1, + anon_sym_not, + ACTIONS(584), 1, + anon_sym_lambda, + ACTIONS(586), 1, + anon_sym_await, + ACTIONS(632), 1, + anon_sym_yield, + ACTIONS(646), 1, + anon_sym_LPAREN, + ACTIONS(696), 1, + anon_sym_RPAREN, + ACTIONS(698), 1, + anon_sym_STAR, + STATE(570), 1, + sym_string, + STATE(614), 1, + sym_primary_expression, + STATE(879), 1, + sym_expression, + STATE(1200), 1, + sym_yield, + STATE(1254), 1, + sym_with_item, + STATE(1389), 1, + sym__collection_elements, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + STATE(1078), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(578), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(574), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [2436] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(267), 1, + anon_sym_STAR, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(580), 1, + anon_sym_LBRACK, + ACTIONS(582), 1, + anon_sym_not, + ACTIONS(584), 1, + anon_sym_lambda, + ACTIONS(646), 1, + anon_sym_LPAREN, + ACTIONS(686), 1, + sym_identifier, + ACTIONS(694), 1, + anon_sym_await, + ACTIONS(700), 1, + anon_sym_RPAREN, + ACTIONS(702), 1, + anon_sym_COMMA, + STATE(570), 1, + sym_string, + STATE(614), 1, + sym_primary_expression, + STATE(922), 1, + sym_expression, + STATE(1246), 1, + sym_parenthesized_list_splat, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(578), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1245), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(692), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [2541] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(632), 1, + anon_sym_yield, + ACTIONS(698), 1, + anon_sym_STAR, + ACTIONS(704), 1, + anon_sym_LPAREN, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(999), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(706), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(1119), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [2642] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(632), 1, + anon_sym_yield, + ACTIONS(698), 1, + anon_sym_STAR, + ACTIONS(704), 1, + anon_sym_LPAREN, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(999), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(706), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(1119), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [2743] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(267), 1, + anon_sym_STAR, + ACTIONS(531), 1, + sym_identifier, + ACTIONS(537), 1, + anon_sym_await, + ACTIONS(552), 1, + anon_sym_LPAREN, + ACTIONS(556), 1, + anon_sym_LBRACK, + ACTIONS(708), 1, + anon_sym_from, + STATE(657), 1, + sym_string, + STATE(692), 1, + sym_primary_expression, + STATE(995), 1, + sym_expression, + STATE(1369), 1, + sym_expression_list, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(618), 2, + sym__newline, + anon_sym_SEMI, + STATE(1326), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(533), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(962), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(752), 15, + 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, + [2848] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(267), 1, + anon_sym_STAR, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(632), 1, + anon_sym_yield, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(929), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + STATE(1364), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1086), 3, + sym_expression_list, + sym_yield, + sym__f_expression, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26002,61 +24591,61 @@ static const uint16_t ts_small_parse_table[] = { [2951] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(283), 1, + ACTIONS(267), 1, anon_sym_STAR, - ACTIONS(391), 1, - sym_identifier, - ACTIONS(397), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(580), 1, anon_sym_LBRACK, - ACTIONS(742), 1, - anon_sym_from, - STATE(696), 1, - sym_primary_expression, - STATE(702), 1, + ACTIONS(582), 1, + anon_sym_not, + ACTIONS(584), 1, + anon_sym_lambda, + ACTIONS(646), 1, + anon_sym_LPAREN, + ACTIONS(686), 1, + sym_identifier, + ACTIONS(694), 1, + anon_sym_await, + ACTIONS(710), 1, + anon_sym_RPAREN, + ACTIONS(712), 1, + anon_sym_COMMA, + STATE(570), 1, sym_string, - STATE(972), 1, + STATE(614), 1, + sym_primary_expression, + STATE(920), 1, sym_expression, - STATE(1259), 1, - sym_expression_list, - ACTIONS(75), 2, + STATE(1244), 1, + sym_parenthesized_list_splat, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(744), 2, - sym__newline, - anon_sym_SEMI, - STATE(1398), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(47), 3, + ACTIONS(578), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + STATE(1249), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(393), 5, + ACTIONS(692), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(993), 7, + STATE(874), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -26064,7 +24653,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(801), 15, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26085,59 +24674,59 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(283), 1, + ACTIONS(267), 1, anon_sym_STAR, - ACTIONS(293), 1, + ACTIONS(277), 1, anon_sym_LBRACK, - ACTIONS(295), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(299), 1, + ACTIONS(283), 1, anon_sym_not, - ACTIONS(305), 1, + ACTIONS(289), 1, anon_sym_lambda, - ACTIONS(315), 1, + ACTIONS(299), 1, sym__string_start, - ACTIONS(714), 1, - anon_sym_LPAREN, - ACTIONS(732), 1, + ACTIONS(700), 1, anon_sym_RPAREN, - ACTIONS(734), 1, + ACTIONS(702), 1, anon_sym_COMMA, - ACTIONS(746), 1, + ACTIONS(704), 1, + anon_sym_LPAREN, + ACTIONS(714), 1, sym_identifier, - ACTIONS(750), 1, + ACTIONS(718), 1, anon_sym_await, - STATE(604), 1, + STATE(570), 1, sym_string, - STATE(620), 1, + STATE(582), 1, sym_primary_expression, - STATE(1077), 1, + STATE(1046), 1, sym_expression, - STATE(1264), 1, + STATE(1246), 1, sym_parenthesized_list_splat, - ACTIONS(309), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1263), 3, + STATE(1245), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(311), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(748), 5, + ACTIONS(716), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(904), 7, + STATE(874), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -26145,7 +24734,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(619), 15, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26164,59 +24753,59 @@ static const uint16_t ts_small_parse_table[] = { [3161] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(274), 1, + ACTIONS(258), 1, sym_identifier, - ACTIONS(293), 1, + ACTIONS(277), 1, anon_sym_LBRACK, - ACTIONS(295), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(299), 1, + ACTIONS(283), 1, anon_sym_not, - ACTIONS(305), 1, + ACTIONS(289), 1, anon_sym_lambda, - ACTIONS(313), 1, + ACTIONS(297), 1, anon_sym_await, - ACTIONS(315), 1, + ACTIONS(299), 1, sym__string_start, - ACTIONS(664), 1, + ACTIONS(632), 1, anon_sym_yield, - ACTIONS(714), 1, - anon_sym_LPAREN, - ACTIONS(718), 1, + ACTIONS(698), 1, anon_sym_STAR, - STATE(604), 1, + ACTIONS(704), 1, + anon_sym_LPAREN, + STATE(570), 1, sym_string, - STATE(620), 1, + STATE(582), 1, sym_primary_expression, - STATE(1025), 1, + STATE(999), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(752), 3, + ACTIONS(720), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - STATE(1136), 3, + STATE(1119), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(311), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(285), 5, + ACTIONS(269), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(904), 7, + STATE(874), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -26224,7 +24813,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(619), 15, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26243,59 +24832,59 @@ static const uint16_t ts_small_parse_table[] = { [3262] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(315), 1, + ACTIONS(299), 1, sym__string_start, - ACTIONS(602), 1, + ACTIONS(570), 1, sym_identifier, - ACTIONS(612), 1, + ACTIONS(580), 1, anon_sym_LBRACK, - ACTIONS(614), 1, + ACTIONS(582), 1, anon_sym_not, - ACTIONS(616), 1, + ACTIONS(584), 1, anon_sym_lambda, - ACTIONS(618), 1, + ACTIONS(586), 1, anon_sym_await, - ACTIONS(664), 1, + ACTIONS(632), 1, anon_sym_yield, - ACTIONS(700), 1, + ACTIONS(646), 1, anon_sym_LPAREN, - ACTIONS(718), 1, + ACTIONS(698), 1, anon_sym_STAR, - ACTIONS(754), 1, + ACTIONS(722), 1, anon_sym_RBRACK, - STATE(604), 1, + STATE(570), 1, sym_string, - STATE(618), 1, + STATE(614), 1, sym_primary_expression, - STATE(952), 1, + STATE(912), 1, sym_expression, - STATE(1530), 1, + STATE(1388), 1, sym__collection_elements, - ACTIONS(309), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(610), 3, + ACTIONS(578), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1122), 3, + STATE(1078), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(311), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(606), 5, + ACTIONS(574), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(904), 7, + STATE(874), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -26303,7 +24892,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(619), 15, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26319,60 +24908,218 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [3364] = 21, + [3364] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(315), 1, + ACTIONS(299), 1, sym__string_start, - ACTIONS(602), 1, + ACTIONS(570), 1, sym_identifier, - ACTIONS(604), 1, - anon_sym_LPAREN, - ACTIONS(612), 1, + ACTIONS(580), 1, anon_sym_LBRACK, - ACTIONS(614), 1, + ACTIONS(582), 1, anon_sym_not, - ACTIONS(618), 1, - anon_sym_await, - ACTIONS(760), 1, + ACTIONS(584), 1, anon_sym_lambda, - STATE(604), 1, + ACTIONS(586), 1, + anon_sym_await, + ACTIONS(632), 1, + anon_sym_yield, + ACTIONS(646), 1, + anon_sym_LPAREN, + ACTIONS(698), 1, + anon_sym_STAR, + ACTIONS(724), 1, + anon_sym_RBRACK, + STATE(570), 1, sym_string, - STATE(618), 1, + STATE(614), 1, sym_primary_expression, - STATE(959), 1, + STATE(914), 1, sym_expression, - ACTIONS(309), 2, + STATE(1425), 1, + sym__collection_elements, + ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(1032), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(610), 3, + ACTIONS(578), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(756), 3, + STATE(1078), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(574), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [3466] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(267), 1, + anon_sym_STAR, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(704), 1, + anon_sym_LPAREN, + ACTIONS(714), 1, + sym_identifier, + ACTIONS(718), 1, + anon_sym_await, + ACTIONS(726), 1, + anon_sym_RPAREN, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(1080), 1, + sym_expression, + STATE(1359), 1, + sym_parenthesized_list_splat, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1357), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(716), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [3568] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(570), 1, + sym_identifier, + ACTIONS(572), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, + anon_sym_LBRACK, + ACTIONS(582), 1, + anon_sym_not, + ACTIONS(586), 1, + anon_sym_await, + ACTIONS(732), 1, + anon_sym_lambda, + STATE(570), 1, + sym_string, + STATE(614), 1, + sym_primary_expression, + STATE(933), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + STATE(1004), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(578), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(728), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(758), 3, + ACTIONS(730), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(311), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(606), 4, + ACTIONS(574), 4, anon_sym_print, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(904), 7, + STATE(874), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -26380,7 +25127,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(619), 15, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26396,62 +25143,64 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [3462] = 23, + [3666] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(283), 1, - anon_sym_STAR, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, + ACTIONS(279), 1, anon_sym_LBRACE, ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(315), 1, sym__string_start, - ACTIONS(714), 1, - anon_sym_LPAREN, - ACTIONS(746), 1, + ACTIONS(570), 1, sym_identifier, - ACTIONS(750), 1, + ACTIONS(580), 1, + anon_sym_LBRACK, + ACTIONS(582), 1, + anon_sym_not, + ACTIONS(584), 1, + anon_sym_lambda, + ACTIONS(586), 1, anon_sym_await, - ACTIONS(762), 1, + ACTIONS(632), 1, + anon_sym_yield, + ACTIONS(646), 1, + anon_sym_LPAREN, + ACTIONS(696), 1, anon_sym_RPAREN, - STATE(604), 1, + ACTIONS(698), 1, + anon_sym_STAR, + STATE(570), 1, sym_string, - STATE(620), 1, + STATE(614), 1, sym_primary_expression, - STATE(1108), 1, + STATE(921), 1, sym_expression, - STATE(1370), 1, + STATE(1203), 1, + sym_yield, + STATE(1247), 1, + sym_list_splat, + STATE(1262), 1, sym_parenthesized_list_splat, - ACTIONS(309), 2, + STATE(1426), 1, + sym__collection_elements, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(578), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1368), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(311), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(748), 5, + ACTIONS(574), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(904), 7, + STATE(874), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -26459,7 +25208,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(619), 15, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26475,141 +25224,60 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [3564] = 23, + [3772] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(283), 1, - anon_sym_STAR, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, + ACTIONS(279), 1, anon_sym_LBRACE, ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(315), 1, sym__string_start, - ACTIONS(714), 1, - anon_sym_LPAREN, - ACTIONS(746), 1, + ACTIONS(570), 1, sym_identifier, - ACTIONS(750), 1, + ACTIONS(572), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, + anon_sym_LBRACK, + ACTIONS(582), 1, + anon_sym_not, + ACTIONS(586), 1, anon_sym_await, - ACTIONS(764), 1, + ACTIONS(732), 1, + anon_sym_lambda, + STATE(570), 1, + sym_string, + STATE(614), 1, + sym_primary_expression, + STATE(933), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + STATE(1004), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(578), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(734), 3, anon_sym_RPAREN, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(1108), 1, - sym_expression, - STATE(1370), 1, - sym_parenthesized_list_splat, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1368), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(748), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [3666] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(618), 1, - anon_sym_await, - ACTIONS(664), 1, - anon_sym_yield, - ACTIONS(700), 1, - anon_sym_LPAREN, - ACTIONS(718), 1, - anon_sym_STAR, - ACTIONS(766), 1, anon_sym_RBRACK, - STATE(604), 1, - sym_string, - STATE(618), 1, - sym_primary_expression, - STATE(942), 1, - sym_expression, - STATE(1433), 1, - sym__collection_elements, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1122), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(311), 4, + anon_sym_RBRACE, + ACTIONS(736), 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(606), 5, + ACTIONS(574), 4, anon_sym_print, - anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(904), 7, + STATE(874), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -26617,86 +25285,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(619), 15, - 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, - [3768] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(618), 1, - anon_sym_await, - ACTIONS(664), 1, - anon_sym_yield, - ACTIONS(700), 1, - anon_sym_LPAREN, - ACTIONS(718), 1, - anon_sym_STAR, - ACTIONS(768), 1, - anon_sym_RBRACK, - STATE(604), 1, - sym_string, - STATE(618), 1, - sym_primary_expression, - STATE(941), 1, - sym_expression, - STATE(1441), 1, - sym__collection_elements, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1122), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(606), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26715,60 +25304,60 @@ static const uint16_t ts_small_parse_table[] = { [3870] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(315), 1, + ACTIONS(299), 1, sym__string_start, - ACTIONS(602), 1, + ACTIONS(570), 1, sym_identifier, - ACTIONS(612), 1, + ACTIONS(580), 1, anon_sym_LBRACK, - ACTIONS(614), 1, + ACTIONS(582), 1, anon_sym_not, - ACTIONS(616), 1, + ACTIONS(584), 1, anon_sym_lambda, - ACTIONS(618), 1, + ACTIONS(586), 1, anon_sym_await, - ACTIONS(664), 1, + ACTIONS(632), 1, anon_sym_yield, - ACTIONS(700), 1, + ACTIONS(646), 1, anon_sym_LPAREN, - ACTIONS(718), 1, - anon_sym_STAR, - ACTIONS(740), 1, + ACTIONS(696), 1, anon_sym_RPAREN, - STATE(604), 1, + ACTIONS(698), 1, + anon_sym_STAR, + STATE(570), 1, sym_string, - STATE(618), 1, + STATE(614), 1, sym_primary_expression, - STATE(954), 1, + STATE(918), 1, sym_expression, - STATE(1282), 1, + STATE(1200), 1, sym_yield, - STATE(1439), 1, + STATE(1389), 1, sym__collection_elements, - ACTIONS(309), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(1122), 2, + STATE(1078), 2, sym_list_splat, sym_parenthesized_list_splat, - ACTIONS(610), 3, + ACTIONS(578), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(606), 5, + ACTIONS(574), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(904), 7, + STATE(874), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -26776,7 +25365,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(619), 15, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26795,59 +25384,59 @@ static const uint16_t ts_small_parse_table[] = { [3974] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(391), 1, - sym_identifier, - ACTIONS(397), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACK, - ACTIONS(770), 1, - anon_sym_from, - ACTIONS(772), 1, - anon_sym_STAR, - ACTIONS(774), 1, + ACTIONS(53), 1, anon_sym_STAR_STAR, - STATE(696), 1, - sym_primary_expression, - STATE(702), 1, + ACTIONS(267), 1, + anon_sym_STAR, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(704), 1, + anon_sym_LPAREN, + ACTIONS(714), 1, + sym_identifier, + ACTIONS(718), 1, + anon_sym_await, + ACTIONS(738), 1, + anon_sym_RPAREN, + STATE(570), 1, sym_string, - STATE(1022), 1, + STATE(582), 1, + sym_primary_expression, + STATE(1080), 1, sym_expression, - ACTIONS(75), 2, + STATE(1359), 1, + sym_parenthesized_list_splat, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(698), 2, - sym__newline, - anon_sym_SEMI, - STATE(1213), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(47), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + STATE(1357), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(393), 5, + ACTIONS(716), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(993), 7, + STATE(874), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -26855,7 +25444,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(801), 15, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26871,63 +25460,62 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [4076] = 24, + [4076] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(618), 1, - anon_sym_await, - ACTIONS(664), 1, - anon_sym_yield, - ACTIONS(700), 1, - anon_sym_LPAREN, - ACTIONS(718), 1, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(267), 1, anon_sym_STAR, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(704), 1, + anon_sym_LPAREN, + ACTIONS(714), 1, + sym_identifier, + ACTIONS(718), 1, + anon_sym_await, ACTIONS(740), 1, anon_sym_RPAREN, - STATE(604), 1, + STATE(570), 1, sym_string, - STATE(618), 1, + STATE(582), 1, sym_primary_expression, - STATE(951), 1, + STATE(1080), 1, sym_expression, - STATE(1221), 1, - sym_yield, - STATE(1450), 1, - sym__collection_elements, - ACTIONS(309), 2, + STATE(1359), 1, + sym_parenthesized_list_splat, + ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(1122), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(610), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + STATE(1357), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(606), 5, + ACTIONS(716), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(904), 7, + STATE(874), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -26935,7 +25523,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(619), 15, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26951,62 +25539,141 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [4180] = 23, + [4178] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(618), 1, - anon_sym_await, - ACTIONS(664), 1, - anon_sym_yield, - ACTIONS(700), 1, - anon_sym_LPAREN, - ACTIONS(718), 1, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(267), 1, anon_sym_STAR, - ACTIONS(766), 1, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(704), 1, + anon_sym_LPAREN, + ACTIONS(714), 1, + sym_identifier, + ACTIONS(718), 1, + anon_sym_await, + ACTIONS(742), 1, + anon_sym_RPAREN, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(1080), 1, + sym_expression, + STATE(1359), 1, + sym_parenthesized_list_splat, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1357), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(716), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [4280] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(570), 1, + sym_identifier, + ACTIONS(580), 1, + anon_sym_LBRACK, + ACTIONS(582), 1, + anon_sym_not, + ACTIONS(584), 1, + anon_sym_lambda, + ACTIONS(586), 1, + anon_sym_await, + ACTIONS(632), 1, + anon_sym_yield, + ACTIONS(646), 1, + anon_sym_LPAREN, + ACTIONS(698), 1, + anon_sym_STAR, + ACTIONS(722), 1, anon_sym_RBRACK, - STATE(604), 1, + STATE(570), 1, sym_string, - STATE(618), 1, + STATE(614), 1, sym_primary_expression, - STATE(952), 1, + STATE(914), 1, sym_expression, - STATE(1530), 1, + STATE(1425), 1, sym__collection_elements, - ACTIONS(309), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(610), 3, + ACTIONS(578), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1122), 3, + STATE(1078), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(311), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(606), 5, + ACTIONS(574), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(904), 7, + STATE(874), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -27014,7 +25681,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(619), 15, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27030,799 +25697,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [4282] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(283), 1, - anon_sym_STAR, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(714), 1, - anon_sym_LPAREN, - ACTIONS(746), 1, - sym_identifier, - ACTIONS(750), 1, - anon_sym_await, - ACTIONS(776), 1, - anon_sym_RPAREN, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(1108), 1, - sym_expression, - STATE(1370), 1, - sym_parenthesized_list_splat, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1368), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(748), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [4384] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(283), 1, - anon_sym_STAR, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(714), 1, - anon_sym_LPAREN, - ACTIONS(746), 1, - sym_identifier, - ACTIONS(750), 1, - anon_sym_await, - ACTIONS(778), 1, - anon_sym_RPAREN, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(1108), 1, - sym_expression, - STATE(1370), 1, - sym_parenthesized_list_splat, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1368), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(748), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [4486] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(391), 1, - sym_identifier, - ACTIONS(397), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACK, - ACTIONS(770), 1, - anon_sym_from, - ACTIONS(772), 1, - anon_sym_STAR, - ACTIONS(774), 1, - anon_sym_STAR_STAR, - STATE(696), 1, - sym_primary_expression, - STATE(702), 1, - sym_string, - STATE(1022), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(698), 2, - sym__newline, - anon_sym_SEMI, - STATE(1213), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(393), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(993), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(801), 15, - 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, - [4588] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(618), 1, - anon_sym_await, - ACTIONS(664), 1, - anon_sym_yield, - ACTIONS(700), 1, - anon_sym_LPAREN, - ACTIONS(718), 1, - anon_sym_STAR, - ACTIONS(780), 1, - anon_sym_RPAREN, - STATE(604), 1, - sym_string, - STATE(618), 1, - sym_primary_expression, - STATE(940), 1, - sym_expression, - STATE(1303), 1, - sym_yield, - STATE(1442), 1, - sym__collection_elements, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(1122), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(606), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [4692] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(391), 1, - sym_identifier, - ACTIONS(397), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACK, - ACTIONS(772), 1, - anon_sym_STAR, - ACTIONS(774), 1, - anon_sym_STAR_STAR, - ACTIONS(782), 1, - anon_sym_from, - STATE(696), 1, - sym_primary_expression, - STATE(702), 1, - sym_string, - STATE(1022), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(696), 2, - sym__newline, - anon_sym_SEMI, - STATE(1213), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(393), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(993), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(801), 15, - 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, - [4794] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(283), 1, - anon_sym_STAR, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(714), 1, - anon_sym_LPAREN, - ACTIONS(746), 1, - sym_identifier, - ACTIONS(750), 1, - anon_sym_await, - ACTIONS(784), 1, - anon_sym_RPAREN, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(1108), 1, - sym_expression, - STATE(1370), 1, - sym_parenthesized_list_splat, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1368), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(748), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [4896] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(283), 1, - anon_sym_STAR, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(714), 1, - anon_sym_LPAREN, - ACTIONS(746), 1, - sym_identifier, - ACTIONS(750), 1, - anon_sym_await, - ACTIONS(786), 1, - anon_sym_RPAREN, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(1108), 1, - sym_expression, - STATE(1370), 1, - sym_parenthesized_list_splat, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1368), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(748), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [4998] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(283), 1, - anon_sym_STAR, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(714), 1, - anon_sym_LPAREN, - ACTIONS(746), 1, - sym_identifier, - ACTIONS(750), 1, - anon_sym_await, - ACTIONS(788), 1, - anon_sym_RPAREN, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(1108), 1, - sym_expression, - STATE(1370), 1, - sym_parenthesized_list_splat, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1368), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(748), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [5100] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(618), 1, - anon_sym_await, - ACTIONS(664), 1, - anon_sym_yield, - ACTIONS(700), 1, - anon_sym_LPAREN, - ACTIONS(718), 1, - anon_sym_STAR, - ACTIONS(790), 1, - anon_sym_RPAREN, - STATE(604), 1, - sym_string, - STATE(618), 1, - sym_primary_expression, - STATE(951), 1, - sym_expression, - STATE(1221), 1, - sym_yield, - STATE(1450), 1, - sym__collection_elements, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(1122), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(606), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [5204] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(283), 1, - anon_sym_STAR, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(714), 1, - anon_sym_LPAREN, - ACTIONS(746), 1, - sym_identifier, - ACTIONS(750), 1, - anon_sym_await, - ACTIONS(792), 1, - anon_sym_RPAREN, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(1108), 1, - sym_expression, - STATE(1370), 1, - sym_parenthesized_list_splat, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1368), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(748), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [5306] = 23, + [4382] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -27835,31 +25710,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(283), 1, + ACTIONS(267), 1, anon_sym_STAR, - ACTIONS(391), 1, + ACTIONS(531), 1, sym_identifier, - ACTIONS(397), 1, + ACTIONS(537), 1, anon_sym_await, - ACTIONS(568), 1, + ACTIONS(552), 1, anon_sym_LPAREN, - ACTIONS(572), 1, + ACTIONS(556), 1, anon_sym_LBRACK, - STATE(696), 1, - sym_primary_expression, - STATE(702), 1, + STATE(657), 1, sym_string, - STATE(1033), 1, + STATE(692), 1, + sym_primary_expression, + STATE(1006), 1, sym_expression, - STATE(1388), 1, + STATE(1305), 1, sym_expression_list, ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(794), 2, + ACTIONS(744), 2, sym__newline, anon_sym_SEMI, - STATE(1398), 2, + STATE(1326), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(47), 3, @@ -27871,13 +25746,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(393), 5, + ACTIONS(533), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(993), 7, + STATE(962), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -27885,7 +25760,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(801), 15, + STATE(752), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27901,64 +25776,62 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [5408] = 25, + [4484] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(612), 1, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(267), 1, + anon_sym_STAR, + ACTIONS(277), 1, anon_sym_LBRACK, - ACTIONS(614), 1, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, anon_sym_not, - ACTIONS(616), 1, + ACTIONS(289), 1, anon_sym_lambda, - ACTIONS(618), 1, - anon_sym_await, - ACTIONS(664), 1, - anon_sym_yield, - ACTIONS(700), 1, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(704), 1, anon_sym_LPAREN, + ACTIONS(714), 1, + sym_identifier, ACTIONS(718), 1, - anon_sym_STAR, - ACTIONS(790), 1, + anon_sym_await, + ACTIONS(746), 1, anon_sym_RPAREN, - STATE(604), 1, + STATE(570), 1, sym_string, - STATE(618), 1, + STATE(582), 1, sym_primary_expression, - STATE(951), 1, + STATE(1080), 1, sym_expression, - STATE(1221), 1, - sym_yield, - STATE(1323), 1, + STATE(1359), 1, sym_parenthesized_list_splat, - STATE(1324), 1, - sym_list_splat, - STATE(1450), 1, - sym__collection_elements, - ACTIONS(309), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(610), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + STATE(1357), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(606), 5, + ACTIONS(716), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(904), 7, + STATE(874), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -27966,7 +25839,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(619), 15, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27982,692 +25855,220 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [5514] = 23, + [4586] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(531), 1, + sym_identifier, + ACTIONS(537), 1, + anon_sym_await, + ACTIONS(552), 1, + anon_sym_LPAREN, + ACTIONS(556), 1, + anon_sym_LBRACK, + ACTIONS(748), 1, + anon_sym_from, + ACTIONS(750), 1, + anon_sym_STAR, + ACTIONS(752), 1, + anon_sym_STAR_STAR, + STATE(657), 1, + sym_string, + STATE(692), 1, + sym_primary_expression, + STATE(990), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(652), 2, + sym__newline, + anon_sym_SEMI, + STATE(1103), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(533), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(962), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(752), 15, + 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, + [4688] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(531), 1, + sym_identifier, + ACTIONS(537), 1, + anon_sym_await, + ACTIONS(552), 1, + anon_sym_LPAREN, + ACTIONS(556), 1, + anon_sym_LBRACK, + ACTIONS(750), 1, + anon_sym_STAR, + ACTIONS(752), 1, + anon_sym_STAR_STAR, + ACTIONS(754), 1, + anon_sym_from, + STATE(657), 1, + sym_string, + STATE(692), 1, + sym_primary_expression, + STATE(990), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(654), 2, + sym__newline, + anon_sym_SEMI, + STATE(1103), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(533), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(962), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(752), 15, + 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, + [4790] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(283), 1, + ACTIONS(267), 1, anon_sym_STAR, - ACTIONS(293), 1, + ACTIONS(277), 1, anon_sym_LBRACK, - ACTIONS(295), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(714), 1, - anon_sym_LPAREN, - ACTIONS(746), 1, - sym_identifier, - ACTIONS(750), 1, - anon_sym_await, - ACTIONS(796), 1, - anon_sym_RPAREN, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(1108), 1, - sym_expression, - STATE(1370), 1, - sym_parenthesized_list_splat, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1368), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(748), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [5616] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, ACTIONS(283), 1, - anon_sym_STAR, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(315), 1, sym__string_start, + ACTIONS(704), 1, + anon_sym_LPAREN, ACTIONS(714), 1, - anon_sym_LPAREN, - ACTIONS(746), 1, sym_identifier, - ACTIONS(750), 1, - anon_sym_await, - ACTIONS(798), 1, - anon_sym_RPAREN, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(1108), 1, - sym_expression, - STATE(1370), 1, - sym_parenthesized_list_splat, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1368), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(748), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [5718] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(283), 1, - anon_sym_STAR, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(714), 1, - anon_sym_LPAREN, - ACTIONS(746), 1, - sym_identifier, - ACTIONS(750), 1, - anon_sym_await, - ACTIONS(800), 1, - anon_sym_RPAREN, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(1108), 1, - sym_expression, - STATE(1370), 1, - sym_parenthesized_list_splat, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1368), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(748), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [5820] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(604), 1, - anon_sym_LPAREN, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(618), 1, - anon_sym_await, - ACTIONS(760), 1, - anon_sym_lambda, - STATE(604), 1, - sym_string, - STATE(618), 1, - sym_primary_expression, - STATE(959), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(1032), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(802), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(804), 3, - anon_sym_if, - anon_sym_async, - anon_sym_for, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(606), 4, - anon_sym_print, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [5918] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(283), 1, - anon_sym_STAR, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(714), 1, - anon_sym_LPAREN, - ACTIONS(746), 1, - sym_identifier, - ACTIONS(750), 1, - anon_sym_await, - ACTIONS(806), 1, - anon_sym_RPAREN, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(1108), 1, - sym_expression, - STATE(1370), 1, - sym_parenthesized_list_splat, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1368), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(748), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [6020] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(604), 1, - anon_sym_LPAREN, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(618), 1, - anon_sym_await, - ACTIONS(760), 1, - anon_sym_lambda, - STATE(604), 1, - sym_string, - STATE(618), 1, - sym_primary_expression, - STATE(959), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(1032), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(808), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(810), 3, - anon_sym_if, - anon_sym_async, - anon_sym_for, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(606), 4, - anon_sym_print, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [6118] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(283), 1, - anon_sym_STAR, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(714), 1, - anon_sym_LPAREN, - ACTIONS(746), 1, - sym_identifier, - ACTIONS(750), 1, - anon_sym_await, - ACTIONS(812), 1, - anon_sym_RPAREN, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(1108), 1, - sym_expression, - STATE(1370), 1, - sym_parenthesized_list_splat, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1368), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(748), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [6220] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(283), 1, - anon_sym_STAR, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(714), 1, - anon_sym_LPAREN, - ACTIONS(746), 1, - sym_identifier, - ACTIONS(750), 1, - anon_sym_await, - ACTIONS(814), 1, - anon_sym_RPAREN, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(1108), 1, - sym_expression, - STATE(1370), 1, - sym_parenthesized_list_splat, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1368), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(748), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [6322] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(618), 1, - anon_sym_await, - ACTIONS(664), 1, - anon_sym_yield, - ACTIONS(700), 1, - anon_sym_LPAREN, ACTIONS(718), 1, - anon_sym_STAR, - ACTIONS(740), 1, + anon_sym_await, + ACTIONS(756), 1, anon_sym_RPAREN, - STATE(604), 1, + STATE(570), 1, sym_string, - STATE(618), 1, + STATE(582), 1, sym_primary_expression, - STATE(951), 1, + STATE(1080), 1, sym_expression, - STATE(1221), 1, - sym_yield, - STATE(1323), 1, + STATE(1359), 1, sym_parenthesized_list_splat, - STATE(1324), 1, - sym_list_splat, - STATE(1450), 1, - sym__collection_elements, - ACTIONS(309), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(610), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + STATE(1357), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(606), 5, + ACTIONS(716), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(904), 7, + STATE(874), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -28675,7 +26076,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(619), 15, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28691,62 +26092,218 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [6428] = 23, + [4892] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(570), 1, + sym_identifier, + ACTIONS(572), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, + anon_sym_LBRACK, + ACTIONS(582), 1, + anon_sym_not, + ACTIONS(586), 1, + anon_sym_await, + ACTIONS(732), 1, + anon_sym_lambda, + STATE(570), 1, + sym_string, + STATE(614), 1, + sym_primary_expression, + STATE(933), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + STATE(1004), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(578), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(758), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(760), 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(574), 4, + anon_sym_print, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [4990] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(531), 1, + sym_identifier, + ACTIONS(537), 1, + anon_sym_await, + ACTIONS(552), 1, + anon_sym_LPAREN, + ACTIONS(556), 1, + anon_sym_LBRACK, + ACTIONS(750), 1, + anon_sym_STAR, + ACTIONS(752), 1, + anon_sym_STAR_STAR, + ACTIONS(754), 1, + anon_sym_from, + STATE(657), 1, + sym_string, + STATE(692), 1, + sym_primary_expression, + STATE(990), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(654), 2, + sym__newline, + anon_sym_SEMI, + STATE(1103), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(533), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(962), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(752), 15, + 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, + [5092] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(283), 1, + ACTIONS(267), 1, anon_sym_STAR, - ACTIONS(293), 1, + ACTIONS(277), 1, anon_sym_LBRACK, - ACTIONS(295), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(299), 1, + ACTIONS(283), 1, anon_sym_not, - ACTIONS(305), 1, + ACTIONS(289), 1, anon_sym_lambda, - ACTIONS(315), 1, + ACTIONS(299), 1, sym__string_start, - ACTIONS(714), 1, + ACTIONS(704), 1, anon_sym_LPAREN, - ACTIONS(746), 1, + ACTIONS(714), 1, sym_identifier, - ACTIONS(750), 1, + ACTIONS(718), 1, anon_sym_await, - ACTIONS(816), 1, + ACTIONS(762), 1, anon_sym_RPAREN, - STATE(604), 1, + STATE(570), 1, sym_string, - STATE(620), 1, + STATE(582), 1, sym_primary_expression, - STATE(1108), 1, + STATE(1080), 1, sym_expression, - STATE(1370), 1, + STATE(1359), 1, sym_parenthesized_list_splat, - ACTIONS(309), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1368), 3, + STATE(1357), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(311), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(748), 5, + ACTIONS(716), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(904), 7, + STATE(874), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -28754,7 +26311,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(619), 15, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28770,60 +26327,62 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [6530] = 21, + [5194] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(604), 1, - anon_sym_LPAREN, - ACTIONS(612), 1, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(267), 1, + anon_sym_STAR, + ACTIONS(277), 1, anon_sym_LBRACK, - ACTIONS(614), 1, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, anon_sym_not, - ACTIONS(618), 1, - anon_sym_await, - ACTIONS(760), 1, + ACTIONS(289), 1, anon_sym_lambda, - STATE(604), 1, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(704), 1, + anon_sym_LPAREN, + ACTIONS(714), 1, + sym_identifier, + ACTIONS(718), 1, + anon_sym_await, + ACTIONS(764), 1, + anon_sym_RPAREN, + STATE(570), 1, sym_string, - STATE(618), 1, + STATE(582), 1, sym_primary_expression, - STATE(959), 1, + STATE(1080), 1, sym_expression, - ACTIONS(309), 2, + STATE(1359), 1, + sym_parenthesized_list_splat, + ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(1032), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(610), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(818), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(820), 3, - anon_sym_if, - anon_sym_async, - anon_sym_for, - ACTIONS(311), 4, + STATE(1357), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(606), 4, + ACTIONS(716), 5, anon_sym_print, + anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(904), 7, + STATE(874), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -28831,7 +26390,1037 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(619), 15, + STATE(607), 15, + 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, + [5296] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(267), 1, + anon_sym_STAR, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(704), 1, + anon_sym_LPAREN, + ACTIONS(714), 1, + sym_identifier, + ACTIONS(718), 1, + anon_sym_await, + ACTIONS(766), 1, + anon_sym_RPAREN, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(1080), 1, + sym_expression, + STATE(1359), 1, + sym_parenthesized_list_splat, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1357), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(716), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [5398] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(267), 1, + anon_sym_STAR, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(704), 1, + anon_sym_LPAREN, + ACTIONS(714), 1, + sym_identifier, + ACTIONS(718), 1, + anon_sym_await, + ACTIONS(768), 1, + anon_sym_RPAREN, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(1080), 1, + sym_expression, + STATE(1359), 1, + sym_parenthesized_list_splat, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1357), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(716), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [5500] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(267), 1, + anon_sym_STAR, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(704), 1, + anon_sym_LPAREN, + ACTIONS(714), 1, + sym_identifier, + ACTIONS(718), 1, + anon_sym_await, + ACTIONS(770), 1, + anon_sym_RPAREN, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(1080), 1, + sym_expression, + STATE(1359), 1, + sym_parenthesized_list_splat, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1357), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(716), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [5602] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(570), 1, + sym_identifier, + ACTIONS(572), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, + anon_sym_LBRACK, + ACTIONS(582), 1, + anon_sym_not, + ACTIONS(586), 1, + anon_sym_await, + ACTIONS(732), 1, + anon_sym_lambda, + STATE(570), 1, + sym_string, + STATE(614), 1, + sym_primary_expression, + STATE(933), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + STATE(1004), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(578), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(772), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(774), 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(574), 4, + anon_sym_print, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [5700] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(570), 1, + sym_identifier, + ACTIONS(580), 1, + anon_sym_LBRACK, + ACTIONS(582), 1, + anon_sym_not, + ACTIONS(584), 1, + anon_sym_lambda, + ACTIONS(586), 1, + anon_sym_await, + ACTIONS(632), 1, + anon_sym_yield, + ACTIONS(646), 1, + anon_sym_LPAREN, + ACTIONS(696), 1, + anon_sym_RPAREN, + ACTIONS(698), 1, + anon_sym_STAR, + STATE(570), 1, + sym_string, + STATE(614), 1, + sym_primary_expression, + STATE(921), 1, + sym_expression, + STATE(1203), 1, + sym_yield, + STATE(1426), 1, + sym__collection_elements, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + STATE(1078), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(578), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(574), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [5804] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(570), 1, + sym_identifier, + ACTIONS(580), 1, + anon_sym_LBRACK, + ACTIONS(582), 1, + anon_sym_not, + ACTIONS(584), 1, + anon_sym_lambda, + ACTIONS(586), 1, + anon_sym_await, + ACTIONS(632), 1, + anon_sym_yield, + ACTIONS(646), 1, + anon_sym_LPAREN, + ACTIONS(698), 1, + anon_sym_STAR, + ACTIONS(776), 1, + anon_sym_RPAREN, + STATE(570), 1, + sym_string, + STATE(614), 1, + sym_primary_expression, + STATE(921), 1, + sym_expression, + STATE(1203), 1, + sym_yield, + STATE(1247), 1, + sym_list_splat, + STATE(1262), 1, + sym_parenthesized_list_splat, + STATE(1426), 1, + sym__collection_elements, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(578), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(574), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [5910] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(267), 1, + anon_sym_STAR, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(704), 1, + anon_sym_LPAREN, + ACTIONS(714), 1, + sym_identifier, + ACTIONS(718), 1, + anon_sym_await, + ACTIONS(778), 1, + anon_sym_RPAREN, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(1080), 1, + sym_expression, + STATE(1359), 1, + sym_parenthesized_list_splat, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1357), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(716), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [6012] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(267), 1, + anon_sym_STAR, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(704), 1, + anon_sym_LPAREN, + ACTIONS(714), 1, + sym_identifier, + ACTIONS(718), 1, + anon_sym_await, + ACTIONS(780), 1, + anon_sym_RPAREN, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(1080), 1, + sym_expression, + STATE(1359), 1, + sym_parenthesized_list_splat, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1357), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(716), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [6114] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(267), 1, + anon_sym_STAR, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(704), 1, + anon_sym_LPAREN, + ACTIONS(714), 1, + sym_identifier, + ACTIONS(718), 1, + anon_sym_await, + ACTIONS(782), 1, + anon_sym_RPAREN, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(1080), 1, + sym_expression, + STATE(1359), 1, + sym_parenthesized_list_splat, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1357), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(716), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [6216] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(570), 1, + sym_identifier, + ACTIONS(580), 1, + anon_sym_LBRACK, + ACTIONS(582), 1, + anon_sym_not, + ACTIONS(584), 1, + anon_sym_lambda, + ACTIONS(586), 1, + anon_sym_await, + ACTIONS(632), 1, + anon_sym_yield, + ACTIONS(646), 1, + anon_sym_LPAREN, + ACTIONS(698), 1, + anon_sym_STAR, + ACTIONS(776), 1, + anon_sym_RPAREN, + STATE(570), 1, + sym_string, + STATE(614), 1, + sym_primary_expression, + STATE(921), 1, + sym_expression, + STATE(1203), 1, + sym_yield, + STATE(1426), 1, + sym__collection_elements, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + STATE(1078), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(578), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(574), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [6320] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(570), 1, + sym_identifier, + ACTIONS(580), 1, + anon_sym_LBRACK, + ACTIONS(582), 1, + anon_sym_not, + ACTIONS(584), 1, + anon_sym_lambda, + ACTIONS(586), 1, + anon_sym_await, + ACTIONS(632), 1, + anon_sym_yield, + ACTIONS(646), 1, + anon_sym_LPAREN, + ACTIONS(698), 1, + anon_sym_STAR, + ACTIONS(784), 1, + anon_sym_RPAREN, + STATE(570), 1, + sym_string, + STATE(614), 1, + sym_primary_expression, + STATE(916), 1, + sym_expression, + STATE(1297), 1, + sym_yield, + STATE(1393), 1, + sym__collection_elements, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + STATE(1078), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(578), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(574), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [6424] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(570), 1, + sym_identifier, + ACTIONS(580), 1, + anon_sym_LBRACK, + ACTIONS(582), 1, + anon_sym_not, + ACTIONS(584), 1, + anon_sym_lambda, + ACTIONS(586), 1, + anon_sym_await, + ACTIONS(632), 1, + anon_sym_yield, + ACTIONS(646), 1, + anon_sym_LPAREN, + ACTIONS(698), 1, + anon_sym_STAR, + ACTIONS(786), 1, + anon_sym_RBRACK, + STATE(570), 1, + sym_string, + STATE(614), 1, + sym_primary_expression, + STATE(911), 1, + sym_expression, + STATE(1401), 1, + sym__collection_elements, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(578), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1078), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(574), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [6526] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(267), 1, + anon_sym_STAR, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(704), 1, + anon_sym_LPAREN, + ACTIONS(714), 1, + sym_identifier, + ACTIONS(718), 1, + anon_sym_await, + ACTIONS(788), 1, + anon_sym_RPAREN, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(1080), 1, + sym_expression, + STATE(1359), 1, + sym_parenthesized_list_splat, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1357), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(716), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28850,7 +27439,7 @@ static const uint16_t ts_small_parse_table[] = { [6628] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(824), 17, + ACTIONS(792), 17, anon_sym_as, anon_sym_STAR, anon_sym_GT_GT, @@ -28868,7 +27457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(822), 36, + ACTIONS(790), 36, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -28908,7 +27497,7 @@ static const uint16_t ts_small_parse_table[] = { [6689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(828), 17, + ACTIONS(796), 17, anon_sym_as, anon_sym_STAR, anon_sym_GT_GT, @@ -28926,7 +27515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(826), 36, + ACTIONS(794), 36, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -28966,57 +27555,57 @@ static const uint16_t ts_small_parse_table[] = { [6750] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(274), 1, + ACTIONS(258), 1, sym_identifier, - ACTIONS(293), 1, + ACTIONS(277), 1, anon_sym_LBRACK, - ACTIONS(295), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(299), 1, + ACTIONS(283), 1, anon_sym_not, - ACTIONS(305), 1, + ACTIONS(289), 1, anon_sym_lambda, - ACTIONS(313), 1, + ACTIONS(297), 1, anon_sym_await, - ACTIONS(315), 1, + ACTIONS(299), 1, sym__string_start, - ACTIONS(664), 1, + ACTIONS(632), 1, anon_sym_yield, - ACTIONS(714), 1, - anon_sym_LPAREN, - ACTIONS(716), 1, - anon_sym_RPAREN, - ACTIONS(718), 1, + ACTIONS(698), 1, anon_sym_STAR, - STATE(604), 1, + ACTIONS(704), 1, + anon_sym_LPAREN, + ACTIONS(706), 1, + anon_sym_RPAREN, + STATE(570), 1, sym_string, - STATE(620), 1, + STATE(582), 1, sym_primary_expression, - STATE(1025), 1, + STATE(999), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1136), 3, + STATE(1119), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(311), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(285), 5, + ACTIONS(269), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(904), 7, + STATE(874), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -29024,7 +27613,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(619), 15, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29040,176 +27629,60 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [6849] = 3, + [6849] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(832), 17, - anon_sym_as, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(830), 36, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - sym_type_conversion, - [6910] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(836), 17, - anon_sym_as, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(834), 36, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - sym_type_conversion, - [6971] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, + ACTIONS(258), 1, sym_identifier, - ACTIONS(293), 1, + ACTIONS(277), 1, anon_sym_LBRACK, - ACTIONS(295), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(299), 1, + ACTIONS(283), 1, anon_sym_not, - ACTIONS(305), 1, + ACTIONS(289), 1, anon_sym_lambda, - ACTIONS(313), 1, + ACTIONS(297), 1, anon_sym_await, - ACTIONS(315), 1, + ACTIONS(299), 1, sym__string_start, - ACTIONS(664), 1, + ACTIONS(632), 1, anon_sym_yield, - ACTIONS(714), 1, - anon_sym_LPAREN, - ACTIONS(716), 1, - anon_sym_RPAREN, - ACTIONS(718), 1, + ACTIONS(698), 1, anon_sym_STAR, - STATE(604), 1, + ACTIONS(704), 1, + anon_sym_LPAREN, + ACTIONS(706), 1, + anon_sym_RPAREN, + STATE(570), 1, sym_string, - STATE(620), 1, + STATE(582), 1, sym_primary_expression, - STATE(1025), 1, + STATE(999), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1136), 3, + STATE(1119), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(311), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(285), 5, + ACTIONS(269), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(904), 7, + STATE(874), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -29217,7 +27690,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(619), 15, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29233,176 +27706,60 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [7070] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(836), 17, - anon_sym_as, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(834), 36, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - sym_type_conversion, - [7131] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(832), 17, - anon_sym_as, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(830), 36, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - sym_type_conversion, - [7192] = 22, + [6948] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(283), 1, + ACTIONS(267), 1, anon_sym_STAR, - ACTIONS(293), 1, + ACTIONS(277), 1, anon_sym_LBRACK, - ACTIONS(295), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(299), 1, + ACTIONS(283), 1, anon_sym_not, - ACTIONS(305), 1, + ACTIONS(289), 1, anon_sym_lambda, - ACTIONS(315), 1, + ACTIONS(299), 1, sym__string_start, - ACTIONS(714), 1, + ACTIONS(704), 1, anon_sym_LPAREN, - ACTIONS(746), 1, + ACTIONS(714), 1, sym_identifier, - ACTIONS(750), 1, + ACTIONS(718), 1, anon_sym_await, - STATE(604), 1, + STATE(570), 1, sym_string, - STATE(620), 1, + STATE(582), 1, sym_primary_expression, - STATE(1108), 1, + STATE(1080), 1, sym_expression, - STATE(1370), 1, + STATE(1359), 1, sym_parenthesized_list_splat, - ACTIONS(309), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1368), 3, + STATE(1357), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(311), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(748), 5, + ACTIONS(716), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(904), 7, + STATE(874), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -29410,7 +27767,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(619), 15, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29426,10 +27783,10 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [7291] = 3, + [7047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(840), 17, + ACTIONS(792), 17, anon_sym_as, anon_sym_STAR, anon_sym_GT_GT, @@ -29447,7 +27804,239 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(838), 36, + ACTIONS(790), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + sym_type_conversion, + [7108] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(800), 17, + anon_sym_as, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(798), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + sym_type_conversion, + [7169] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(804), 17, + anon_sym_as, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(802), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + sym_type_conversion, + [7230] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(808), 17, + anon_sym_as, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(806), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + sym_type_conversion, + [7291] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(800), 17, + anon_sym_as, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(798), 36, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -29487,56 +28076,56 @@ static const uint16_t ts_small_parse_table[] = { [7352] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(274), 1, + ACTIONS(258), 1, sym_identifier, - ACTIONS(278), 1, + ACTIONS(262), 1, anon_sym_LPAREN, - ACTIONS(293), 1, + ACTIONS(277), 1, anon_sym_LBRACK, - ACTIONS(295), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(299), 1, + ACTIONS(283), 1, anon_sym_not, - ACTIONS(305), 1, + ACTIONS(289), 1, anon_sym_lambda, - ACTIONS(313), 1, + ACTIONS(297), 1, anon_sym_await, - ACTIONS(315), 1, + ACTIONS(299), 1, sym__string_start, - ACTIONS(718), 1, + ACTIONS(698), 1, anon_sym_STAR, - ACTIONS(842), 1, + ACTIONS(810), 1, anon_sym_COLON, - ACTIONS(844), 1, + ACTIONS(812), 1, anon_sym_RBRACK, - STATE(604), 1, + STATE(570), 1, sym_string, - STATE(620), 1, + STATE(582), 1, sym_primary_expression, - STATE(1082), 1, + STATE(1041), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, STATE(1372), 2, sym_list_splat, sym_slice, - ACTIONS(301), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(285), 5, + ACTIONS(269), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(904), 7, + STATE(874), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -29544,7 +28133,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(619), 15, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29561,134 +28150,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, [7450] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(718), 1, - anon_sym_STAR, - ACTIONS(842), 1, - anon_sym_COLON, - ACTIONS(846), 1, - anon_sym_RBRACK, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(1082), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(1372), 2, - sym_list_splat, - sym_slice, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [7548] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(274), 1, + ACTIONS(258), 1, sym_identifier, - ACTIONS(278), 1, + ACTIONS(262), 1, anon_sym_LPAREN, - ACTIONS(283), 1, + ACTIONS(267), 1, anon_sym_STAR, - ACTIONS(293), 1, + ACTIONS(277), 1, anon_sym_LBRACK, - ACTIONS(295), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(299), 1, + ACTIONS(283), 1, anon_sym_not, - ACTIONS(305), 1, + ACTIONS(289), 1, anon_sym_lambda, - ACTIONS(313), 1, + ACTIONS(297), 1, anon_sym_await, - ACTIONS(315), 1, + ACTIONS(299), 1, sym__string_start, - STATE(604), 1, + STATE(570), 1, sym_string, - STATE(620), 1, + STATE(582), 1, sym_primary_expression, - STATE(1088), 1, + STATE(1051), 1, sym_expression, - STATE(1481), 1, + STATE(1497), 1, sym_expression_list, - ACTIONS(309), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(1413), 2, + STATE(1364), 2, sym_list_splat, sym_dictionary_splat, - ACTIONS(301), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(285), 5, + ACTIONS(269), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(904), 7, + STATE(874), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -29696,7 +28209,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(619), 15, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29712,478 +28225,23 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [7646] = 22, + [7548] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(283), 1, - anon_sym_STAR, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(1087), 1, - sym_expression, - STATE(1474), 1, - sym_expression_list, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(1413), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [7744] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(718), 1, - anon_sym_STAR, - ACTIONS(842), 1, - anon_sym_COLON, - ACTIONS(848), 1, - anon_sym_RBRACK, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(1082), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(1372), 2, - sym_list_splat, - sym_slice, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [7842] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(718), 1, - anon_sym_STAR, - ACTIONS(842), 1, - anon_sym_COLON, - ACTIONS(850), 1, - anon_sym_RBRACK, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(1082), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(1372), 2, - sym_list_splat, - sym_slice, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [7940] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(664), 1, - anon_sym_yield, - ACTIONS(714), 1, - anon_sym_LPAREN, - ACTIONS(718), 1, - anon_sym_STAR, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(1025), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1136), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [8036] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(718), 1, - anon_sym_STAR, - ACTIONS(842), 1, - anon_sym_COLON, - ACTIONS(852), 1, - anon_sym_RBRACK, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(1082), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(1372), 2, - sym_list_splat, - sym_slice, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [8134] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(283), 1, - anon_sym_STAR, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(1083), 1, - sym_expression, - STATE(1502), 1, - sym_expression_list, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(1413), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [8232] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(858), 1, + ACTIONS(818), 1, anon_sym_else, - ACTIONS(860), 1, + ACTIONS(820), 1, anon_sym_except, - ACTIONS(862), 1, + ACTIONS(822), 1, anon_sym_finally, - STATE(428), 1, + STATE(453), 1, sym_else_clause, - STATE(526), 1, + STATE(473), 1, sym_finally_clause, - STATE(291), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(856), 12, + STATE(292), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(816), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -30196,7 +28254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(854), 33, + ACTIONS(814), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -30230,59 +28288,59 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [8304] = 22, + [7620] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(274), 1, + ACTIONS(258), 1, sym_identifier, - ACTIONS(278), 1, + ACTIONS(262), 1, anon_sym_LPAREN, - ACTIONS(283), 1, - anon_sym_STAR, - ACTIONS(293), 1, + ACTIONS(277), 1, anon_sym_LBRACK, - ACTIONS(295), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(299), 1, + ACTIONS(283), 1, anon_sym_not, - ACTIONS(305), 1, + ACTIONS(289), 1, anon_sym_lambda, - ACTIONS(313), 1, + ACTIONS(297), 1, anon_sym_await, - ACTIONS(315), 1, + ACTIONS(299), 1, sym__string_start, - STATE(604), 1, + ACTIONS(698), 1, + anon_sym_STAR, + ACTIONS(810), 1, + anon_sym_COLON, + ACTIONS(824), 1, + anon_sym_RBRACK, + STATE(570), 1, sym_string, - STATE(620), 1, + STATE(582), 1, sym_primary_expression, - STATE(1079), 1, + STATE(1041), 1, sym_expression, - STATE(1463), 1, - sym_expression_list, - ACTIONS(309), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(1413), 2, + STATE(1372), 2, sym_list_splat, - sym_dictionary_splat, - ACTIONS(301), 3, + sym_slice, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(285), 5, + ACTIONS(269), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(904), 7, + STATE(874), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -30290,7 +28348,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(619), 15, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30306,70 +28364,387 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [8402] = 9, + [7718] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(868), 1, - anon_sym_else, - ACTIONS(870), 1, - anon_sym_except_STAR, - ACTIONS(872), 1, - anon_sym_finally, - STATE(420), 1, - sym_else_clause, - STATE(577), 1, - sym_finally_clause, - STATE(274), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(864), 12, - sym__string_start, - ts_builtin_sym_end, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(277), 1, anon_sym_LBRACK, + ACTIONS(279), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(698), 1, + anon_sym_STAR, + ACTIONS(810), 1, + anon_sym_COLON, + ACTIONS(826), 1, + anon_sym_RBRACK, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(1041), 1, + sym_expression, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(866), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + STATE(1372), 2, + sym_list_splat, + sym_slice, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [8474] = 22, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [7816] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(267), 1, + anon_sym_STAR, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(1057), 1, + sym_expression, + STATE(1444), 1, + sym_expression_list, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + STATE(1364), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [7914] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(698), 1, + anon_sym_STAR, + ACTIONS(810), 1, + anon_sym_COLON, + ACTIONS(828), 1, + anon_sym_RBRACK, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(1041), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + STATE(1372), 2, + sym_list_splat, + sym_slice, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [8012] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(698), 1, + anon_sym_STAR, + ACTIONS(810), 1, + anon_sym_COLON, + ACTIONS(830), 1, + anon_sym_RBRACK, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(1041), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + STATE(1372), 2, + sym_list_splat, + sym_slice, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [8110] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(698), 1, + anon_sym_STAR, + ACTIONS(810), 1, + anon_sym_COLON, + ACTIONS(832), 1, + anon_sym_RBRACK, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(1041), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + STATE(1372), 2, + sym_list_splat, + sym_slice, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [8208] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -30382,28 +28757,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(283), 1, + ACTIONS(267), 1, anon_sym_STAR, - ACTIONS(391), 1, + ACTIONS(531), 1, sym_identifier, - ACTIONS(397), 1, + ACTIONS(537), 1, anon_sym_await, - ACTIONS(568), 1, + ACTIONS(552), 1, anon_sym_LPAREN, - ACTIONS(572), 1, + ACTIONS(556), 1, anon_sym_LBRACK, - STATE(696), 1, - sym_primary_expression, - STATE(702), 1, + STATE(657), 1, sym_string, - STATE(1035), 1, + STATE(692), 1, + sym_primary_expression, + STATE(1001), 1, sym_expression, - STATE(1393), 1, + STATE(1307), 1, sym_expression_list, ACTIONS(75), 2, sym_ellipsis, sym_float, - STATE(1398), 2, + STATE(1326), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(47), 3, @@ -30415,13 +28790,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(393), 5, + ACTIONS(533), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(993), 7, + STATE(962), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -30429,7 +28804,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(801), 15, + STATE(752), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30445,59 +28820,122 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [8572] = 22, + [8306] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, + ACTIONS(818), 1, + anon_sym_else, + ACTIONS(822), 1, + anon_sym_finally, + ACTIONS(838), 1, + anon_sym_except, + STATE(449), 1, + sym_else_clause, + STATE(477), 1, + sym_finally_clause, + STATE(288), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(836), 12, + sym__dedent, sym__string_start, - ACTIONS(718), 1, - anon_sym_STAR, - ACTIONS(842), 1, - anon_sym_COLON, - ACTIONS(874), 1, - anon_sym_RBRACK, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(1082), 1, - sym_expression, - ACTIONS(309), 2, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, sym_ellipsis, sym_float, - STATE(1372), 2, + ACTIONS(834), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [8378] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(267), 1, + anon_sym_STAR, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(1055), 1, + sym_expression, + STATE(1437), 1, + sym_expression_list, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + STATE(1364), 2, sym_list_splat, - sym_slice, - ACTIONS(301), 3, + sym_dictionary_splat, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(285), 5, + ACTIONS(269), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(904), 7, + STATE(874), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -30505,7 +28943,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(619), 15, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30521,23 +28959,23 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [8670] = 9, + [8476] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(858), 1, + ACTIONS(818), 1, anon_sym_else, - ACTIONS(862), 1, + ACTIONS(820), 1, + anon_sym_except, + ACTIONS(822), 1, anon_sym_finally, - ACTIONS(876), 1, - anon_sym_except_STAR, - STATE(440), 1, + STATE(449), 1, sym_else_clause, - STATE(537), 1, + STATE(477), 1, sym_finally_clause, STATE(292), 2, sym_except_group_clause, aux_sym_try_statement_repeat2, - ACTIONS(864), 12, + ACTIONS(836), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -30550,7 +28988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(866), 33, + ACTIONS(834), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -30584,86 +29022,23 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [8742] = 9, + [8548] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(858), 1, + ACTIONS(840), 1, anon_sym_else, - ACTIONS(860), 1, + ACTIONS(842), 1, anon_sym_except, - ACTIONS(862), 1, + ACTIONS(844), 1, anon_sym_finally, - STATE(440), 1, + STATE(402), 1, sym_else_clause, - STATE(537), 1, + STATE(564), 1, sym_finally_clause, - STATE(291), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(864), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(866), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [8814] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(868), 1, - anon_sym_else, - ACTIONS(872), 1, - anon_sym_finally, - ACTIONS(878), 1, - anon_sym_except, - STATE(420), 1, - sym_else_clause, - STATE(577), 1, - sym_finally_clause, - STATE(275), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(864), 12, + STATE(289), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(836), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -30676,7 +29051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(866), 33, + ACTIONS(834), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -30710,59 +29085,58 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [8886] = 22, + [8620] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(274), 1, + ACTIONS(258), 1, sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, + ACTIONS(277), 1, anon_sym_LBRACK, - ACTIONS(295), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(299), 1, + ACTIONS(283), 1, anon_sym_not, - ACTIONS(305), 1, + ACTIONS(289), 1, anon_sym_lambda, - ACTIONS(313), 1, + ACTIONS(297), 1, anon_sym_await, - ACTIONS(315), 1, + ACTIONS(299), 1, sym__string_start, - ACTIONS(718), 1, + ACTIONS(632), 1, + anon_sym_yield, + ACTIONS(698), 1, anon_sym_STAR, - ACTIONS(842), 1, - anon_sym_COLON, - ACTIONS(880), 1, - anon_sym_RBRACK, - STATE(604), 1, + ACTIONS(704), 1, + anon_sym_LPAREN, + STATE(570), 1, sym_string, - STATE(620), 1, + STATE(582), 1, sym_primary_expression, - STATE(1082), 1, + STATE(999), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(1372), 2, - sym_list_splat, - sym_slice, - ACTIONS(301), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + STATE(1119), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(285), 5, + ACTIONS(269), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(904), 7, + STATE(874), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -30770,7 +29144,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(619), 15, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30786,59 +29160,59 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [8984] = 22, + [8716] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(274), 1, + ACTIONS(258), 1, sym_identifier, - ACTIONS(278), 1, + ACTIONS(262), 1, anon_sym_LPAREN, - ACTIONS(293), 1, + ACTIONS(277), 1, anon_sym_LBRACK, - ACTIONS(295), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(299), 1, + ACTIONS(283), 1, anon_sym_not, - ACTIONS(305), 1, + ACTIONS(289), 1, anon_sym_lambda, - ACTIONS(313), 1, + ACTIONS(297), 1, anon_sym_await, - ACTIONS(315), 1, + ACTIONS(299), 1, sym__string_start, - ACTIONS(718), 1, + ACTIONS(698), 1, anon_sym_STAR, - ACTIONS(842), 1, + ACTIONS(810), 1, anon_sym_COLON, - ACTIONS(882), 1, + ACTIONS(846), 1, anon_sym_RBRACK, - STATE(604), 1, + STATE(570), 1, sym_string, - STATE(620), 1, + STATE(582), 1, sym_primary_expression, - STATE(1082), 1, + STATE(1041), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, STATE(1372), 2, sym_list_splat, sym_slice, - ACTIONS(301), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(285), 5, + ACTIONS(269), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(904), 7, + STATE(874), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -30846,7 +29220,222 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(619), 15, + STATE(607), 15, + 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, + [8814] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(267), 1, + anon_sym_STAR, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(1044), 1, + sym_expression, + STATE(1478), 1, + sym_expression_list, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + STATE(1364), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [8912] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(840), 1, + anon_sym_else, + ACTIONS(844), 1, + anon_sym_finally, + ACTIONS(848), 1, + anon_sym_except, + STATE(402), 1, + sym_else_clause, + STATE(564), 1, + sym_finally_clause, + STATE(281), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(836), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(834), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [8984] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(698), 1, + anon_sym_STAR, + ACTIONS(810), 1, + anon_sym_COLON, + ACTIONS(850), 1, + anon_sym_RBRACK, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(1041), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + STATE(1372), 2, + sym_list_splat, + sym_slice, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30865,22 +29454,22 @@ static const uint16_t ts_small_parse_table[] = { [9082] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(868), 1, + ACTIONS(818), 1, anon_sym_else, - ACTIONS(870), 1, - anon_sym_except_STAR, - ACTIONS(872), 1, + ACTIONS(822), 1, anon_sym_finally, - STATE(480), 1, + ACTIONS(838), 1, + anon_sym_except, + STATE(453), 1, sym_else_clause, - STATE(512), 1, + STATE(473), 1, sym_finally_clause, - STATE(274), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(856), 12, + STATE(288), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(816), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -30891,7 +29480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(854), 33, + ACTIONS(814), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -30928,20 +29517,20 @@ static const uint16_t ts_small_parse_table[] = { [9154] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(868), 1, + ACTIONS(840), 1, anon_sym_else, - ACTIONS(872), 1, - anon_sym_finally, - ACTIONS(878), 1, + ACTIONS(842), 1, anon_sym_except, - STATE(480), 1, + ACTIONS(844), 1, + anon_sym_finally, + STATE(426), 1, sym_else_clause, - STATE(512), 1, + STATE(506), 1, sym_finally_clause, - STATE(275), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(856), 12, + STATE(289), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(816), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -30954,7 +29543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(854), 33, + ACTIONS(814), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -30991,56 +29580,56 @@ static const uint16_t ts_small_parse_table[] = { [9226] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(274), 1, + ACTIONS(258), 1, sym_identifier, - ACTIONS(278), 1, + ACTIONS(262), 1, anon_sym_LPAREN, - ACTIONS(293), 1, + ACTIONS(277), 1, anon_sym_LBRACK, - ACTIONS(295), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(299), 1, + ACTIONS(283), 1, anon_sym_not, - ACTIONS(305), 1, + ACTIONS(289), 1, anon_sym_lambda, - ACTIONS(313), 1, + ACTIONS(297), 1, anon_sym_await, - ACTIONS(315), 1, + ACTIONS(299), 1, sym__string_start, - ACTIONS(718), 1, + ACTIONS(698), 1, anon_sym_STAR, - ACTIONS(842), 1, + ACTIONS(810), 1, anon_sym_COLON, - ACTIONS(884), 1, + ACTIONS(852), 1, anon_sym_RBRACK, - STATE(604), 1, + STATE(570), 1, sym_string, - STATE(620), 1, + STATE(582), 1, sym_primary_expression, - STATE(1082), 1, + STATE(1041), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, STATE(1372), 2, sym_list_splat, sym_slice, - ACTIONS(301), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(285), 5, + ACTIONS(269), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(904), 7, + STATE(874), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -31048,7 +29637,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(619), 15, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31067,22 +29656,22 @@ static const uint16_t ts_small_parse_table[] = { [9324] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(858), 1, + ACTIONS(840), 1, anon_sym_else, - ACTIONS(862), 1, + ACTIONS(844), 1, anon_sym_finally, - ACTIONS(876), 1, - anon_sym_except_STAR, - STATE(428), 1, + ACTIONS(848), 1, + anon_sym_except, + STATE(426), 1, sym_else_clause, - STATE(526), 1, + STATE(506), 1, sym_finally_clause, - STATE(292), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(856), 12, - sym__dedent, + STATE(281), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(816), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -31093,7 +29682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(854), 33, + ACTIONS(814), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -31130,54 +29719,54 @@ static const uint16_t ts_small_parse_table[] = { [9396] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(274), 1, + ACTIONS(258), 1, sym_identifier, - ACTIONS(278), 1, + ACTIONS(262), 1, anon_sym_LPAREN, - ACTIONS(293), 1, + ACTIONS(277), 1, anon_sym_LBRACK, - ACTIONS(295), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(299), 1, + ACTIONS(283), 1, anon_sym_not, - ACTIONS(305), 1, + ACTIONS(289), 1, anon_sym_lambda, - ACTIONS(313), 1, + ACTIONS(297), 1, anon_sym_await, - ACTIONS(315), 1, + ACTIONS(299), 1, sym__string_start, - ACTIONS(886), 1, - anon_sym_RBRACE, - STATE(604), 1, + ACTIONS(698), 1, + anon_sym_STAR, + ACTIONS(810), 1, + anon_sym_COLON, + STATE(570), 1, sym_string, - STATE(620), 1, + STATE(582), 1, sym_primary_expression, - STATE(1170), 1, + STATE(1020), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(1348), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(301), 3, + STATE(1248), 2, + sym_list_splat, + sym_slice, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(285), 5, + ACTIONS(269), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(904), 7, + STATE(874), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -31185,7 +29774,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(619), 15, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31206,52 +29795,52 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(274), 1, + ACTIONS(258), 1, sym_identifier, - ACTIONS(278), 1, + ACTIONS(262), 1, anon_sym_LPAREN, - ACTIONS(293), 1, + ACTIONS(277), 1, anon_sym_LBRACK, - ACTIONS(295), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(299), 1, + ACTIONS(283), 1, anon_sym_not, - ACTIONS(305), 1, + ACTIONS(289), 1, anon_sym_lambda, - ACTIONS(313), 1, + ACTIONS(297), 1, anon_sym_await, - ACTIONS(315), 1, + ACTIONS(299), 1, sym__string_start, - ACTIONS(888), 1, + ACTIONS(854), 1, anon_sym_RBRACE, - STATE(604), 1, + STATE(570), 1, sym_string, - STATE(620), 1, + STATE(582), 1, sym_primary_expression, - STATE(1170), 1, + STATE(1164), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(1348), 2, + STATE(1365), 2, sym_dictionary_splat, sym_pair, - ACTIONS(301), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(285), 5, + ACTIONS(269), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(904), 7, + STATE(874), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -31259,7 +29848,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(619), 15, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31278,54 +29867,54 @@ static const uint16_t ts_small_parse_table[] = { [9586] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(274), 1, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(258), 1, sym_identifier, - ACTIONS(278), 1, + ACTIONS(262), 1, anon_sym_LPAREN, - ACTIONS(293), 1, + ACTIONS(277), 1, anon_sym_LBRACK, - ACTIONS(295), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(299), 1, + ACTIONS(283), 1, anon_sym_not, - ACTIONS(305), 1, + ACTIONS(289), 1, anon_sym_lambda, - ACTIONS(313), 1, + ACTIONS(297), 1, anon_sym_await, - ACTIONS(315), 1, + ACTIONS(299), 1, sym__string_start, - ACTIONS(718), 1, - anon_sym_STAR, - ACTIONS(842), 1, - anon_sym_COLON, - STATE(604), 1, + ACTIONS(856), 1, + anon_sym_RBRACE, + STATE(570), 1, sym_string, - STATE(620), 1, + STATE(582), 1, sym_primary_expression, - STATE(1082), 1, + STATE(1164), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(1372), 2, - sym_list_splat, - sym_slice, - ACTIONS(301), 3, + STATE(1365), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(285), 5, + ACTIONS(269), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(904), 7, + STATE(874), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -31333,7 +29922,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(619), 15, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31352,54 +29941,54 @@ static const uint16_t ts_small_parse_table[] = { [9681] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(274), 1, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(258), 1, sym_identifier, - ACTIONS(278), 1, + ACTIONS(262), 1, anon_sym_LPAREN, - ACTIONS(293), 1, + ACTIONS(277), 1, anon_sym_LBRACK, - ACTIONS(295), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(299), 1, + ACTIONS(283), 1, anon_sym_not, - ACTIONS(305), 1, + ACTIONS(289), 1, anon_sym_lambda, - ACTIONS(313), 1, + ACTIONS(297), 1, anon_sym_await, - ACTIONS(315), 1, + ACTIONS(299), 1, sym__string_start, - ACTIONS(718), 1, - anon_sym_STAR, - ACTIONS(842), 1, - anon_sym_COLON, - STATE(604), 1, + ACTIONS(858), 1, + anon_sym_RBRACE, + STATE(570), 1, sym_string, - STATE(620), 1, + STATE(582), 1, sym_primary_expression, - STATE(1019), 1, + STATE(1164), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(1229), 2, - sym_list_splat, - sym_slice, - ACTIONS(301), 3, + STATE(1365), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(285), 5, + ACTIONS(269), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(904), 7, + STATE(874), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -31407,7 +29996,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(619), 15, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31426,54 +30015,54 @@ static const uint16_t ts_small_parse_table[] = { [9776] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(274), 1, + ACTIONS(258), 1, sym_identifier, - ACTIONS(278), 1, + ACTIONS(262), 1, anon_sym_LPAREN, - ACTIONS(293), 1, + ACTIONS(277), 1, anon_sym_LBRACK, - ACTIONS(295), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(299), 1, + ACTIONS(283), 1, anon_sym_not, - ACTIONS(305), 1, + ACTIONS(289), 1, anon_sym_lambda, - ACTIONS(313), 1, + ACTIONS(297), 1, anon_sym_await, - ACTIONS(315), 1, + ACTIONS(299), 1, sym__string_start, - ACTIONS(890), 1, - anon_sym_RBRACE, - STATE(604), 1, + ACTIONS(698), 1, + anon_sym_STAR, + ACTIONS(810), 1, + anon_sym_COLON, + STATE(570), 1, sym_string, - STATE(620), 1, + STATE(582), 1, sym_primary_expression, - STATE(1170), 1, + STATE(997), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(1348), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(301), 3, + STATE(1276), 2, + sym_list_splat, + sym_slice, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(285), 5, + ACTIONS(269), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(904), 7, + STATE(874), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -31481,7 +30070,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(619), 15, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31502,52 +30091,52 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(274), 1, + ACTIONS(258), 1, sym_identifier, - ACTIONS(278), 1, + ACTIONS(262), 1, anon_sym_LPAREN, - ACTIONS(283), 1, - anon_sym_STAR, - ACTIONS(293), 1, + ACTIONS(277), 1, anon_sym_LBRACK, - ACTIONS(295), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(299), 1, + ACTIONS(283), 1, anon_sym_not, - ACTIONS(305), 1, + ACTIONS(289), 1, anon_sym_lambda, - ACTIONS(313), 1, + ACTIONS(297), 1, anon_sym_await, - ACTIONS(315), 1, + ACTIONS(299), 1, sym__string_start, - STATE(604), 1, + ACTIONS(860), 1, + anon_sym_RBRACE, + STATE(570), 1, sym_string, - STATE(620), 1, + STATE(582), 1, sym_primary_expression, - STATE(949), 1, + STATE(1164), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(1018), 2, - sym_list_splat, + STATE(1365), 2, sym_dictionary_splat, - ACTIONS(301), 3, + sym_pair, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(285), 5, + ACTIONS(269), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(904), 7, + STATE(874), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -31555,7 +30144,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(619), 15, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31576,52 +30165,52 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(274), 1, + ACTIONS(258), 1, sym_identifier, - ACTIONS(278), 1, + ACTIONS(262), 1, anon_sym_LPAREN, - ACTIONS(293), 1, + ACTIONS(277), 1, anon_sym_LBRACK, - ACTIONS(295), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(299), 1, + ACTIONS(283), 1, anon_sym_not, - ACTIONS(305), 1, + ACTIONS(289), 1, anon_sym_lambda, - ACTIONS(313), 1, + ACTIONS(297), 1, anon_sym_await, - ACTIONS(315), 1, + ACTIONS(299), 1, sym__string_start, - ACTIONS(892), 1, + ACTIONS(862), 1, anon_sym_RBRACE, - STATE(604), 1, + STATE(570), 1, sym_string, - STATE(620), 1, + STATE(582), 1, sym_primary_expression, - STATE(1170), 1, + STATE(1164), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(1348), 2, + STATE(1365), 2, sym_dictionary_splat, sym_pair, - ACTIONS(301), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(285), 5, + ACTIONS(269), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(904), 7, + STATE(874), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -31629,7 +30218,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(619), 15, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31648,54 +30237,54 @@ static const uint16_t ts_small_parse_table[] = { [10061] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(274), 1, + ACTIONS(258), 1, sym_identifier, - ACTIONS(278), 1, + ACTIONS(262), 1, anon_sym_LPAREN, - ACTIONS(293), 1, + ACTIONS(277), 1, anon_sym_LBRACK, - ACTIONS(295), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(299), 1, + ACTIONS(283), 1, anon_sym_not, - ACTIONS(305), 1, + ACTIONS(289), 1, anon_sym_lambda, - ACTIONS(313), 1, + ACTIONS(297), 1, anon_sym_await, - ACTIONS(315), 1, + ACTIONS(299), 1, sym__string_start, - ACTIONS(894), 1, - anon_sym_RBRACE, - STATE(604), 1, + ACTIONS(698), 1, + anon_sym_STAR, + ACTIONS(810), 1, + anon_sym_COLON, + STATE(570), 1, sym_string, - STATE(620), 1, + STATE(582), 1, sym_primary_expression, - STATE(1170), 1, + STATE(1041), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(1348), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(301), 3, + STATE(1372), 2, + sym_list_splat, + sym_slice, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(285), 5, + ACTIONS(269), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(904), 7, + STATE(874), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -31703,7 +30292,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(619), 15, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31719,23 +30308,319 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [10156] = 10, + [10156] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(280), 1, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(864), 1, + anon_sym_RBRACE, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(1164), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + STATE(1365), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [10251] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(698), 1, + anon_sym_STAR, + ACTIONS(810), 1, + anon_sym_COLON, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(1012), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + STATE(1294), 2, + sym_list_splat, + sym_slice, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [10346] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(866), 1, + anon_sym_RBRACE, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(1164), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + STATE(1365), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [10441] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(868), 1, + anon_sym_RBRACE, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(1164), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + STATE(1365), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [10536] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(264), 1, anon_sym_COMMA, - ACTIONS(287), 1, + ACTIONS(271), 1, anon_sym_COLON_EQ, - ACTIONS(896), 1, + ACTIONS(870), 1, anon_sym_for, - ACTIONS(898), 1, + ACTIONS(872), 1, anon_sym_with, - ACTIONS(900), 1, + ACTIONS(874), 1, anon_sym_def, - ACTIONS(289), 2, + ACTIONS(273), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(307), 13, + ACTIONS(291), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -31749,7 +30634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(276), 15, + ACTIONS(260), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_PIPE, @@ -31765,7 +30650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(303), 16, + ACTIONS(287), 16, sym__newline, anon_sym_DOT, anon_sym_LPAREN, @@ -31782,144 +30667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [10229] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(902), 1, - anon_sym_RBRACE, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(1170), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(1348), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [10324] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(280), 1, - anon_sym_COMMA, - ACTIONS(287), 1, - anon_sym_COLON_EQ, - ACTIONS(904), 1, - anon_sym_for, - ACTIONS(906), 1, - anon_sym_with, - ACTIONS(908), 1, - anon_sym_def, - ACTIONS(289), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(307), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(276), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(303), 16, - sym__newline, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [10397] = 21, + [10609] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -31930,28 +30678,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(391), 1, + ACTIONS(531), 1, sym_identifier, - ACTIONS(397), 1, + ACTIONS(537), 1, anon_sym_await, - ACTIONS(568), 1, + ACTIONS(552), 1, anon_sym_LPAREN, - ACTIONS(572), 1, + ACTIONS(556), 1, anon_sym_LBRACK, - ACTIONS(772), 1, + ACTIONS(750), 1, anon_sym_STAR, - ACTIONS(774), 1, + ACTIONS(752), 1, anon_sym_STAR_STAR, - STATE(696), 1, - sym_primary_expression, - STATE(702), 1, + STATE(657), 1, sym_string, - STATE(1022), 1, + STATE(692), 1, + sym_primary_expression, + STATE(990), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, sym_float, - STATE(1213), 2, + STATE(1103), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(47), 3, @@ -31963,13 +30711,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(393), 5, + ACTIONS(533), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(993), 7, + STATE(962), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -31977,7 +30725,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(801), 15, + STATE(752), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31993,279 +30741,120 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [10492] = 21, + [10704] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(910), 1, - anon_sym_RBRACE, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(1170), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(1348), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [10587] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(912), 1, - anon_sym_RBRACE, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(1170), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(1348), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [10682] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(718), 1, - anon_sym_STAR, - ACTIONS(842), 1, + ACTIONS(264), 1, + anon_sym_COMMA, + ACTIONS(271), 1, + anon_sym_COLON_EQ, + ACTIONS(876), 1, + anon_sym_for, + ACTIONS(878), 1, + anon_sym_with, + ACTIONS(880), 1, + anon_sym_def, + ACTIONS(273), 2, anon_sym_COLON, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(1030), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(1266), 2, - sym_list_splat, - sym_slice, - ACTIONS(301), 3, + anon_sym_EQ, + ACTIONS(291), 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(260), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(287), 16, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, [10777] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(274), 1, + ACTIONS(258), 1, sym_identifier, - ACTIONS(278), 1, + ACTIONS(262), 1, anon_sym_LPAREN, - ACTIONS(293), 1, + ACTIONS(277), 1, anon_sym_LBRACK, - ACTIONS(295), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(299), 1, + ACTIONS(283), 1, anon_sym_not, - ACTIONS(305), 1, + ACTIONS(289), 1, anon_sym_lambda, - ACTIONS(313), 1, + ACTIONS(297), 1, anon_sym_await, - ACTIONS(315), 1, + ACTIONS(299), 1, sym__string_start, - ACTIONS(914), 1, + ACTIONS(882), 1, anon_sym_RBRACE, - STATE(604), 1, + STATE(570), 1, sym_string, - STATE(620), 1, + STATE(582), 1, sym_primary_expression, - STATE(1170), 1, + STATE(1164), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(1348), 2, + STATE(1365), 2, sym_dictionary_splat, sym_pair, - ACTIONS(301), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(285), 5, + ACTIONS(269), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(904), 7, + STATE(874), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -32273,7 +30862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(619), 15, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32292,238 +30881,905 @@ static const uint16_t ts_small_parse_table[] = { [10872] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(274), 1, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(258), 1, sym_identifier, - ACTIONS(278), 1, + ACTIONS(262), 1, anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(718), 1, + ACTIONS(267), 1, anon_sym_STAR, - ACTIONS(842), 1, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(915), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + STATE(994), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [10967] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(840), 1, + anon_sym_else, + ACTIONS(888), 1, + anon_sym_elif, + STATE(270), 1, + aux_sym_if_statement_repeat1, + STATE(440), 1, + sym_elif_clause, + STATE(489), 1, + sym_else_clause, + ACTIONS(884), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(886), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [11035] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(531), 1, + sym_identifier, + ACTIONS(537), 1, + anon_sym_await, + ACTIONS(552), 1, + anon_sym_LPAREN, + ACTIONS(556), 1, + anon_sym_LBRACK, + ACTIONS(890), 1, + anon_sym_STAR, + STATE(657), 1, + sym_string, + STATE(692), 1, + sym_primary_expression, + STATE(1049), 1, + sym_expression, + STATE(1231), 1, + sym_list_splat, + STATE(1235), 1, + sym_type, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(533), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(962), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(752), 15, + 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, + [11129] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(894), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(892), 38, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_case, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + 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, + [11187] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(898), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(896), 38, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_case, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + 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, + [11245] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(902), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(900), 38, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_case, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + 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, + [11303] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(698), 1, + anon_sym_STAR, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(1008), 1, + sym_expression, + STATE(1174), 1, + sym_list_splat, + STATE(1456), 1, + sym_type, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [11397] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(906), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(904), 38, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_case, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + 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, + [11455] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(698), 1, + anon_sym_STAR, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(1008), 1, + sym_expression, + STATE(1174), 1, + sym_list_splat, + STATE(1455), 1, + sym_type, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [11549] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(910), 1, anon_sym_COLON, - STATE(604), 1, + STATE(570), 1, sym_string, - STATE(620), 1, + STATE(582), 1, sym_primary_expression, - STATE(1055), 1, + STATE(1030), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(1294), 2, - sym_list_splat, - sym_slice, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [10967] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(718), 1, - anon_sym_STAR, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(1024), 1, - sym_expression, - STATE(1142), 1, - sym_list_splat, - STATE(1446), 1, - sym_type, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [11061] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(718), 1, - anon_sym_STAR, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(1024), 1, - sym_expression, - STATE(1142), 1, - sym_list_splat, - STATE(1491), 1, - sym_type, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [11155] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(280), 1, + ACTIONS(908), 2, anon_sym_COMMA, - ACTIONS(287), 1, - anon_sym_COLON_EQ, - ACTIONS(916), 1, + anon_sym_RBRACK, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [11641] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(914), 12, + sym__dedent, sym__string_start, - STATE(1309), 1, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(912), 38, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_case, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + 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, + [11699] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(918), 1, + anon_sym_COLON, + STATE(570), 1, sym_string, - ACTIONS(289), 2, + STATE(582), 1, + sym_primary_expression, + STATE(1048), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(916), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [11791] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(840), 1, + anon_sym_else, + ACTIONS(888), 1, + anon_sym_elif, + STATE(309), 1, + aux_sym_if_statement_repeat1, + STATE(440), 1, + sym_elif_clause, + STATE(549), 1, + sym_else_clause, + ACTIONS(920), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(922), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [11859] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(906), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(904), 38, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_case, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + 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, + [11917] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(264), 1, + anon_sym_COMMA, + ACTIONS(271), 1, + anon_sym_COLON_EQ, + ACTIONS(924), 1, + sym__string_start, + STATE(1239), 1, + sym_string, + ACTIONS(273), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(307), 13, + ACTIONS(291), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -32537,7 +31793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(276), 15, + ACTIONS(260), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_PIPE, @@ -32553,7 +31809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(303), 16, + ACTIONS(287), 16, sym__newline, anon_sym_DOT, anon_sym_LPAREN, @@ -32570,164 +31826,613 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [11225] = 21, + [11987] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(718), 1, - anon_sym_STAR, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(1024), 1, - sym_expression, - STATE(1142), 1, - sym_list_splat, - STATE(1487), 1, - sym_type, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [11319] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(718), 1, - anon_sym_STAR, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(1024), 1, - sym_expression, - STATE(1142), 1, - sym_list_splat, - STATE(1436), 1, - sym_type, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [11413] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(858), 1, + ACTIONS(840), 1, anon_sym_else, - ACTIONS(922), 1, + ACTIONS(888), 1, anon_sym_elif, - STATE(303), 1, + STATE(309), 1, aux_sym_if_statement_repeat1, - STATE(445), 1, + STATE(440), 1, sym_elif_clause, - STATE(562), 1, + STATE(495), 1, + sym_else_clause, + ACTIONS(926), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(928), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [12055] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(840), 1, + anon_sym_else, + ACTIONS(888), 1, + anon_sym_elif, + STATE(267), 1, + aux_sym_if_statement_repeat1, + STATE(440), 1, + sym_elif_clause, + STATE(491), 1, + sym_else_clause, + ACTIONS(930), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(932), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [12123] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(698), 1, + anon_sym_STAR, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(1008), 1, + sym_expression, + STATE(1141), 1, + sym_type, + STATE(1174), 1, + sym_list_splat, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [12217] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(698), 1, + anon_sym_STAR, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(1008), 1, + sym_expression, + STATE(1174), 1, + sym_list_splat, + STATE(1449), 1, + sym_type, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [12311] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(698), 1, + anon_sym_STAR, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(1008), 1, + sym_expression, + STATE(1174), 1, + sym_list_splat, + STATE(1469), 1, + sym_type, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [12405] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(698), 1, + anon_sym_STAR, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(1008), 1, + sym_expression, + STATE(1174), 1, + sym_list_splat, + STATE(1212), 1, + sym_type, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [12499] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(698), 1, + anon_sym_STAR, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(1008), 1, + sym_expression, + STATE(1174), 1, + sym_list_splat, + STATE(1454), 1, + sym_type, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [12593] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(894), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(892), 38, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_case, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + 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, + [12651] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(902), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(900), 38, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_case, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + 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, + [12709] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(818), 1, + anon_sym_else, + ACTIONS(934), 1, + anon_sym_elif, + STATE(297), 1, + aux_sym_if_statement_repeat1, + STATE(444), 1, + sym_elif_clause, + STATE(492), 1, sym_else_clause, ACTIONS(920), 12, sym__dedent, @@ -32742,7 +32447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(918), 33, + ACTIONS(922), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -32776,72 +32481,88 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [11481] = 5, + [12777] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(928), 1, - anon_sym_except_STAR, - STATE(274), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(924), 12, - sym__string_start, - ts_builtin_sym_end, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(277), 1, anon_sym_LBRACK, + ACTIONS(279), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(698), 1, + anon_sym_STAR, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(1008), 1, + sym_expression, + STATE(1174), 1, + sym_list_splat, + STATE(1473), 1, + sym_type, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(926), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [11543] = 5, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [12871] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(935), 1, + ACTIONS(940), 1, anon_sym_except, - STATE(275), 2, + STATE(281), 2, sym_except_clause, aux_sym_try_statement_repeat1, - ACTIONS(931), 12, + ACTIONS(936), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -32854,7 +32575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(933), 35, + ACTIONS(938), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -32890,22 +32611,22 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [11605] = 8, + [12933] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(868), 1, + ACTIONS(818), 1, anon_sym_else, - ACTIONS(942), 1, + ACTIONS(934), 1, anon_sym_elif, - STATE(278), 1, + STATE(285), 1, aux_sym_if_statement_repeat1, - STATE(477), 1, + STATE(444), 1, sym_elif_clause, - STATE(566), 1, + STATE(479), 1, sym_else_clause, - ACTIONS(938), 12, + ACTIONS(884), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -32916,7 +32637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(940), 33, + ACTIONS(886), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -32950,20 +32671,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [11673] = 8, + [13001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(868), 1, - anon_sym_else, - ACTIONS(942), 1, - anon_sym_elif, - STATE(304), 1, - aux_sym_if_statement_repeat1, - STATE(477), 1, - sym_elif_clause, - STATE(575), 1, - sym_else_clause, - ACTIONS(920), 12, + ACTIONS(898), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -32976,7 +32687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(918), 33, + ACTIONS(896), 38, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -32989,12 +32700,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, + anon_sym_finally, anon_sym_with, anon_sym_match, + anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -33010,116 +32726,56 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [11741] = 8, + [13059] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(868), 1, - anon_sym_else, - ACTIONS(942), 1, - anon_sym_elif, - STATE(304), 1, - aux_sym_if_statement_repeat1, - STATE(477), 1, - sym_elif_clause, - STATE(576), 1, - sym_else_clause, - ACTIONS(944), 12, - sym__string_start, - ts_builtin_sym_end, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(277), 1, anon_sym_LBRACK, + ACTIONS(279), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(946), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + ACTIONS(283), 1, anon_sym_not, + ACTIONS(289), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, + ACTIONS(297), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [11809] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, sym__string_start, - ACTIONS(718), 1, + ACTIONS(698), 1, anon_sym_STAR, - STATE(604), 1, + STATE(570), 1, sym_string, - STATE(620), 1, + STATE(582), 1, sym_primary_expression, - STATE(1024), 1, + STATE(1008), 1, sym_expression, - STATE(1142), 1, + STATE(1174), 1, sym_list_splat, - STATE(1187), 1, + STATE(1451), 1, sym_type, - ACTIONS(309), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(285), 5, + ACTIONS(269), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(904), 7, + STATE(874), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -33127,7 +32783,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(619), 15, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33143,55 +32799,116 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [11903] = 20, + [13153] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, + ACTIONS(818), 1, + anon_sym_else, + ACTIONS(934), 1, + anon_sym_elif, + STATE(297), 1, + aux_sym_if_statement_repeat1, + STATE(444), 1, + sym_elif_clause, + STATE(537), 1, + sym_else_clause, + ACTIONS(926), 12, + sym__dedent, sym__string_start, - ACTIONS(950), 1, - anon_sym_COLON, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(1067), 1, - sym_expression, - ACTIONS(309), 2, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(948), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(301), 3, + ACTIONS(928), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [13221] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(698), 1, + anon_sym_STAR, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(1008), 1, + sym_expression, + STATE(1174), 1, + sym_list_splat, + STATE(1461), 1, + sym_type, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(285), 5, + ACTIONS(269), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(904), 7, + STATE(874), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -33199,7 +32916,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(619), 15, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33215,55 +32932,229 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [11995] = 20, + [13315] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(818), 1, + anon_sym_else, + ACTIONS(934), 1, + anon_sym_elif, + STATE(279), 1, + aux_sym_if_statement_repeat1, + STATE(444), 1, + sym_elif_clause, + STATE(542), 1, + sym_else_clause, + ACTIONS(930), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(932), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [13383] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(943), 1, + anon_sym_except, + STATE(288), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(936), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(938), 35, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [13445] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(950), 1, + anon_sym_except, + STATE(289), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(946), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(948), 35, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [13507] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(274), 1, + ACTIONS(258), 1, sym_identifier, - ACTIONS(278), 1, + ACTIONS(262), 1, anon_sym_LPAREN, - ACTIONS(293), 1, + ACTIONS(277), 1, anon_sym_LBRACK, - ACTIONS(295), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(299), 1, + ACTIONS(283), 1, anon_sym_not, - ACTIONS(305), 1, + ACTIONS(289), 1, anon_sym_lambda, - ACTIONS(313), 1, + ACTIONS(297), 1, anon_sym_await, - ACTIONS(315), 1, + ACTIONS(299), 1, sym__string_start, - STATE(604), 1, + STATE(570), 1, sym_string, - STATE(620), 1, + STATE(582), 1, sym_primary_expression, - STATE(1170), 1, + STATE(1164), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(1348), 2, + STATE(1365), 2, sym_dictionary_splat, sym_pair, - ACTIONS(301), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(285), 5, + ACTIONS(269), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(904), 7, + STATE(874), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -33271,7 +33162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(619), 15, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33287,22 +33178,12 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [12087] = 8, + [13599] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(858), 1, - anon_sym_else, - ACTIONS(922), 1, - anon_sym_elif, - STATE(290), 1, - aux_sym_if_statement_repeat1, - STATE(445), 1, - sym_elif_clause, - STATE(560), 1, - sym_else_clause, - ACTIONS(938), 12, - sym__dedent, + ACTIONS(914), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -33313,7 +33194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(940), 33, + ACTIONS(912), 38, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -33326,627 +33207,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [12155] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(718), 1, - anon_sym_STAR, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(1024), 1, - sym_expression, - STATE(1142), 1, - sym_list_splat, - STATE(1492), 1, - sym_type, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [12249] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(718), 1, - anon_sym_STAR, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(1024), 1, - sym_expression, - STATE(1142), 1, - sym_list_splat, - STATE(1312), 1, - sym_type, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [12343] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(718), 1, - anon_sym_STAR, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(1024), 1, - sym_expression, - STATE(1142), 1, - sym_list_splat, - STATE(1489), 1, - sym_type, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [12437] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(718), 1, - anon_sym_STAR, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(1024), 1, - sym_expression, - STATE(1142), 1, - sym_list_splat, - STATE(1437), 1, - sym_type, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [12531] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(718), 1, - anon_sym_STAR, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(1024), 1, - sym_expression, - STATE(1142), 1, - sym_list_splat, - STATE(1447), 1, - sym_type, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [12625] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(858), 1, - anon_sym_else, - ACTIONS(922), 1, anon_sym_elif, - STATE(273), 1, - aux_sym_if_statement_repeat1, - STATE(445), 1, - sym_elif_clause, - STATE(558), 1, - sym_else_clause, - ACTIONS(954), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(952), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [12693] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(391), 1, - sym_identifier, - ACTIONS(397), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACK, - ACTIONS(956), 1, - anon_sym_STAR, - STATE(696), 1, - sym_primary_expression, - STATE(702), 1, - sym_string, - STATE(1089), 1, - sym_expression, - STATE(1219), 1, - sym_type, - STATE(1223), 1, - sym_list_splat, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(393), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(993), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(801), 15, - 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, - [12787] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(858), 1, anon_sym_else, - ACTIONS(922), 1, - anon_sym_elif, - STATE(303), 1, - aux_sym_if_statement_repeat1, - STATE(445), 1, - sym_elif_clause, - STATE(521), 1, - sym_else_clause, - ACTIONS(944), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(946), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [12855] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(958), 1, anon_sym_except, - STATE(291), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(931), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(933), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, anon_sym_finally, anon_sym_with, anon_sym_match, + anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -33962,15 +33233,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [12917] = 5, + [13657] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, - anon_sym_except_STAR, + ACTIONS(953), 1, + anon_sym_except, STATE(292), 2, sym_except_group_clause, aux_sym_try_statement_repeat2, - ACTIONS(924), 12, + ACTIONS(946), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -33983,7 +33254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(926), 35, + ACTIONS(948), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -34019,812 +33290,54 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [12979] = 20, + [13719] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(274), 1, + ACTIONS(588), 1, sym_identifier, - ACTIONS(278), 1, + ACTIONS(590), 1, anon_sym_LPAREN, - ACTIONS(293), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(295), 1, + ACTIONS(600), 1, anon_sym_LBRACE, - ACTIONS(299), 1, + ACTIONS(602), 1, anon_sym_not, - ACTIONS(305), 1, + ACTIONS(604), 1, anon_sym_lambda, - ACTIONS(313), 1, + ACTIONS(610), 1, anon_sym_await, - ACTIONS(315), 1, + ACTIONS(612), 1, sym__string_start, - ACTIONS(966), 1, - anon_sym_COLON, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(1069), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(964), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [13071] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(868), 1, - anon_sym_else, - ACTIONS(942), 1, - anon_sym_elif, - STATE(277), 1, - aux_sym_if_statement_repeat1, - STATE(477), 1, - sym_elif_clause, - STATE(506), 1, - sym_else_clause, - ACTIONS(954), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(952), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [13139] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(391), 1, - sym_identifier, - ACTIONS(397), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACK, - STATE(696), 1, - sym_primary_expression, - STATE(702), 1, - sym_string, - STATE(1070), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(968), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(393), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(993), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(801), 15, - 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, - [13228] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(970), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(972), 37, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_case, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [13285] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(974), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(976), 37, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_case, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [13342] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(1115), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(978), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [13431] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(391), 1, - sym_identifier, - ACTIONS(397), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACK, - STATE(696), 1, - sym_primary_expression, - STATE(702), 1, - sym_string, - STATE(1070), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(980), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(393), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(993), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(801), 15, - 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, - [13520] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(1114), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(982), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [13609] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(970), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(972), 37, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_case, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [13666] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(1109), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(984), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [13755] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(990), 1, - anon_sym_elif, - STATE(303), 1, - aux_sym_if_statement_repeat1, - STATE(445), 1, - sym_elif_clause, - ACTIONS(988), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(986), 34, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [13818] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(993), 1, - anon_sym_elif, - STATE(304), 1, - aux_sym_if_statement_repeat1, - STATE(477), 1, - sym_elif_clause, - ACTIONS(988), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(986), 34, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [13881] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(622), 1, - sym_identifier, - ACTIONS(624), 1, - anon_sym_LPAREN, - ACTIONS(632), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, - anon_sym_LBRACE, - ACTIONS(636), 1, - anon_sym_not, - ACTIONS(638), 1, - anon_sym_lambda, - ACTIONS(644), 1, - anon_sym_await, - ACTIONS(646), 1, - sym__string_start, - ACTIONS(996), 1, + ACTIONS(956), 1, anon_sym_RPAREN, - STATE(735), 1, + STATE(712), 1, sym_primary_expression, - STATE(741), 1, + STATE(715), 1, sym_string, - STATE(1049), 1, + STATE(1000), 1, sym_expression, - STATE(1234), 1, + STATE(1193), 1, sym_with_item, - ACTIONS(640), 2, + ACTIONS(606), 2, sym_ellipsis, sym_float, - ACTIONS(630), 3, + ACTIONS(596), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(642), 4, + ACTIONS(608), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(626), 5, + ACTIONS(592), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1053), 7, + STATE(986), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -34832,7 +33345,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(812), 15, + STATE(782), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34848,389 +33361,54 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [13972] = 3, + [13810] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(974), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(976), 37, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_case, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, + ACTIONS(588), 1, sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [14029] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(622), 1, - sym_identifier, - ACTIONS(632), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, - anon_sym_LBRACE, - ACTIONS(636), 1, - anon_sym_not, - ACTIONS(638), 1, - anon_sym_lambda, - ACTIONS(644), 1, - anon_sym_await, - ACTIONS(646), 1, - sym__string_start, - ACTIONS(998), 1, + ACTIONS(590), 1, anon_sym_LPAREN, - STATE(735), 1, - sym_primary_expression, - STATE(741), 1, - sym_string, - STATE(1049), 1, - sym_expression, - STATE(1239), 1, - sym_with_item, - STATE(1445), 1, - sym_with_clause, - ACTIONS(640), 2, - sym_ellipsis, - sym_float, - ACTIONS(630), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(642), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(626), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(1053), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(812), 15, - 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, - [14120] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, ACTIONS(602), 1, - sym_identifier, + anon_sym_not, ACTIONS(604), 1, - anon_sym_LPAREN, + anon_sym_lambda, + ACTIONS(610), 1, + anon_sym_await, ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(618), 1, - anon_sym_await, - ACTIONS(760), 1, - anon_sym_lambda, - STATE(604), 1, - sym_string, - STATE(618), 1, - sym_primary_expression, - STATE(959), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(1032), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(606), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [14209] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, sym__string_start, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(604), 1, - anon_sym_LPAREN, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(618), 1, - anon_sym_await, - ACTIONS(760), 1, - anon_sym_lambda, - STATE(604), 1, - sym_string, - STATE(618), 1, + ACTIONS(958), 1, + anon_sym_RPAREN, + STATE(712), 1, sym_primary_expression, - STATE(959), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(1014), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(606), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [14298] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(604), 1, - anon_sym_LPAREN, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(618), 1, - anon_sym_await, - ACTIONS(760), 1, - anon_sym_lambda, - STATE(604), 1, + STATE(715), 1, sym_string, - STATE(618), 1, - sym_primary_expression, - STATE(963), 1, + STATE(1000), 1, sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(1028), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(606), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [14387] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(622), 1, - sym_identifier, - ACTIONS(632), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, - anon_sym_LBRACE, - ACTIONS(636), 1, - anon_sym_not, - ACTIONS(638), 1, - anon_sym_lambda, - ACTIONS(644), 1, - anon_sym_await, - ACTIONS(646), 1, - sym__string_start, - ACTIONS(998), 1, - anon_sym_LPAREN, - STATE(735), 1, - sym_primary_expression, - STATE(741), 1, - sym_string, - STATE(1049), 1, - sym_expression, - STATE(1239), 1, + STATE(1193), 1, sym_with_item, - STATE(1460), 1, - sym_with_clause, - ACTIONS(640), 2, + ACTIONS(606), 2, sym_ellipsis, sym_float, - ACTIONS(630), 3, + ACTIONS(596), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(642), 4, + ACTIONS(608), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(626), 5, + ACTIONS(592), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1053), 7, + STATE(986), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -35238,7 +33416,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(812), 15, + STATE(782), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35254,611 +33432,54 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [14478] = 3, + [13901] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1002), 12, - sym__dedent, - sym__string_start, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(277), 1, anon_sym_LBRACK, + ACTIONS(279), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1000), 37, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_case, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + ACTIONS(283), 1, anon_sym_not, + ACTIONS(289), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, + ACTIONS(297), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [14535] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(622), 1, - sym_identifier, - ACTIONS(632), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, - anon_sym_LBRACE, - ACTIONS(636), 1, - anon_sym_not, - ACTIONS(638), 1, - anon_sym_lambda, - ACTIONS(644), 1, - anon_sym_await, - ACTIONS(646), 1, - sym__string_start, - ACTIONS(998), 1, - anon_sym_LPAREN, - STATE(735), 1, - sym_primary_expression, - STATE(741), 1, - sym_string, - STATE(1049), 1, - sym_expression, - STATE(1239), 1, - sym_with_item, - STATE(1468), 1, - sym_with_clause, - ACTIONS(640), 2, - sym_ellipsis, - sym_float, - ACTIONS(630), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(642), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(626), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(1053), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(812), 15, - 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, - [14626] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1002), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1000), 37, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_case, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [14683] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(280), 1, - anon_sym_COMMA, - ACTIONS(287), 1, - anon_sym_COLON_EQ, - ACTIONS(1004), 1, - sym_identifier, - ACTIONS(289), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(303), 10, - sym__newline, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_SEMI, - ACTIONS(307), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(276), 21, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - [14750] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1008), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1006), 37, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_case, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [14807] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(391), 1, - sym_identifier, - ACTIONS(397), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACK, - STATE(696), 1, - sym_primary_expression, - STATE(702), 1, - sym_string, - STATE(1070), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(1010), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(393), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(993), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(801), 15, - 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, - [14896] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1012), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1014), 37, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_case, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [14953] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(391), 1, - sym_identifier, - ACTIONS(397), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACK, - STATE(696), 1, - sym_primary_expression, - STATE(702), 1, - sym_string, - STATE(1070), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(1016), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(393), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(993), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(801), 15, - 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, - [15042] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(622), 1, - sym_identifier, - ACTIONS(632), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, - anon_sym_LBRACE, - ACTIONS(636), 1, - anon_sym_not, - ACTIONS(638), 1, - anon_sym_lambda, - ACTIONS(644), 1, - anon_sym_await, - ACTIONS(646), 1, - sym__string_start, - ACTIONS(998), 1, - anon_sym_LPAREN, - STATE(735), 1, - sym_primary_expression, - STATE(741), 1, - sym_string, - STATE(1049), 1, - sym_expression, - STATE(1239), 1, - sym_with_item, - STATE(1484), 1, - sym_with_clause, - ACTIONS(640), 2, - sym_ellipsis, - sym_float, - ACTIONS(630), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(642), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(626), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(1053), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(812), 15, - 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, - [15133] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, sym__string_start, - ACTIONS(718), 1, + ACTIONS(698), 1, anon_sym_STAR, - STATE(604), 1, + STATE(570), 1, sym_string, - STATE(620), 1, + STATE(582), 1, sym_primary_expression, - STATE(1105), 1, + STATE(1089), 1, sym_expression, - STATE(1385), 1, + STATE(1344), 1, sym_list_splat, - ACTIONS(309), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(285), 5, + ACTIONS(269), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(904), 7, + STATE(874), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -35866,7 +33487,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(619), 15, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35882,53 +33503,169 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [15224] = 19, + [13992] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(602), 1, + ACTIONS(264), 1, + anon_sym_COMMA, + ACTIONS(271), 1, + anon_sym_COLON_EQ, + ACTIONS(960), 1, sym_identifier, - ACTIONS(604), 1, + ACTIONS(273), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(287), 10, + sym__newline, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(612), 1, anon_sym_LBRACK, - ACTIONS(614), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_SEMI, + ACTIONS(291), 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(260), 21, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_not, - ACTIONS(618), 1, - anon_sym_await, - ACTIONS(760), 1, - anon_sym_lambda, - STATE(604), 1, - sym_string, - STATE(618), 1, - sym_primary_expression, - STATE(959), 1, - sym_expression, - ACTIONS(309), 2, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + [14059] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(966), 1, + anon_sym_elif, + STATE(297), 1, + aux_sym_if_statement_repeat1, + STATE(444), 1, + sym_elif_clause, + ACTIONS(964), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, sym_ellipsis, sym_float, - STATE(990), 2, + ACTIONS(962), 34, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [14122] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(570), 1, + sym_identifier, + ACTIONS(572), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, + anon_sym_LBRACK, + ACTIONS(582), 1, + anon_sym_not, + ACTIONS(586), 1, + anon_sym_await, + ACTIONS(732), 1, + anon_sym_lambda, + STATE(570), 1, + sym_string, + STATE(614), 1, + sym_primary_expression, + STATE(933), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + STATE(1004), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(610), 3, + ACTIONS(578), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(606), 5, + ACTIONS(574), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(904), 7, + STATE(874), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -35936,7 +33673,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(619), 15, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35952,54 +33689,53 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [15313] = 20, + [14211] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(622), 1, + ACTIONS(258), 1, sym_identifier, - ACTIONS(624), 1, + ACTIONS(262), 1, anon_sym_LPAREN, - ACTIONS(632), 1, + ACTIONS(277), 1, anon_sym_LBRACK, - ACTIONS(634), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(636), 1, + ACTIONS(283), 1, anon_sym_not, - ACTIONS(638), 1, + ACTIONS(289), 1, anon_sym_lambda, - ACTIONS(644), 1, + ACTIONS(297), 1, anon_sym_await, - ACTIONS(646), 1, + ACTIONS(299), 1, sym__string_start, - ACTIONS(1018), 1, - anon_sym_RPAREN, - STATE(735), 1, - sym_primary_expression, - STATE(741), 1, + STATE(570), 1, sym_string, - STATE(1049), 1, + STATE(582), 1, + sym_primary_expression, + STATE(1095), 1, sym_expression, - STATE(1234), 1, - sym_with_item, - ACTIONS(640), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(630), 3, + ACTIONS(969), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(642), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(626), 5, + ACTIONS(269), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1053), 7, + STATE(874), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -36007,7 +33743,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(812), 15, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36023,107 +33759,474 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [15404] = 3, + [14300] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1012), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, + ACTIONS(51), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(531), 1, + sym_identifier, + ACTIONS(537), 1, + anon_sym_await, + ACTIONS(552), 1, + anon_sym_LPAREN, + ACTIONS(556), 1, + anon_sym_LBRACK, + STATE(657), 1, + sym_string, + STATE(692), 1, + sym_primary_expression, + STATE(1056), 1, + sym_expression, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1014), 37, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_case, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(971), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [15461] = 19, + ACTIONS(533), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(962), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(752), 15, + 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, + [14389] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(315), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, sym__string_start, + ACTIONS(531), 1, + sym_identifier, + ACTIONS(537), 1, + anon_sym_await, + ACTIONS(552), 1, + anon_sym_LPAREN, + ACTIONS(556), 1, + anon_sym_LBRACK, + STATE(657), 1, + sym_string, + STATE(692), 1, + sym_primary_expression, + STATE(1056), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(973), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(533), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(962), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(752), 15, + 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, + [14478] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(531), 1, + sym_identifier, + ACTIONS(537), 1, + anon_sym_await, + ACTIONS(552), 1, + anon_sym_LPAREN, + ACTIONS(556), 1, + anon_sym_LBRACK, + STATE(657), 1, + sym_string, + STATE(692), 1, + sym_primary_expression, + STATE(1056), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(975), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(533), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(962), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(752), 15, + 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, + [14567] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(588), 1, + sym_identifier, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_LBRACE, ACTIONS(602), 1, - sym_identifier, - ACTIONS(604), 1, - anon_sym_LPAREN, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, anon_sym_not, - ACTIONS(618), 1, - anon_sym_await, - ACTIONS(760), 1, + ACTIONS(604), 1, anon_sym_lambda, - STATE(604), 1, - sym_string, - STATE(618), 1, + ACTIONS(610), 1, + anon_sym_await, + ACTIONS(612), 1, + sym__string_start, + ACTIONS(977), 1, + anon_sym_LPAREN, + STATE(712), 1, sym_primary_expression, - STATE(964), 1, + STATE(715), 1, + sym_string, + STATE(1000), 1, sym_expression, - ACTIONS(309), 2, + STATE(1281), 1, + sym_with_item, + STATE(1450), 1, + sym_with_clause, + ACTIONS(606), 2, sym_ellipsis, sym_float, - STATE(1031), 2, + ACTIONS(596), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(608), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(592), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(986), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(782), 15, + 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, + [14658] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(1096), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(979), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [14747] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(531), 1, + sym_identifier, + ACTIONS(537), 1, + anon_sym_await, + ACTIONS(552), 1, + anon_sym_LPAREN, + ACTIONS(556), 1, + anon_sym_LBRACK, + STATE(657), 1, + sym_string, + STATE(692), 1, + sym_primary_expression, + STATE(1056), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(981), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(533), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(962), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(752), 15, + 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, + [14836] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(570), 1, + sym_identifier, + ACTIONS(572), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, + anon_sym_LBRACK, + ACTIONS(582), 1, + anon_sym_not, + ACTIONS(586), 1, + anon_sym_await, + ACTIONS(732), 1, + anon_sym_lambda, + STATE(570), 1, + sym_string, + STATE(614), 1, + sym_primary_expression, + STATE(933), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + STATE(973), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(610), 3, + ACTIONS(578), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(606), 5, + ACTIONS(574), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(904), 7, + STATE(874), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -36131,7 +34234,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(619), 15, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36147,53 +34250,53 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [15550] = 19, + [14925] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, + ACTIONS(279), 1, anon_sym_LBRACE, ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, sym__string_start, - STATE(604), 1, + ACTIONS(570), 1, + sym_identifier, + ACTIONS(572), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, + anon_sym_LBRACK, + ACTIONS(582), 1, + anon_sym_not, + ACTIONS(586), 1, + anon_sym_await, + ACTIONS(732), 1, + anon_sym_lambda, + STATE(570), 1, sym_string, - STATE(620), 1, + STATE(614), 1, sym_primary_expression, - STATE(1093), 1, + STATE(933), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(1020), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(301), 3, + STATE(945), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(578), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(285), 5, + ACTIONS(574), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(904), 7, + STATE(874), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -36201,7 +34304,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(619), 15, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36217,435 +34320,87 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [15639] = 3, + [15014] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1008), 12, - sym__string_start, - ts_builtin_sym_end, + ACTIONS(588), 1, + sym_identifier, + ACTIONS(590), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(598), 1, anon_sym_LBRACK, + ACTIONS(600), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(602), 1, + anon_sym_not, + ACTIONS(604), 1, + anon_sym_lambda, + ACTIONS(610), 1, + anon_sym_await, + ACTIONS(612), 1, + sym__string_start, + ACTIONS(983), 1, + anon_sym_STAR, + ACTIONS(985), 1, + anon_sym_COLON, + STATE(712), 1, + sym_primary_expression, + STATE(715), 1, + sym_string, + STATE(1038), 1, + sym_expression, + ACTIONS(606), 2, sym_ellipsis, sym_float, - ACTIONS(1006), 37, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(596), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(608), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(592), 5, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(986), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(782), 15, + 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, + [15105] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(987), 1, anon_sym_elif, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_case, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [15696] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1022), 13, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_except_STAR, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1024), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [15752] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(836), 16, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(834), 32, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_SEMI, - [15808] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1002), 13, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_except_STAR, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1000), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [15864] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(974), 13, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_except_STAR, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(976), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [15920] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(970), 13, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_except_STAR, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(972), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [15976] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1008), 13, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_except_STAR, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1006), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [16032] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1028), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1026), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - 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, - [16088] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(974), 12, + STATE(309), 1, + aux_sym_if_statement_repeat1, + STATE(440), 1, + sym_elif_clause, + ACTIONS(964), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -36658,7 +34413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(976), 36, + ACTIONS(962), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -36676,8 +34431,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_match, anon_sym_def, @@ -36695,1389 +34448,53 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [16144] = 3, + [15168] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1012), 13, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_except_STAR, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, + ACTIONS(279), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1014), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [16200] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1002), 12, + ACTIONS(299), 1, sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1000), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - 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(570), 1, sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [16256] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1032), 13, - sym__dedent, - sym__string_start, + ACTIONS(572), 1, anon_sym_LPAREN, - anon_sym_except_STAR, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(580), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1030), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + ACTIONS(582), 1, anon_sym_not, + ACTIONS(586), 1, + anon_sym_await, + ACTIONS(732), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [16312] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1036), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1034), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - 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, - [16368] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1040), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1038), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - 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, - [16424] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(970), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(972), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - 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, - [16480] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1044), 13, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_except_STAR, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1042), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [16536] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1050), 1, - anon_sym_case, - STATE(376), 2, - sym_case_block, - aux_sym_cases_repeat1, - ACTIONS(1048), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1046), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [16596] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1054), 1, - anon_sym_COMMA, - ACTIONS(1059), 1, - anon_sym_COLON_EQ, - ACTIONS(1061), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(1063), 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(1057), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1052), 16, - sym__newline, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [16660] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(970), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(972), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - 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, - [16716] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1008), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1006), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - 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, - [16772] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1002), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1000), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - 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, - [16828] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1069), 1, - anon_sym_case, - STATE(348), 2, - sym_case_block, - aux_sym_cases_repeat1, - ACTIONS(1065), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1067), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [16888] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(280), 1, - anon_sym_COMMA, - ACTIONS(287), 1, - anon_sym_COLON_EQ, - ACTIONS(289), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(307), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(276), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(303), 16, - sym__newline, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [16952] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1012), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1014), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - 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, - [17008] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(840), 16, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(838), 32, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_SEMI, - [17064] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1012), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1014), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - 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, - [17120] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(974), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(976), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - 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, - [17176] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1008), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1006), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - 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, - [17232] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(970), 13, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_except_STAR, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(972), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [17288] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1044), 13, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_except_STAR, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1042), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [17344] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1072), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1074), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - 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, - [17400] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1076), 13, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_except_STAR, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1078), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [17456] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1040), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1038), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - 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, - [17512] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1002), 13, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_except_STAR, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1000), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [17568] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(622), 1, - sym_identifier, - ACTIONS(624), 1, - anon_sym_LPAREN, - ACTIONS(632), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, - anon_sym_LBRACE, - ACTIONS(636), 1, - anon_sym_not, - ACTIONS(638), 1, - anon_sym_lambda, - ACTIONS(644), 1, - anon_sym_await, - ACTIONS(646), 1, - sym__string_start, - ACTIONS(1080), 1, - anon_sym_COLON, - STATE(735), 1, - sym_primary_expression, - STATE(741), 1, + STATE(570), 1, sym_string, - STATE(1091), 1, + STATE(614), 1, + sym_primary_expression, + STATE(931), 1, sym_expression, - ACTIONS(640), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(630), 3, + STATE(1005), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(578), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(642), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(626), 5, + ACTIONS(574), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1053), 7, + STATE(874), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -38085,7 +34502,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(812), 15, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38101,1177 +34518,265 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [17656] = 3, + [15257] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1012), 13, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_except_STAR, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1014), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, + ACTIONS(258), 1, sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [17712] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(828), 16, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(826), 32, - sym__newline, - anon_sym_DOT, - anon_sym_from, + ACTIONS(262), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_SEMI, - [17768] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1036), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(277), 1, anon_sym_LBRACK, + ACTIONS(279), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1034), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + ACTIONS(283), 1, anon_sym_not, + ACTIONS(289), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, + ACTIONS(297), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [17824] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1082), 1, - anon_sym_case, - STATE(348), 2, - sym_case_block, - aux_sym_cases_repeat1, - ACTIONS(1048), 12, + ACTIONS(299), 1, sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1046), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [17884] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1032), 13, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_except_STAR, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1030), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [17940] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(832), 16, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(830), 32, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_SEMI, - [17996] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(974), 13, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_except_STAR, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(976), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [18052] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1008), 13, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_except_STAR, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1006), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [18108] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1028), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1026), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - 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, - [18164] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(562), 1, - anon_sym_COLON_EQ, - ACTIONS(564), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(559), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(566), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(303), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - ACTIONS(276), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - [18228] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(832), 16, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(830), 32, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_SEMI, - [18284] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1084), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1086), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - 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, - [18340] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1088), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1090), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - 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, - [18396] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1095), 1, - anon_sym_COLON_EQ, - ACTIONS(1097), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(1092), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1099), 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(1052), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - ACTIONS(1057), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - [18460] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1101), 1, - anon_sym_case, - STATE(376), 2, - sym_case_block, - aux_sym_cases_repeat1, - ACTIONS(1065), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1067), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [18520] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(824), 16, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(822), 32, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_SEMI, - [18576] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1076), 13, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_except_STAR, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1078), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [18632] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1072), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1074), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - 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, - [18688] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1022), 13, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_except_STAR, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1024), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [18744] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1084), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1086), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - 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, - [18800] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(836), 16, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(834), 32, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_SEMI, - [18856] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(622), 1, - sym_identifier, - ACTIONS(624), 1, - anon_sym_LPAREN, - ACTIONS(632), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, - anon_sym_LBRACE, - ACTIONS(636), 1, - anon_sym_not, - ACTIONS(638), 1, - anon_sym_lambda, - ACTIONS(644), 1, - anon_sym_await, - ACTIONS(646), 1, - sym__string_start, - STATE(735), 1, - sym_primary_expression, - STATE(741), 1, + STATE(570), 1, sym_string, - STATE(1049), 1, + STATE(582), 1, + sym_primary_expression, + STATE(1077), 1, sym_expression, - STATE(1234), 1, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(990), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [15346] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(588), 1, + sym_identifier, + ACTIONS(590), 1, + anon_sym_LPAREN, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_LBRACE, + ACTIONS(602), 1, + anon_sym_not, + ACTIONS(604), 1, + anon_sym_lambda, + ACTIONS(610), 1, + anon_sym_await, + ACTIONS(612), 1, + sym__string_start, + ACTIONS(992), 1, + anon_sym_STAR, + ACTIONS(994), 1, + anon_sym_COLON, + STATE(712), 1, + sym_primary_expression, + STATE(715), 1, + sym_string, + STATE(1061), 1, + sym_expression, + ACTIONS(606), 2, + sym_ellipsis, + sym_float, + ACTIONS(596), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(608), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(592), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(986), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(782), 15, + 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, + [15437] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(1065), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(996), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [15526] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(588), 1, + sym_identifier, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_LBRACE, + ACTIONS(602), 1, + anon_sym_not, + ACTIONS(604), 1, + anon_sym_lambda, + ACTIONS(610), 1, + anon_sym_await, + ACTIONS(612), 1, + sym__string_start, + ACTIONS(977), 1, + anon_sym_LPAREN, + STATE(712), 1, + sym_primary_expression, + STATE(715), 1, + sym_string, + STATE(1000), 1, + sym_expression, + STATE(1281), 1, sym_with_item, - ACTIONS(640), 2, + STATE(1423), 1, + sym_with_clause, + ACTIONS(606), 2, sym_ellipsis, sym_float, - ACTIONS(630), 3, + ACTIONS(596), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(642), 4, + ACTIONS(608), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(626), 5, + ACTIONS(592), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1053), 7, + STATE(986), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -39279,7 +34784,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(812), 15, + STATE(782), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39295,2591 +34800,53 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [18944] = 19, + [15617] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(622), 1, - sym_identifier, - ACTIONS(624), 1, - anon_sym_LPAREN, - ACTIONS(632), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(636), 1, - anon_sym_not, - ACTIONS(638), 1, - anon_sym_lambda, - ACTIONS(644), 1, - anon_sym_await, - ACTIONS(646), 1, + ACTIONS(299), 1, sym__string_start, - ACTIONS(1104), 1, - anon_sym_COLON, - STATE(735), 1, - sym_primary_expression, - STATE(741), 1, - sym_string, - STATE(1081), 1, - sym_expression, - ACTIONS(640), 2, - sym_ellipsis, - sym_float, - ACTIONS(630), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(642), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(626), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(1053), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(812), 15, - 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, - [19032] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1088), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1090), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - 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(570), 1, sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [19088] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(868), 1, - anon_sym_else, - STATE(510), 1, - sym_else_clause, - ACTIONS(1106), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1108), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [19147] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(622), 1, - sym_identifier, - ACTIONS(624), 1, - anon_sym_LPAREN, - ACTIONS(632), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, - anon_sym_LBRACE, - ACTIONS(636), 1, - anon_sym_not, - ACTIONS(638), 1, - anon_sym_lambda, - ACTIONS(644), 1, - anon_sym_await, - ACTIONS(646), 1, - sym__string_start, - STATE(735), 1, - sym_primary_expression, - STATE(741), 1, - sym_string, - STATE(1052), 1, - sym_expression, - ACTIONS(640), 2, - sym_ellipsis, - sym_float, - ACTIONS(630), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(642), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(626), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(1053), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(812), 15, - 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, - [19232] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(622), 1, - sym_identifier, - ACTIONS(624), 1, - anon_sym_LPAREN, - ACTIONS(632), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, - anon_sym_LBRACE, - ACTIONS(636), 1, - anon_sym_not, - ACTIONS(638), 1, - anon_sym_lambda, - ACTIONS(644), 1, - anon_sym_await, - ACTIONS(646), 1, - sym__string_start, - STATE(735), 1, - sym_primary_expression, - STATE(741), 1, - sym_string, - STATE(1045), 1, - sym_expression, - ACTIONS(640), 2, - sym_ellipsis, - sym_float, - ACTIONS(630), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(642), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(626), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(1053), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(812), 15, - 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, - [19317] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(622), 1, - sym_identifier, - ACTIONS(624), 1, - anon_sym_LPAREN, - ACTIONS(632), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, - anon_sym_LBRACE, - ACTIONS(636), 1, - anon_sym_not, - ACTIONS(638), 1, - anon_sym_lambda, - ACTIONS(644), 1, - anon_sym_await, - ACTIONS(646), 1, - sym__string_start, - STATE(735), 1, - sym_primary_expression, - STATE(741), 1, - sym_string, - STATE(1094), 1, - sym_expression, - ACTIONS(640), 2, - sym_ellipsis, - sym_float, - ACTIONS(630), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(642), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(626), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(1053), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(812), 15, - 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, - [19402] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(391), 1, - sym_identifier, - ACTIONS(397), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, ACTIONS(572), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, anon_sym_LBRACK, - STATE(696), 1, - sym_primary_expression, - STATE(702), 1, + ACTIONS(582), 1, + anon_sym_not, + ACTIONS(586), 1, + anon_sym_await, + ACTIONS(732), 1, + anon_sym_lambda, + STATE(570), 1, sym_string, - STATE(982), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(393), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(993), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(801), 15, - 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, - [19487] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(391), 1, - sym_identifier, - ACTIONS(397), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACK, - STATE(696), 1, - sym_primary_expression, - STATE(702), 1, - sym_string, - STATE(1068), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(393), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(993), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(801), 15, - 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, - [19572] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1097), 1, - anon_sym_EQ, - ACTIONS(1092), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1052), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - ACTIONS(1099), 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(1057), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - [19633] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(858), 1, - anon_sym_else, - STATE(554), 1, - sym_else_clause, - ACTIONS(1106), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1108), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [19692] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(391), 1, - sym_identifier, - ACTIONS(397), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACK, - STATE(696), 1, - sym_primary_expression, - STATE(702), 1, - sym_string, - STATE(1119), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(393), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(993), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(801), 15, - 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, - [19777] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1110), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1112), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [19832] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(915), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [19917] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1116), 1, - anon_sym_COMMA, - ACTIONS(1123), 1, - anon_sym_EQ, - ACTIONS(1121), 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(1119), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1114), 16, - sym__newline, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [19978] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(905), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [20063] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(604), 1, - anon_sym_LPAREN, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(618), 1, - anon_sym_await, - STATE(604), 1, - sym_string, - STATE(618), 1, - sym_primary_expression, - STATE(1041), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(606), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [20148] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(391), 1, - sym_identifier, - ACTIONS(397), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACK, - STATE(696), 1, - sym_primary_expression, - STATE(702), 1, - sym_string, - STATE(1008), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(393), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(993), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(801), 15, - 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, - [20233] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(868), 1, - anon_sym_else, - STATE(571), 1, - sym_else_clause, - ACTIONS(1125), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1127), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [20292] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(604), 1, - anon_sym_LPAREN, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(618), 1, - anon_sym_await, - STATE(604), 1, - sym_string, - STATE(618), 1, - sym_primary_expression, - STATE(923), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(606), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [20377] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(948), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [20462] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(604), 1, - anon_sym_LPAREN, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(618), 1, - anon_sym_await, - STATE(604), 1, - sym_string, - STATE(618), 1, - sym_primary_expression, - STATE(911), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(606), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [20547] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(604), 1, - anon_sym_LPAREN, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(618), 1, - anon_sym_await, - STATE(604), 1, - sym_string, - STATE(618), 1, - sym_primary_expression, - STATE(1004), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(606), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [20632] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1131), 1, - anon_sym_COMMA, - ACTIONS(1138), 1, - anon_sym_EQ, - ACTIONS(1136), 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(1134), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1129), 16, - sym__newline, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [20693] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(1132), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [20778] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(938), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [20863] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(391), 1, - sym_identifier, - ACTIONS(397), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACK, - STATE(696), 1, - sym_primary_expression, - STATE(702), 1, - sym_string, - STATE(1050), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(393), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(993), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(801), 15, - 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, - [20948] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(1140), 1, - sym_identifier, - ACTIONS(1144), 1, - anon_sym_await, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(947), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(392), 2, - sym_attribute, - sym_subscript, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1142), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 13, - 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, - [21035] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(939), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [21120] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(1159), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [21205] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(604), 1, - anon_sym_LPAREN, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(618), 1, - anon_sym_await, - STATE(604), 1, - sym_string, - STATE(618), 1, - sym_primary_expression, - STATE(919), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(606), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [21290] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(1160), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [21375] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1054), 1, - anon_sym_COMMA, - ACTIONS(1061), 1, - anon_sym_EQ, - ACTIONS(1063), 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(1057), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1052), 16, - sym__newline, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [21436] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(1184), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [21521] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(935), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [21606] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(934), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [21691] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(868), 1, - anon_sym_else, - STATE(539), 1, - sym_else_clause, - ACTIONS(1146), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1148), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [21750] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_finally, - STATE(569), 1, - sym_finally_clause, - ACTIONS(1150), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1152), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [21809] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(1145), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [21894] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(1078), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [21979] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(1148), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [22064] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(604), 1, - sym_string, - STATE(620), 1, + STATE(614), 1, sym_primary_expression, STATE(928), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + STATE(993), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(578), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(285), 5, + ACTIONS(574), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(904), 7, + STATE(874), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -41887,7 +34854,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(619), 15, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41903,117 +34870,54 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [22149] = 18, + [15706] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(274), 1, + ACTIONS(588), 1, sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(295), 1, + ACTIONS(600), 1, anon_sym_LBRACE, - ACTIONS(299), 1, + ACTIONS(602), 1, anon_sym_not, - ACTIONS(305), 1, + ACTIONS(604), 1, anon_sym_lambda, - ACTIONS(313), 1, + ACTIONS(610), 1, anon_sym_await, - ACTIONS(315), 1, + ACTIONS(612), 1, sym__string_start, - STATE(604), 1, - sym_string, - STATE(620), 1, + ACTIONS(977), 1, + anon_sym_LPAREN, + STATE(712), 1, sym_primary_expression, - STATE(929), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [22234] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(604), 1, + STATE(715), 1, sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(1152), 1, + STATE(1000), 1, sym_expression, - ACTIONS(309), 2, + STATE(1281), 1, + sym_with_item, + STATE(1431), 1, + sym_with_clause, + ACTIONS(606), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(596), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(608), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(285), 5, + ACTIONS(592), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(904), 7, + STATE(986), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -42021,7 +34925,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(619), 15, + STATE(782), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42037,50 +34941,54 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [22319] = 18, + [15797] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(391), 1, + ACTIONS(588), 1, sym_identifier, - ACTIONS(397), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - STATE(696), 1, + ACTIONS(600), 1, + anon_sym_LBRACE, + ACTIONS(602), 1, + anon_sym_not, + ACTIONS(604), 1, + anon_sym_lambda, + ACTIONS(610), 1, + anon_sym_await, + ACTIONS(612), 1, + sym__string_start, + ACTIONS(977), 1, + anon_sym_LPAREN, + STATE(712), 1, sym_primary_expression, - STATE(702), 1, + STATE(715), 1, sym_string, - STATE(1027), 1, + STATE(1000), 1, sym_expression, - ACTIONS(75), 2, + STATE(1281), 1, + sym_with_item, + STATE(1397), 1, + sym_with_clause, + ACTIONS(606), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(596), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(608), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(393), 5, + ACTIONS(592), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(993), 7, + STATE(986), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -42088,7 +34996,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(801), 15, + STATE(782), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42104,1149 +35012,10 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [22404] = 5, + [15888] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(862), 1, - anon_sym_finally, - STATE(541), 1, - sym_finally_clause, - ACTIONS(1156), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1154), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [22463] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(858), 1, - anon_sym_else, - STATE(544), 1, - sym_else_clause, - ACTIONS(1160), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1158), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [22522] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(391), 1, - sym_identifier, - ACTIONS(397), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACK, - STATE(696), 1, - sym_primary_expression, - STATE(702), 1, - sym_string, - STATE(1101), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(393), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(993), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(801), 15, - 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, - [22607] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(622), 1, - sym_identifier, - ACTIONS(624), 1, - anon_sym_LPAREN, - ACTIONS(632), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, - anon_sym_LBRACE, - ACTIONS(636), 1, - anon_sym_not, - ACTIONS(638), 1, - anon_sym_lambda, - ACTIONS(644), 1, - anon_sym_await, - ACTIONS(646), 1, - sym__string_start, - STATE(735), 1, - sym_primary_expression, - STATE(741), 1, - sym_string, - STATE(1046), 1, - sym_expression, - ACTIONS(640), 2, - sym_ellipsis, - sym_float, - ACTIONS(630), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(642), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(626), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(1053), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(812), 15, - 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, - [22692] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(858), 1, - anon_sym_else, - STATE(517), 1, - sym_else_clause, - ACTIONS(1125), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1127), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [22751] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(391), 1, - sym_identifier, - ACTIONS(397), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACK, - STATE(696), 1, - sym_primary_expression, - STATE(702), 1, - sym_string, - STATE(996), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(393), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(993), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(801), 15, - 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, - [22836] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(391), 1, - sym_identifier, - ACTIONS(397), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACK, - STATE(696), 1, - sym_primary_expression, - STATE(702), 1, - sym_string, - STATE(1204), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(393), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(993), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(801), 15, - 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, - [22921] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(622), 1, - sym_identifier, - ACTIONS(624), 1, - anon_sym_LPAREN, - ACTIONS(632), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, - anon_sym_LBRACE, - ACTIONS(636), 1, - anon_sym_not, - ACTIONS(638), 1, - anon_sym_lambda, - ACTIONS(644), 1, - anon_sym_await, - ACTIONS(646), 1, - sym__string_start, - STATE(735), 1, - sym_primary_expression, - STATE(741), 1, - sym_string, - STATE(1112), 1, - sym_expression, - ACTIONS(640), 2, - sym_ellipsis, - sym_float, - ACTIONS(630), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(642), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(626), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(1053), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(812), 15, - 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, - [23006] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(391), 1, - sym_identifier, - ACTIONS(397), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACK, - STATE(696), 1, - sym_primary_expression, - STATE(702), 1, - sym_string, - STATE(987), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(393), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(993), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(801), 15, - 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, - [23091] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(622), 1, - sym_identifier, - ACTIONS(624), 1, - anon_sym_LPAREN, - ACTIONS(632), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, - anon_sym_LBRACE, - ACTIONS(636), 1, - anon_sym_not, - ACTIONS(638), 1, - anon_sym_lambda, - ACTIONS(644), 1, - anon_sym_await, - ACTIONS(646), 1, - sym__string_start, - STATE(735), 1, - sym_primary_expression, - STATE(741), 1, - sym_string, - STATE(1047), 1, - sym_expression, - ACTIONS(640), 2, - sym_ellipsis, - sym_float, - ACTIONS(630), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(642), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(626), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(1053), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(812), 15, - 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, - [23176] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(622), 1, - sym_identifier, - ACTIONS(624), 1, - anon_sym_LPAREN, - ACTIONS(632), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, - anon_sym_LBRACE, - ACTIONS(636), 1, - anon_sym_not, - ACTIONS(638), 1, - anon_sym_lambda, - ACTIONS(644), 1, - anon_sym_await, - ACTIONS(646), 1, - sym__string_start, - STATE(735), 1, - sym_primary_expression, - STATE(741), 1, - sym_string, - STATE(1048), 1, - sym_expression, - ACTIONS(640), 2, - sym_ellipsis, - sym_float, - ACTIONS(630), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(642), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(626), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(1053), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(812), 15, - 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, - [23261] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(622), 1, - sym_identifier, - ACTIONS(624), 1, - anon_sym_LPAREN, - ACTIONS(632), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, - anon_sym_LBRACE, - ACTIONS(636), 1, - anon_sym_not, - ACTIONS(638), 1, - anon_sym_lambda, - ACTIONS(644), 1, - anon_sym_await, - ACTIONS(646), 1, - sym__string_start, - STATE(735), 1, - sym_primary_expression, - STATE(741), 1, - sym_string, - STATE(1051), 1, - sym_expression, - ACTIONS(640), 2, - sym_ellipsis, - sym_float, - ACTIONS(630), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(642), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(626), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(1053), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(812), 15, - 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, - [23346] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(862), 1, - anon_sym_finally, - STATE(509), 1, - sym_finally_clause, - ACTIONS(1150), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1152), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [23405] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(391), 1, - sym_identifier, - ACTIONS(397), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACK, - STATE(696), 1, - sym_primary_expression, - STATE(702), 1, - sym_string, - STATE(1102), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(393), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(993), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(801), 15, - 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, - [23490] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(947), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [23575] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(622), 1, - sym_identifier, - ACTIONS(624), 1, - anon_sym_LPAREN, - ACTIONS(632), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, - anon_sym_LBRACE, - ACTIONS(636), 1, - anon_sym_not, - ACTIONS(638), 1, - anon_sym_lambda, - ACTIONS(644), 1, - anon_sym_await, - ACTIONS(646), 1, - sym__string_start, - STATE(735), 1, - sym_primary_expression, - STATE(741), 1, - sym_string, - STATE(1054), 1, - sym_expression, - ACTIONS(640), 2, - sym_ellipsis, - sym_float, - ACTIONS(630), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(642), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(626), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(1053), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(812), 15, - 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, - [23660] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(622), 1, - sym_identifier, - ACTIONS(624), 1, - anon_sym_LPAREN, - ACTIONS(632), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, - anon_sym_LBRACE, - ACTIONS(636), 1, - anon_sym_not, - ACTIONS(638), 1, - anon_sym_lambda, - ACTIONS(644), 1, - anon_sym_await, - ACTIONS(646), 1, - sym__string_start, - STATE(735), 1, - sym_primary_expression, - STATE(741), 1, - sym_string, - STATE(1056), 1, - sym_expression, - ACTIONS(640), 2, - sym_ellipsis, - sym_float, - ACTIONS(630), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(642), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(626), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(1053), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(812), 15, - 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, - [23745] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1164), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1162), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [23800] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1166), 12, + ACTIONS(998), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -43259,7 +35028,2093 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1168), 35, + ACTIONS(1000), 36, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + 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, + [15944] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1002), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1004), 36, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + 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, + [16000] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(804), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(802), 32, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_SEMI, + [16056] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(588), 1, + sym_identifier, + ACTIONS(590), 1, + anon_sym_LPAREN, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_LBRACE, + ACTIONS(602), 1, + anon_sym_not, + ACTIONS(604), 1, + anon_sym_lambda, + ACTIONS(610), 1, + anon_sym_await, + ACTIONS(612), 1, + sym__string_start, + ACTIONS(985), 1, + anon_sym_COLON, + STATE(712), 1, + sym_primary_expression, + STATE(715), 1, + sym_string, + STATE(1038), 1, + sym_expression, + ACTIONS(606), 2, + sym_ellipsis, + sym_float, + ACTIONS(596), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(608), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(592), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(986), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(782), 15, + 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, + [16144] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(792), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(790), 32, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_SEMI, + [16200] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(800), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(798), 32, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_SEMI, + [16256] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(808), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(806), 32, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_SEMI, + [16312] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1010), 1, + anon_sym_case, + STATE(325), 2, + sym_case_block, + aux_sym_cases_repeat1, + ACTIONS(1006), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1008), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [16372] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(588), 1, + sym_identifier, + ACTIONS(590), 1, + anon_sym_LPAREN, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_LBRACE, + ACTIONS(602), 1, + anon_sym_not, + ACTIONS(604), 1, + anon_sym_lambda, + ACTIONS(610), 1, + anon_sym_await, + ACTIONS(612), 1, + sym__string_start, + STATE(712), 1, + sym_primary_expression, + STATE(715), 1, + sym_string, + STATE(1000), 1, + sym_expression, + STATE(1193), 1, + sym_with_item, + ACTIONS(606), 2, + sym_ellipsis, + sym_float, + ACTIONS(596), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(608), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(592), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(986), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(782), 15, + 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, + [16460] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(796), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(794), 32, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_SEMI, + [16516] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(792), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(790), 32, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_SEMI, + [16572] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1013), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1015), 36, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + 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, + [16628] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(800), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(798), 32, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_SEMI, + [16684] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1017), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1019), 36, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + 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, + [16740] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1021), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1023), 36, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + 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, + [16796] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(546), 1, + anon_sym_COLON_EQ, + ACTIONS(548), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(543), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(550), 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(287), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + ACTIONS(260), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + [16860] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1025), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1027), 36, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + 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, + [16916] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1029), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1031), 36, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + 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, + [16972] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1033), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1035), 36, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + 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, + [17028] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1037), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1039), 36, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + 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, + [17084] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1041), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1043), 36, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + 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, + [17140] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(264), 1, + anon_sym_COMMA, + ACTIONS(271), 1, + anon_sym_COLON_EQ, + ACTIONS(273), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(291), 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(260), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(287), 16, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [17204] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1049), 1, + anon_sym_case, + STATE(325), 2, + sym_case_block, + aux_sym_cases_repeat1, + ACTIONS(1045), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1047), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [17264] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1053), 1, + anon_sym_COMMA, + ACTIONS(1058), 1, + anon_sym_COLON_EQ, + ACTIONS(1060), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(1062), 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(1056), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1051), 16, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [17328] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1064), 1, + anon_sym_case, + STATE(343), 2, + sym_case_block, + aux_sym_cases_repeat1, + ACTIONS(1045), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1047), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [17388] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1066), 1, + anon_sym_case, + STATE(343), 2, + sym_case_block, + aux_sym_cases_repeat1, + ACTIONS(1006), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1008), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [17448] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1017), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1019), 36, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + 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, + [17504] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1013), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1015), 36, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + 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, + [17560] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1002), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1004), 36, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + 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, + [17616] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1021), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1023), 36, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + 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, + [17672] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1025), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1027), 36, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + 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, + [17728] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1029), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1031), 36, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + 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, + [17784] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(998), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1000), 36, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + 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, + [17840] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1033), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1035), 36, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + 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, + [17896] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1037), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1039), 36, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + 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, + [17952] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1041), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1043), 36, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + 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, + [18008] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(588), 1, + sym_identifier, + ACTIONS(590), 1, + anon_sym_LPAREN, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_LBRACE, + ACTIONS(602), 1, + anon_sym_not, + ACTIONS(604), 1, + anon_sym_lambda, + ACTIONS(610), 1, + anon_sym_await, + ACTIONS(612), 1, + sym__string_start, + ACTIONS(994), 1, + anon_sym_COLON, + STATE(712), 1, + sym_primary_expression, + STATE(715), 1, + sym_string, + STATE(1061), 1, + sym_expression, + ACTIONS(606), 2, + sym_ellipsis, + sym_float, + ACTIONS(596), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(608), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(592), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(986), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(782), 15, + 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, + [18096] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1072), 1, + anon_sym_COLON_EQ, + ACTIONS(1074), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(1069), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1076), 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(1051), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + ACTIONS(1056), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + [18160] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1078), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1080), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -43295,50 +37150,50 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [23855] = 18, + [18215] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(274), 1, + ACTIONS(258), 1, sym_identifier, - ACTIONS(278), 1, + ACTIONS(262), 1, anon_sym_LPAREN, - ACTIONS(293), 1, + ACTIONS(277), 1, anon_sym_LBRACK, - ACTIONS(295), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(299), 1, + ACTIONS(283), 1, anon_sym_not, - ACTIONS(305), 1, + ACTIONS(289), 1, anon_sym_lambda, - ACTIONS(313), 1, + ACTIONS(297), 1, anon_sym_await, - ACTIONS(315), 1, + ACTIONS(299), 1, sym__string_start, - STATE(604), 1, + STATE(570), 1, sym_string, - STATE(620), 1, + STATE(582), 1, sym_primary_expression, - STATE(1175), 1, + STATE(1176), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(285), 5, + ACTIONS(269), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(904), 7, + STATE(874), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -43346,7 +37201,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(619), 15, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43362,50 +37217,105 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [23940] = 18, + [18300] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, + ACTIONS(1053), 1, + anon_sym_COMMA, + ACTIONS(1060), 1, + anon_sym_EQ, + ACTIONS(1062), 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(1056), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1051), 16, + sym__newline, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(293), 1, + anon_sym_if, + anon_sym_in, anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, anon_sym_not, - ACTIONS(305), 1, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [18361] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, anon_sym_lambda, - ACTIONS(313), 1, + ACTIONS(297), 1, anon_sym_await, - ACTIONS(315), 1, + ACTIONS(299), 1, sym__string_start, - STATE(604), 1, + STATE(570), 1, sym_string, - STATE(620), 1, + STATE(582), 1, sym_primary_expression, - STATE(1149), 1, + STATE(871), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(285), 5, + ACTIONS(269), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(904), 7, + STATE(874), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -43413,7 +37323,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(619), 15, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43429,7 +37339,117 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [24025] = 18, + [18446] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1084), 1, + anon_sym_COMMA, + ACTIONS(1091), 1, + anon_sym_EQ, + ACTIONS(1089), 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(1087), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1082), 16, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [18507] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1074), 1, + anon_sym_EQ, + ACTIONS(1069), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1051), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + ACTIONS(1076), 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(1056), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + [18568] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -43440,18 +37460,286 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(391), 1, + ACTIONS(531), 1, sym_identifier, - ACTIONS(397), 1, + ACTIONS(537), 1, anon_sym_await, - ACTIONS(568), 1, + ACTIONS(552), 1, anon_sym_LPAREN, - ACTIONS(572), 1, + ACTIONS(556), 1, anon_sym_LBRACK, - STATE(696), 1, - sym_primary_expression, - STATE(702), 1, + STATE(657), 1, sym_string, + STATE(692), 1, + sym_primary_expression, + STATE(1033), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(533), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(962), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(752), 15, + 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, + [18653] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(531), 1, + sym_identifier, + ACTIONS(537), 1, + anon_sym_await, + ACTIONS(552), 1, + anon_sym_LPAREN, + ACTIONS(556), 1, + anon_sym_LBRACK, + STATE(657), 1, + sym_string, + STATE(692), 1, + sym_primary_expression, + STATE(939), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(533), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(962), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(752), 15, + 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, + [18738] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(913), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [18823] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(531), 1, + sym_identifier, + ACTIONS(537), 1, + anon_sym_await, + ACTIONS(552), 1, + anon_sym_LPAREN, + ACTIONS(556), 1, + anon_sym_LBRACK, + STATE(657), 1, + sym_string, + STATE(692), 1, + sym_primary_expression, + STATE(1070), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(533), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(962), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(752), 15, + 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, + [18908] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(531), 1, + sym_identifier, + ACTIONS(537), 1, + anon_sym_await, + ACTIONS(552), 1, + anon_sym_LPAREN, + ACTIONS(556), 1, + anon_sym_LBRACK, + STATE(657), 1, + sym_string, + STATE(692), 1, + sym_primary_expression, STATE(1011), 1, sym_expression, ACTIONS(75), 2, @@ -43466,13 +37754,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(393), 5, + ACTIONS(533), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(993), 7, + STATE(962), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -43480,7 +37768,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(801), 15, + STATE(752), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43496,50 +37784,494 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [24110] = 18, + [18993] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, + ACTIONS(1095), 1, + anon_sym_COMMA, + ACTIONS(1102), 1, + anon_sym_EQ, + ACTIONS(1100), 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(1098), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1093), 16, + sym__newline, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(293), 1, + anon_sym_if, + anon_sym_in, anon_sym_LBRACK, - ACTIONS(295), 1, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [19054] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(1123), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [19139] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(840), 1, + anon_sym_else, + STATE(544), 1, + sym_else_clause, + ACTIONS(1104), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1106), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [19198] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(1081), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [19283] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(1039), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [19368] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(531), 1, + sym_identifier, + ACTIONS(537), 1, + anon_sym_await, + ACTIONS(552), 1, + anon_sym_LPAREN, + ACTIONS(556), 1, + anon_sym_LBRACK, + STATE(657), 1, + sym_string, + STATE(692), 1, + sym_primary_expression, + STATE(976), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(533), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(962), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(752), 15, + 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, + [19453] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(279), 1, anon_sym_LBRACE, ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, sym__string_start, - STATE(604), 1, + ACTIONS(570), 1, + sym_identifier, + ACTIONS(572), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, + anon_sym_LBRACK, + ACTIONS(582), 1, + anon_sym_not, + ACTIONS(584), 1, + anon_sym_lambda, + ACTIONS(586), 1, + anon_sym_await, + STATE(570), 1, sym_string, - STATE(620), 1, + STATE(614), 1, + sym_primary_expression, + STATE(963), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(578), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(574), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [19538] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(531), 1, + sym_identifier, + ACTIONS(537), 1, + anon_sym_await, + ACTIONS(552), 1, + anon_sym_LPAREN, + ACTIONS(556), 1, + anon_sym_LBRACK, + STATE(657), 1, + sym_string, + STATE(692), 1, sym_primary_expression, STATE(1084), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(285), 5, + ACTIONS(533), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(904), 7, + STATE(962), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -43547,7 +38279,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(619), 15, + STATE(752), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43563,184 +38295,50 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [24195] = 18, + [19623] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(274), 1, + ACTIONS(588), 1, sym_identifier, - ACTIONS(278), 1, + ACTIONS(590), 1, anon_sym_LPAREN, - ACTIONS(293), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(295), 1, + ACTIONS(600), 1, anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(1106), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [24280] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(1107), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [24365] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, ACTIONS(602), 1, - sym_identifier, - ACTIONS(604), 1, - anon_sym_LPAREN, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, anon_sym_not, - ACTIONS(616), 1, + ACTIONS(604), 1, anon_sym_lambda, - ACTIONS(618), 1, + ACTIONS(610), 1, anon_sym_await, - STATE(604), 1, - sym_string, - STATE(618), 1, + ACTIONS(612), 1, + sym__string_start, + STATE(712), 1, sym_primary_expression, - STATE(917), 1, + STATE(715), 1, + sym_string, + STATE(1023), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(606), 2, sym_ellipsis, sym_float, - ACTIONS(610), 3, + ACTIONS(596), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(608), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(606), 5, + ACTIONS(592), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(904), 7, + STATE(986), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -43748,7 +38346,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(619), 15, + STATE(782), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43764,7 +38362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [24450] = 18, + [19708] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -43775,19 +38373,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(391), 1, + ACTIONS(531), 1, sym_identifier, - ACTIONS(397), 1, + ACTIONS(537), 1, anon_sym_await, - ACTIONS(568), 1, + ACTIONS(552), 1, anon_sym_LPAREN, - ACTIONS(572), 1, + ACTIONS(556), 1, anon_sym_LBRACK, - STATE(696), 1, - sym_primary_expression, - STATE(702), 1, + STATE(657), 1, sym_string, - STATE(1100), 1, + STATE(692), 1, + sym_primary_expression, + STATE(947), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, @@ -43801,13 +38399,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(393), 5, + ACTIONS(533), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(993), 7, + STATE(962), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -43815,7 +38413,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(801), 15, + STATE(752), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43831,7 +38429,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [24535] = 18, + [19793] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -43842,20 +38440,945 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(391), 1, + ACTIONS(531), 1, sym_identifier, - ACTIONS(397), 1, + ACTIONS(537), 1, anon_sym_await, - ACTIONS(568), 1, + ACTIONS(552), 1, anon_sym_LPAREN, - ACTIONS(572), 1, + ACTIONS(556), 1, anon_sym_LBRACK, - STATE(696), 1, + STATE(657), 1, + sym_string, + STATE(692), 1, sym_primary_expression, - STATE(702), 1, + STATE(1140), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(533), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(962), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(752), 15, + 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, + [19878] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(570), 1, + sym_identifier, + ACTIONS(572), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, + anon_sym_LBRACK, + ACTIONS(582), 1, + anon_sym_not, + ACTIONS(584), 1, + anon_sym_lambda, + ACTIONS(586), 1, + anon_sym_await, + STATE(570), 1, + sym_string, + STATE(614), 1, + sym_primary_expression, + STATE(871), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(578), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(574), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [19963] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(531), 1, + sym_identifier, + ACTIONS(537), 1, + anon_sym_await, + ACTIONS(552), 1, + anon_sym_LPAREN, + ACTIONS(556), 1, + anon_sym_LBRACK, + STATE(657), 1, + sym_string, + STATE(692), 1, + sym_primary_expression, + STATE(989), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(533), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(962), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(752), 15, + 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, + [20048] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(588), 1, + sym_identifier, + ACTIONS(590), 1, + anon_sym_LPAREN, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_LBRACE, + ACTIONS(602), 1, + anon_sym_not, + ACTIONS(604), 1, + anon_sym_lambda, + ACTIONS(610), 1, + anon_sym_await, + ACTIONS(612), 1, + sym__string_start, + STATE(712), 1, + sym_primary_expression, + STATE(715), 1, + sym_string, + STATE(987), 1, + sym_expression, + ACTIONS(606), 2, + sym_ellipsis, + sym_float, + ACTIONS(596), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(608), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(592), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(986), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(782), 15, + 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, + [20133] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(588), 1, + sym_identifier, + ACTIONS(590), 1, + anon_sym_LPAREN, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_LBRACE, + ACTIONS(602), 1, + anon_sym_not, + ACTIONS(604), 1, + anon_sym_lambda, + ACTIONS(610), 1, + anon_sym_await, + ACTIONS(612), 1, + sym__string_start, + STATE(712), 1, + sym_primary_expression, + STATE(715), 1, + sym_string, + STATE(988), 1, + sym_expression, + ACTIONS(606), 2, + sym_ellipsis, + sym_float, + ACTIONS(596), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(608), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(592), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(986), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(782), 15, + 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, + [20218] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(531), 1, + sym_identifier, + ACTIONS(537), 1, + anon_sym_await, + ACTIONS(552), 1, + anon_sym_LPAREN, + ACTIONS(556), 1, + anon_sym_LBRACK, + STATE(657), 1, + sym_string, + STATE(692), 1, + sym_primary_expression, + STATE(956), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(533), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(962), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(752), 15, + 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, + [20303] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(588), 1, + sym_identifier, + ACTIONS(590), 1, + anon_sym_LPAREN, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_LBRACE, + ACTIONS(602), 1, + anon_sym_not, + ACTIONS(604), 1, + anon_sym_lambda, + ACTIONS(610), 1, + anon_sym_await, + ACTIONS(612), 1, + sym__string_start, + STATE(712), 1, + sym_primary_expression, + STATE(715), 1, + sym_string, + STATE(992), 1, + sym_expression, + ACTIONS(606), 2, + sym_ellipsis, + sym_float, + ACTIONS(596), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(608), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(592), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(986), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(782), 15, + 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, + [20388] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(840), 1, + anon_sym_else, + STATE(499), 1, + sym_else_clause, + ACTIONS(1108), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1110), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [20447] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(588), 1, + sym_identifier, + ACTIONS(590), 1, + anon_sym_LPAREN, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_LBRACE, + ACTIONS(602), 1, + anon_sym_not, + ACTIONS(604), 1, + anon_sym_lambda, + ACTIONS(610), 1, + anon_sym_await, + ACTIONS(612), 1, + sym__string_start, + STATE(712), 1, + sym_primary_expression, + STATE(715), 1, + sym_string, + STATE(996), 1, + sym_expression, + ACTIONS(606), 2, + sym_ellipsis, + sym_float, + ACTIONS(596), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(608), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(592), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(986), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(782), 15, + 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, + [20532] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(1135), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [20617] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(588), 1, + sym_identifier, + ACTIONS(590), 1, + anon_sym_LPAREN, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_LBRACE, + ACTIONS(602), 1, + anon_sym_not, + ACTIONS(604), 1, + anon_sym_lambda, + ACTIONS(610), 1, + anon_sym_await, + ACTIONS(612), 1, + sym__string_start, + STATE(712), 1, + sym_primary_expression, + STATE(715), 1, + sym_string, + STATE(1007), 1, + sym_expression, + ACTIONS(606), 2, + sym_ellipsis, + sym_float, + ACTIONS(596), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(608), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(592), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(986), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(782), 15, + 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, + [20702] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(588), 1, + sym_identifier, + ACTIONS(590), 1, + anon_sym_LPAREN, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_LBRACE, + ACTIONS(602), 1, + anon_sym_not, + ACTIONS(604), 1, + anon_sym_lambda, + ACTIONS(610), 1, + anon_sym_await, + ACTIONS(612), 1, + sym__string_start, + STATE(712), 1, + sym_primary_expression, + STATE(715), 1, + sym_string, + STATE(1010), 1, + sym_expression, + ACTIONS(606), 2, + sym_ellipsis, + sym_float, + ACTIONS(596), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(608), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(592), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(986), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(782), 15, + 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, + [20787] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(588), 1, + sym_identifier, + ACTIONS(590), 1, + anon_sym_LPAREN, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_LBRACE, + ACTIONS(602), 1, + anon_sym_not, + ACTIONS(604), 1, + anon_sym_lambda, + ACTIONS(610), 1, + anon_sym_await, + ACTIONS(612), 1, + sym__string_start, + STATE(712), 1, + sym_primary_expression, + STATE(715), 1, sym_string, STATE(1013), 1, sym_expression, + ACTIONS(606), 2, + sym_ellipsis, + sym_float, + ACTIONS(596), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(608), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(592), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(986), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(782), 15, + 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, + [20872] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(881), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [20957] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(531), 1, + sym_identifier, + ACTIONS(537), 1, + anon_sym_await, + ACTIONS(552), 1, + anon_sym_LPAREN, + ACTIONS(556), 1, + anon_sym_LBRACK, + STATE(657), 1, + sym_string, + STATE(692), 1, + sym_primary_expression, + STATE(1067), 1, + sym_expression, ACTIONS(75), 2, sym_ellipsis, sym_float, @@ -43868,13 +39391,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(393), 5, + ACTIONS(533), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(993), 7, + STATE(962), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -43882,7 +39405,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(801), 15, + STATE(752), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43898,117 +39421,1176 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [24620] = 18, + [21042] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(274), 1, + ACTIONS(258), 1, sym_identifier, - ACTIONS(278), 1, + ACTIONS(262), 1, anon_sym_LPAREN, - ACTIONS(293), 1, + ACTIONS(277), 1, anon_sym_LBRACK, - ACTIONS(295), 1, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(878), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [21127] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(897), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [21212] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(905), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [21297] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(1130), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [21382] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(531), 1, + sym_identifier, + ACTIONS(537), 1, + anon_sym_await, + ACTIONS(552), 1, + anon_sym_LPAREN, + ACTIONS(556), 1, + anon_sym_LBRACK, + STATE(657), 1, + sym_string, + STATE(692), 1, + sym_primary_expression, + STATE(964), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(533), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(962), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(752), 15, + 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, + [21467] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(889), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [21552] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(888), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [21637] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(883), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [21722] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(1109), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [21807] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(1127), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [21892] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(844), 1, + anon_sym_finally, + STATE(538), 1, + sym_finally_clause, + ACTIONS(1112), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1114), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [21951] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(1114), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [22036] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(1157), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [22121] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(1136), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [22206] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(531), 1, + sym_identifier, + ACTIONS(537), 1, + anon_sym_await, + ACTIONS(552), 1, + anon_sym_LPAREN, + ACTIONS(556), 1, + anon_sym_LBRACK, + STATE(657), 1, + sym_string, + STATE(692), 1, + sym_primary_expression, + STATE(957), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(533), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(962), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(752), 15, + 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, + [22291] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(1124), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [22376] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(1062), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [22461] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(279), 1, anon_sym_LBRACE, ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, sym__string_start, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(945), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [24705] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, + ACTIONS(570), 1, sym_identifier, - ACTIONS(278), 1, + ACTIONS(572), 1, anon_sym_LPAREN, - ACTIONS(293), 1, + ACTIONS(580), 1, anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, + ACTIONS(582), 1, anon_sym_not, - ACTIONS(305), 1, + ACTIONS(584), 1, anon_sym_lambda, - ACTIONS(313), 1, + ACTIONS(586), 1, anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(604), 1, + STATE(570), 1, sym_string, - STATE(620), 1, + STATE(614), 1, sym_primary_expression, - STATE(1098), 1, + STATE(1002), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(578), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(285), 5, + ACTIONS(574), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(904), 7, + STATE(874), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -44016,7 +40598,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(619), 15, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44032,211 +40614,10 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [24790] = 18, + [22546] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(604), 1, - anon_sym_LPAREN, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(618), 1, - anon_sym_await, - STATE(604), 1, - sym_string, - STATE(618), 1, - sym_primary_expression, - STATE(910), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(606), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [24875] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(604), 1, - anon_sym_LPAREN, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(618), 1, - anon_sym_await, - STATE(604), 1, - sym_string, - STATE(618), 1, - sym_primary_expression, - STATE(918), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(606), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [24960] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(1200), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [25045] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1110), 12, + ACTIONS(1118), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -44249,7 +40630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1112), 35, + ACTIONS(1116), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -44285,148 +40666,645 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [25100] = 18, + [22601] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(391), 1, - sym_identifier, - ACTIONS(397), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACK, - STATE(696), 1, - sym_primary_expression, - STATE(702), 1, - sym_string, - STATE(1017), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(393), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(993), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(801), 15, - 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, - [25185] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(391), 1, - sym_identifier, - ACTIONS(397), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACK, - STATE(696), 1, - sym_primary_expression, - STATE(702), 1, - sym_string, - STATE(1016), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(393), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(993), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(801), 15, - 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, - [25270] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(858), 1, + ACTIONS(840), 1, anon_sym_else, - STATE(503), 1, + STATE(531), 1, sym_else_clause, - ACTIONS(1172), 12, + ACTIONS(1120), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1122), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [22660] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(840), 1, + anon_sym_else, + STATE(558), 1, + sym_else_clause, + ACTIONS(1124), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1126), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [22719] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(1121), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [22804] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(1059), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [22889] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(531), 1, + sym_identifier, + ACTIONS(537), 1, + anon_sym_await, + ACTIONS(552), 1, + anon_sym_LPAREN, + ACTIONS(556), 1, + anon_sym_LBRACK, + STATE(657), 1, + sym_string, + STATE(692), 1, + sym_primary_expression, + STATE(943), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(533), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(962), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(752), 15, + 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, + [22974] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(531), 1, + sym_identifier, + ACTIONS(537), 1, + anon_sym_await, + ACTIONS(552), 1, + anon_sym_LPAREN, + ACTIONS(556), 1, + anon_sym_LBRACK, + STATE(657), 1, + sym_string, + STATE(692), 1, + sym_primary_expression, + STATE(1092), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(533), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(962), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(752), 15, + 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, + [23059] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(840), 1, + anon_sym_else, + STATE(520), 1, + sym_else_clause, + ACTIONS(1128), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1130), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [23118] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(1118), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [23203] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(1115), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [23288] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(531), 1, + sym_identifier, + ACTIONS(537), 1, + anon_sym_await, + ACTIONS(552), 1, + anon_sym_LPAREN, + ACTIONS(556), 1, + anon_sym_LBRACK, + STATE(657), 1, + sym_string, + STATE(692), 1, + sym_primary_expression, + STATE(1029), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(533), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(962), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(752), 15, + 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, + [23373] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(818), 1, + anon_sym_else, + STATE(559), 1, + sym_else_clause, + ACTIONS(1128), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -44439,7 +41317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1170), 33, + ACTIONS(1130), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -44473,50 +41351,102 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [25329] = 18, + [23432] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(1118), 12, sym__string_start, - ACTIONS(391), 1, - sym_identifier, - ACTIONS(397), 1, - anon_sym_await, - ACTIONS(568), 1, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(572), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_LBRACK, - STATE(696), 1, - sym_primary_expression, - STATE(702), 1, - sym_string, - STATE(1037), 1, - sym_expression, - ACTIONS(75), 2, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(1116), 35, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [23487] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(570), 1, + sym_identifier, + ACTIONS(572), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, + anon_sym_LBRACK, + ACTIONS(582), 1, + anon_sym_not, + ACTIONS(584), 1, + anon_sym_lambda, + ACTIONS(586), 1, + anon_sym_await, + STATE(570), 1, + sym_string, + STATE(614), 1, + sym_primary_expression, + STATE(903), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(578), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(393), 5, + ACTIONS(574), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(993), 7, + STATE(874), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -44524,7 +41454,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(801), 15, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44540,14 +41470,10 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [25414] = 5, + [23572] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(858), 1, - anon_sym_else, - STATE(500), 1, - sym_else_clause, - ACTIONS(1176), 12, + ACTIONS(1078), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -44560,7 +41486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1174), 33, + ACTIONS(1080), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -44573,60 +41499,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [25473] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(868), 1, + anon_sym_elif, anon_sym_else, - STATE(555), 1, - sym_else_clause, - ACTIONS(1176), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1174), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_while, @@ -44648,141 +41522,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [25532] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(1180), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [25617] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(1072), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [25702] = 18, + [23627] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -44793,19 +41533,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(391), 1, + ACTIONS(531), 1, sym_identifier, - ACTIONS(397), 1, + ACTIONS(537), 1, anon_sym_await, - ACTIONS(568), 1, + ACTIONS(552), 1, anon_sym_LPAREN, - ACTIONS(572), 1, + ACTIONS(556), 1, anon_sym_LBRACK, - STATE(696), 1, - sym_primary_expression, - STATE(702), 1, + STATE(657), 1, sym_string, - STATE(979), 1, + STATE(692), 1, + sym_primary_expression, + STATE(935), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, @@ -44819,13 +41559,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(393), 5, + ACTIONS(533), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(993), 7, + STATE(962), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -44833,7 +41573,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(801), 15, + STATE(752), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44849,81 +41589,14 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [25787] = 18, + [23712] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(604), 1, - anon_sym_LPAREN, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(618), 1, - anon_sym_await, - STATE(604), 1, - sym_string, - STATE(618), 1, - sym_primary_expression, - STATE(905), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(606), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [25872] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(868), 1, - anon_sym_else, - STATE(561), 1, - sym_else_clause, - ACTIONS(1172), 12, + ACTIONS(844), 1, + anon_sym_finally, + STATE(541), 1, + sym_finally_clause, + ACTIONS(1132), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -44936,7 +41609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1170), 33, + ACTIONS(1134), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -44970,104 +41643,50 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [25931] = 5, + [23771] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(868), 1, - anon_sym_else, - STATE(556), 1, - sym_else_clause, - ACTIONS(1160), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1158), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, + ACTIONS(258), 1, sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [25990] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(604), 1, + ACTIONS(262), 1, anon_sym_LPAREN, - ACTIONS(612), 1, + ACTIONS(277), 1, anon_sym_LBRACK, - ACTIONS(614), 1, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, anon_sym_not, - ACTIONS(616), 1, + ACTIONS(289), 1, anon_sym_lambda, - ACTIONS(618), 1, + ACTIONS(297), 1, anon_sym_await, - STATE(604), 1, + ACTIONS(299), 1, + sym__string_start, + STATE(570), 1, sym_string, - STATE(618), 1, + STATE(582), 1, sym_primary_expression, - STATE(916), 1, + STATE(923), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(610), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(606), 5, + ACTIONS(269), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(904), 7, + STATE(874), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -45075,7 +41694,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(619), 15, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45091,50 +41710,50 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [26075] = 18, + [23856] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, + ACTIONS(279), 1, anon_sym_LBRACE, ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, sym__string_start, - STATE(604), 1, + ACTIONS(570), 1, + sym_identifier, + ACTIONS(572), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, + anon_sym_LBRACK, + ACTIONS(582), 1, + anon_sym_not, + ACTIONS(584), 1, + anon_sym_lambda, + ACTIONS(586), 1, + anon_sym_await, + STATE(570), 1, sym_string, - STATE(620), 1, + STATE(614), 1, sym_primary_expression, - STATE(1177), 1, + STATE(909), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(578), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(285), 5, + ACTIONS(574), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(904), 7, + STATE(874), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -45142,7 +41761,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(619), 15, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45158,13 +41777,948 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [26160] = 5, + [23941] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(858), 1, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(531), 1, + sym_identifier, + ACTIONS(537), 1, + anon_sym_await, + ACTIONS(552), 1, + anon_sym_LPAREN, + ACTIONS(556), 1, + anon_sym_LBRACK, + STATE(657), 1, + sym_string, + STATE(692), 1, + sym_primary_expression, + STATE(1097), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(533), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(962), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(752), 15, + 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, + [24026] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(570), 1, + sym_identifier, + ACTIONS(572), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, + anon_sym_LBRACK, + ACTIONS(582), 1, + anon_sym_not, + ACTIONS(584), 1, + anon_sym_lambda, + ACTIONS(586), 1, + anon_sym_await, + STATE(570), 1, + sym_string, + STATE(614), 1, + sym_primary_expression, + STATE(898), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(578), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(574), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [24111] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(588), 1, + sym_identifier, + ACTIONS(590), 1, + anon_sym_LPAREN, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_LBRACE, + ACTIONS(602), 1, + anon_sym_not, + ACTIONS(604), 1, + anon_sym_lambda, + ACTIONS(610), 1, + anon_sym_await, + ACTIONS(612), 1, + sym__string_start, + STATE(712), 1, + sym_primary_expression, + STATE(715), 1, + sym_string, + STATE(1075), 1, + sym_expression, + ACTIONS(606), 2, + sym_ellipsis, + sym_float, + ACTIONS(596), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(608), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(592), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(986), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(782), 15, + 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, + [24196] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(840), 1, anon_sym_else, - STATE(523), 1, + STATE(478), 1, sym_else_clause, + ACTIONS(1136), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1138), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [24255] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(818), 1, + anon_sym_else, + STATE(539), 1, + sym_else_clause, + ACTIONS(1124), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1126), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [24314] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(1140), 1, + sym_identifier, + ACTIONS(1144), 1, + anon_sym_await, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(913), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + STATE(361), 2, + sym_attribute, + sym_subscript, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1142), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 13, + 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, + [24401] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(570), 1, + sym_identifier, + ACTIONS(572), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, + anon_sym_LBRACK, + ACTIONS(582), 1, + anon_sym_not, + ACTIONS(584), 1, + anon_sym_lambda, + ACTIONS(586), 1, + anon_sym_await, + STATE(570), 1, + sym_string, + STATE(614), 1, + sym_primary_expression, + STATE(896), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(578), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(574), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [24486] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(570), 1, + sym_identifier, + ACTIONS(572), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, + anon_sym_LBRACK, + ACTIONS(582), 1, + anon_sym_not, + ACTIONS(584), 1, + anon_sym_lambda, + ACTIONS(586), 1, + anon_sym_await, + STATE(570), 1, + sym_string, + STATE(614), 1, + sym_primary_expression, + STATE(899), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(578), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(574), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [24571] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(570), 1, + sym_identifier, + ACTIONS(572), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, + anon_sym_LBRACK, + ACTIONS(582), 1, + anon_sym_not, + ACTIONS(584), 1, + anon_sym_lambda, + ACTIONS(586), 1, + anon_sym_await, + STATE(570), 1, + sym_string, + STATE(614), 1, + sym_primary_expression, + STATE(908), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(578), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(574), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [24656] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(818), 1, + anon_sym_else, + STATE(528), 1, + sym_else_clause, + ACTIONS(1120), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1122), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [24715] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(818), 1, + anon_sym_else, + STATE(475), 1, + sym_else_clause, + ACTIONS(1108), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1110), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [24774] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1146), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1148), 35, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [24829] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(1153), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [24914] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(531), 1, + sym_identifier, + ACTIONS(537), 1, + anon_sym_await, + ACTIONS(552), 1, + anon_sym_LPAREN, + ACTIONS(556), 1, + anon_sym_LBRACK, + STATE(657), 1, + sym_string, + STATE(692), 1, + sym_primary_expression, + STATE(1056), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(533), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(962), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(752), 15, + 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, + [24999] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(570), 1, + sym_identifier, + ACTIONS(572), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, + anon_sym_LBRACK, + ACTIONS(582), 1, + anon_sym_not, + ACTIONS(584), 1, + anon_sym_lambda, + ACTIONS(586), 1, + anon_sym_await, + STATE(570), 1, + sym_string, + STATE(614), 1, + sym_primary_expression, + STATE(891), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(578), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(574), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [25084] = 3, + ACTIONS(3), 1, + sym_comment, ACTIONS(1146), 12, sym__dedent, sym__string_start, @@ -45178,57 +42732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1148), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [26219] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1164), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1162), 35, + ACTIONS(1148), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45264,50 +42768,50 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26274] = 18, + [25139] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(274), 1, + ACTIONS(258), 1, sym_identifier, - ACTIONS(278), 1, + ACTIONS(262), 1, anon_sym_LPAREN, - ACTIONS(293), 1, + ACTIONS(277), 1, anon_sym_LBRACK, - ACTIONS(295), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(299), 1, + ACTIONS(283), 1, anon_sym_not, - ACTIONS(305), 1, + ACTIONS(289), 1, anon_sym_lambda, - ACTIONS(313), 1, + ACTIONS(297), 1, anon_sym_await, - ACTIONS(315), 1, + ACTIONS(299), 1, sym__string_start, - STATE(604), 1, + STATE(570), 1, sym_string, - STATE(620), 1, + STATE(582), 1, sym_primary_expression, - STATE(1189), 1, + STATE(1138), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(285), 5, + ACTIONS(269), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(904), 7, + STATE(874), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -45315,7 +42819,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(619), 15, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45331,7 +42835,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [26359] = 18, + [25224] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -45342,19 +42846,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(391), 1, + ACTIONS(531), 1, sym_identifier, - ACTIONS(397), 1, + ACTIONS(537), 1, anon_sym_await, - ACTIONS(568), 1, + ACTIONS(552), 1, anon_sym_LPAREN, - ACTIONS(572), 1, + ACTIONS(556), 1, anon_sym_LBRACK, - STATE(696), 1, - sym_primary_expression, - STATE(702), 1, + STATE(657), 1, sym_string, - STATE(1073), 1, + STATE(692), 1, + sym_primary_expression, + STATE(1009), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, @@ -45368,13 +42872,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(393), 5, + ACTIONS(533), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(993), 7, + STATE(962), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -45382,7 +42886,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(801), 15, + STATE(752), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45398,16 +42902,150 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [26444] = 5, + [25309] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(872), 1, + ACTIONS(588), 1, + sym_identifier, + ACTIONS(590), 1, + anon_sym_LPAREN, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_LBRACE, + ACTIONS(602), 1, + anon_sym_not, + ACTIONS(604), 1, + anon_sym_lambda, + ACTIONS(610), 1, + anon_sym_await, + ACTIONS(612), 1, + sym__string_start, + STATE(712), 1, + sym_primary_expression, + STATE(715), 1, + sym_string, + STATE(1100), 1, + sym_expression, + ACTIONS(606), 2, + sym_ellipsis, + sym_float, + ACTIONS(596), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(608), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(592), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(986), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(782), 15, + 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, + [25394] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(531), 1, + sym_identifier, + ACTIONS(537), 1, + anon_sym_await, + ACTIONS(552), 1, + anon_sym_LPAREN, + ACTIONS(556), 1, + anon_sym_LBRACK, + STATE(657), 1, + sym_string, + STATE(692), 1, + sym_primary_expression, + STATE(972), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(533), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(962), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(752), 15, + 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, + [25479] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(822), 1, anon_sym_finally, - STATE(514), 1, + STATE(503), 1, sym_finally_clause, - ACTIONS(1156), 12, + ACTIONS(1112), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -45418,7 +43056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1154), 33, + ACTIONS(1114), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45452,50 +43090,50 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26503] = 18, + [25538] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(391), 1, + ACTIONS(258), 1, sym_identifier, - ACTIONS(397), 1, - anon_sym_await, - ACTIONS(568), 1, + ACTIONS(262), 1, anon_sym_LPAREN, - ACTIONS(572), 1, + ACTIONS(277), 1, anon_sym_LBRACK, - STATE(696), 1, - sym_primary_expression, - STATE(702), 1, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + STATE(570), 1, sym_string, - STATE(1117), 1, + STATE(582), 1, + sym_primary_expression, + STATE(1088), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(393), 5, + ACTIONS(269), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(993), 7, + STATE(874), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -45503,7 +43141,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(801), 15, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45519,10 +43157,148 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [26588] = 3, + [25623] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1166), 12, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(1082), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [25708] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + STATE(570), 1, + sym_string, + STATE(582), 1, + sym_primary_expression, + STATE(917), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(874), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(607), 15, + 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, + [25793] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(822), 1, + anon_sym_finally, + STATE(519), 1, + sym_finally_clause, + ACTIONS(1132), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -45535,7 +43311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1168), 35, + ACTIONS(1134), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45548,8 +43324,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [25852] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(818), 1, anon_sym_else, + STATE(563), 1, + sym_else_clause, + ACTIONS(1136), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1138), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_while, @@ -45571,208 +43399,723 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26643] = 18, + [25911] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, + ACTIONS(818), 1, + anon_sym_else, + STATE(500), 1, + sym_else_clause, + ACTIONS(1104), 12, + sym__dedent, sym__string_start, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(1197), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - ACTIONS(311), 4, + sym_ellipsis, + sym_float, + ACTIONS(1106), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, sym_integer, + sym_identifier, + anon_sym_await, sym_true, sym_false, sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [26728] = 18, + [25970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(1150), 12, sym__string_start, - ACTIONS(391), 1, - sym_identifier, - ACTIONS(397), 1, - anon_sym_await, - ACTIONS(568), 1, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACK, - STATE(696), 1, - sym_primary_expression, - STATE(702), 1, - sym_string, - STATE(1070), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - ACTIONS(77), 4, + sym_ellipsis, + sym_float, + ACTIONS(1152), 34, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_case, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, sym_integer, + sym_identifier, + anon_sym_await, sym_true, sym_false, sym_none, - ACTIONS(393), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(993), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(801), 15, - 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, - [26813] = 18, + [26024] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, + ACTIONS(1156), 12, + sym__dedent, sym__string_start, - STATE(604), 1, - sym_string, - STATE(620), 1, - sym_primary_expression, - STATE(1161), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - ACTIONS(311), 4, + sym_ellipsis, + sym_float, + ACTIONS(1154), 34, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_case, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, sym_integer, + sym_identifier, + anon_sym_await, sym_true, sym_false, sym_none, - ACTIONS(285), 5, + [26078] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1160), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1158), 34, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, anon_sym_match, + anon_sym_case, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - STATE(904), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(619), 15, - 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, - [26898] = 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, + [26132] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1162), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1164), 34, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [26186] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1168), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1166), 34, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_case, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [26240] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1150), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1152), 34, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_case, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [26294] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1156), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1154), 34, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_case, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [26348] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1170), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1172), 34, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [26402] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1168), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1166), 34, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_case, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [26456] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1170), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1172), 34, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [26510] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1160), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1158), 34, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_case, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [26564] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1162), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1164), 34, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [26618] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1174), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1176), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [26671] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1180), 12, @@ -45788,7 +44131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1178), 34, + ACTIONS(1178), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45805,7 +44148,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_match, anon_sym_def, @@ -45823,61 +44165,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26952] = 3, + [26724] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1182), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1184), 34, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [27006] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1188), 12, + ACTIONS(1184), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -45890,7 +44181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1186), 34, + ACTIONS(1182), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45909,7 +44200,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_with, anon_sym_match, - anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -45925,10 +44215,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27060] = 3, + [26777] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1192), 12, + ACTIONS(836), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -45941,7 +44231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1190), 34, + ACTIONS(834), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45960,7 +44250,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_with, anon_sym_match, - anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -45976,10 +44265,60 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27114] = 3, + [26830] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1182), 12, + ACTIONS(1186), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1188), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [26883] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1132), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -45992,7 +44331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1184), 34, + ACTIONS(1134), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46009,7 +44348,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_match, anon_sym_def, @@ -46027,10 +44365,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27168] = 3, + [26936] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 12, + ACTIONS(1190), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -46043,7 +44381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1196), 34, + ACTIONS(1192), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46062,7 +44400,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_with, anon_sym_match, - anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -46078,10 +44415,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27222] = 3, + [26989] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 12, + ACTIONS(1196), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -46094,7 +44431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1196), 34, + ACTIONS(1194), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46113,7 +44450,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_with, anon_sym_match, - anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -46129,10 +44465,60 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27276] = 3, + [27042] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1200), 12, + ACTIONS(1198), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1200), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [27095] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1112), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -46145,7 +44531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1198), 34, + ACTIONS(1114), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46164,7 +44550,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_with, anon_sym_match, - anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -46180,211 +44565,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27330] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1180), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1178), 34, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [27384] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1200), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1198), 34, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_case, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [27438] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1188), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1186), 34, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_case, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [27492] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1192), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1190), 34, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_case, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [27546] = 3, + [27148] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1202), 12, @@ -46434,12 +44615,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27599] = 3, + [27201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1206), 12, + ACTIONS(1208), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -46450,7 +44631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1208), 33, + ACTIONS(1206), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46484,7 +44665,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27652] = 3, + [27254] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1212), 12, @@ -46534,7 +44715,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27705] = 3, + [27307] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1216), 12, @@ -46584,7 +44765,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27758] = 3, + [27360] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1220), 12, @@ -46634,7 +44815,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27811] = 3, + [27413] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1224), 12, @@ -46684,7 +44865,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27864] = 3, + [27466] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1228), 12, @@ -46734,7 +44915,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27917] = 3, + [27519] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1232), 12, @@ -46784,12 +44965,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27970] = 3, + [27572] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1234), 12, + ACTIONS(1236), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -46800,7 +44981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1236), 33, + ACTIONS(1234), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46834,7 +45015,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28023] = 3, + [27625] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1240), 12, @@ -46884,60 +45065,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28076] = 3, + [27678] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1244), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [28129] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1248), 12, + ACTIONS(1244), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -46950,7 +45081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1246), 33, + ACTIONS(1242), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46984,10 +45115,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28182] = 3, + [27731] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 12, + ACTIONS(1208), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -47000,7 +45131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1252), 33, + ACTIONS(1206), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47034,7 +45165,207 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28235] = 3, + [27784] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(816), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(814), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [27837] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1246), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1248), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [27890] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1252), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1250), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [27943] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1180), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1178), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [27996] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1256), 12, @@ -47084,107 +45415,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28288] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1156), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1154), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [28341] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(864), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(866), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [28394] = 3, + [28049] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1258), 12, @@ -47234,12 +45465,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28447] = 3, + [28102] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 12, + ACTIONS(1186), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47250,7 +45481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1264), 33, + ACTIONS(1188), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47284,10 +45515,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28500] = 3, + [28155] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 12, + ACTIONS(816), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -47300,7 +45531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1268), 33, + ACTIONS(814), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47334,7 +45565,157 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28553] = 3, + [28208] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1264), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1262), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [28261] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1196), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1194), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [28314] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1266), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [28367] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1272), 12, @@ -47384,7 +45765,57 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28606] = 3, + [28420] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1220), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1218), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [28473] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1276), 12, @@ -47434,12 +45865,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28659] = 3, + [28526] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1280), 12, - sym__dedent, + ACTIONS(1278), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47450,7 +45881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1278), 33, + ACTIONS(1280), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47484,7 +45915,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28712] = 3, + [28579] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1284), 12, @@ -47534,7 +45965,57 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28765] = 3, + [28632] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1132), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1134), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [28685] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1288), 12, @@ -47584,7 +46065,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28818] = 3, + [28738] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1292), 12, @@ -47634,7 +46115,107 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28871] = 3, + [28791] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1240), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1238), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [28844] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(836), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(834), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [28897] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1296), 12, @@ -47684,160 +46265,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28924] = 3, + [28950] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1298), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [28977] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(864), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(866), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [29030] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1156), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1154), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [29083] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1302), 12, + ACTIONS(1228), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -47850,7 +46281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1304), 33, + ACTIONS(1226), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47884,7 +46315,307 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29136] = 3, + [29003] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1296), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1294), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [29056] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1300), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [29109] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1278), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1280), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [29162] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1184), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1182), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [29215] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1300), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [29268] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1304), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1302), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [29321] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1308), 12, @@ -47934,12 +46665,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29189] = 3, + [29374] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1312), 12, - sym__dedent, + ACTIONS(1310), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47950,7 +46681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1310), 33, + ACTIONS(1312), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47984,7 +46715,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29242] = 3, + [29427] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1316), 12, @@ -48034,7 +46765,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29295] = 3, + [29480] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1318), 12, @@ -48084,7 +46815,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29348] = 3, + [29533] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1322), 12, @@ -48134,60 +46865,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29401] = 3, + [29586] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1328), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1326), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [29454] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1328), 12, + ACTIONS(1326), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -48200,7 +46881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1326), 33, + ACTIONS(1328), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48234,7 +46915,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29507] = 3, + [29639] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1332), 12, @@ -48284,110 +46965,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29560] = 3, + [29692] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1334), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [29613] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1150), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1152), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [29666] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 12, + ACTIONS(1216), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -48400,7 +46981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1298), 33, + ACTIONS(1214), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48434,10 +47015,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29719] = 3, + [29745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1296), 12, + ACTIONS(1334), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -48450,7 +47031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1294), 33, + ACTIONS(1336), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48484,10 +47065,60 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29772] = 3, + [29798] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 12, + ACTIONS(1340), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1338), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [29851] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1342), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -48500,7 +47131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1340), 33, + ACTIONS(1344), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48534,10 +47165,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29825] = 3, + [29904] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 12, + ACTIONS(1342), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -48550,7 +47181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1260), 33, + ACTIONS(1344), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48584,160 +47215,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29878] = 3, + [29957] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1268), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [29931] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1318), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1320), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [29984] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1344), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1342), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [30037] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1346), 12, + ACTIONS(1340), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -48750,7 +47231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1348), 33, + ACTIONS(1338), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48784,10 +47265,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30090] = 3, + [30010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 12, + ACTIONS(1348), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -48800,7 +47281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1304), 33, + ACTIONS(1346), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48834,7 +47315,57 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30143] = 3, + [30063] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1334), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1336), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30116] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1292), 12, @@ -48884,10 +47415,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30196] = 3, + [30169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 12, + ACTIONS(1288), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -48900,7 +47431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1352), 33, + ACTIONS(1286), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48934,7 +47465,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30249] = 3, + [30222] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1284), 12, @@ -48984,7 +47515,557 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30302] = 3, + [30275] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1258), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1260), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30328] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1276), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1274), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30381] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1352), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1350), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30434] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1272), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1270), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30487] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1306), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30540] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1246), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1248), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30593] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1198), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1200), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30646] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1266), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30699] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1264), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1262), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30752] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1332), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1330), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30805] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1256), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1254), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30858] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1322), 12, @@ -49034,60 +48115,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30355] = 3, + [30911] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1340), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [30408] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1354), 12, + ACTIONS(1252), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -49100,7 +48131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1356), 33, + ACTIONS(1250), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49134,60 +48165,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30461] = 3, + [30964] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1360), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [30514] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1250), 12, + ACTIONS(1190), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -49200,7 +48181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1252), 33, + ACTIONS(1192), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49234,7 +48215,457 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30567] = 3, + [31017] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1318), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1320), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31070] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1244), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1242), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31123] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1316), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1314), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31176] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1304), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1302), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31229] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1236), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1234), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31282] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1232), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1230), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31335] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1346), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31388] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1352), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1350), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31441] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1312), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31494] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1212), 12, @@ -49284,110 +48715,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30620] = 3, + [31547] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1342), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [30673] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1216), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1214), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [30726] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1234), 12, + ACTIONS(1174), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -49400,7 +48731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1236), 33, + ACTIONS(1176), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49434,60 +48765,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30779] = 3, + [31600] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1220), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1218), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [30832] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1364), 12, + ACTIONS(1326), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -49500,7 +48781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1362), 33, + ACTIONS(1328), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49534,1707 +48815,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30885] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1224), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1222), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [30938] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1368), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1366), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [30991] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1228), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1226), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [31044] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1232), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1230), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [31097] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1240), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1238), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [31150] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1364), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1362), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [31203] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1372), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1370), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [31256] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(856), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(854), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [31309] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1248), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1246), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [31362] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1256), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1254), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [31415] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1272), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1270), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [31468] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1276), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1274), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [31521] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1372), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1370), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [31574] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1280), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1278), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [31627] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1368), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1366), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [31680] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1288), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1286), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [31733] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1150), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1152), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [31786] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1242), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1244), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [31839] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1350), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1352), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [31892] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(856), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(854), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [31945] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1308), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1306), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [31998] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1374), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1376), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [32051] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1206), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1208), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [32104] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1312), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1310), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [32157] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1358), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1360), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [32210] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1316), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1314), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [32263] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1332), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1330), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [32316] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1354), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1356), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [32369] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1346), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1348), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [32422] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1336), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1334), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [32475] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1380), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1378), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [32528] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1374), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1376), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [32581] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1380), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1378), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [32634] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1262), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1264), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [32687] = 3, + [31653] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1202), 12, @@ -51284,57 +48865,157 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [32740] = 18, + [31706] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, + ACTIONS(1112), 12, sym__string_start, - ACTIONS(678), 1, - sym_identifier, - ACTIONS(680), 1, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(690), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(1384), 1, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1114), 33, + anon_sym_import, + anon_sym_from, anon_sym_STAR, - STATE(604), 1, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31759] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1224), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1222), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31812] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(656), 1, + sym_identifier, + ACTIONS(658), 1, + anon_sym_LPAREN, + ACTIONS(668), 1, + anon_sym_LBRACK, + ACTIONS(1356), 1, + anon_sym_STAR, + STATE(570), 1, sym_string, - STATE(874), 1, + STATE(847), 1, sym_pattern, - STATE(885), 1, + STATE(853), 1, sym_primary_expression, - ACTIONS(309), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(1382), 2, + ACTIONS(1354), 2, anon_sym_RPAREN, anon_sym_RBRACK, - STATE(768), 2, + STATE(726), 2, sym_attribute, sym_subscript, - ACTIONS(301), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(880), 3, + STATE(846), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, - ACTIONS(311), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(684), 6, + ACTIONS(662), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(619), 13, + STATE(607), 13, sym_binary_operator, sym_unary_operator, sym_call, @@ -51348,58 +49029,58 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [32822] = 19, + [31894] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(315), 1, + ACTIONS(299), 1, sym__string_start, - ACTIONS(678), 1, + ACTIONS(656), 1, sym_identifier, - ACTIONS(680), 1, + ACTIONS(658), 1, anon_sym_LPAREN, - ACTIONS(690), 1, + ACTIONS(668), 1, anon_sym_LBRACK, - ACTIONS(1384), 1, + ACTIONS(1356), 1, anon_sym_STAR, - ACTIONS(1386), 1, + ACTIONS(1358), 1, anon_sym_RPAREN, - STATE(604), 1, + STATE(570), 1, sym_string, - STATE(885), 1, + STATE(853), 1, sym_primary_expression, - STATE(1137), 1, + STATE(1120), 1, sym_pattern, - STATE(1448), 1, + STATE(1392), 1, sym__patterns, - ACTIONS(309), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(768), 2, + STATE(726), 2, sym_attribute, sym_subscript, - ACTIONS(301), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(880), 3, + STATE(846), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, - ACTIONS(311), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(684), 6, + ACTIONS(662), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(619), 13, + STATE(607), 13, sym_binary_operator, sym_unary_operator, sym_call, @@ -51413,57 +49094,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [32906] = 18, + [31978] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(315), 1, + ACTIONS(299), 1, sym__string_start, - ACTIONS(678), 1, + ACTIONS(656), 1, sym_identifier, - ACTIONS(680), 1, + ACTIONS(658), 1, anon_sym_LPAREN, - ACTIONS(690), 1, + ACTIONS(668), 1, anon_sym_LBRACK, - ACTIONS(1384), 1, + ACTIONS(1356), 1, anon_sym_STAR, - STATE(604), 1, + STATE(570), 1, sym_string, - STATE(874), 1, + STATE(847), 1, sym_pattern, - STATE(885), 1, + STATE(853), 1, sym_primary_expression, - ACTIONS(309), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(1388), 2, + ACTIONS(1360), 2, anon_sym_RPAREN, anon_sym_RBRACK, - STATE(768), 2, + STATE(726), 2, sym_attribute, sym_subscript, - ACTIONS(301), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(880), 3, + STATE(846), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, - ACTIONS(311), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(684), 6, + ACTIONS(662), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(619), 13, + STATE(607), 13, sym_binary_operator, sym_unary_operator, sym_call, @@ -51477,106 +49158,56 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [32988] = 5, + [32060] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1394), 1, - sym__string_start, - STATE(599), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1392), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1390), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [33043] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(315), 1, + ACTIONS(299), 1, sym__string_start, - ACTIONS(678), 1, + ACTIONS(656), 1, sym_identifier, - ACTIONS(680), 1, + ACTIONS(658), 1, anon_sym_LPAREN, - ACTIONS(690), 1, + ACTIONS(668), 1, anon_sym_LBRACK, - ACTIONS(1384), 1, + ACTIONS(1356), 1, anon_sym_STAR, - STATE(604), 1, + STATE(570), 1, sym_string, - STATE(885), 1, + STATE(853), 1, sym_primary_expression, - STATE(1260), 1, + STATE(1185), 1, sym_pattern, - STATE(1503), 1, + STATE(1477), 1, sym_pattern_list, - ACTIONS(309), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(768), 2, + STATE(726), 2, sym_attribute, sym_subscript, - ACTIONS(301), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(880), 3, + STATE(846), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, - ACTIONS(311), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(684), 6, + ACTIONS(662), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(619), 13, + STATE(607), 13, sym_binary_operator, sym_unary_operator, sym_call, @@ -51590,22 +49221,22 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [33124] = 5, + [32141] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(315), 1, + ACTIONS(299), 1, sym__string_start, - STATE(599), 2, + STATE(571), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1399), 6, + ACTIONS(1056), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1397), 34, + ACTIONS(1051), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -51640,56 +49271,282 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [33179] = 18, + [32196] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, + ACTIONS(299), 1, sym__string_start, - ACTIONS(678), 1, - sym_identifier, - ACTIONS(680), 1, - anon_sym_LPAREN, - ACTIONS(690), 1, - anon_sym_LBRACK, - ACTIONS(1384), 1, - anon_sym_STAR, - STATE(604), 1, + STATE(574), 2, sym_string, - STATE(885), 1, + aux_sym_concatenated_string_repeat1, + ACTIONS(1364), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1362), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [32251] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(656), 1, + sym_identifier, + ACTIONS(658), 1, + anon_sym_LPAREN, + ACTIONS(668), 1, + anon_sym_LBRACK, + ACTIONS(1356), 1, + anon_sym_STAR, + STATE(570), 1, + sym_string, + STATE(853), 1, + sym_primary_expression, + STATE(1183), 1, + sym_pattern, + STATE(1492), 1, + sym_pattern_list, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + STATE(726), 2, + sym_attribute, + sym_subscript, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(846), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(662), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(607), 13, + 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, + [32332] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(656), 1, + sym_identifier, + ACTIONS(658), 1, + anon_sym_LPAREN, + ACTIONS(668), 1, + anon_sym_LBRACK, + ACTIONS(1356), 1, + anon_sym_STAR, + STATE(570), 1, + sym_string, + STATE(853), 1, + sym_primary_expression, + STATE(1179), 1, + sym_pattern, + STATE(1495), 1, + sym_pattern_list, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + STATE(726), 2, + sym_attribute, + sym_subscript, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(846), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(662), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(607), 13, + 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, + [32413] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1370), 1, + sym__string_start, + STATE(574), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1368), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1366), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [32468] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(656), 1, + sym_identifier, + ACTIONS(658), 1, + anon_sym_LPAREN, + ACTIONS(668), 1, + anon_sym_LBRACK, + ACTIONS(1356), 1, + anon_sym_STAR, + STATE(570), 1, + sym_string, + STATE(853), 1, sym_primary_expression, STATE(1224), 1, sym_pattern, - STATE(1531), 1, + STATE(1480), 1, sym_pattern_list, - ACTIONS(309), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(768), 2, + STATE(726), 2, sym_attribute, sym_subscript, - ACTIONS(301), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(880), 3, + STATE(846), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, - ACTIONS(311), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(684), 6, + ACTIONS(662), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(619), 13, + STATE(607), 13, sym_binary_operator, sym_unary_operator, sym_call, @@ -51703,56 +49560,56 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [33260] = 18, + [32549] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(315), 1, + ACTIONS(299), 1, sym__string_start, - ACTIONS(678), 1, + ACTIONS(656), 1, sym_identifier, - ACTIONS(680), 1, + ACTIONS(658), 1, anon_sym_LPAREN, - ACTIONS(690), 1, + ACTIONS(668), 1, anon_sym_LBRACK, - ACTIONS(1384), 1, + ACTIONS(1356), 1, anon_sym_STAR, - STATE(604), 1, + STATE(570), 1, sym_string, - STATE(885), 1, + STATE(853), 1, sym_primary_expression, - STATE(1307), 1, + STATE(1287), 1, sym_pattern, - STATE(1483), 1, + STATE(1396), 1, sym_pattern_list, - ACTIONS(309), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(768), 2, + STATE(726), 2, sym_attribute, sym_subscript, - ACTIONS(301), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(880), 3, + STATE(846), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, - ACTIONS(311), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(684), 6, + ACTIONS(662), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(619), 13, + STATE(607), 13, sym_binary_operator, sym_unary_operator, sym_call, @@ -51766,106 +49623,56 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [33341] = 5, + [32630] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(315), 1, - sym__string_start, - STATE(601), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1057), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1052), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [33396] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(315), 1, + ACTIONS(299), 1, sym__string_start, - ACTIONS(678), 1, + ACTIONS(656), 1, sym_identifier, - ACTIONS(680), 1, + ACTIONS(658), 1, anon_sym_LPAREN, - ACTIONS(690), 1, + ACTIONS(668), 1, anon_sym_LBRACK, - ACTIONS(1384), 1, + ACTIONS(1356), 1, anon_sym_STAR, - STATE(604), 1, + STATE(570), 1, sym_string, - STATE(885), 1, + STATE(853), 1, sym_primary_expression, - STATE(1331), 1, + STATE(1293), 1, sym_pattern, - STATE(1466), 1, + STATE(1448), 1, sym_pattern_list, - ACTIONS(309), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(768), 2, + STATE(726), 2, sym_attribute, sym_subscript, - ACTIONS(301), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(880), 3, + STATE(846), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, - ACTIONS(311), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(684), 6, + ACTIONS(662), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(619), 13, + STATE(607), 13, sym_binary_operator, sym_unary_operator, sym_call, @@ -51879,56 +49686,54 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [33477] = 18, + [32711] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(315), 1, + ACTIONS(299), 1, sym__string_start, - ACTIONS(678), 1, + ACTIONS(656), 1, sym_identifier, - ACTIONS(680), 1, + ACTIONS(658), 1, anon_sym_LPAREN, - ACTIONS(690), 1, + ACTIONS(668), 1, anon_sym_LBRACK, - ACTIONS(1384), 1, + ACTIONS(1356), 1, anon_sym_STAR, - STATE(604), 1, + STATE(570), 1, sym_string, - STATE(885), 1, + STATE(853), 1, sym_primary_expression, - STATE(1217), 1, + STATE(1194), 1, sym_pattern, - STATE(1416), 1, - sym_pattern_list, - ACTIONS(309), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(768), 2, + STATE(726), 2, sym_attribute, sym_subscript, - ACTIONS(301), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(880), 3, + STATE(846), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, - ACTIONS(311), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(684), 6, + ACTIONS(662), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(619), 13, + STATE(607), 13, sym_binary_operator, sym_unary_operator, sym_call, @@ -51942,56 +49747,54 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [33558] = 18, + [32789] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(315), 1, + ACTIONS(299), 1, sym__string_start, - ACTIONS(678), 1, + ACTIONS(656), 1, sym_identifier, - ACTIONS(680), 1, + ACTIONS(658), 1, anon_sym_LPAREN, - ACTIONS(690), 1, + ACTIONS(668), 1, anon_sym_LBRACK, - ACTIONS(1384), 1, + ACTIONS(1356), 1, anon_sym_STAR, - STATE(604), 1, + STATE(570), 1, sym_string, - STATE(885), 1, - sym_primary_expression, - STATE(1225), 1, + STATE(847), 1, sym_pattern, - STATE(1528), 1, - sym_pattern_list, - ACTIONS(309), 2, + STATE(853), 1, + sym_primary_expression, + ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(768), 2, + STATE(726), 2, sym_attribute, sym_subscript, - ACTIONS(301), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(880), 3, + STATE(846), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, - ACTIONS(311), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(684), 6, + ACTIONS(662), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(619), 13, + STATE(607), 13, sym_binary_operator, sym_unary_operator, sym_call, @@ -52005,139 +49808,17 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [33639] = 17, + [32867] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(678), 1, - sym_identifier, - ACTIONS(680), 1, - anon_sym_LPAREN, - ACTIONS(690), 1, - anon_sym_LBRACK, - ACTIONS(1384), 1, - anon_sym_STAR, - STATE(604), 1, - sym_string, - STATE(885), 1, - sym_primary_expression, - STATE(1281), 1, - sym_pattern, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(768), 2, - sym_attribute, - sym_subscript, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(880), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(684), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(619), 13, - 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, - [33717] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(678), 1, - sym_identifier, - ACTIONS(680), 1, - anon_sym_LPAREN, - ACTIONS(690), 1, - anon_sym_LBRACK, - ACTIONS(1384), 1, - anon_sym_STAR, - STATE(604), 1, - sym_string, - STATE(874), 1, - sym_pattern, - STATE(885), 1, - sym_primary_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(768), 2, - sym_attribute, - sym_subscript, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(880), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(684), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(619), 13, - 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, - [33795] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1403), 6, + ACTIONS(1375), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1401), 35, + ACTIONS(1373), 35, sym__string_start, anon_sym_DOT, anon_sym_LPAREN, @@ -52173,17 +49854,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [33844] = 3, + [32916] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1407), 6, + ACTIONS(1379), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1405), 35, + ACTIONS(1377), 35, sym__string_start, anon_sym_DOT, anon_sym_LPAREN, @@ -52219,349 +49900,304 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [33893] = 3, + [32965] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1411), 6, - anon_sym_as, - anon_sym_STAR, + ACTIONS(1381), 1, + anon_sym_DOT, + ACTIONS(1383), 1, + anon_sym_LPAREN, + ACTIONS(1393), 1, + anon_sym_PIPE, + ACTIONS(1397), 1, + anon_sym_LBRACK, + ACTIONS(1399), 1, + anon_sym_STAR_STAR, + ACTIONS(1401), 1, anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1409), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(1405), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(1407), 1, anon_sym_AMP, + ACTIONS(1409), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, + ACTIONS(1413), 1, anon_sym_is, - sym_type_conversion, - [33941] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1415), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1413), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [33989] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(276), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(303), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [34037] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1419), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1417), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [34085] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1423), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1421), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [34133] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1419), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1417), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [34181] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1425), 1, - anon_sym_DOT, - ACTIONS(1427), 1, - anon_sym_LPAREN, - ACTIONS(1431), 1, - anon_sym_as, - ACTIONS(1439), 1, - anon_sym_PIPE, - ACTIONS(1443), 1, - anon_sym_LBRACK, - ACTIONS(1445), 1, - anon_sym_STAR_STAR, - ACTIONS(1449), 1, - anon_sym_not, - ACTIONS(1451), 1, - anon_sym_AMP, - ACTIONS(1453), 1, - anon_sym_CARET, - ACTIONS(1457), 1, - anon_sym_is, - STATE(872), 1, + STATE(841), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1433), 2, + ACTIONS(1387), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1435), 2, + ACTIONS(1389), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1441), 2, + ACTIONS(1395), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1455), 2, + ACTIONS(1411), 2, anon_sym_LT, anon_sym_GT, - STATE(612), 2, + STATE(595), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1447), 3, + ACTIONS(1403), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + ACTIONS(1391), 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(1385), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + sym_type_conversion, + [33047] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1417), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1415), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [33095] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1421), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1419), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [33143] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1425), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1423), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [33191] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1429), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1427), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [33239] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1433), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1431), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [33287] = 3, + ACTIONS(3), 1, + sym_comment, ACTIONS(1437), 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(1429), 10, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - [34263] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1057), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1052), 34, + ACTIONS(1435), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -52596,79 +50232,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [34311] = 20, + [33335] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1425), 1, - anon_sym_DOT, - ACTIONS(1427), 1, - anon_sym_LPAREN, - ACTIONS(1431), 1, - anon_sym_EQ, - ACTIONS(1443), 1, - anon_sym_LBRACK, - ACTIONS(1465), 1, - anon_sym_PIPE, - ACTIONS(1469), 1, - anon_sym_STAR_STAR, - ACTIONS(1473), 1, - anon_sym_not, - ACTIONS(1475), 1, - anon_sym_AMP, - ACTIONS(1477), 1, - anon_sym_CARET, - ACTIONS(1481), 1, - anon_sym_is, - STATE(870), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(1459), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1461), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1467), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1479), 2, - anon_sym_LT, - anon_sym_GT, - STATE(612), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1471), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1463), 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(1429), 10, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - sym_type_conversion, - [34393] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1485), 6, + ACTIONS(1441), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1483), 34, + ACTIONS(1439), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -52703,50 +50277,500 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [34441] = 15, + [33383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(278), 1, + ACTIONS(1445), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1443), 34, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(293), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(295), 1, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [33431] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1449), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1447), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [33479] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1453), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1451), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [33527] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1449), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1447), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [33575] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1457), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1455), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [33623] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1461), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1459), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [33671] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1465), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1463), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [33719] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1467), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [33767] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1457), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1455), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [33815] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1473), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1471), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [33863] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(315), 1, + ACTIONS(299), 1, sym__string_start, - ACTIONS(1487), 1, + ACTIONS(1475), 1, sym_identifier, - STATE(604), 1, + STATE(570), 1, sym_string, - STATE(885), 1, + STATE(853), 1, sym_primary_expression, - ACTIONS(309), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(767), 2, + STATE(740), 2, sym_attribute, sym_subscript, - ACTIONS(301), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1489), 3, + ACTIONS(1477), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(311), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1491), 6, + ACTIONS(1479), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(619), 13, + STATE(607), 13, sym_binary_operator, sym_unary_operator, sym_call, @@ -52760,7 +50784,187 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [34513] = 3, + [33935] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1483), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1481), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [33983] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1483), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1481), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [34031] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1487), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1485), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [34079] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1491), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1489), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [34127] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1495), 6, @@ -52805,7 +51009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [34561] = 3, + [34175] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1499), 6, @@ -52850,7 +51054,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [34609] = 3, + [34223] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1056), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1051), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [34271] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1503), 6, @@ -52895,7 +51144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [34657] = 3, + [34319] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1507), 6, @@ -52940,7 +51189,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [34705] = 3, + [34367] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1499), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1497), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [34415] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(260), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(287), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [34463] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1511), 6, @@ -52985,7 +51324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [34753] = 3, + [34511] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1515), 6, @@ -53030,322 +51369,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [34801] = 3, + [34559] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1519), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1517), 34, + ACTIONS(1381), 1, anon_sym_DOT, + ACTIONS(1383), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, + ACTIONS(1397), 1, + anon_sym_LBRACK, + ACTIONS(1401), 1, + anon_sym_as, + ACTIONS(1523), 1, anon_sym_PIPE, + ACTIONS(1527), 1, + anon_sym_STAR_STAR, + ACTIONS(1531), 1, + anon_sym_not, + ACTIONS(1533), 1, + anon_sym_AMP, + ACTIONS(1535), 1, + anon_sym_CARET, + ACTIONS(1539), 1, + anon_sym_is, + STATE(842), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1517), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1519), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1525), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, + ACTIONS(1537), 2, + anon_sym_LT, + anon_sym_GT, + STATE(595), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1529), 3, anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, + ACTIONS(1521), 6, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [34849] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1523), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1521), 34, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(1385), 10, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_async, anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [34897] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1527), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1525), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [34945] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1531), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1529), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [34993] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1415), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1413), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [35041] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1535), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1533), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [35089] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1539), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1537), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [35137] = 3, + [34641] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1543), 6, @@ -53390,487 +51476,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [35185] = 3, + [34689] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1547), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1545), 34, + ACTIONS(1381), 1, anon_sym_DOT, + ACTIONS(1383), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1397), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(1527), 1, anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [35233] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1551), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1549), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [35281] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1555), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1553), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [35329] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1559), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1557), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [35377] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1563), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1561), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [35425] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1567), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1565), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [35473] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1571), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1569), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [35521] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1547), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1545), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [35569] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1495), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1493), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [35617] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1425), 1, - anon_sym_DOT, - ACTIONS(1427), 1, - anon_sym_LPAREN, - ACTIONS(1443), 1, - anon_sym_LBRACK, - ACTIONS(1469), 1, - anon_sym_STAR_STAR, - ACTIONS(1475), 1, - anon_sym_AMP, - ACTIONS(1477), 1, - anon_sym_CARET, - ACTIONS(1459), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1461), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1467), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(612), 2, + STATE(595), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1471), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1575), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1573), 19, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [35686] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1425), 1, - anon_sym_DOT, - ACTIONS(1427), 1, - anon_sym_LPAREN, - ACTIONS(1443), 1, - anon_sym_LBRACK, - ACTIONS(1445), 1, - anon_sym_STAR_STAR, - STATE(612), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1575), 5, + ACTIONS(1547), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1573), 28, + ACTIONS(1545), 28, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -53899,304 +51525,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [35743] = 15, + [34746] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1425), 1, + ACTIONS(1381), 1, anon_sym_DOT, - ACTIONS(1427), 1, + ACTIONS(1383), 1, anon_sym_LPAREN, - ACTIONS(1443), 1, + ACTIONS(1397), 1, anon_sym_LBRACK, - ACTIONS(1465), 1, - anon_sym_PIPE, - ACTIONS(1469), 1, + ACTIONS(1399), 1, anon_sym_STAR_STAR, - ACTIONS(1475), 1, - anon_sym_AMP, - ACTIONS(1477), 1, - anon_sym_CARET, - ACTIONS(1459), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1461), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1467), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(612), 2, + STATE(595), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1471), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1579), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1577), 18, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [35814] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1425), 1, - anon_sym_DOT, - ACTIONS(1427), 1, - anon_sym_LPAREN, - ACTIONS(1443), 1, - anon_sym_LBRACK, - ACTIONS(1465), 1, - anon_sym_PIPE, - ACTIONS(1469), 1, - anon_sym_STAR_STAR, - ACTIONS(1475), 1, - anon_sym_AMP, - ACTIONS(1477), 1, - anon_sym_CARET, - ACTIONS(1459), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1461), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1467), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(612), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1471), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1583), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1581), 18, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [35885] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1425), 1, - anon_sym_DOT, - ACTIONS(1427), 1, - anon_sym_LPAREN, - ACTIONS(1443), 1, - anon_sym_LBRACK, - ACTIONS(1469), 1, - anon_sym_STAR_STAR, - ACTIONS(1459), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1461), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1467), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(612), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1471), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1575), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1573), 21, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [35950] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1425), 1, - anon_sym_DOT, - ACTIONS(1427), 1, - anon_sym_LPAREN, - ACTIONS(1439), 1, - anon_sym_PIPE, - ACTIONS(1443), 1, - anon_sym_LBRACK, - ACTIONS(1445), 1, - anon_sym_STAR_STAR, - ACTIONS(1451), 1, - anon_sym_AMP, - ACTIONS(1453), 1, - anon_sym_CARET, - ACTIONS(1433), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1435), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1441), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(612), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1447), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1579), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1577), 18, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [36021] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1425), 1, - anon_sym_DOT, - ACTIONS(1427), 1, - anon_sym_LPAREN, - ACTIONS(1439), 1, - anon_sym_PIPE, - ACTIONS(1443), 1, - anon_sym_LBRACK, - ACTIONS(1445), 1, - anon_sym_STAR_STAR, - ACTIONS(1451), 1, - anon_sym_AMP, - ACTIONS(1453), 1, - anon_sym_CARET, - ACTIONS(1433), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1435), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1441), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(612), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1447), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1583), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1581), 18, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [36092] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1425), 1, - anon_sym_DOT, - ACTIONS(1427), 1, - anon_sym_LPAREN, - ACTIONS(1443), 1, - anon_sym_LBRACK, - ACTIONS(1469), 1, - anon_sym_STAR_STAR, - STATE(612), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1575), 5, + ACTIONS(1551), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1573), 28, + ACTIONS(1549), 28, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -54225,442 +51574,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [36149] = 10, + [34803] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1425), 1, + ACTIONS(1381), 1, anon_sym_DOT, - ACTIONS(1427), 1, + ACTIONS(1383), 1, anon_sym_LPAREN, - ACTIONS(1443), 1, + ACTIONS(1397), 1, anon_sym_LBRACK, - ACTIONS(1469), 1, + ACTIONS(1527), 1, anon_sym_STAR_STAR, - ACTIONS(1459), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(612), 2, + STATE(595), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1471), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1575), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1573), 25, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [36210] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1425), 1, - anon_sym_DOT, - ACTIONS(1427), 1, - anon_sym_LPAREN, - ACTIONS(1443), 1, - anon_sym_LBRACK, - ACTIONS(1465), 1, - anon_sym_PIPE, - ACTIONS(1469), 1, - anon_sym_STAR_STAR, - ACTIONS(1475), 1, - anon_sym_AMP, - ACTIONS(1477), 1, - anon_sym_CARET, - ACTIONS(1459), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1461), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1467), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(612), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1471), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1587), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1585), 18, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [36281] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1425), 1, - anon_sym_DOT, - ACTIONS(1427), 1, - anon_sym_LPAREN, - ACTIONS(1443), 1, - anon_sym_LBRACK, - ACTIONS(1469), 1, - anon_sym_STAR_STAR, - ACTIONS(1459), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1467), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(612), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1471), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1575), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1573), 23, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [36344] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1425), 1, - anon_sym_DOT, - ACTIONS(1427), 1, - anon_sym_LPAREN, - ACTIONS(1443), 1, - anon_sym_LBRACK, - ACTIONS(1469), 1, - anon_sym_STAR_STAR, - STATE(612), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1575), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1573), 28, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [36401] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1425), 1, - anon_sym_DOT, - ACTIONS(1427), 1, - anon_sym_LPAREN, - ACTIONS(1443), 1, - anon_sym_LBRACK, - ACTIONS(1469), 1, - anon_sym_STAR_STAR, - STATE(612), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1591), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1589), 28, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [36458] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1425), 1, - anon_sym_DOT, - ACTIONS(1427), 1, - anon_sym_LPAREN, - ACTIONS(1443), 1, - anon_sym_LBRACK, - ACTIONS(1445), 1, - anon_sym_STAR_STAR, - ACTIONS(1433), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(612), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1447), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1575), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1573), 25, - 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_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [36519] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1425), 1, - anon_sym_DOT, - ACTIONS(1427), 1, - anon_sym_LPAREN, - ACTIONS(1443), 1, - anon_sym_LBRACK, - ACTIONS(1445), 1, - anon_sym_STAR_STAR, - ACTIONS(1433), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1435), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1441), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(612), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1447), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1575), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1573), 21, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [36584] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1425), 1, - anon_sym_DOT, - ACTIONS(1427), 1, - anon_sym_LPAREN, - ACTIONS(1443), 1, - anon_sym_LBRACK, - ACTIONS(1445), 1, - anon_sym_STAR_STAR, - ACTIONS(1453), 1, - anon_sym_CARET, - ACTIONS(1433), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1435), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1441), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(612), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1447), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1575), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1573), 20, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [36651] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1425), 1, - anon_sym_DOT, - ACTIONS(1427), 1, - anon_sym_LPAREN, - ACTIONS(1443), 1, - anon_sym_LBRACK, - ACTIONS(1445), 1, - anon_sym_STAR_STAR, - STATE(612), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1591), 5, + ACTIONS(1551), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1589), 28, + ACTIONS(1549), 28, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -54689,83 +51623,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [36708] = 15, + [34860] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1425), 1, + ACTIONS(1381), 1, anon_sym_DOT, - ACTIONS(1427), 1, + ACTIONS(1383), 1, anon_sym_LPAREN, - ACTIONS(1439), 1, - anon_sym_PIPE, - ACTIONS(1443), 1, + ACTIONS(1397), 1, anon_sym_LBRACK, - ACTIONS(1445), 1, + ACTIONS(1527), 1, anon_sym_STAR_STAR, - ACTIONS(1451), 1, - anon_sym_AMP, - ACTIONS(1453), 1, - anon_sym_CARET, - ACTIONS(1433), 2, + ACTIONS(1517), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1435), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1441), 2, + ACTIONS(1525), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(612), 2, + STATE(595), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1447), 3, + ACTIONS(1529), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1587), 3, + ACTIONS(1551), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1585), 18, + ACTIONS(1549), 23, 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_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [36779] = 8, + [34923] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1425), 1, + ACTIONS(1381), 1, anon_sym_DOT, - ACTIONS(1427), 1, + ACTIONS(1383), 1, anon_sym_LPAREN, - ACTIONS(1443), 1, + ACTIONS(1397), 1, anon_sym_LBRACK, - ACTIONS(1445), 1, + ACTIONS(1527), 1, anon_sym_STAR_STAR, - STATE(612), 2, + STATE(595), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1575), 5, + ACTIONS(1551), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1573), 28, + ACTIONS(1549), 28, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -54794,40 +51724,205 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [36836] = 11, + [34980] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1425), 1, + ACTIONS(1381), 1, anon_sym_DOT, - ACTIONS(1427), 1, + ACTIONS(1383), 1, anon_sym_LPAREN, - ACTIONS(1443), 1, + ACTIONS(1397), 1, anon_sym_LBRACK, - ACTIONS(1445), 1, + ACTIONS(1523), 1, + anon_sym_PIPE, + ACTIONS(1527), 1, anon_sym_STAR_STAR, - ACTIONS(1433), 2, + ACTIONS(1533), 1, + anon_sym_AMP, + ACTIONS(1535), 1, + anon_sym_CARET, + ACTIONS(1517), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1441), 2, + ACTIONS(1519), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1525), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(612), 2, + STATE(595), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1447), 3, + ACTIONS(1529), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1575), 3, + ACTIONS(1555), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1573), 23, + ACTIONS(1553), 18, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [35051] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1381), 1, + anon_sym_DOT, + ACTIONS(1383), 1, + anon_sym_LPAREN, + ACTIONS(1397), 1, + anon_sym_LBRACK, + ACTIONS(1399), 1, + anon_sym_STAR_STAR, + STATE(595), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1551), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1549), 28, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [35108] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1381), 1, + anon_sym_DOT, + ACTIONS(1383), 1, + anon_sym_LPAREN, + ACTIONS(1397), 1, + anon_sym_LBRACK, + ACTIONS(1523), 1, + anon_sym_PIPE, + ACTIONS(1527), 1, + anon_sym_STAR_STAR, + ACTIONS(1533), 1, + anon_sym_AMP, + ACTIONS(1535), 1, + anon_sym_CARET, + ACTIONS(1517), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1519), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1525), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(595), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1529), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1559), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1557), 18, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [35179] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1381), 1, + anon_sym_DOT, + ACTIONS(1383), 1, + anon_sym_LPAREN, + ACTIONS(1397), 1, + anon_sym_LBRACK, + ACTIONS(1527), 1, + anon_sym_STAR_STAR, + ACTIONS(1535), 1, + anon_sym_CARET, + ACTIONS(1517), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1519), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1525), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(595), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1529), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1551), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1549), 20, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -54838,48 +51933,206 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [36899] = 13, + [35246] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1425), 1, + ACTIONS(1381), 1, anon_sym_DOT, - ACTIONS(1427), 1, + ACTIONS(1383), 1, anon_sym_LPAREN, - ACTIONS(1443), 1, + ACTIONS(1397), 1, anon_sym_LBRACK, - ACTIONS(1469), 1, + ACTIONS(1399), 1, anon_sym_STAR_STAR, - ACTIONS(1477), 1, - anon_sym_CARET, - ACTIONS(1459), 2, + ACTIONS(1387), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1461), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1467), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(612), 2, + STATE(595), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1471), 3, + ACTIONS(1403), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1575), 3, + ACTIONS(1551), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1573), 20, + ACTIONS(1549), 25, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [35307] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1381), 1, + anon_sym_DOT, + ACTIONS(1383), 1, + anon_sym_LPAREN, + ACTIONS(1397), 1, + anon_sym_LBRACK, + ACTIONS(1527), 1, + anon_sym_STAR_STAR, + ACTIONS(1517), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1519), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1525), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(595), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1529), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1551), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1549), 21, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [35372] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1381), 1, + anon_sym_DOT, + ACTIONS(1383), 1, + anon_sym_LPAREN, + ACTIONS(1393), 1, + anon_sym_PIPE, + ACTIONS(1397), 1, + anon_sym_LBRACK, + ACTIONS(1399), 1, + anon_sym_STAR_STAR, + ACTIONS(1407), 1, + anon_sym_AMP, + ACTIONS(1409), 1, + anon_sym_CARET, + ACTIONS(1387), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1389), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1395), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(595), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1403), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1563), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1561), 18, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [35443] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1381), 1, + anon_sym_DOT, + ACTIONS(1383), 1, + anon_sym_LPAREN, + ACTIONS(1397), 1, + anon_sym_LBRACK, + ACTIONS(1399), 1, + anon_sym_STAR_STAR, + ACTIONS(1409), 1, + anon_sym_CARET, + ACTIONS(1387), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1389), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1395), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(595), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1403), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1551), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1549), 20, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -54900,42 +52153,303 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [36966] = 14, + [35510] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1425), 1, + ACTIONS(1381), 1, anon_sym_DOT, - ACTIONS(1427), 1, + ACTIONS(1383), 1, anon_sym_LPAREN, - ACTIONS(1443), 1, + ACTIONS(1397), 1, anon_sym_LBRACK, - ACTIONS(1445), 1, + ACTIONS(1527), 1, anon_sym_STAR_STAR, - ACTIONS(1451), 1, - anon_sym_AMP, - ACTIONS(1453), 1, - anon_sym_CARET, - ACTIONS(1433), 2, + ACTIONS(1517), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1435), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1441), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(612), 2, + STATE(595), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1447), 3, + ACTIONS(1529), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1575), 3, + ACTIONS(1551), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1573), 19, + ACTIONS(1549), 25, + 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_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [35571] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1381), 1, + anon_sym_DOT, + ACTIONS(1383), 1, + anon_sym_LPAREN, + ACTIONS(1397), 1, + anon_sym_LBRACK, + ACTIONS(1399), 1, + anon_sym_STAR_STAR, + ACTIONS(1387), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1389), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1395), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(595), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1403), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1551), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1549), 21, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [35636] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1381), 1, + anon_sym_DOT, + ACTIONS(1383), 1, + anon_sym_LPAREN, + ACTIONS(1397), 1, + anon_sym_LBRACK, + ACTIONS(1399), 1, + anon_sym_STAR_STAR, + ACTIONS(1387), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1395), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(595), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1403), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1551), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1549), 23, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [35699] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1381), 1, + anon_sym_DOT, + ACTIONS(1383), 1, + anon_sym_LPAREN, + ACTIONS(1397), 1, + anon_sym_LBRACK, + ACTIONS(1399), 1, + anon_sym_STAR_STAR, + STATE(595), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1547), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1545), 28, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [35756] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1381), 1, + anon_sym_DOT, + ACTIONS(1383), 1, + anon_sym_LPAREN, + ACTIONS(1393), 1, + anon_sym_PIPE, + ACTIONS(1397), 1, + anon_sym_LBRACK, + ACTIONS(1399), 1, + anon_sym_STAR_STAR, + ACTIONS(1407), 1, + anon_sym_AMP, + ACTIONS(1409), 1, + anon_sym_CARET, + ACTIONS(1387), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1389), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1395), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(595), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1403), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1559), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1557), 18, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [35827] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1381), 1, + anon_sym_DOT, + ACTIONS(1383), 1, + anon_sym_LPAREN, + ACTIONS(1397), 1, + anon_sym_LBRACK, + ACTIONS(1527), 1, + anon_sym_STAR_STAR, + ACTIONS(1533), 1, + anon_sym_AMP, + ACTIONS(1535), 1, + anon_sym_CARET, + ACTIONS(1517), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1519), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1525), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(595), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1529), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1551), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1549), 19, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -54955,16 +52469,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [37035] = 3, + [35896] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1119), 5, + ACTIONS(1381), 1, + anon_sym_DOT, + ACTIONS(1383), 1, + anon_sym_LPAREN, + ACTIONS(1397), 1, + anon_sym_LBRACK, + ACTIONS(1399), 1, + anon_sym_STAR_STAR, + ACTIONS(1407), 1, + anon_sym_AMP, + ACTIONS(1409), 1, + anon_sym_CARET, + ACTIONS(1387), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1389), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1395), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(595), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1403), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1551), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1549), 19, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [35965] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1381), 1, + anon_sym_DOT, + ACTIONS(1383), 1, + anon_sym_LPAREN, + ACTIONS(1397), 1, + anon_sym_LBRACK, + ACTIONS(1523), 1, + anon_sym_PIPE, + ACTIONS(1527), 1, + anon_sym_STAR_STAR, + ACTIONS(1533), 1, + anon_sym_AMP, + ACTIONS(1535), 1, + anon_sym_CARET, + ACTIONS(1517), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1519), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1525), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(595), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1529), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1563), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1561), 18, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [36036] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1381), 1, + anon_sym_DOT, + ACTIONS(1383), 1, + anon_sym_LPAREN, + ACTIONS(1393), 1, + anon_sym_PIPE, + ACTIONS(1397), 1, + anon_sym_LBRACK, + ACTIONS(1399), 1, + anon_sym_STAR_STAR, + ACTIONS(1407), 1, + anon_sym_AMP, + ACTIONS(1409), 1, + anon_sym_CARET, + ACTIONS(1387), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1389), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1395), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(595), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1403), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1555), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1553), 18, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [36107] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1087), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1114), 33, + ACTIONS(1082), 33, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -54998,73 +52679,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [37081] = 13, + [36153] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(624), 1, - anon_sym_LPAREN, - ACTIONS(632), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, - anon_sym_LBRACE, - ACTIONS(646), 1, + ACTIONS(1565), 1, sym__string_start, - ACTIONS(1595), 1, - anon_sym_not, - STATE(741), 1, - sym_string, - STATE(747), 1, - sym_primary_expression, - ACTIONS(640), 2, - sym_ellipsis, - sym_float, - ACTIONS(630), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(642), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1593), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(812), 15, - 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, - [37147] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1597), 1, - sym__string_start, - STATE(670), 2, + STATE(639), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1392), 4, + ACTIONS(1368), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1390), 31, + ACTIONS(1366), 31, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -55096,254 +52724,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [37197] = 13, + [36203] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(604), 1, - anon_sym_LPAREN, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(1602), 1, - anon_sym_not, - STATE(604), 1, - sym_string, - STATE(663), 1, - sym_primary_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1600), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(619), 15, - 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, - [37263] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(1604), 1, - anon_sym_not, - STATE(604), 1, - sym_string, - STATE(655), 1, - sym_primary_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1600), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(619), 15, - 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, - [37329] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1606), 1, - anon_sym_COLON_EQ, - ACTIONS(1057), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_COLON, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1052), 31, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [37377] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1095), 1, - anon_sym_COLON_EQ, - ACTIONS(1057), 6, - anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1052), 31, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [37425] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(608), 1, - anon_sym_COLON_EQ, - ACTIONS(276), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_COLON, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(303), 31, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [37473] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1134), 5, + ACTIONS(1098), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1129), 33, + ACTIONS(1093), 33, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -55377,19 +52767,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [37519] = 4, + [36249] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(562), 1, + ACTIONS(546), 1, anon_sym_COLON_EQ, - ACTIONS(276), 6, + ACTIONS(260), 6, anon_sym_STAR, anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(303), 31, + ACTIONS(287), 31, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -55421,22 +52811,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [37567] = 13, + [36297] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1072), 1, + anon_sym_COLON_EQ, + ACTIONS(1056), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1051), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [36345] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_LBRACE, ACTIONS(81), 1, sym__string_start, - ACTIONS(568), 1, + ACTIONS(552), 1, anon_sym_LPAREN, - ACTIONS(572), 1, + ACTIONS(556), 1, anon_sym_LBRACK, - ACTIONS(1610), 1, + ACTIONS(1570), 1, anon_sym_not, - STATE(702), 1, + STATE(657), 1, sym_string, - STATE(742), 1, + STATE(702), 1, sym_primary_expression, ACTIONS(75), 2, sym_ellipsis, @@ -55451,14 +52885,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(1608), 6, + ACTIONS(1568), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(801), 15, + STATE(752), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55474,20 +52908,20 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [37633] = 5, + [36411] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(646), 1, + ACTIONS(612), 1, sym__string_start, - STATE(670), 2, + STATE(639), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1399), 4, + ACTIONS(1364), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1397), 31, + ACTIONS(1362), 31, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -55519,23 +52953,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [37683] = 3, + [36461] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1134), 5, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(572), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, + anon_sym_LBRACK, + ACTIONS(1574), 1, + anon_sym_not, + STATE(570), 1, + sym_string, + STATE(621), 1, + sym_primary_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(578), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1572), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(607), 15, + 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, + [36527] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(1576), 1, + anon_sym_not, + STATE(570), 1, + sym_string, + STATE(637), 1, + sym_primary_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1572), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(607), 15, + 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, + [36593] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(590), 1, + anon_sym_LPAREN, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_LBRACE, + ACTIONS(612), 1, + sym__string_start, + ACTIONS(1580), 1, + anon_sym_not, + STATE(715), 1, + sym_string, + STATE(725), 1, + sym_primary_expression, + ACTIONS(606), 2, + sym_ellipsis, + sym_float, + ACTIONS(596), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(608), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1578), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(782), 15, + 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, + [36659] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1582), 1, + anon_sym_COLON_EQ, + ACTIONS(1056), 6, anon_sym_as, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1129), 32, + ACTIONS(1051), 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, @@ -55561,225 +53156,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [37728] = 12, + [36707] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(604), 1, + ACTIONS(576), 1, + anon_sym_COLON_EQ, + ACTIONS(260), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(287), 31, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(612), 1, - anon_sym_LBRACK, - STATE(604), 1, - sym_string, - STATE(665), 1, - sym_primary_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(610), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1600), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(619), 15, - 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, - [37791] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(624), 1, - anon_sym_LPAREN, - ACTIONS(632), 1, anon_sym_LBRACK, - ACTIONS(634), 1, - anon_sym_LBRACE, - ACTIONS(646), 1, - sym__string_start, - STATE(741), 1, - sym_string, - STATE(747), 1, - sym_primary_expression, - ACTIONS(640), 2, - sym_ellipsis, - sym_float, - ACTIONS(630), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(642), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1593), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(812), 15, - 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, - [37854] = 12, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [36755] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, + ACTIONS(81), 1, sym__string_start, - STATE(604), 1, - sym_string, - STATE(658), 1, - sym_primary_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1600), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(619), 15, - 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, - [37917] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(624), 1, - anon_sym_LPAREN, - ACTIONS(632), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, - anon_sym_LBRACE, - ACTIONS(646), 1, - sym__string_start, - STATE(741), 1, - sym_string, - STATE(750), 1, - sym_primary_expression, - ACTIONS(640), 2, - sym_ellipsis, - sym_float, - ACTIONS(630), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(642), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1593), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(812), 15, - 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, - [37980] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1612), 1, - sym__string_start, - STATE(685), 2, + STATE(656), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1392), 5, + ACTIONS(1364), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1390), 29, + ACTIONS(1362), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -55809,42 +53244,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [38029] = 12, + [36804] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(604), 1, + ACTIONS(262), 1, anon_sym_LPAREN, - ACTIONS(612), 1, + ACTIONS(277), 1, anon_sym_LBRACK, - STATE(604), 1, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, + STATE(570), 1, sym_string, - STATE(662), 1, + STATE(637), 1, sym_primary_expression, - ACTIONS(309), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(610), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 5, + ACTIONS(295), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(1600), 6, + ACTIONS(1572), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(619), 15, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55860,20 +53295,20 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [38092] = 12, + [36867] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_LBRACE, ACTIONS(81), 1, sym__string_start, - ACTIONS(568), 1, + ACTIONS(552), 1, anon_sym_LPAREN, - ACTIONS(572), 1, + ACTIONS(556), 1, anon_sym_LBRACK, - STATE(702), 1, + STATE(657), 1, sym_string, - STATE(733), 1, + STATE(714), 1, sym_primary_expression, ACTIONS(75), 2, sym_ellipsis, @@ -55888,14 +53323,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(1608), 6, + ACTIONS(1568), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(801), 15, + STATE(752), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55911,20 +53346,20 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [38155] = 12, + [36930] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_LBRACE, ACTIONS(81), 1, sym__string_start, - ACTIONS(568), 1, + ACTIONS(552), 1, anon_sym_LPAREN, - ACTIONS(572), 1, + ACTIONS(556), 1, anon_sym_LBRACK, - STATE(702), 1, + STATE(657), 1, sym_string, - STATE(736), 1, + STATE(709), 1, sym_primary_expression, ACTIONS(75), 2, sym_ellipsis, @@ -55939,14 +53374,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(1608), 6, + ACTIONS(1568), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(801), 15, + STATE(752), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55962,267 +53397,262 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [38218] = 12, + [36993] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(278), 1, + ACTIONS(590), 1, anon_sym_LPAREN, - ACTIONS(293), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(295), 1, + ACTIONS(600), 1, anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - STATE(604), 1, - sym_string, - STATE(648), 1, - sym_primary_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1600), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(619), 15, - 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, - [38281] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - STATE(604), 1, - sym_string, - STATE(649), 1, - sym_primary_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1600), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(619), 15, - 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, - [38344] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(604), 1, - anon_sym_LPAREN, ACTIONS(612), 1, - anon_sym_LBRACK, - STATE(604), 1, - sym_string, - STATE(664), 1, - sym_primary_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1600), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(619), 15, - 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, - [38407] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, sym__string_start, - ACTIONS(604), 1, - anon_sym_LPAREN, - ACTIONS(612), 1, - anon_sym_LBRACK, - STATE(604), 1, - sym_string, - STATE(651), 1, - sym_primary_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1600), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(619), 15, - 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, - [38470] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1119), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1114), 32, - 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_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [38515] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACK, - STATE(702), 1, + STATE(715), 1, sym_string, STATE(734), 1, sym_primary_expression, + ACTIONS(606), 2, + sym_ellipsis, + sym_float, + ACTIONS(596), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(608), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1578), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(782), 15, + 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, + [37056] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, + STATE(570), 1, + sym_string, + STATE(627), 1, + sym_primary_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1572), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(607), 15, + 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, + [37119] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1584), 1, + sym__string_start, + STATE(656), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1368), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1366), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [37168] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, + sym__string_start, + STATE(650), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1056), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1051), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [37217] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, + STATE(570), 1, + sym_string, + STATE(633), 1, + sym_primary_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1572), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(607), 15, + 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, + [37280] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(552), 1, + anon_sym_LPAREN, + ACTIONS(556), 1, + anon_sym_LBRACK, + STATE(657), 1, + sym_string, + STATE(702), 1, + sym_primary_expression, ACTIONS(75), 2, sym_ellipsis, sym_float, @@ -56236,14 +53666,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(1608), 6, + ACTIONS(1568), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(801), 15, + STATE(752), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56259,42 +53689,42 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [38578] = 12, + [37343] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(624), 1, + ACTIONS(590), 1, anon_sym_LPAREN, - ACTIONS(632), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(634), 1, + ACTIONS(600), 1, anon_sym_LBRACE, - ACTIONS(646), 1, + ACTIONS(612), 1, sym__string_start, - STATE(741), 1, + STATE(715), 1, sym_string, - STATE(759), 1, + STATE(733), 1, sym_primary_expression, - ACTIONS(640), 2, + ACTIONS(606), 2, sym_ellipsis, sym_float, - ACTIONS(630), 3, + ACTIONS(596), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(642), 5, + ACTIONS(608), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(1593), 6, + ACTIONS(1578), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(812), 15, + STATE(782), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56310,58 +53740,1625 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [38641] = 20, + [37406] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1431), 1, - anon_sym_EQ, - ACTIONS(1615), 1, - anon_sym_DOT, - ACTIONS(1617), 1, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(552), 1, anon_sym_LPAREN, - ACTIONS(1625), 1, - anon_sym_PIPE, - ACTIONS(1629), 1, + ACTIONS(556), 1, anon_sym_LBRACK, - ACTIONS(1631), 1, - anon_sym_STAR_STAR, - ACTIONS(1635), 1, - anon_sym_not, - ACTIONS(1637), 1, - anon_sym_AMP, - ACTIONS(1639), 1, - anon_sym_CARET, - ACTIONS(1643), 1, - anon_sym_is, - STATE(881), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(1619), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1621), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1627), 2, + STATE(657), 1, + sym_string, + STATE(706), 1, + sym_primary_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1641), 2, + anon_sym_TILDE, + ACTIONS(77), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1568), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(752), 15, + 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, + [37469] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, + STATE(570), 1, + sym_string, + STATE(630), 1, + sym_primary_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1572), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(607), 15, + 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, + [37532] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(1587), 1, + sym_identifier, + STATE(570), 1, + sym_string, + STATE(853), 1, + sym_primary_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + STATE(850), 2, + sym_attribute, + sym_subscript, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1589), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(607), 13, + 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, + [37599] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(552), 1, + anon_sym_LPAREN, + ACTIONS(556), 1, + anon_sym_LBRACK, + STATE(657), 1, + sym_string, + STATE(710), 1, + sym_primary_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1568), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(752), 15, + 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, + [37662] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(572), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, + anon_sym_LBRACK, + STATE(570), 1, + sym_string, + STATE(623), 1, + sym_primary_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(578), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1572), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(607), 15, + 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, + [37725] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(572), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, + anon_sym_LBRACK, + STATE(570), 1, + sym_string, + STATE(616), 1, + sym_primary_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(578), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1572), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(607), 15, + 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, + [37788] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(590), 1, + anon_sym_LPAREN, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_LBRACE, + ACTIONS(612), 1, + sym__string_start, + STATE(715), 1, + sym_string, + STATE(736), 1, + sym_primary_expression, + ACTIONS(606), 2, + sym_ellipsis, + sym_float, + ACTIONS(596), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(608), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1578), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(782), 15, + 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, + [37851] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(590), 1, + anon_sym_LPAREN, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_LBRACE, + ACTIONS(612), 1, + sym__string_start, + STATE(715), 1, + sym_string, + STATE(727), 1, + sym_primary_expression, + ACTIONS(606), 2, + sym_ellipsis, + sym_float, + ACTIONS(596), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(608), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1578), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(782), 15, + 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, + [37914] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(590), 1, + anon_sym_LPAREN, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_LBRACE, + ACTIONS(612), 1, + sym__string_start, + STATE(715), 1, + sym_string, + STATE(725), 1, + sym_primary_expression, + ACTIONS(606), 2, + sym_ellipsis, + sym_float, + ACTIONS(596), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(608), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1578), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(782), 15, + 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, + [37977] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(590), 1, + anon_sym_LPAREN, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_LBRACE, + ACTIONS(612), 1, + sym__string_start, + STATE(715), 1, + sym_string, + STATE(721), 1, + sym_primary_expression, + ACTIONS(606), 2, + sym_ellipsis, + sym_float, + ACTIONS(596), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(608), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1578), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(782), 15, + 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, + [38040] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(572), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, + anon_sym_LBRACK, + STATE(570), 1, + sym_string, + STATE(618), 1, + sym_primary_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(578), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1572), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(607), 15, + 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, + [38103] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(572), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, + anon_sym_LBRACK, + STATE(570), 1, + sym_string, + STATE(619), 1, + sym_primary_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(578), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1572), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(607), 15, + 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, + [38166] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(590), 1, + anon_sym_LPAREN, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_LBRACE, + ACTIONS(612), 1, + sym__string_start, + STATE(715), 1, + sym_string, + STATE(729), 1, + sym_primary_expression, + ACTIONS(606), 2, + sym_ellipsis, + sym_float, + ACTIONS(596), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(608), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1578), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(782), 15, + 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, + [38229] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(552), 1, + anon_sym_LPAREN, + ACTIONS(556), 1, + anon_sym_LBRACK, + STATE(657), 1, + sym_string, + STATE(713), 1, + sym_primary_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1568), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(752), 15, + 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, + [38292] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(590), 1, + anon_sym_LPAREN, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_LBRACE, + ACTIONS(612), 1, + sym__string_start, + STATE(715), 1, + sym_string, + STATE(718), 1, + sym_primary_expression, + ACTIONS(606), 2, + sym_ellipsis, + sym_float, + ACTIONS(596), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(608), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1578), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(782), 15, + 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, + [38355] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, + STATE(570), 1, + sym_string, + STATE(628), 1, + sym_primary_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1572), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(607), 15, + 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, + [38418] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(1475), 1, + sym_identifier, + STATE(570), 1, + sym_string, + STATE(853), 1, + sym_primary_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + STATE(740), 2, + sym_attribute, + sym_subscript, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1479), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(607), 13, + 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, + [38485] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(590), 1, + anon_sym_LPAREN, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_LBRACE, + ACTIONS(612), 1, + sym__string_start, + STATE(715), 1, + sym_string, + STATE(719), 1, + sym_primary_expression, + ACTIONS(606), 2, + sym_ellipsis, + sym_float, + ACTIONS(596), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(608), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1578), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(782), 15, + 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, + [38548] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(590), 1, + anon_sym_LPAREN, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_LBRACE, + ACTIONS(612), 1, + sym__string_start, + STATE(715), 1, + sym_string, + STATE(731), 1, + sym_primary_expression, + ACTIONS(606), 2, + sym_ellipsis, + sym_float, + ACTIONS(596), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(608), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1578), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(782), 15, + 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, + [38611] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(572), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, + anon_sym_LBRACK, + STATE(570), 1, + sym_string, + STATE(636), 1, + sym_primary_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(578), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1572), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(607), 15, + 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, + [38674] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(552), 1, + anon_sym_LPAREN, + ACTIONS(556), 1, + anon_sym_LBRACK, + STATE(657), 1, + sym_string, + STATE(705), 1, + sym_primary_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1568), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(752), 15, + 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, + [38737] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(572), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, + anon_sym_LBRACK, + STATE(570), 1, + sym_string, + STATE(621), 1, + sym_primary_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(578), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1572), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(607), 15, + 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, + [38800] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(572), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, + anon_sym_LBRACK, + STATE(570), 1, + sym_string, + STATE(634), 1, + sym_primary_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(578), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1572), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(607), 15, + 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, + [38863] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(572), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, + anon_sym_LBRACK, + STATE(570), 1, + sym_string, + STATE(629), 1, + sym_primary_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(578), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1572), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(607), 15, + 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, + [38926] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(552), 1, + anon_sym_LPAREN, + ACTIONS(556), 1, + anon_sym_LBRACK, + STATE(657), 1, + sym_string, + STATE(707), 1, + sym_primary_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1568), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(752), 15, + 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, + [38989] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, + STATE(570), 1, + sym_string, + STATE(622), 1, + sym_primary_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1572), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(607), 15, + 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, + [39052] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1098), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - STATE(792), 2, + ACTIONS(1093), 32, + 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_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [39097] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(572), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, + anon_sym_LBRACK, + STATE(570), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(578), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1572), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(607), 15, + 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, + [39160] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1087), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1082), 32, + 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_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [39205] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(572), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, + anon_sym_LBRACK, + STATE(570), 1, + sym_string, + STATE(624), 1, + sym_primary_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(578), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1572), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(607), 15, + 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, + [39268] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, + STATE(570), 1, + sym_string, + STATE(625), 1, + sym_primary_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1572), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(607), 15, + 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, + [39331] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1401), 1, + anon_sym_EQ, + ACTIONS(1591), 1, + anon_sym_DOT, + ACTIONS(1593), 1, + anon_sym_LPAREN, + ACTIONS(1601), 1, + anon_sym_PIPE, + ACTIONS(1605), 1, + anon_sym_LBRACK, + ACTIONS(1607), 1, + anon_sym_STAR_STAR, + ACTIONS(1611), 1, + anon_sym_not, + ACTIONS(1613), 1, + anon_sym_AMP, + ACTIONS(1615), 1, + anon_sym_CARET, + ACTIONS(1619), 1, + anon_sym_is, + STATE(844), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1595), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1597), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1603), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1617), 2, + anon_sym_LT, + anon_sym_GT, + STATE(777), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1633), 3, + ACTIONS(1609), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1623), 6, + ACTIONS(1599), 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(1429), 7, + ACTIONS(1385), 7, sym__newline, anon_sym_from, anon_sym_COMMA, @@ -56369,795 +55366,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_SEMI, - [38720] = 12, + [39410] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(624), 1, + ACTIONS(590), 1, anon_sym_LPAREN, - ACTIONS(632), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(634), 1, + ACTIONS(600), 1, anon_sym_LBRACE, - ACTIONS(646), 1, - sym__string_start, - STATE(741), 1, - sym_string, - STATE(762), 1, - sym_primary_expression, - ACTIONS(640), 2, - sym_ellipsis, - sym_float, - ACTIONS(630), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(642), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1593), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(812), 15, - 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, - [38783] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(624), 1, - anon_sym_LPAREN, - ACTIONS(632), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, - anon_sym_LBRACE, - ACTIONS(646), 1, - sym__string_start, - STATE(741), 1, - sym_string, - STATE(761), 1, - sym_primary_expression, - ACTIONS(640), 2, - sym_ellipsis, - sym_float, - ACTIONS(630), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(642), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1593), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(812), 15, - 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, - [38846] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(624), 1, - anon_sym_LPAREN, - ACTIONS(632), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, - anon_sym_LBRACE, - ACTIONS(646), 1, - sym__string_start, - STATE(741), 1, - sym_string, - STATE(770), 1, - sym_primary_expression, - ACTIONS(640), 2, - sym_ellipsis, - sym_float, - ACTIONS(630), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(642), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1593), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(812), 15, - 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, - [38909] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(1645), 1, - sym_identifier, - STATE(604), 1, - sym_string, - STATE(885), 1, - sym_primary_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(877), 2, - sym_attribute, - sym_subscript, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1647), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(619), 13, - 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, - [38976] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - sym__string_start, - STATE(685), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1399), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1397), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [39025] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - sym__string_start, - STATE(701), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1057), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1052), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [39074] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACK, - STATE(702), 1, - sym_string, - STATE(738), 1, - sym_primary_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1608), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(801), 15, - 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, - [39137] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACK, - STATE(702), 1, - sym_string, - STATE(740), 1, - sym_primary_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1608), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(801), 15, - 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, - [39200] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(604), 1, - anon_sym_LPAREN, ACTIONS(612), 1, - anon_sym_LBRACK, - STATE(604), 1, - sym_string, - STATE(652), 1, - sym_primary_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1600), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(619), 15, - 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, - [39263] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, sym__string_start, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACK, - STATE(702), 1, - sym_string, - STATE(743), 1, - sym_primary_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1608), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(801), 15, - 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, - [39326] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACK, - STATE(702), 1, - sym_string, - STATE(744), 1, - sym_primary_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1608), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(801), 15, - 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, - [39389] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(624), 1, - anon_sym_LPAREN, - ACTIONS(632), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, - anon_sym_LBRACE, - ACTIONS(646), 1, - sym__string_start, - STATE(741), 1, - sym_string, - STATE(752), 1, - sym_primary_expression, - ACTIONS(640), 2, - sym_ellipsis, - sym_float, - ACTIONS(630), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(642), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1593), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(812), 15, - 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, - [39452] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - STATE(604), 1, - sym_string, - STATE(650), 1, - sym_primary_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1600), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(619), 15, - 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, - [39515] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(624), 1, - anon_sym_LPAREN, - ACTIONS(632), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, - anon_sym_LBRACE, - ACTIONS(646), 1, - sym__string_start, - STATE(741), 1, - sym_string, - STATE(769), 1, - sym_primary_expression, - ACTIONS(640), 2, - sym_ellipsis, - sym_float, - ACTIONS(630), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(642), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1593), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(812), 15, - 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, - [39578] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - STATE(604), 1, - sym_string, - STATE(666), 1, - sym_primary_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1600), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(619), 15, - 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, - [39641] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACK, - STATE(702), 1, + STATE(715), 1, sym_string, STATE(732), 1, sym_primary_expression, - ACTIONS(75), 2, + ACTIONS(606), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(596), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 5, + ACTIONS(608), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(1608), 6, + ACTIONS(1578), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(801), 15, + STATE(782), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57173,603 +55417,144 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [39704] = 12, + [39473] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, + STATE(570), 1, + sym_string, + STATE(635), 1, + sym_primary_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1572), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(607), 15, + 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, + [39536] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, + STATE(570), 1, + sym_string, + STATE(632), 1, + sym_primary_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1572), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(607), 15, + 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, + [39599] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_LBRACE, ACTIONS(81), 1, sym__string_start, - ACTIONS(568), 1, + ACTIONS(552), 1, anon_sym_LPAREN, - ACTIONS(572), 1, + ACTIONS(556), 1, anon_sym_LBRACK, - STATE(702), 1, - sym_string, - STATE(742), 1, - sym_primary_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1608), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(801), 15, - 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, - [39767] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACK, - STATE(702), 1, - sym_string, - STATE(745), 1, - sym_primary_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1608), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(801), 15, - 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, - [39830] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACK, - STATE(702), 1, - sym_string, - STATE(746), 1, - sym_primary_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1608), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(801), 15, - 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, - [39893] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(604), 1, - anon_sym_LPAREN, - ACTIONS(612), 1, - anon_sym_LBRACK, - STATE(604), 1, - sym_string, - STATE(663), 1, - sym_primary_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1600), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(619), 15, - 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, - [39956] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(624), 1, - anon_sym_LPAREN, - ACTIONS(632), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, - anon_sym_LBRACE, - ACTIONS(646), 1, - sym__string_start, - STATE(741), 1, - sym_string, - STATE(760), 1, - sym_primary_expression, - ACTIONS(640), 2, - sym_ellipsis, - sym_float, - ACTIONS(630), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(642), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1593), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(812), 15, - 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, - [40019] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - STATE(604), 1, - sym_string, - STATE(653), 1, - sym_primary_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1600), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(619), 15, - 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, - [40082] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(604), 1, - anon_sym_LPAREN, - ACTIONS(612), 1, - anon_sym_LBRACK, - STATE(604), 1, - sym_string, - STATE(667), 1, - sym_primary_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1600), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(619), 15, - 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, - [40145] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(604), 1, - anon_sym_LPAREN, - ACTIONS(612), 1, - anon_sym_LBRACK, - STATE(604), 1, - sym_string, - STATE(659), 1, - sym_primary_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1600), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(619), 15, - 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, - [40208] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(604), 1, - anon_sym_LPAREN, - ACTIONS(612), 1, - anon_sym_LBRACK, - STATE(604), 1, - sym_string, - STATE(647), 1, - sym_primary_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1600), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(619), 15, - 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, - [40271] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - STATE(604), 1, - sym_string, - STATE(654), 1, - sym_primary_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1600), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(619), 15, - 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, - [40334] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - STATE(604), 1, - sym_string, STATE(657), 1, - sym_primary_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1600), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(619), 15, - 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, - [40397] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(604), 1, - anon_sym_LPAREN, - ACTIONS(612), 1, - anon_sym_LBRACK, - STATE(604), 1, sym_string, - STATE(661), 1, + STATE(711), 1, sym_primary_expression, - ACTIONS(309), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(610), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 5, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(1600), 6, + ACTIONS(1568), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(619), 15, + STATE(752), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57785,42 +55570,42 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [40460] = 12, + [39662] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(624), 1, + ACTIONS(262), 1, anon_sym_LPAREN, - ACTIONS(632), 1, + ACTIONS(277), 1, anon_sym_LBRACK, - ACTIONS(634), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(646), 1, + ACTIONS(299), 1, sym__string_start, - STATE(741), 1, + STATE(570), 1, sym_string, - STATE(748), 1, + STATE(631), 1, sym_primary_expression, - ACTIONS(640), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(630), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(642), 5, + ACTIONS(295), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(1593), 6, + ACTIONS(1572), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(812), 15, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57836,42 +55621,42 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [40523] = 12, + [39725] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(278), 1, + ACTIONS(262), 1, anon_sym_LPAREN, - ACTIONS(293), 1, + ACTIONS(277), 1, anon_sym_LBRACK, - ACTIONS(295), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(315), 1, + ACTIONS(299), 1, sym__string_start, - STATE(604), 1, + STATE(570), 1, sym_string, - STATE(646), 1, + STATE(617), 1, sym_primary_expression, - ACTIONS(309), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 5, + ACTIONS(295), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(1600), 6, + ACTIONS(1572), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(619), 15, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57887,42 +55672,42 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [40586] = 12, + [39788] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(624), 1, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(572), 1, anon_sym_LPAREN, - ACTIONS(632), 1, + ACTIONS(580), 1, anon_sym_LBRACK, - ACTIONS(634), 1, - anon_sym_LBRACE, - ACTIONS(646), 1, - sym__string_start, - STATE(741), 1, + STATE(570), 1, sym_string, - STATE(753), 1, + STATE(626), 1, sym_primary_expression, - ACTIONS(640), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(630), 3, + ACTIONS(578), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(642), 5, + ACTIONS(295), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(1593), 6, + ACTIONS(1572), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(812), 15, + STATE(607), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57938,42 +55723,42 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [40649] = 12, + [39851] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(278), 1, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(552), 1, anon_sym_LPAREN, - ACTIONS(293), 1, + ACTIONS(556), 1, anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - STATE(604), 1, + STATE(657), 1, sym_string, - STATE(655), 1, + STATE(708), 1, sym_primary_expression, - ACTIONS(309), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 5, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(1600), 6, + ACTIONS(1568), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(619), 15, + STATE(752), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57989,42 +55774,42 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [40712] = 12, + [39914] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(278), 1, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(552), 1, anon_sym_LPAREN, - ACTIONS(293), 1, + ACTIONS(556), 1, anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - STATE(604), 1, + STATE(657), 1, sym_string, - STATE(656), 1, + STATE(703), 1, sym_primary_expression, - ACTIONS(309), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 5, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(1600), 6, + ACTIONS(1568), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(619), 15, + STATE(752), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58040,200 +55825,44 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [40775] = 14, + [39977] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(1487), 1, - sym_identifier, - STATE(604), 1, - sym_string, - STATE(885), 1, - sym_primary_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(767), 2, - sym_attribute, - sym_subscript, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1491), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(619), 13, - 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, - [40842] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(604), 1, - anon_sym_LPAREN, - ACTIONS(612), 1, - anon_sym_LBRACK, - STATE(604), 1, - sym_string, - STATE(660), 1, - sym_primary_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1600), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(619), 15, - 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, - [40905] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1615), 1, + ACTIONS(1591), 1, anon_sym_DOT, - ACTIONS(1617), 1, + ACTIONS(1593), 1, anon_sym_LPAREN, - ACTIONS(1629), 1, + ACTIONS(1601), 1, + anon_sym_PIPE, + ACTIONS(1605), 1, anon_sym_LBRACK, - ACTIONS(1631), 1, + ACTIONS(1607), 1, anon_sym_STAR_STAR, - ACTIONS(1637), 1, + ACTIONS(1613), 1, anon_sym_AMP, - ACTIONS(1639), 1, + ACTIONS(1615), 1, anon_sym_CARET, - ACTIONS(1619), 2, + ACTIONS(1595), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1621), 2, + ACTIONS(1597), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1627), 2, + ACTIONS(1603), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(792), 2, + STATE(777), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1575), 3, + ACTIONS(1555), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1633), 3, + ACTIONS(1609), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1573), 16, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [40971] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1615), 1, - anon_sym_DOT, - ACTIONS(1617), 1, - anon_sym_LPAREN, - ACTIONS(1625), 1, - anon_sym_PIPE, - ACTIONS(1629), 1, - anon_sym_LBRACK, - ACTIONS(1631), 1, - anon_sym_STAR_STAR, - ACTIONS(1637), 1, - anon_sym_AMP, - ACTIONS(1639), 1, - anon_sym_CARET, - ACTIONS(1619), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1621), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1627), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(792), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1579), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1633), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1577), 15, + ACTIONS(1553), 15, sym__newline, anon_sym_from, anon_sym_COMMA, @@ -58249,44 +55878,230 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [41039] = 15, + [40045] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1615), 1, + ACTIONS(1591), 1, anon_sym_DOT, - ACTIONS(1617), 1, + ACTIONS(1593), 1, anon_sym_LPAREN, - ACTIONS(1625), 1, - anon_sym_PIPE, - ACTIONS(1629), 1, + ACTIONS(1605), 1, anon_sym_LBRACK, - ACTIONS(1631), 1, + ACTIONS(1607), 1, anon_sym_STAR_STAR, - ACTIONS(1637), 1, - anon_sym_AMP, - ACTIONS(1639), 1, - anon_sym_CARET, - ACTIONS(1619), 2, + ACTIONS(1595), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1621), 2, + ACTIONS(1597), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1627), 2, + ACTIONS(1603), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(792), 2, + STATE(777), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1583), 3, + ACTIONS(1551), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1633), 3, + ACTIONS(1609), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1581), 15, + ACTIONS(1549), 18, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [40107] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1379), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1377), 32, + sym__string_start, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [40151] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1591), 1, + anon_sym_DOT, + ACTIONS(1593), 1, + anon_sym_LPAREN, + ACTIONS(1605), 1, + anon_sym_LBRACK, + ACTIONS(1607), 1, + anon_sym_STAR_STAR, + STATE(777), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1551), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1549), 25, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [40205] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1591), 1, + anon_sym_DOT, + ACTIONS(1593), 1, + anon_sym_LPAREN, + ACTIONS(1605), 1, + anon_sym_LBRACK, + ACTIONS(1607), 1, + anon_sym_STAR_STAR, + ACTIONS(1595), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1603), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(777), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1551), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1609), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1549), 20, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [40265] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1591), 1, + anon_sym_DOT, + ACTIONS(1593), 1, + anon_sym_LPAREN, + ACTIONS(1601), 1, + anon_sym_PIPE, + ACTIONS(1605), 1, + anon_sym_LBRACK, + ACTIONS(1607), 1, + anon_sym_STAR_STAR, + ACTIONS(1613), 1, + anon_sym_AMP, + ACTIONS(1615), 1, + anon_sym_CARET, + ACTIONS(1595), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1597), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1603), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(777), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1559), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1609), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1557), 15, sym__newline, anon_sym_from, anon_sym_COMMA, @@ -58302,226 +56117,291 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [41107] = 19, + [40333] = 13, ACTIONS(3), 1, sym_comment, + ACTIONS(1591), 1, + anon_sym_DOT, + ACTIONS(1593), 1, + anon_sym_LPAREN, + ACTIONS(1605), 1, + anon_sym_LBRACK, + ACTIONS(1607), 1, + anon_sym_STAR_STAR, + ACTIONS(1615), 1, + anon_sym_CARET, + ACTIONS(1595), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1597), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1603), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(777), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1551), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1609), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1549), 17, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [40397] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1591), 1, + anon_sym_DOT, + ACTIONS(1593), 1, + anon_sym_LPAREN, + ACTIONS(1601), 1, + anon_sym_PIPE, + ACTIONS(1605), 1, + anon_sym_LBRACK, + ACTIONS(1607), 1, + anon_sym_STAR_STAR, + ACTIONS(1613), 1, + anon_sym_AMP, + ACTIONS(1615), 1, + anon_sym_CARET, + ACTIONS(1595), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1597), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1603), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(777), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1563), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1609), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1561), 15, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [40465] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1591), 1, + anon_sym_DOT, + ACTIONS(1593), 1, + anon_sym_LPAREN, + ACTIONS(1605), 1, + anon_sym_LBRACK, + ACTIONS(1607), 1, + anon_sym_STAR_STAR, + STATE(777), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1551), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1549), 25, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [40519] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1591), 1, + anon_sym_DOT, + ACTIONS(1593), 1, + anon_sym_LPAREN, + ACTIONS(1605), 1, + anon_sym_LBRACK, + ACTIONS(1607), 1, + anon_sym_STAR_STAR, + ACTIONS(1595), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(777), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1551), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1609), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1549), 22, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [40577] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1621), 1, + anon_sym_DOT, + ACTIONS(1623), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + anon_sym_PIPE, + ACTIONS(1635), 1, + anon_sym_LBRACK, + ACTIONS(1637), 1, + anon_sym_STAR_STAR, + ACTIONS(1641), 1, + anon_sym_not, + ACTIONS(1643), 1, + anon_sym_AMP, + ACTIONS(1645), 1, + anon_sym_CARET, ACTIONS(1649), 1, - anon_sym_DOT, - ACTIONS(1651), 1, - anon_sym_LPAREN, - ACTIONS(1659), 1, - anon_sym_PIPE, - ACTIONS(1663), 1, - anon_sym_LBRACK, - ACTIONS(1665), 1, - anon_sym_STAR_STAR, - ACTIONS(1669), 1, - anon_sym_not, - ACTIONS(1671), 1, - anon_sym_AMP, - ACTIONS(1673), 1, - anon_sym_CARET, - ACTIONS(1677), 1, anon_sym_is, - STATE(882), 1, + STATE(852), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1653), 2, + ACTIONS(1625), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1655), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1661), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1675), 2, - anon_sym_LT, - anon_sym_GT, - STATE(815), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1667), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1657), 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(1429), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_and, - anon_sym_or, - [41183] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1615), 1, - anon_sym_DOT, - ACTIONS(1617), 1, - anon_sym_LPAREN, - ACTIONS(1629), 1, - anon_sym_LBRACK, - ACTIONS(1631), 1, - anon_sym_STAR_STAR, - STATE(792), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1591), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1589), 25, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [41237] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1403), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1401), 32, - sym__string_start, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [41281] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1615), 1, - anon_sym_DOT, - ACTIONS(1617), 1, - anon_sym_LPAREN, - ACTIONS(1629), 1, - anon_sym_LBRACK, - ACTIONS(1631), 1, - anon_sym_STAR_STAR, - ACTIONS(1619), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1621), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, ACTIONS(1627), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1633), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(792), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1575), 3, - anon_sym_EQ, + ACTIONS(1647), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1633), 3, + STATE(780), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1639), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1573), 18, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_if, + ACTIONS(1629), 6, anon_sym_in, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [41343] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1407), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1405), 32, - sym__string_start, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(1385), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_and, + anon_sym_or, + [40653] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1591), 1, + anon_sym_DOT, + ACTIONS(1593), 1, + anon_sym_LPAREN, + ACTIONS(1605), 1, + anon_sym_LBRACK, + ACTIONS(1607), 1, + anon_sym_STAR_STAR, + STATE(777), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1547), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1545), 25, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, anon_sym_and, @@ -58537,40 +56417,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [41387] = 13, + anon_sym_SEMI, + [40707] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1615), 1, + ACTIONS(1591), 1, anon_sym_DOT, - ACTIONS(1617), 1, + ACTIONS(1593), 1, anon_sym_LPAREN, - ACTIONS(1629), 1, + ACTIONS(1605), 1, anon_sym_LBRACK, - ACTIONS(1631), 1, + ACTIONS(1607), 1, anon_sym_STAR_STAR, - ACTIONS(1639), 1, + ACTIONS(1613), 1, + anon_sym_AMP, + ACTIONS(1615), 1, anon_sym_CARET, - ACTIONS(1619), 2, + ACTIONS(1595), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1621), 2, + ACTIONS(1597), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1627), 2, + ACTIONS(1603), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(792), 2, + STATE(777), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1575), 3, + ACTIONS(1551), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1633), 3, + ACTIONS(1609), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1573), 17, + ACTIONS(1549), 16, sym__newline, anon_sym_from, anon_sym_COMMA, @@ -58580,7 +56463,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_AMP, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -58588,20 +56470,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [41451] = 5, + [40773] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(646), 1, + ACTIONS(612), 1, sym__string_start, - STATE(679), 2, + STATE(644), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1057), 4, + ACTIONS(1056), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1052), 29, + ACTIONS(1051), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -58631,85 +56513,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [41499] = 15, + [40821] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1615), 1, + ACTIONS(1375), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1373), 32, + sym__string_start, anon_sym_DOT, - ACTIONS(1617), 1, anon_sym_LPAREN, - ACTIONS(1625), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_PIPE, - ACTIONS(1629), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(1631), 1, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [40865] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1082), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1087), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1089), 19, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [40910] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1621), 1, + anon_sym_DOT, + ACTIONS(1623), 1, + anon_sym_LPAREN, + ACTIONS(1635), 1, + anon_sym_LBRACK, ACTIONS(1637), 1, - anon_sym_AMP, - ACTIONS(1639), 1, - anon_sym_CARET, - ACTIONS(1619), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1621), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1627), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(792), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1587), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1633), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1585), 15, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_if, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [41567] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1615), 1, - anon_sym_DOT, - ACTIONS(1617), 1, - anon_sym_LPAREN, - ACTIONS(1629), 1, - anon_sym_LBRACK, - ACTIONS(1631), 1, anon_sym_STAR_STAR, - STATE(792), 2, + STATE(780), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1575), 5, + ACTIONS(1551), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1573), 25, - sym__newline, - anon_sym_from, + ACTIONS(1549), 25, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -58729,45 +56640,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_SEMI, - [41621] = 10, + [40963] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1615), 1, + ACTIONS(1621), 1, anon_sym_DOT, - ACTIONS(1617), 1, + ACTIONS(1623), 1, anon_sym_LPAREN, - ACTIONS(1629), 1, + ACTIONS(1635), 1, anon_sym_LBRACK, - ACTIONS(1631), 1, + ACTIONS(1637), 1, anon_sym_STAR_STAR, - ACTIONS(1619), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(792), 2, + STATE(780), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1575), 3, - anon_sym_EQ, + ACTIONS(1547), 4, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1633), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1573), 22, - sym__newline, - anon_sym_from, + ACTIONS(1545), 25, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, + anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -58777,197 +56685,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_SEMI, - [41679] = 11, + [41016] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1615), 1, + ACTIONS(576), 1, + anon_sym_COLON_EQ, + ACTIONS(614), 1, + anon_sym_EQ, + ACTIONS(260), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(287), 29, anon_sym_DOT, - ACTIONS(1617), 1, anon_sym_LPAREN, - ACTIONS(1629), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(1631), 1, anon_sym_STAR_STAR, - ACTIONS(1619), 2, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [41063] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1621), 1, + anon_sym_DOT, + ACTIONS(1623), 1, + anon_sym_LPAREN, + ACTIONS(1635), 1, + anon_sym_LBRACK, + ACTIONS(1637), 1, + anon_sym_STAR_STAR, + ACTIONS(1643), 1, + anon_sym_AMP, + ACTIONS(1645), 1, + anon_sym_CARET, + ACTIONS(1551), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1625), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(1627), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1633), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(792), 2, + STATE(780), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1575), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1633), 3, + ACTIONS(1639), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1573), 20, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [41739] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1615), 1, - anon_sym_DOT, - ACTIONS(1617), 1, - anon_sym_LPAREN, - ACTIONS(1629), 1, - anon_sym_LBRACK, - ACTIONS(1631), 1, - anon_sym_STAR_STAR, - STATE(792), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1575), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1573), 25, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [41793] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1649), 1, - anon_sym_DOT, - ACTIONS(1651), 1, - anon_sym_LPAREN, - ACTIONS(1659), 1, - anon_sym_PIPE, - ACTIONS(1663), 1, - anon_sym_LBRACK, - ACTIONS(1665), 1, - anon_sym_STAR_STAR, - ACTIONS(1671), 1, - anon_sym_AMP, - ACTIONS(1673), 1, - anon_sym_CARET, - ACTIONS(1587), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1653), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1655), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1661), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(815), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1667), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1585), 15, + ACTIONS(1549), 16, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [41860] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1649), 1, - anon_sym_DOT, - ACTIONS(1651), 1, - anon_sym_LPAREN, - ACTIONS(1659), 1, anon_sym_PIPE, - ACTIONS(1663), 1, - anon_sym_LBRACK, - ACTIONS(1665), 1, - anon_sym_STAR_STAR, - ACTIONS(1671), 1, - anon_sym_AMP, - ACTIONS(1673), 1, - anon_sym_CARET, - ACTIONS(1583), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1653), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1655), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1661), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(815), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1667), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1581), 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, @@ -58977,16 +56778,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [41927] = 3, + [41128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1407), 5, + ACTIONS(1375), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1405), 30, + ACTIONS(1373), 30, sym__newline, sym__string_start, anon_sym_DOT, @@ -59017,34 +56818,210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [41970] = 11, + [41171] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1649), 1, + ACTIONS(287), 3, anon_sym_DOT, - ACTIONS(1651), 1, anon_sym_LPAREN, - ACTIONS(1663), 1, anon_sym_LBRACK, - ACTIONS(1665), 1, - anon_sym_STAR_STAR, - ACTIONS(1575), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1653), 2, + ACTIONS(260), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1661), 2, + anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - STATE(815), 2, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(550), 19, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [41216] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(576), 1, + anon_sym_COLON_EQ, + ACTIONS(264), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(260), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(287), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [41263] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1621), 1, + anon_sym_DOT, + ACTIONS(1623), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + anon_sym_PIPE, + ACTIONS(1635), 1, + anon_sym_LBRACK, + ACTIONS(1637), 1, + anon_sym_STAR_STAR, + ACTIONS(1643), 1, + anon_sym_AMP, + ACTIONS(1645), 1, + anon_sym_CARET, + ACTIONS(1555), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1625), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1627), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1633), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(780), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1667), 3, + ACTIONS(1639), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1573), 20, + ACTIONS(1553), 15, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [41330] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1051), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1056), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1062), 19, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [41375] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1621), 1, + anon_sym_DOT, + ACTIONS(1623), 1, + anon_sym_LPAREN, + ACTIONS(1635), 1, + anon_sym_LBRACK, + ACTIONS(1637), 1, + anon_sym_STAR_STAR, + ACTIONS(1551), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1625), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1633), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(780), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1639), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1549), 20, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -59065,14 +57042,556 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, + [41434] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1379), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1377), 30, + sym__newline, + sym__string_start, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [41477] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1621), 1, + anon_sym_DOT, + ACTIONS(1623), 1, + anon_sym_LPAREN, + ACTIONS(1635), 1, + anon_sym_LBRACK, + ACTIONS(1637), 1, + anon_sym_STAR_STAR, + ACTIONS(1551), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1625), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(780), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1639), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1549), 22, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [41534] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1093), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1098), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1100), 19, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [41579] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1621), 1, + anon_sym_DOT, + ACTIONS(1623), 1, + anon_sym_LPAREN, + ACTIONS(1635), 1, + anon_sym_LBRACK, + ACTIONS(1637), 1, + anon_sym_STAR_STAR, + ACTIONS(1645), 1, + anon_sym_CARET, + ACTIONS(1551), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1625), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1627), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1633), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(780), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1639), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1549), 17, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [41642] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1621), 1, + anon_sym_DOT, + ACTIONS(1623), 1, + anon_sym_LPAREN, + ACTIONS(1635), 1, + anon_sym_LBRACK, + ACTIONS(1637), 1, + anon_sym_STAR_STAR, + ACTIONS(1551), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1625), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1627), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1633), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(780), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1639), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1549), 18, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [41703] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1621), 1, + anon_sym_DOT, + ACTIONS(1623), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + anon_sym_PIPE, + ACTIONS(1635), 1, + anon_sym_LBRACK, + ACTIONS(1637), 1, + anon_sym_STAR_STAR, + ACTIONS(1643), 1, + anon_sym_AMP, + ACTIONS(1645), 1, + anon_sym_CARET, + ACTIONS(1559), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1625), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1627), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1633), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(780), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1639), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1557), 15, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [41770] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1621), 1, + anon_sym_DOT, + ACTIONS(1623), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + anon_sym_PIPE, + ACTIONS(1635), 1, + anon_sym_LBRACK, + ACTIONS(1637), 1, + anon_sym_STAR_STAR, + ACTIONS(1643), 1, + anon_sym_AMP, + ACTIONS(1645), 1, + anon_sym_CARET, + ACTIONS(1563), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1625), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1627), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1633), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(780), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1639), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1561), 15, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [41837] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1582), 1, + anon_sym_COLON_EQ, + ACTIONS(1053), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1056), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1051), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [41884] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1621), 1, + anon_sym_DOT, + ACTIONS(1623), 1, + anon_sym_LPAREN, + ACTIONS(1635), 1, + anon_sym_LBRACK, + ACTIONS(1637), 1, + anon_sym_STAR_STAR, + STATE(780), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1551), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1549), 25, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [41937] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(287), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(260), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(291), 19, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [41982] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1582), 1, + anon_sym_COLON_EQ, + ACTIONS(1651), 1, + anon_sym_EQ, + ACTIONS(1056), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1051), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, [42029] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1114), 3, + ACTIONS(271), 1, + anon_sym_COLON_EQ, + ACTIONS(260), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(287), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [42074] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1051), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(1119), 13, + ACTIONS(1056), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_PIPE, @@ -59086,7 +57605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1121), 19, + ACTIONS(1076), 19, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -59106,595 +57625,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [42074] = 10, + [42119] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1649), 1, - anon_sym_DOT, - ACTIONS(1651), 1, - anon_sym_LPAREN, - ACTIONS(1663), 1, - anon_sym_LBRACK, - ACTIONS(1665), 1, - anon_sym_STAR_STAR, - ACTIONS(1575), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1653), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(815), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1667), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1573), 22, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [42131] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1649), 1, - anon_sym_DOT, - ACTIONS(1651), 1, - anon_sym_LPAREN, - ACTIONS(1663), 1, - anon_sym_LBRACK, - ACTIONS(1665), 1, - anon_sym_STAR_STAR, - STATE(815), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1591), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1589), 25, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [42184] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1606), 1, + ACTIONS(1058), 1, anon_sym_COLON_EQ, - ACTIONS(1054), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1057), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1052), 27, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [42231] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(303), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(276), 13, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(307), 19, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [42276] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1403), 5, + ACTIONS(1056), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1401), 30, - sym__newline, - sym__string_start, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [42319] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1129), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1134), 13, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1136), 19, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [42364] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1606), 1, - anon_sym_COLON_EQ, - ACTIONS(1679), 1, - anon_sym_EQ, - ACTIONS(1057), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1052), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [42411] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1649), 1, - anon_sym_DOT, - ACTIONS(1651), 1, - anon_sym_LPAREN, - ACTIONS(1663), 1, - anon_sym_LBRACK, - ACTIONS(1665), 1, - anon_sym_STAR_STAR, - ACTIONS(1575), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1653), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1655), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1661), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(815), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1667), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1573), 18, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [42472] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1649), 1, - anon_sym_DOT, - ACTIONS(1651), 1, - anon_sym_LPAREN, - ACTIONS(1659), 1, - anon_sym_PIPE, - ACTIONS(1663), 1, - anon_sym_LBRACK, - ACTIONS(1665), 1, - anon_sym_STAR_STAR, - ACTIONS(1671), 1, - anon_sym_AMP, - ACTIONS(1673), 1, - anon_sym_CARET, - ACTIONS(1579), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1653), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1655), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1661), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(815), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1667), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1577), 15, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [42539] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1649), 1, - anon_sym_DOT, - ACTIONS(1651), 1, - anon_sym_LPAREN, - ACTIONS(1663), 1, - anon_sym_LBRACK, - ACTIONS(1665), 1, - anon_sym_STAR_STAR, - STATE(815), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1575), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1573), 25, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [42592] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1649), 1, - anon_sym_DOT, - ACTIONS(1651), 1, - anon_sym_LPAREN, - ACTIONS(1663), 1, - anon_sym_LBRACK, - ACTIONS(1665), 1, - anon_sym_STAR_STAR, - ACTIONS(1673), 1, - anon_sym_CARET, - ACTIONS(1575), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1653), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1655), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1661), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(815), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1667), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1573), 17, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [42655] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(608), 1, - anon_sym_COLON_EQ, - ACTIONS(280), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(276), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(303), 27, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [42702] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(303), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(276), 13, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(566), 19, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [42747] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - anon_sym_COLON_EQ, - ACTIONS(276), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(303), 29, + ACTIONS(1051), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -59724,18 +57666,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [42792] = 4, + [42164] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1059), 1, - anon_sym_COLON_EQ, - ACTIONS(1057), 5, + ACTIONS(1421), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1052), 29, + ACTIONS(1419), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -59765,236 +57705,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [42837] = 4, + [42206] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1052), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1057), 13, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1099), 19, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [42882] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1052), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1057), 13, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1063), 19, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [42927] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1649), 1, - anon_sym_DOT, - ACTIONS(1651), 1, - anon_sym_LPAREN, - ACTIONS(1663), 1, - anon_sym_LBRACK, - ACTIONS(1665), 1, - anon_sym_STAR_STAR, - ACTIONS(1671), 1, - anon_sym_AMP, - ACTIONS(1673), 1, - anon_sym_CARET, - ACTIONS(1575), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1653), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1655), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1661), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(815), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1667), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1573), 16, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [42992] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1649), 1, - anon_sym_DOT, - ACTIONS(1651), 1, - anon_sym_LPAREN, - ACTIONS(1663), 1, - anon_sym_LBRACK, - ACTIONS(1665), 1, - anon_sym_STAR_STAR, - STATE(815), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1575), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1573), 25, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [43045] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(608), 1, - anon_sym_COLON_EQ, - ACTIONS(620), 1, - anon_sym_EQ, - ACTIONS(276), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(303), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [43092] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1499), 5, + ACTIONS(1425), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1497), 29, + ACTIONS(1423), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -60024,1220 +57744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [43134] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1485), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1483), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [43176] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1523), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1521), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [43218] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1559), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1557), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [43260] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(276), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(303), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [43302] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1415), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1413), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [43344] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1527), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1525), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [43386] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1571), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1569), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [43428] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1567), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1565), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [43470] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1555), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1553), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [43512] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1547), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1545), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [43554] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1495), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1493), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [43596] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1531), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1529), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [43638] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1134), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1129), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [43680] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1681), 1, - anon_sym_COLON_EQ, - ACTIONS(1057), 5, - anon_sym_STAR, - anon_sym_COLON, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1052), 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_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [43724] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(628), 1, - anon_sym_COLON_EQ, - ACTIONS(276), 5, - anon_sym_STAR, - anon_sym_COLON, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(303), 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_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [43768] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1547), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1545), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [43810] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1551), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1549), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [43852] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1119), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1114), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [43894] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1543), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1541), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [43936] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1411), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1409), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [43978] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1563), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1561), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [44020] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1415), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1413), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [44062] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1495), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1493), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [44104] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1535), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1533), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [44146] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1054), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1057), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1052), 27, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [44190] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1539), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1537), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [44232] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1503), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1501), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [44274] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1131), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1134), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1129), 27, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [44318] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1057), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1052), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [44360] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1507), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1505), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [44402] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1511), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1509), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [44444] = 3, + [42248] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1515), 5, @@ -61276,19 +57783,331 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [44486] = 4, + [42290] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1116), 3, + ACTIONS(1469), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1467), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [42332] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1499), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1497), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [42374] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1465), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1463), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [42416] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1098), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1093), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [42458] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1483), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1481), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [42500] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1087), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1082), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [42542] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1457), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1455), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [42584] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1056), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1051), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [42626] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1095), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1119), 4, + ACTIONS(1098), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1114), 27, + ACTIONS(1093), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -61316,16 +58135,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44530] = 3, + [42670] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1419), 5, + ACTIONS(1473), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1417), 29, + ACTIONS(1471), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -61355,16 +58174,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [44572] = 3, + [42712] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1423), 5, + ACTIONS(1417), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1421), 29, + ACTIONS(1415), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -61394,16 +58213,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [44614] = 3, + [42754] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1519), 5, + ACTIONS(1084), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1087), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1082), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [42798] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1053), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1056), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1051), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [42842] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1445), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1517), 29, + ACTIONS(1443), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -61433,16 +58332,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [44656] = 3, + [42884] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1419), 5, + ACTIONS(1507), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1417), 29, + ACTIONS(1505), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -61472,23 +58371,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [44698] = 3, + [42926] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 4, + ACTIONS(1495), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1553), 29, + ACTIONS(1493), 29, + sym__newline, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -61510,23 +58409,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44739] = 3, + anon_sym_SEMI, + [42968] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1423), 4, + ACTIONS(1449), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1421), 29, + ACTIONS(1447), 29, + sym__newline, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -61548,23 +58448,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44780] = 3, + anon_sym_SEMI, + [43010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1057), 4, + ACTIONS(1491), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1052), 29, + ACTIONS(1489), 29, + sym__newline, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -61586,23 +58487,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44821] = 3, + anon_sym_SEMI, + [43052] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(276), 4, + ACTIONS(260), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(303), 29, + ACTIONS(287), 29, + sym__newline, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -61624,23 +58526,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44862] = 3, + anon_sym_SEMI, + [43094] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1485), 4, + ACTIONS(1483), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1483), 29, + ACTIONS(1481), 29, + sym__newline, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -61662,23 +58565,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44903] = 3, + anon_sym_SEMI, + [43136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1411), 4, + ACTIONS(1457), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1409), 29, + ACTIONS(1455), 29, + sym__newline, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -61700,23 +58604,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44944] = 3, + anon_sym_SEMI, + [43178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1499), 4, + ACTIONS(1441), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1497), 29, + ACTIONS(1439), 29, + sym__newline, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -61738,15 +58643,525 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44985] = 3, + anon_sym_SEMI, + [43220] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1503), 4, + ACTIONS(1487), 5, anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1485), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [43262] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1543), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1541), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [43304] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1511), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1509), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [43346] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1653), 1, + anon_sym_COLON_EQ, + ACTIONS(1056), 5, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1051), 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_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [43390] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1503), 5, + anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, ACTIONS(1501), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [43432] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1499), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1497), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [43474] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1433), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1431), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [43516] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1437), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1435), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [43558] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1449), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1447), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [43600] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1429), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1427), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [43642] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1461), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1459), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [43684] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1453), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1451), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [43726] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(594), 1, + anon_sym_COLON_EQ, + ACTIONS(260), 5, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(287), 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_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [43770] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1461), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1459), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -61776,7 +59191,235 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45026] = 3, + [43811] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1433), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1431), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [43852] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1056), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1051), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [43893] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1417), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1415), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [43934] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(792), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(790), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [43975] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1445), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1443), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [44016] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(804), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(802), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [44057] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1507), 4, @@ -61814,7 +59457,467 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45067] = 3, + [44098] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1449), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1447), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [44139] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(546), 1, + anon_sym_COLON_EQ, + ACTIONS(614), 1, + anon_sym_EQ, + ACTIONS(260), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(287), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [44184] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1453), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1451), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [44225] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1072), 1, + anon_sym_COLON_EQ, + ACTIONS(1651), 1, + anon_sym_EQ, + ACTIONS(1056), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1051), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [44270] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(792), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(790), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [44311] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1449), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1447), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [44352] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(800), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(798), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [44393] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(800), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(798), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [44434] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1441), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1439), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [44475] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1437), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1435), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [44516] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(796), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(794), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [44557] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1457), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1455), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [44598] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1511), 4, @@ -61852,7 +59955,653 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45108] = 3, + [44639] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1465), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1463), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [44680] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1467), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [44721] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1457), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1455), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [44762] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1473), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1471), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [44803] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(260), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(287), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [44844] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1429), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1427), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [44885] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1483), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1481), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [44926] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1483), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1481), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [44967] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1503), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1501), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [45008] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(808), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(806), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [45049] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1425), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1423), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [45090] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1487), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1485), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [45131] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1421), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1419), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [45172] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1499), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1497), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [45213] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1491), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1489), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [45254] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1495), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1493), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [45295] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1499), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1497), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [45336] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1515), 4, @@ -61890,923 +60639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45149] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1519), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1517), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [45190] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1095), 1, - anon_sym_COLON_EQ, - ACTIONS(1679), 1, - anon_sym_EQ, - ACTIONS(1057), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1052), 27, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [45235] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(840), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(838), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [45276] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1523), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1521), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [45317] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(562), 1, - anon_sym_COLON_EQ, - ACTIONS(620), 1, - anon_sym_EQ, - ACTIONS(276), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(303), 27, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [45362] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1571), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1569), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [45403] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1539), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1537), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [45444] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1535), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1533), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [45485] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1415), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1413), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [45526] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1531), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1529), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [45567] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1527), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1525), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [45608] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1415), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1413), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [45649] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1567), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1565), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [45690] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1551), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1549), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [45731] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(824), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(822), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [45772] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1547), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1545), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [45813] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1419), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1417), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [45854] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1495), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1493), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [45895] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(832), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(830), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [45936] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(832), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(830), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [45977] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1547), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1545), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [46018] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1563), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1561), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [46059] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1559), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1557), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [46100] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(836), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(834), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [46141] = 3, + [45377] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1543), 4, @@ -62844,1531 +60677,1101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [46182] = 3, + [45418] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(836), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(834), 29, - anon_sym_DOT, + ACTIONS(612), 1, + sym__string_start, + ACTIONS(1655), 1, + sym_identifier, + ACTIONS(1657), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, + ACTIONS(1659), 1, + anon_sym_STAR, + ACTIONS(1661), 1, anon_sym_if, + ACTIONS(1663), 1, anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, + ACTIONS(1665), 1, anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [46223] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(828), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(826), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [46264] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1419), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1417), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [46305] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1495), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1493), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [46346] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(646), 1, - sym__string_start, - ACTIONS(1683), 1, - sym_identifier, - ACTIONS(1685), 1, - anon_sym_LPAREN, - ACTIONS(1687), 1, - anon_sym_STAR, - ACTIONS(1689), 1, - anon_sym_if, - ACTIONS(1691), 1, - anon_sym_COLON, - ACTIONS(1693), 1, - anon_sym_DASH, - ACTIONS(1695), 1, + ACTIONS(1667), 1, sym_match_wildcard_pattern, - ACTIONS(1697), 1, - anon_sym_LBRACK, - ACTIONS(1699), 1, - anon_sym_LBRACE, - ACTIONS(1701), 1, - sym_integer, - ACTIONS(1703), 1, - sym_float, - STATE(908), 1, - sym_string, - STATE(1010), 1, - sym_concatenated_string, - STATE(1451), 1, - sym_pattern_class_name, - STATE(1044), 2, - sym__match_or_pattern, - sym_match_or_pattern, - ACTIONS(1705), 3, - sym_true, - sym_false, - sym_none, - STATE(1127), 4, - sym__match_pattern, - sym_match_as_pattern, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - STATE(1003), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [46420] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(646), 1, - sym__string_start, - ACTIONS(1683), 1, - sym_identifier, - ACTIONS(1685), 1, - anon_sym_LPAREN, - ACTIONS(1687), 1, - anon_sym_STAR, - ACTIONS(1693), 1, - anon_sym_DASH, - ACTIONS(1695), 1, - sym_match_wildcard_pattern, - ACTIONS(1697), 1, - anon_sym_LBRACK, - ACTIONS(1699), 1, - anon_sym_LBRACE, - ACTIONS(1701), 1, - sym_integer, - ACTIONS(1703), 1, - sym_float, - STATE(908), 1, - sym_string, - STATE(1010), 1, - sym_concatenated_string, - STATE(1451), 1, - sym_pattern_class_name, - STATE(1044), 2, - sym__match_or_pattern, - sym_match_or_pattern, - STATE(1297), 2, - sym__match_patterns, - sym_open_sequence_match_pattern, - STATE(1347), 2, - sym__match_pattern, - sym_match_as_pattern, - STATE(1350), 2, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - ACTIONS(1705), 3, - sym_true, - sym_false, - sym_none, - STATE(1003), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [46494] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(646), 1, - sym__string_start, - ACTIONS(1683), 1, - sym_identifier, - ACTIONS(1685), 1, - anon_sym_LPAREN, - ACTIONS(1687), 1, - anon_sym_STAR, - ACTIONS(1693), 1, - anon_sym_DASH, - ACTIONS(1695), 1, - sym_match_wildcard_pattern, - ACTIONS(1697), 1, - anon_sym_LBRACK, - ACTIONS(1699), 1, - anon_sym_LBRACE, - ACTIONS(1701), 1, - sym_integer, - ACTIONS(1703), 1, - sym_float, - ACTIONS(1707), 1, - anon_sym_if, - ACTIONS(1709), 1, - anon_sym_COLON, - STATE(908), 1, - sym_string, - STATE(1010), 1, - sym_concatenated_string, - STATE(1451), 1, - sym_pattern_class_name, - STATE(1044), 2, - sym__match_or_pattern, - sym_match_or_pattern, - ACTIONS(1705), 3, - sym_true, - sym_false, - sym_none, - STATE(1127), 4, - sym__match_pattern, - sym_match_as_pattern, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - STATE(1003), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [46568] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(646), 1, - sym__string_start, - ACTIONS(1683), 1, - sym_identifier, - ACTIONS(1685), 1, - anon_sym_LPAREN, - ACTIONS(1687), 1, - anon_sym_STAR, - ACTIONS(1693), 1, - anon_sym_DASH, - ACTIONS(1695), 1, - sym_match_wildcard_pattern, - ACTIONS(1697), 1, - anon_sym_LBRACK, - ACTIONS(1699), 1, - anon_sym_LBRACE, - ACTIONS(1701), 1, - sym_integer, - ACTIONS(1703), 1, - sym_float, - STATE(908), 1, - sym_string, - STATE(1010), 1, - sym_concatenated_string, - STATE(1451), 1, - sym_pattern_class_name, - STATE(1044), 2, - sym__match_or_pattern, - sym_match_or_pattern, - STATE(1346), 2, - sym__match_patterns, - sym_open_sequence_match_pattern, - STATE(1347), 2, - sym__match_pattern, - sym_match_as_pattern, - STATE(1350), 2, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - ACTIONS(1705), 3, - sym_true, - sym_false, - sym_none, - STATE(1003), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [46642] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(646), 1, - sym__string_start, - ACTIONS(1683), 1, - sym_identifier, - ACTIONS(1685), 1, - anon_sym_LPAREN, - ACTIONS(1687), 1, - anon_sym_STAR, - ACTIONS(1693), 1, - anon_sym_DASH, - ACTIONS(1695), 1, - sym_match_wildcard_pattern, - ACTIONS(1697), 1, - anon_sym_LBRACK, - ACTIONS(1699), 1, - anon_sym_LBRACE, - ACTIONS(1701), 1, - sym_integer, - ACTIONS(1703), 1, - sym_float, - ACTIONS(1711), 1, - anon_sym_RPAREN, - STATE(908), 1, - sym_string, - STATE(1010), 1, - sym_concatenated_string, - STATE(1451), 1, - sym_pattern_class_name, - STATE(1044), 2, - sym__match_or_pattern, - sym_match_or_pattern, - ACTIONS(1705), 3, - sym_true, - sym_false, - sym_none, - STATE(1127), 4, - sym__match_pattern, - sym_match_as_pattern, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - STATE(1003), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [46713] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(646), 1, - sym__string_start, - ACTIONS(1683), 1, - sym_identifier, - ACTIONS(1685), 1, - anon_sym_LPAREN, - ACTIONS(1687), 1, - anon_sym_STAR, - ACTIONS(1693), 1, - anon_sym_DASH, - ACTIONS(1695), 1, - sym_match_wildcard_pattern, - ACTIONS(1697), 1, - anon_sym_LBRACK, - ACTIONS(1699), 1, - anon_sym_LBRACE, - ACTIONS(1701), 1, - sym_integer, - ACTIONS(1703), 1, - sym_float, - ACTIONS(1713), 1, - anon_sym_RPAREN, - STATE(908), 1, - sym_string, - STATE(1010), 1, - sym_concatenated_string, - STATE(1451), 1, - sym_pattern_class_name, - STATE(1044), 2, - sym__match_or_pattern, - sym_match_or_pattern, - STATE(1390), 2, - sym__match_pattern, - sym_match_as_pattern, - STATE(1391), 2, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - ACTIONS(1705), 3, - sym_true, - sym_false, - sym_none, - STATE(1003), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [46786] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(646), 1, - sym__string_start, - ACTIONS(1683), 1, - sym_identifier, - ACTIONS(1685), 1, - anon_sym_LPAREN, - ACTIONS(1687), 1, - anon_sym_STAR, - ACTIONS(1693), 1, - anon_sym_DASH, - ACTIONS(1695), 1, - sym_match_wildcard_pattern, - ACTIONS(1697), 1, - anon_sym_LBRACK, - ACTIONS(1699), 1, - anon_sym_LBRACE, - ACTIONS(1701), 1, - sym_integer, - ACTIONS(1703), 1, - sym_float, - ACTIONS(1711), 1, - anon_sym_RBRACK, - STATE(908), 1, - sym_string, - STATE(1010), 1, - sym_concatenated_string, - STATE(1451), 1, - sym_pattern_class_name, - STATE(1044), 2, - sym__match_or_pattern, - sym_match_or_pattern, - ACTIONS(1705), 3, - sym_true, - sym_false, - sym_none, - STATE(1127), 4, - sym__match_pattern, - sym_match_as_pattern, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - STATE(1003), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [46857] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(646), 1, - sym__string_start, - ACTIONS(1683), 1, - sym_identifier, - ACTIONS(1685), 1, - anon_sym_LPAREN, - ACTIONS(1687), 1, - anon_sym_STAR, - ACTIONS(1693), 1, - anon_sym_DASH, - ACTIONS(1695), 1, - sym_match_wildcard_pattern, - ACTIONS(1697), 1, - anon_sym_LBRACK, - ACTIONS(1699), 1, - anon_sym_LBRACE, - ACTIONS(1701), 1, - sym_integer, - ACTIONS(1703), 1, - sym_float, - ACTIONS(1713), 1, - anon_sym_RBRACK, - STATE(908), 1, - sym_string, - STATE(1010), 1, - sym_concatenated_string, - STATE(1451), 1, - sym_pattern_class_name, - STATE(1044), 2, - sym__match_or_pattern, - sym_match_or_pattern, - ACTIONS(1705), 3, - sym_true, - sym_false, - sym_none, - STATE(1253), 4, - sym__match_pattern, - sym_match_as_pattern, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - STATE(1003), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [46928] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(646), 1, - sym__string_start, - ACTIONS(1683), 1, - sym_identifier, - ACTIONS(1685), 1, - anon_sym_LPAREN, - ACTIONS(1687), 1, - anon_sym_STAR, - ACTIONS(1693), 1, - anon_sym_DASH, - ACTIONS(1695), 1, - sym_match_wildcard_pattern, - ACTIONS(1697), 1, - anon_sym_LBRACK, - ACTIONS(1699), 1, - anon_sym_LBRACE, - ACTIONS(1701), 1, - sym_integer, - ACTIONS(1703), 1, - sym_float, - ACTIONS(1715), 1, - anon_sym_RPAREN, - STATE(908), 1, - sym_string, - STATE(1010), 1, - sym_concatenated_string, - STATE(1451), 1, - sym_pattern_class_name, - STATE(1044), 2, - sym__match_or_pattern, - sym_match_or_pattern, - ACTIONS(1705), 3, - sym_true, - sym_false, - sym_none, - STATE(1127), 4, - sym__match_pattern, - sym_match_as_pattern, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - STATE(1003), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [46999] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(646), 1, - sym__string_start, - ACTIONS(1683), 1, - sym_identifier, - ACTIONS(1685), 1, - anon_sym_LPAREN, - ACTIONS(1687), 1, - anon_sym_STAR, - ACTIONS(1693), 1, - anon_sym_DASH, - ACTIONS(1695), 1, - sym_match_wildcard_pattern, - ACTIONS(1697), 1, - anon_sym_LBRACK, - ACTIONS(1699), 1, - anon_sym_LBRACE, - ACTIONS(1701), 1, - sym_integer, - ACTIONS(1703), 1, - sym_float, - ACTIONS(1715), 1, - anon_sym_RBRACK, - STATE(908), 1, - sym_string, - STATE(1010), 1, - sym_concatenated_string, - STATE(1451), 1, - sym_pattern_class_name, - STATE(1044), 2, - sym__match_or_pattern, - sym_match_or_pattern, - ACTIONS(1705), 3, - sym_true, - sym_false, - sym_none, - STATE(1127), 4, - sym__match_pattern, - sym_match_as_pattern, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - STATE(1003), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [47070] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(646), 1, - sym__string_start, - ACTIONS(1685), 1, - anon_sym_LPAREN, - ACTIONS(1693), 1, - anon_sym_DASH, - ACTIONS(1695), 1, - sym_match_wildcard_pattern, - ACTIONS(1697), 1, - anon_sym_LBRACK, - ACTIONS(1699), 1, - anon_sym_LBRACE, - ACTIONS(1701), 1, - sym_integer, - ACTIONS(1703), 1, - sym_float, - ACTIONS(1717), 1, - sym_identifier, - ACTIONS(1719), 1, - anon_sym_RPAREN, - STATE(908), 1, - sym_string, - STATE(1010), 1, - sym_concatenated_string, - STATE(1247), 1, - sym_match_keyword_pattern, - STATE(1373), 1, - sym_match_positional_pattern, - STATE(1451), 1, - sym_pattern_class_name, - STATE(1044), 2, - sym__match_or_pattern, - sym_match_or_pattern, - STATE(1355), 2, - sym__match_pattern, - sym_match_as_pattern, - ACTIONS(1705), 3, - sym_true, - sym_false, - sym_none, - STATE(1003), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [47142] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(646), 1, - sym__string_start, - ACTIONS(1683), 1, - sym_identifier, - ACTIONS(1685), 1, - anon_sym_LPAREN, - ACTIONS(1687), 1, - anon_sym_STAR, - ACTIONS(1693), 1, - anon_sym_DASH, - ACTIONS(1695), 1, - sym_match_wildcard_pattern, - ACTIONS(1697), 1, - anon_sym_LBRACK, - ACTIONS(1699), 1, - anon_sym_LBRACE, - ACTIONS(1701), 1, - sym_integer, - ACTIONS(1703), 1, - sym_float, - STATE(908), 1, - sym_string, - STATE(1010), 1, - sym_concatenated_string, - STATE(1451), 1, - sym_pattern_class_name, - STATE(1044), 2, - sym__match_or_pattern, - sym_match_or_pattern, - ACTIONS(1705), 3, - sym_true, - sym_false, - sym_none, - STATE(1127), 4, - sym__match_pattern, - sym_match_as_pattern, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - STATE(1003), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [47210] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(646), 1, - sym__string_start, - ACTIONS(1685), 1, - anon_sym_LPAREN, - ACTIONS(1693), 1, - anon_sym_DASH, - ACTIONS(1695), 1, - sym_match_wildcard_pattern, - ACTIONS(1697), 1, - anon_sym_LBRACK, - ACTIONS(1699), 1, - anon_sym_LBRACE, - ACTIONS(1701), 1, - sym_integer, - ACTIONS(1703), 1, - sym_float, - ACTIONS(1717), 1, - sym_identifier, - ACTIONS(1721), 1, - anon_sym_RPAREN, - STATE(908), 1, - sym_string, - STATE(1010), 1, - sym_concatenated_string, - STATE(1248), 1, - sym_match_keyword_pattern, - STATE(1373), 1, - sym_match_positional_pattern, - STATE(1451), 1, - sym_pattern_class_name, - STATE(1044), 2, - sym__match_or_pattern, - sym_match_or_pattern, - STATE(1355), 2, - sym__match_pattern, - sym_match_as_pattern, - ACTIONS(1705), 3, - sym_true, - sym_false, - sym_none, - STATE(1003), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [47282] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(646), 1, - sym__string_start, - ACTIONS(1685), 1, - anon_sym_LPAREN, - ACTIONS(1693), 1, - anon_sym_DASH, - ACTIONS(1695), 1, - sym_match_wildcard_pattern, - ACTIONS(1697), 1, - anon_sym_LBRACK, - ACTIONS(1699), 1, - anon_sym_LBRACE, - ACTIONS(1701), 1, - sym_integer, - ACTIONS(1703), 1, - sym_float, - ACTIONS(1717), 1, - sym_identifier, - ACTIONS(1723), 1, - anon_sym_RPAREN, - STATE(908), 1, - sym_string, - STATE(1010), 1, - sym_concatenated_string, - STATE(1329), 1, - sym_match_keyword_pattern, - STATE(1332), 1, - sym_match_positional_pattern, - STATE(1451), 1, - sym_pattern_class_name, - STATE(1044), 2, - sym__match_or_pattern, - sym_match_or_pattern, - STATE(1355), 2, - sym__match_pattern, - sym_match_as_pattern, - ACTIONS(1705), 3, - sym_true, - sym_false, - sym_none, - STATE(1003), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [47354] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(646), 1, - sym__string_start, - ACTIONS(1683), 1, - sym_identifier, - ACTIONS(1685), 1, - anon_sym_LPAREN, - ACTIONS(1693), 1, - anon_sym_DASH, - ACTIONS(1695), 1, - sym_match_wildcard_pattern, - ACTIONS(1697), 1, - anon_sym_LBRACK, - ACTIONS(1699), 1, - anon_sym_LBRACE, - ACTIONS(1701), 1, - sym_integer, - ACTIONS(1703), 1, - sym_float, - STATE(908), 1, - sym_string, - STATE(1010), 1, - sym_concatenated_string, - STATE(1373), 1, - sym_match_positional_pattern, - STATE(1451), 1, - sym_pattern_class_name, - STATE(1044), 2, - sym__match_or_pattern, - sym_match_or_pattern, - STATE(1355), 2, - sym__match_pattern, - sym_match_as_pattern, - ACTIONS(1705), 3, - sym_true, - sym_false, - sym_none, - STATE(1003), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [47420] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(646), 1, - sym__string_start, - ACTIONS(1683), 1, - sym_identifier, - ACTIONS(1685), 1, - anon_sym_LPAREN, - ACTIONS(1693), 1, - anon_sym_DASH, - ACTIONS(1695), 1, - sym_match_wildcard_pattern, - ACTIONS(1697), 1, - anon_sym_LBRACK, - ACTIONS(1699), 1, - anon_sym_LBRACE, - ACTIONS(1701), 1, - sym_integer, - ACTIONS(1703), 1, - sym_float, - STATE(908), 1, - sym_string, - STATE(1010), 1, - sym_concatenated_string, - STATE(1451), 1, - sym_pattern_class_name, - STATE(1044), 2, - sym__match_or_pattern, - sym_match_or_pattern, - STATE(1358), 2, - sym__match_pattern, - sym_match_as_pattern, - ACTIONS(1705), 3, - sym_true, - sym_false, - sym_none, - STATE(1003), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [47483] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(646), 1, - sym__string_start, - ACTIONS(1683), 1, - sym_identifier, - ACTIONS(1685), 1, - anon_sym_LPAREN, - ACTIONS(1693), 1, - anon_sym_DASH, - ACTIONS(1695), 1, - sym_match_wildcard_pattern, - ACTIONS(1697), 1, - anon_sym_LBRACK, - ACTIONS(1699), 1, - anon_sym_LBRACE, - ACTIONS(1701), 1, - sym_integer, - ACTIONS(1703), 1, - sym_float, - STATE(908), 1, - sym_string, - STATE(1010), 1, - sym_concatenated_string, - STATE(1451), 1, - sym_pattern_class_name, - STATE(1044), 2, - sym__match_or_pattern, - sym_match_or_pattern, - STATE(1375), 2, - sym__match_pattern, - sym_match_as_pattern, - ACTIONS(1705), 3, - sym_true, - sym_false, - sym_none, - STATE(1003), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [47546] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(646), 1, - sym__string_start, - ACTIONS(1683), 1, - sym_identifier, - ACTIONS(1685), 1, - anon_sym_LPAREN, - ACTIONS(1693), 1, - anon_sym_DASH, - ACTIONS(1697), 1, - anon_sym_LBRACK, - ACTIONS(1699), 1, - anon_sym_LBRACE, - ACTIONS(1701), 1, - sym_integer, - ACTIONS(1703), 1, - sym_float, - ACTIONS(1725), 1, - sym_match_wildcard_pattern, - STATE(908), 1, - sym_string, - STATE(1010), 1, - sym_concatenated_string, - STATE(1451), 1, - sym_pattern_class_name, - ACTIONS(1705), 3, - sym_true, - sym_false, - sym_none, - STATE(958), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [47601] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(646), 1, - sym__string_start, - ACTIONS(1683), 1, - sym_identifier, - ACTIONS(1685), 1, - anon_sym_LPAREN, - ACTIONS(1693), 1, - anon_sym_DASH, - ACTIONS(1697), 1, - anon_sym_LBRACK, - ACTIONS(1699), 1, - anon_sym_LBRACE, - ACTIONS(1701), 1, - sym_integer, - ACTIONS(1703), 1, - sym_float, - ACTIONS(1727), 1, - sym_match_wildcard_pattern, - STATE(908), 1, - sym_string, - STATE(1010), 1, - sym_concatenated_string, - STATE(1451), 1, - sym_pattern_class_name, - ACTIONS(1705), 3, - sym_true, - sym_false, - sym_none, - STATE(1000), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [47656] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - anon_sym_EQ, - ACTIONS(1736), 1, - anon_sym_not, - ACTIONS(1742), 1, - anon_sym_is, - STATE(869), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(1739), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1731), 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(1729), 10, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - sym_type_conversion, - [47696] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1473), 1, - anon_sym_not, - ACTIONS(1481), 1, - anon_sym_is, - ACTIONS(1747), 1, - anon_sym_EQ, - STATE(869), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(1479), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1463), 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(1745), 10, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - sym_type_conversion, - [47736] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - anon_sym_as, - ACTIONS(1752), 1, - anon_sym_not, - ACTIONS(1758), 1, - anon_sym_is, - STATE(871), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(1755), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1749), 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(1729), 10, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - [47776] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1449), 1, - anon_sym_not, - ACTIONS(1457), 1, - anon_sym_is, - ACTIONS(1747), 1, - anon_sym_as, - STATE(871), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(1455), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1437), 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(1745), 10, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - [47816] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1763), 1, - anon_sym_COMMA, - STATE(873), 1, - aux_sym__patterns_repeat1, - ACTIONS(1761), 18, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [47846] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1766), 19, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [47871] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - anon_sym_EQ, - ACTIONS(1771), 1, - anon_sym_not, - ACTIONS(1777), 1, - anon_sym_is, - STATE(875), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(1774), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1768), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(1729), 7, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_if, - anon_sym_and, - anon_sym_or, - anon_sym_SEMI, - [47908] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1780), 19, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [47933] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1057), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1782), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1052), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [47962] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(276), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1784), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(303), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [47991] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1786), 19, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [48016] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1063), 19, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [48041] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1635), 1, - anon_sym_not, - ACTIONS(1643), 1, - anon_sym_is, - ACTIONS(1747), 1, - anon_sym_EQ, - STATE(875), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(1641), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1623), 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(1745), 7, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_if, - anon_sym_and, - anon_sym_or, - anon_sym_SEMI, - [48078] = 7, - ACTIONS(3), 1, - sym_comment, ACTIONS(1669), 1, + anon_sym_LBRACK, + ACTIONS(1671), 1, + anon_sym_LBRACE, + ACTIONS(1673), 1, + sym_integer, + ACTIONS(1675), 1, + sym_float, + STATE(901), 1, + sym_string, + STATE(966), 1, + sym_concatenated_string, + STATE(1474), 1, + sym_pattern_class_name, + STATE(1026), 2, + sym__match_or_pattern, + sym_match_or_pattern, + ACTIONS(1677), 3, + sym_true, + sym_false, + sym_none, + STATE(1087), 4, + sym__match_pattern, + sym_match_as_pattern, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + STATE(960), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [45492] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(612), 1, + sym__string_start, + ACTIONS(1655), 1, + sym_identifier, + ACTIONS(1657), 1, + anon_sym_LPAREN, + ACTIONS(1659), 1, + anon_sym_STAR, + ACTIONS(1665), 1, + anon_sym_DASH, + ACTIONS(1667), 1, + sym_match_wildcard_pattern, + ACTIONS(1669), 1, + anon_sym_LBRACK, + ACTIONS(1671), 1, + anon_sym_LBRACE, + ACTIONS(1673), 1, + sym_integer, + ACTIONS(1675), 1, + sym_float, + ACTIONS(1679), 1, + anon_sym_if, + ACTIONS(1681), 1, + anon_sym_COLON, + STATE(901), 1, + sym_string, + STATE(966), 1, + sym_concatenated_string, + STATE(1474), 1, + sym_pattern_class_name, + STATE(1026), 2, + sym__match_or_pattern, + sym_match_or_pattern, + ACTIONS(1677), 3, + sym_true, + sym_false, + sym_none, + STATE(1087), 4, + sym__match_pattern, + sym_match_as_pattern, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + STATE(960), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [45566] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(612), 1, + sym__string_start, + ACTIONS(1655), 1, + sym_identifier, + ACTIONS(1657), 1, + anon_sym_LPAREN, + ACTIONS(1659), 1, + anon_sym_STAR, + ACTIONS(1665), 1, + anon_sym_DASH, + ACTIONS(1667), 1, + sym_match_wildcard_pattern, + ACTIONS(1669), 1, + anon_sym_LBRACK, + ACTIONS(1671), 1, + anon_sym_LBRACE, + ACTIONS(1673), 1, + sym_integer, + ACTIONS(1675), 1, + sym_float, + STATE(901), 1, + sym_string, + STATE(966), 1, + sym_concatenated_string, + STATE(1474), 1, + sym_pattern_class_name, + STATE(1026), 2, + sym__match_or_pattern, + sym_match_or_pattern, + STATE(1300), 2, + sym__match_pattern, + sym_match_as_pattern, + STATE(1304), 2, + sym__match_patterns, + sym_open_sequence_match_pattern, + STATE(1311), 2, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + ACTIONS(1677), 3, + sym_true, + sym_false, + sym_none, + STATE(960), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [45640] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(612), 1, + sym__string_start, + ACTIONS(1655), 1, + sym_identifier, + ACTIONS(1657), 1, + anon_sym_LPAREN, + ACTIONS(1659), 1, + anon_sym_STAR, + ACTIONS(1665), 1, + anon_sym_DASH, + ACTIONS(1667), 1, + sym_match_wildcard_pattern, + ACTIONS(1669), 1, + anon_sym_LBRACK, + ACTIONS(1671), 1, + anon_sym_LBRACE, + ACTIONS(1673), 1, + sym_integer, + ACTIONS(1675), 1, + sym_float, + STATE(901), 1, + sym_string, + STATE(966), 1, + sym_concatenated_string, + STATE(1474), 1, + sym_pattern_class_name, + STATE(1026), 2, + sym__match_or_pattern, + sym_match_or_pattern, + STATE(1292), 2, + sym__match_patterns, + sym_open_sequence_match_pattern, + STATE(1300), 2, + sym__match_pattern, + sym_match_as_pattern, + STATE(1311), 2, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + ACTIONS(1677), 3, + sym_true, + sym_false, + sym_none, + STATE(960), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [45714] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(612), 1, + sym__string_start, + ACTIONS(1655), 1, + sym_identifier, + ACTIONS(1657), 1, + anon_sym_LPAREN, + ACTIONS(1659), 1, + anon_sym_STAR, + ACTIONS(1665), 1, + anon_sym_DASH, + ACTIONS(1667), 1, + sym_match_wildcard_pattern, + ACTIONS(1669), 1, + anon_sym_LBRACK, + ACTIONS(1671), 1, + anon_sym_LBRACE, + ACTIONS(1673), 1, + sym_integer, + ACTIONS(1675), 1, + sym_float, + ACTIONS(1683), 1, + anon_sym_RBRACK, + STATE(901), 1, + sym_string, + STATE(966), 1, + sym_concatenated_string, + STATE(1474), 1, + sym_pattern_class_name, + STATE(1026), 2, + sym__match_or_pattern, + sym_match_or_pattern, + ACTIONS(1677), 3, + sym_true, + sym_false, + sym_none, + STATE(1087), 4, + sym__match_pattern, + sym_match_as_pattern, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + STATE(960), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [45785] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(612), 1, + sym__string_start, + ACTIONS(1655), 1, + sym_identifier, + ACTIONS(1657), 1, + anon_sym_LPAREN, + ACTIONS(1659), 1, + anon_sym_STAR, + ACTIONS(1665), 1, + anon_sym_DASH, + ACTIONS(1667), 1, + sym_match_wildcard_pattern, + ACTIONS(1669), 1, + anon_sym_LBRACK, + ACTIONS(1671), 1, + anon_sym_LBRACE, + ACTIONS(1673), 1, + sym_integer, + ACTIONS(1675), 1, + sym_float, + ACTIONS(1685), 1, + anon_sym_RPAREN, + STATE(901), 1, + sym_string, + STATE(966), 1, + sym_concatenated_string, + STATE(1474), 1, + sym_pattern_class_name, + STATE(1026), 2, + sym__match_or_pattern, + sym_match_or_pattern, + STATE(1355), 2, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + STATE(1356), 2, + sym__match_pattern, + sym_match_as_pattern, + ACTIONS(1677), 3, + sym_true, + sym_false, + sym_none, + STATE(960), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [45858] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(612), 1, + sym__string_start, + ACTIONS(1655), 1, + sym_identifier, + ACTIONS(1657), 1, + anon_sym_LPAREN, + ACTIONS(1659), 1, + anon_sym_STAR, + ACTIONS(1665), 1, + anon_sym_DASH, + ACTIONS(1667), 1, + sym_match_wildcard_pattern, + ACTIONS(1669), 1, + anon_sym_LBRACK, + ACTIONS(1671), 1, + anon_sym_LBRACE, + ACTIONS(1673), 1, + sym_integer, + ACTIONS(1675), 1, + sym_float, + ACTIONS(1685), 1, + anon_sym_RBRACK, + STATE(901), 1, + sym_string, + STATE(966), 1, + sym_concatenated_string, + STATE(1474), 1, + sym_pattern_class_name, + STATE(1026), 2, + sym__match_or_pattern, + sym_match_or_pattern, + ACTIONS(1677), 3, + sym_true, + sym_false, + sym_none, + STATE(1225), 4, + sym__match_pattern, + sym_match_as_pattern, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + STATE(960), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [45929] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(612), 1, + sym__string_start, + ACTIONS(1655), 1, + sym_identifier, + ACTIONS(1657), 1, + anon_sym_LPAREN, + ACTIONS(1659), 1, + anon_sym_STAR, + ACTIONS(1665), 1, + anon_sym_DASH, + ACTIONS(1667), 1, + sym_match_wildcard_pattern, + ACTIONS(1669), 1, + anon_sym_LBRACK, + ACTIONS(1671), 1, + anon_sym_LBRACE, + ACTIONS(1673), 1, + sym_integer, + ACTIONS(1675), 1, + sym_float, + ACTIONS(1687), 1, + anon_sym_RBRACK, + STATE(901), 1, + sym_string, + STATE(966), 1, + sym_concatenated_string, + STATE(1474), 1, + sym_pattern_class_name, + STATE(1026), 2, + sym__match_or_pattern, + sym_match_or_pattern, + ACTIONS(1677), 3, + sym_true, + sym_false, + sym_none, + STATE(1087), 4, + sym__match_pattern, + sym_match_as_pattern, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + STATE(960), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [46000] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(612), 1, + sym__string_start, + ACTIONS(1655), 1, + sym_identifier, + ACTIONS(1657), 1, + anon_sym_LPAREN, + ACTIONS(1659), 1, + anon_sym_STAR, + ACTIONS(1665), 1, + anon_sym_DASH, + ACTIONS(1667), 1, + sym_match_wildcard_pattern, + ACTIONS(1669), 1, + anon_sym_LBRACK, + ACTIONS(1671), 1, + anon_sym_LBRACE, + ACTIONS(1673), 1, + sym_integer, + ACTIONS(1675), 1, + sym_float, + ACTIONS(1687), 1, + anon_sym_RPAREN, + STATE(901), 1, + sym_string, + STATE(966), 1, + sym_concatenated_string, + STATE(1474), 1, + sym_pattern_class_name, + STATE(1026), 2, + sym__match_or_pattern, + sym_match_or_pattern, + ACTIONS(1677), 3, + sym_true, + sym_false, + sym_none, + STATE(1087), 4, + sym__match_pattern, + sym_match_as_pattern, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + STATE(960), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [46071] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(612), 1, + sym__string_start, + ACTIONS(1655), 1, + sym_identifier, + ACTIONS(1657), 1, + anon_sym_LPAREN, + ACTIONS(1659), 1, + anon_sym_STAR, + ACTIONS(1665), 1, + anon_sym_DASH, + ACTIONS(1667), 1, + sym_match_wildcard_pattern, + ACTIONS(1669), 1, + anon_sym_LBRACK, + ACTIONS(1671), 1, + anon_sym_LBRACE, + ACTIONS(1673), 1, + sym_integer, + ACTIONS(1675), 1, + sym_float, + ACTIONS(1683), 1, + anon_sym_RPAREN, + STATE(901), 1, + sym_string, + STATE(966), 1, + sym_concatenated_string, + STATE(1474), 1, + sym_pattern_class_name, + STATE(1026), 2, + sym__match_or_pattern, + sym_match_or_pattern, + ACTIONS(1677), 3, + sym_true, + sym_false, + sym_none, + STATE(1087), 4, + sym__match_pattern, + sym_match_as_pattern, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + STATE(960), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [46142] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(612), 1, + sym__string_start, + ACTIONS(1657), 1, + anon_sym_LPAREN, + ACTIONS(1665), 1, + anon_sym_DASH, + ACTIONS(1667), 1, + sym_match_wildcard_pattern, + ACTIONS(1669), 1, + anon_sym_LBRACK, + ACTIONS(1671), 1, + anon_sym_LBRACE, + ACTIONS(1673), 1, + sym_integer, + ACTIONS(1675), 1, + sym_float, + ACTIONS(1689), 1, + sym_identifier, + ACTIONS(1691), 1, + anon_sym_RPAREN, + STATE(901), 1, + sym_string, + STATE(966), 1, + sym_concatenated_string, + STATE(1277), 1, + sym_match_keyword_pattern, + STATE(1319), 1, + sym_match_positional_pattern, + STATE(1474), 1, + sym_pattern_class_name, + STATE(1026), 2, + sym__match_or_pattern, + sym_match_or_pattern, + STATE(1323), 2, + sym__match_pattern, + sym_match_as_pattern, + ACTIONS(1677), 3, + sym_true, + sym_false, + sym_none, + STATE(960), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [46214] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(612), 1, + sym__string_start, + ACTIONS(1655), 1, + sym_identifier, + ACTIONS(1657), 1, + anon_sym_LPAREN, + ACTIONS(1659), 1, + anon_sym_STAR, + ACTIONS(1665), 1, + anon_sym_DASH, + ACTIONS(1667), 1, + sym_match_wildcard_pattern, + ACTIONS(1669), 1, + anon_sym_LBRACK, + ACTIONS(1671), 1, + anon_sym_LBRACE, + ACTIONS(1673), 1, + sym_integer, + ACTIONS(1675), 1, + sym_float, + STATE(901), 1, + sym_string, + STATE(966), 1, + sym_concatenated_string, + STATE(1474), 1, + sym_pattern_class_name, + STATE(1026), 2, + sym__match_or_pattern, + sym_match_or_pattern, + ACTIONS(1677), 3, + sym_true, + sym_false, + sym_none, + STATE(1087), 4, + sym__match_pattern, + sym_match_as_pattern, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + STATE(960), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [46282] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(612), 1, + sym__string_start, + ACTIONS(1657), 1, + anon_sym_LPAREN, + ACTIONS(1665), 1, + anon_sym_DASH, + ACTIONS(1667), 1, + sym_match_wildcard_pattern, + ACTIONS(1669), 1, + anon_sym_LBRACK, + ACTIONS(1671), 1, + anon_sym_LBRACE, + ACTIONS(1673), 1, + sym_integer, + ACTIONS(1675), 1, + sym_float, + ACTIONS(1689), 1, + sym_identifier, + ACTIONS(1693), 1, + anon_sym_RPAREN, + STATE(901), 1, + sym_string, + STATE(966), 1, + sym_concatenated_string, + STATE(1290), 1, + sym_match_keyword_pattern, + STATE(1319), 1, + sym_match_positional_pattern, + STATE(1474), 1, + sym_pattern_class_name, + STATE(1026), 2, + sym__match_or_pattern, + sym_match_or_pattern, + STATE(1323), 2, + sym__match_pattern, + sym_match_as_pattern, + ACTIONS(1677), 3, + sym_true, + sym_false, + sym_none, + STATE(960), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [46354] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(612), 1, + sym__string_start, + ACTIONS(1657), 1, + anon_sym_LPAREN, + ACTIONS(1665), 1, + anon_sym_DASH, + ACTIONS(1667), 1, + sym_match_wildcard_pattern, + ACTIONS(1669), 1, + anon_sym_LBRACK, + ACTIONS(1671), 1, + anon_sym_LBRACE, + ACTIONS(1673), 1, + sym_integer, + ACTIONS(1675), 1, + sym_float, + ACTIONS(1689), 1, + sym_identifier, + ACTIONS(1695), 1, + anon_sym_RPAREN, + STATE(901), 1, + sym_string, + STATE(966), 1, + sym_concatenated_string, + STATE(1288), 1, + sym_match_positional_pattern, + STATE(1291), 1, + sym_match_keyword_pattern, + STATE(1474), 1, + sym_pattern_class_name, + STATE(1026), 2, + sym__match_or_pattern, + sym_match_or_pattern, + STATE(1323), 2, + sym__match_pattern, + sym_match_as_pattern, + ACTIONS(1677), 3, + sym_true, + sym_false, + sym_none, + STATE(960), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [46426] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(612), 1, + sym__string_start, + ACTIONS(1655), 1, + sym_identifier, + ACTIONS(1657), 1, + anon_sym_LPAREN, + ACTIONS(1665), 1, + anon_sym_DASH, + ACTIONS(1667), 1, + sym_match_wildcard_pattern, + ACTIONS(1669), 1, + anon_sym_LBRACK, + ACTIONS(1671), 1, + anon_sym_LBRACE, + ACTIONS(1673), 1, + sym_integer, + ACTIONS(1675), 1, + sym_float, + STATE(901), 1, + sym_string, + STATE(966), 1, + sym_concatenated_string, + STATE(1319), 1, + sym_match_positional_pattern, + STATE(1474), 1, + sym_pattern_class_name, + STATE(1026), 2, + sym__match_or_pattern, + sym_match_or_pattern, + STATE(1323), 2, + sym__match_pattern, + sym_match_as_pattern, + ACTIONS(1677), 3, + sym_true, + sym_false, + sym_none, + STATE(960), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [46492] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(612), 1, + sym__string_start, + ACTIONS(1655), 1, + sym_identifier, + ACTIONS(1657), 1, + anon_sym_LPAREN, + ACTIONS(1665), 1, + anon_sym_DASH, + ACTIONS(1667), 1, + sym_match_wildcard_pattern, + ACTIONS(1669), 1, + anon_sym_LBRACK, + ACTIONS(1671), 1, + anon_sym_LBRACE, + ACTIONS(1673), 1, + sym_integer, + ACTIONS(1675), 1, + sym_float, + STATE(901), 1, + sym_string, + STATE(966), 1, + sym_concatenated_string, + STATE(1474), 1, + sym_pattern_class_name, + STATE(1026), 2, + sym__match_or_pattern, + sym_match_or_pattern, + STATE(1317), 2, + sym__match_pattern, + sym_match_as_pattern, + ACTIONS(1677), 3, + sym_true, + sym_false, + sym_none, + STATE(960), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [46555] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(612), 1, + sym__string_start, + ACTIONS(1655), 1, + sym_identifier, + ACTIONS(1657), 1, + anon_sym_LPAREN, + ACTIONS(1665), 1, + anon_sym_DASH, + ACTIONS(1667), 1, + sym_match_wildcard_pattern, + ACTIONS(1669), 1, + anon_sym_LBRACK, + ACTIONS(1671), 1, + anon_sym_LBRACE, + ACTIONS(1673), 1, + sym_integer, + ACTIONS(1675), 1, + sym_float, + STATE(901), 1, + sym_string, + STATE(966), 1, + sym_concatenated_string, + STATE(1474), 1, + sym_pattern_class_name, + STATE(1026), 2, + sym__match_or_pattern, + sym_match_or_pattern, + STATE(1310), 2, + sym__match_pattern, + sym_match_as_pattern, + ACTIONS(1677), 3, + sym_true, + sym_false, + sym_none, + STATE(960), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [46618] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(612), 1, + sym__string_start, + ACTIONS(1655), 1, + sym_identifier, + ACTIONS(1657), 1, + anon_sym_LPAREN, + ACTIONS(1665), 1, + anon_sym_DASH, + ACTIONS(1669), 1, + anon_sym_LBRACK, + ACTIONS(1671), 1, + anon_sym_LBRACE, + ACTIONS(1673), 1, + sym_integer, + ACTIONS(1675), 1, + sym_float, + ACTIONS(1697), 1, + sym_match_wildcard_pattern, + STATE(901), 1, + sym_string, + STATE(966), 1, + sym_concatenated_string, + STATE(1474), 1, + sym_pattern_class_name, + ACTIONS(1677), 3, + sym_true, + sym_false, + sym_none, + STATE(981), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [46673] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(612), 1, + sym__string_start, + ACTIONS(1655), 1, + sym_identifier, + ACTIONS(1657), 1, + anon_sym_LPAREN, + ACTIONS(1665), 1, + anon_sym_DASH, + ACTIONS(1669), 1, + anon_sym_LBRACK, + ACTIONS(1671), 1, + anon_sym_LBRACE, + ACTIONS(1673), 1, + sym_integer, + ACTIONS(1675), 1, + sym_float, + ACTIONS(1699), 1, + sym_match_wildcard_pattern, + STATE(901), 1, + sym_string, + STATE(966), 1, + sym_concatenated_string, + STATE(1474), 1, + sym_pattern_class_name, + ACTIONS(1677), 3, + sym_true, + sym_false, + sym_none, + STATE(930), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [46728] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1706), 1, + anon_sym_EQ, + ACTIONS(1708), 1, anon_sym_not, - ACTIONS(1677), 1, + ACTIONS(1714), 1, anon_sym_is, - STATE(883), 1, + STATE(839), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1675), 2, + ACTIONS(1711), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1657), 6, + ACTIONS(1703), 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(1745), 7, + ACTIONS(1701), 10, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [48112] = 7, + sym_type_conversion, + [46768] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1791), 1, + ACTIONS(1706), 1, + anon_sym_as, + ACTIONS(1720), 1, anon_sym_not, - ACTIONS(1797), 1, + ACTIONS(1726), 1, anon_sym_is, - STATE(883), 1, + STATE(840), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1794), 2, + ACTIONS(1723), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1788), 6, + ACTIONS(1717), 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(1729), 7, + ACTIONS(1701), 10, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [48146] = 4, + [46808] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1800), 1, + ACTIONS(1405), 1, + anon_sym_not, + ACTIONS(1413), 1, + anon_sym_is, + ACTIONS(1731), 1, + anon_sym_EQ, + STATE(839), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1411), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1391), 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(1729), 10, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(873), 1, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + sym_type_conversion, + [46848] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1531), 1, + anon_sym_not, + ACTIONS(1539), 1, + anon_sym_is, + ACTIONS(1731), 1, + anon_sym_as, + STATE(840), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1537), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1521), 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(1729), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + [46888] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1735), 1, + anon_sym_COMMA, + STATE(843), 1, aux_sym__patterns_repeat1, - ACTIONS(1802), 16, + ACTIONS(1733), 18, + anon_sym_RPAREN, anon_sym_COLON, anon_sym_in, + anon_sym_RBRACK, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -64383,615 +61786,1431 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [48174] = 13, + [46918] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1425), 1, - anon_sym_DOT, - ACTIONS(1427), 1, - anon_sym_LPAREN, - ACTIONS(1443), 1, - anon_sym_LBRACK, - ACTIONS(1465), 1, - anon_sym_PIPE, - ACTIONS(1469), 1, - anon_sym_STAR_STAR, - ACTIONS(1475), 1, - anon_sym_AMP, - ACTIONS(1477), 1, - anon_sym_CARET, - ACTIONS(1459), 2, + ACTIONS(1611), 1, + anon_sym_not, + ACTIONS(1619), 1, + anon_sym_is, + ACTIONS(1731), 1, + anon_sym_EQ, + STATE(845), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1617), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1599), 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(1729), 7, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_if, + anon_sym_and, + anon_sym_or, + anon_sym_SEMI, + [46955] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1706), 1, + anon_sym_EQ, + ACTIONS(1741), 1, + anon_sym_not, + ACTIONS(1747), 1, + anon_sym_is, + STATE(845), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1744), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1738), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1701), 7, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_if, + anon_sym_and, + anon_sym_or, + anon_sym_SEMI, + [46992] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1062), 19, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [47017] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1750), 19, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [47042] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1752), 19, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [47067] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1754), 19, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [47092] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1056), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1461), 2, + ACTIONS(1756), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1051), 14, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1467), 2, + anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - STATE(612), 2, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [47121] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(260), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1758), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(287), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [47150] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1641), 1, + anon_sym_not, + ACTIONS(1649), 1, + anon_sym_is, + STATE(855), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1647), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1629), 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(1729), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + [47184] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1381), 1, + anon_sym_DOT, + ACTIONS(1383), 1, + anon_sym_LPAREN, + ACTIONS(1393), 1, + anon_sym_PIPE, + ACTIONS(1397), 1, + anon_sym_LBRACK, + ACTIONS(1399), 1, + anon_sym_STAR_STAR, + ACTIONS(1407), 1, + anon_sym_AMP, + ACTIONS(1409), 1, + anon_sym_CARET, + ACTIONS(1387), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1389), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1395), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(595), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1471), 3, + ACTIONS(1403), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [48220] = 12, + [47230] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(1760), 1, + anon_sym_COMMA, + STATE(843), 1, + aux_sym__patterns_repeat1, + ACTIONS(1762), 16, + anon_sym_COLON, + anon_sym_in, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [47258] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1767), 1, + anon_sym_not, + ACTIONS(1773), 1, + anon_sym_is, + STATE(855), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1770), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1764), 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(1701), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + [47292] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1776), 1, + anon_sym_COMMA, + ACTIONS(1778), 1, + anon_sym_COLON, + ACTIONS(1780), 1, + anon_sym_EQ, + STATE(854), 1, + aux_sym__patterns_repeat1, + ACTIONS(1782), 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, + [47323] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1784), 1, + sym_identifier, + ACTIONS(1786), 1, + anon_sym_LPAREN, + ACTIONS(1788), 1, + anon_sym_STAR, + ACTIONS(1790), 1, + anon_sym_COLON, + ACTIONS(1792), 1, + anon_sym_STAR_STAR, + ACTIONS(1794), 1, + anon_sym_SLASH, + STATE(1191), 1, + sym_parameter, + STATE(1400), 1, + sym__parameters, + STATE(1427), 1, + sym_lambda_parameters, + STATE(1375), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1186), 6, + sym_tuple_pattern, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [47366] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1784), 1, + sym_identifier, + ACTIONS(1786), 1, + anon_sym_LPAREN, + ACTIONS(1788), 1, + anon_sym_STAR, + ACTIONS(1792), 1, + anon_sym_STAR_STAR, + ACTIONS(1794), 1, + anon_sym_SLASH, + ACTIONS(1796), 1, + anon_sym_COLON, + STATE(1191), 1, + sym_parameter, + STATE(1400), 1, + sym__parameters, + STATE(1458), 1, + sym_lambda_parameters, + STATE(1375), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1186), 6, + sym_tuple_pattern, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [47409] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1784), 1, + sym_identifier, + ACTIONS(1786), 1, + anon_sym_LPAREN, + ACTIONS(1788), 1, + anon_sym_STAR, + ACTIONS(1792), 1, + anon_sym_STAR_STAR, + ACTIONS(1794), 1, + anon_sym_SLASH, + ACTIONS(1798), 1, + anon_sym_COLON, + STATE(1191), 1, + sym_parameter, + STATE(1380), 1, + sym_lambda_parameters, + STATE(1400), 1, + sym__parameters, + STATE(1375), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1186), 6, + sym_tuple_pattern, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [47452] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1784), 1, + sym_identifier, + ACTIONS(1786), 1, + anon_sym_LPAREN, + ACTIONS(1788), 1, + anon_sym_STAR, + ACTIONS(1792), 1, + anon_sym_STAR_STAR, + ACTIONS(1794), 1, + anon_sym_SLASH, + ACTIONS(1800), 1, + anon_sym_COLON, + STATE(1191), 1, + sym_parameter, + STATE(1400), 1, + sym__parameters, + STATE(1414), 1, + sym_lambda_parameters, + STATE(1375), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1186), 6, + sym_tuple_pattern, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [47495] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1784), 1, + sym_identifier, + ACTIONS(1786), 1, + anon_sym_LPAREN, + ACTIONS(1788), 1, + anon_sym_STAR, + ACTIONS(1792), 1, + anon_sym_STAR_STAR, + ACTIONS(1794), 1, + anon_sym_SLASH, + ACTIONS(1802), 1, + anon_sym_COLON, + STATE(1191), 1, + sym_parameter, + STATE(1400), 1, + sym__parameters, + STATE(1417), 1, + sym_lambda_parameters, + STATE(1375), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1186), 6, + sym_tuple_pattern, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [47538] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(1665), 1, + anon_sym_DASH, + ACTIONS(1673), 1, + sym_integer, + ACTIONS(1675), 1, + sym_float, ACTIONS(1804), 1, sym_identifier, ACTIONS(1806), 1, - anon_sym_LPAREN, + anon_sym_RBRACE, ACTIONS(1808), 1, - anon_sym_STAR, + anon_sym_STAR_STAR, + STATE(966), 1, + sym_concatenated_string, + STATE(1132), 1, + sym_string, + STATE(1227), 1, + sym_match_key_value_pattern, + STATE(1351), 1, + sym_match_double_star_pattern, + STATE(1447), 2, + sym_match_literal_pattern, + sym_match_value_pattern, + ACTIONS(1677), 3, + sym_true, + sym_false, + sym_none, + [47584] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(1665), 1, + anon_sym_DASH, + ACTIONS(1673), 1, + sym_integer, + ACTIONS(1675), 1, + sym_float, + ACTIONS(1804), 1, + sym_identifier, + ACTIONS(1808), 1, + anon_sym_STAR_STAR, ACTIONS(1810), 1, - anon_sym_COLON, - ACTIONS(1812), 1, - anon_sym_STAR_STAR, - ACTIONS(1814), 1, - anon_sym_SLASH, - STATE(1336), 1, - sym_parameter, - STATE(1417), 1, - sym__parameters, - STATE(1449), 1, - sym_lambda_parameters, - STATE(1351), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(1343), 6, - sym_tuple_pattern, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [48263] = 12, + anon_sym_RBRACE, + STATE(966), 1, + sym_concatenated_string, + STATE(1132), 1, + sym_string, + STATE(1308), 1, + sym_match_key_value_pattern, + STATE(1316), 1, + sym_match_double_star_pattern, + STATE(1447), 2, + sym_match_literal_pattern, + sym_match_value_pattern, + ACTIONS(1677), 3, + sym_true, + sym_false, + sym_none, + [47630] = 14, ACTIONS(3), 1, sym_comment, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(1665), 1, + anon_sym_DASH, + ACTIONS(1673), 1, + sym_integer, + ACTIONS(1675), 1, + sym_float, ACTIONS(1804), 1, sym_identifier, - ACTIONS(1806), 1, - anon_sym_LPAREN, ACTIONS(1808), 1, - anon_sym_STAR, - ACTIONS(1812), 1, anon_sym_STAR_STAR, - ACTIONS(1814), 1, + ACTIONS(1812), 1, + anon_sym_RBRACE, + STATE(966), 1, + sym_concatenated_string, + STATE(1132), 1, + sym_string, + STATE(1308), 1, + sym_match_key_value_pattern, + STATE(1309), 1, + sym_match_double_star_pattern, + STATE(1447), 2, + sym_match_literal_pattern, + sym_match_value_pattern, + ACTIONS(1677), 3, + sym_true, + sym_false, + sym_none, + [47676] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1786), 1, + anon_sym_LPAREN, + ACTIONS(1788), 1, + anon_sym_STAR, + ACTIONS(1792), 1, + anon_sym_STAR_STAR, + ACTIONS(1794), 1, anon_sym_SLASH, + ACTIONS(1814), 1, + sym_identifier, ACTIONS(1816), 1, - anon_sym_COLON, - STATE(1336), 1, + anon_sym_RPAREN, + STATE(1214), 1, sym_parameter, - STATE(1417), 1, + STATE(1491), 1, sym__parameters, - STATE(1523), 1, - sym_lambda_parameters, - STATE(1351), 2, + STATE(1255), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1343), 6, + STATE(1186), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [48306] = 12, + [47716] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1804), 1, - sym_identifier, - ACTIONS(1806), 1, + ACTIONS(1778), 1, + anon_sym_COLON, + ACTIONS(1780), 1, + anon_sym_EQ, + ACTIONS(1782), 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, + [47741] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1786), 1, anon_sym_LPAREN, - ACTIONS(1808), 1, + ACTIONS(1788), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1792), 1, anon_sym_STAR_STAR, + ACTIONS(1794), 1, + anon_sym_SLASH, ACTIONS(1814), 1, + sym_identifier, + ACTIONS(1818), 1, + anon_sym_RPAREN, + STATE(1208), 1, + sym_parameter, + STATE(1255), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1186), 6, + sym_tuple_pattern, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [47778] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1784), 1, + sym_identifier, + ACTIONS(1786), 1, + anon_sym_LPAREN, + ACTIONS(1788), 1, + anon_sym_STAR, + ACTIONS(1792), 1, + anon_sym_STAR_STAR, + ACTIONS(1794), 1, anon_sym_SLASH, ACTIONS(1818), 1, anon_sym_COLON, - STATE(1336), 1, + STATE(1208), 1, sym_parameter, - STATE(1417), 1, - sym__parameters, - STATE(1438), 1, - sym_lambda_parameters, - STATE(1351), 2, + STATE(1375), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1343), 6, + STATE(1186), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [48349] = 12, + [47815] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1804), 1, - sym_identifier, - ACTIONS(1806), 1, + ACTIONS(1786), 1, anon_sym_LPAREN, - ACTIONS(1808), 1, + ACTIONS(1788), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1792), 1, anon_sym_STAR_STAR, + ACTIONS(1794), 1, + anon_sym_SLASH, ACTIONS(1814), 1, + sym_identifier, + ACTIONS(1820), 1, + anon_sym_RPAREN, + STATE(1208), 1, + sym_parameter, + STATE(1255), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1186), 6, + sym_tuple_pattern, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [47852] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1784), 1, + sym_identifier, + ACTIONS(1786), 1, + anon_sym_LPAREN, + ACTIONS(1788), 1, + anon_sym_STAR, + ACTIONS(1792), 1, + anon_sym_STAR_STAR, + ACTIONS(1794), 1, anon_sym_SLASH, ACTIONS(1820), 1, anon_sym_COLON, - STATE(1336), 1, + STATE(1208), 1, sym_parameter, - STATE(1417), 1, - sym__parameters, - STATE(1432), 1, - sym_lambda_parameters, - STATE(1351), 2, + STATE(1375), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1343), 6, + STATE(1186), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [48392] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1804), 1, - sym_identifier, - ACTIONS(1806), 1, - anon_sym_LPAREN, - ACTIONS(1808), 1, - anon_sym_STAR, - ACTIONS(1812), 1, - anon_sym_STAR_STAR, - ACTIONS(1814), 1, - anon_sym_SLASH, - ACTIONS(1822), 1, - anon_sym_COLON, - STATE(1336), 1, - sym_parameter, - STATE(1417), 1, - sym__parameters, - STATE(1428), 1, - sym_lambda_parameters, - STATE(1351), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(1343), 6, - sym_tuple_pattern, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [48435] = 6, + [47889] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1824), 1, + anon_sym_as, + ACTIONS(1822), 13, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(1826), 1, + anon_sym_if, anon_sym_COLON, - ACTIONS(1828), 1, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_EQ, - STATE(884), 1, - aux_sym__patterns_repeat1, - ACTIONS(1830), 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, - [48466] = 11, + anon_sym_and, + anon_sym_or, + sym_type_conversion, + [47911] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1806), 1, - anon_sym_LPAREN, - ACTIONS(1808), 1, - anon_sym_STAR, - ACTIONS(1812), 1, - anon_sym_STAR_STAR, - ACTIONS(1814), 1, - anon_sym_SLASH, - ACTIONS(1832), 1, - sym_identifier, - ACTIONS(1834), 1, - anon_sym_RPAREN, - STATE(1232), 1, - sym_parameter, - STATE(1488), 1, - sym__parameters, - STATE(1306), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(1343), 6, - sym_tuple_pattern, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [48506] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(1693), 1, - anon_sym_DASH, - ACTIONS(1701), 1, - sym_integer, - ACTIONS(1703), 1, - sym_float, - ACTIONS(1836), 1, - sym_identifier, - ACTIONS(1838), 1, - anon_sym_RBRACE, - ACTIONS(1840), 1, - anon_sym_STAR_STAR, - STATE(1010), 1, - sym_concatenated_string, - STATE(1183), 1, - sym_string, - STATE(1255), 1, - sym_match_key_value_pattern, - STATE(1411), 1, - sym_match_double_star_pattern, - STATE(1415), 2, - sym_match_literal_pattern, - sym_match_value_pattern, - ACTIONS(1705), 3, - sym_true, - sym_false, - sym_none, - [48552] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(1693), 1, - anon_sym_DASH, - ACTIONS(1701), 1, - sym_integer, - ACTIONS(1703), 1, - sym_float, - ACTIONS(1836), 1, - sym_identifier, - ACTIONS(1840), 1, - anon_sym_STAR_STAR, - ACTIONS(1842), 1, - anon_sym_RBRACE, - STATE(1010), 1, - sym_concatenated_string, - STATE(1183), 1, - sym_string, - STATE(1371), 1, - sym_match_key_value_pattern, - STATE(1376), 1, - sym_match_double_star_pattern, - STATE(1415), 2, - sym_match_literal_pattern, - sym_match_value_pattern, - ACTIONS(1705), 3, - sym_true, - sym_false, - sym_none, - [48598] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(1693), 1, - anon_sym_DASH, - ACTIONS(1701), 1, - sym_integer, - ACTIONS(1703), 1, - sym_float, - ACTIONS(1836), 1, - sym_identifier, - ACTIONS(1840), 1, - anon_sym_STAR_STAR, - ACTIONS(1844), 1, - anon_sym_RBRACE, - STATE(1010), 1, - sym_concatenated_string, - STATE(1183), 1, - sym_string, - STATE(1362), 1, - sym_match_double_star_pattern, - STATE(1371), 1, - sym_match_key_value_pattern, - STATE(1415), 2, - sym_match_literal_pattern, - sym_match_value_pattern, - ACTIONS(1705), 3, - sym_true, - sym_false, - sym_none, - [48644] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1804), 1, - sym_identifier, - ACTIONS(1806), 1, - anon_sym_LPAREN, - ACTIONS(1808), 1, - anon_sym_STAR, - ACTIONS(1812), 1, - anon_sym_STAR_STAR, - ACTIONS(1814), 1, - anon_sym_SLASH, - ACTIONS(1846), 1, - anon_sym_COLON, - STATE(1278), 1, - sym_parameter, - STATE(1351), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(1343), 6, - sym_tuple_pattern, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [48681] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1804), 1, - sym_identifier, - ACTIONS(1806), 1, - anon_sym_LPAREN, - ACTIONS(1808), 1, - anon_sym_STAR, - ACTIONS(1812), 1, - anon_sym_STAR_STAR, - ACTIONS(1814), 1, - anon_sym_SLASH, - ACTIONS(1848), 1, - anon_sym_COLON, - STATE(1278), 1, - sym_parameter, - STATE(1351), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(1343), 6, - sym_tuple_pattern, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [48718] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1806), 1, - anon_sym_LPAREN, - ACTIONS(1808), 1, - anon_sym_STAR, - ACTIONS(1812), 1, - anon_sym_STAR_STAR, - ACTIONS(1814), 1, - anon_sym_SLASH, - ACTIONS(1832), 1, - sym_identifier, - ACTIONS(1846), 1, - anon_sym_RPAREN, - STATE(1278), 1, - sym_parameter, - STATE(1306), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(1343), 6, - sym_tuple_pattern, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [48755] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1806), 1, - anon_sym_LPAREN, - ACTIONS(1808), 1, - anon_sym_STAR, - ACTIONS(1812), 1, - anon_sym_STAR_STAR, - ACTIONS(1814), 1, - anon_sym_SLASH, - ACTIONS(1832), 1, - sym_identifier, - ACTIONS(1848), 1, - anon_sym_RPAREN, - STATE(1278), 1, - sym_parameter, - STATE(1306), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(1343), 6, - sym_tuple_pattern, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [48792] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1826), 1, - anon_sym_COLON, ACTIONS(1828), 1, + anon_sym_as, + ACTIONS(1826), 13, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_EQ, - ACTIONS(1830), 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, - [48817] = 9, + anon_sym_and, + anon_sym_or, + sym_type_conversion, + [47933] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1804), 1, - sym_identifier, - ACTIONS(1806), 1, + ACTIONS(1786), 1, anon_sym_LPAREN, - ACTIONS(1808), 1, + ACTIONS(1788), 1, anon_sym_STAR, - ACTIONS(1812), 1, + ACTIONS(1792), 1, anon_sym_STAR_STAR, - ACTIONS(1814), 1, + ACTIONS(1794), 1, anon_sym_SLASH, - STATE(1278), 1, + ACTIONS(1814), 1, + sym_identifier, + STATE(1208), 1, sym_parameter, - STATE(1351), 2, + STATE(1255), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1343), 6, + STATE(1186), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [48851] = 3, + [47967] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(1401), 1, + anon_sym_as, + ACTIONS(1385), 13, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_and, + anon_sym_or, + sym_type_conversion, + [47989] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1784), 1, + sym_identifier, + ACTIONS(1786), 1, + anon_sym_LPAREN, + ACTIONS(1788), 1, + anon_sym_STAR, + ACTIONS(1792), 1, + anon_sym_STAR_STAR, + ACTIONS(1794), 1, + anon_sym_SLASH, + STATE(1208), 1, + sym_parameter, + STATE(1375), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1186), 6, + sym_tuple_pattern, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [48023] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(1665), 1, + anon_sym_DASH, + ACTIONS(1673), 1, + sym_integer, + ACTIONS(1675), 1, + sym_float, + ACTIONS(1804), 1, + sym_identifier, + STATE(966), 1, + sym_concatenated_string, + STATE(1132), 1, + sym_string, + STATE(1308), 1, + sym_match_key_value_pattern, + STATE(1447), 2, + sym_match_literal_pattern, + sym_match_value_pattern, + ACTIONS(1677), 3, + sym_true, + sym_false, + sym_none, + [48060] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1832), 1, + anon_sym_DOT, + STATE(877), 1, + aux_sym_match_value_pattern_repeat1, + ACTIONS(1830), 10, + anon_sym_import, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [48082] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1837), 1, + anon_sym_if, + ACTIONS(1839), 1, + anon_sym_and, + ACTIONS(1841), 1, + anon_sym_or, + ACTIONS(1835), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + [48105] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1843), 1, + anon_sym_RPAREN, + ACTIONS(1845), 1, + anon_sym_COMMA, + ACTIONS(1848), 1, + anon_sym_as, + ACTIONS(1850), 1, + anon_sym_if, ACTIONS(1852), 1, - anon_sym_as, - ACTIONS(1850), 13, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_async, + ACTIONS(1854), 1, anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_and, - anon_sym_or, - sym_type_conversion, - [48873] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1806), 1, - anon_sym_LPAREN, - ACTIONS(1808), 1, - anon_sym_STAR, - ACTIONS(1812), 1, - anon_sym_STAR_STAR, - ACTIONS(1814), 1, - anon_sym_SLASH, - ACTIONS(1832), 1, - sym_identifier, - STATE(1278), 1, - sym_parameter, - STATE(1306), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(1343), 6, - sym_tuple_pattern, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [48907] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1431), 1, - anon_sym_as, - ACTIONS(1429), 13, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_and, - anon_sym_or, - sym_type_conversion, - [48929] = 3, - ACTIONS(3), 1, - sym_comment, ACTIONS(1856), 1, - anon_sym_as, - ACTIONS(1854), 13, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, anon_sym_and, + ACTIONS(1858), 1, anon_sym_or, - sym_type_conversion, - [48951] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(1693), 1, - anon_sym_DASH, - ACTIONS(1701), 1, - sym_integer, - ACTIONS(1703), 1, - sym_float, - ACTIONS(1836), 1, - sym_identifier, - STATE(1010), 1, - sym_concatenated_string, - STATE(1183), 1, - sym_string, - STATE(1371), 1, - sym_match_key_value_pattern, - STATE(1415), 2, - sym_match_literal_pattern, - sym_match_value_pattern, - ACTIONS(1705), 3, - sym_true, - sym_false, - sym_none, - [48988] = 4, + STATE(932), 1, + sym_for_in_clause, + STATE(1099), 1, + aux_sym__collection_elements_repeat1, + STATE(1378), 1, + sym__comprehension_clauses, + [48142] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1860), 1, anon_sym_DOT, - STATE(907), 1, + ACTIONS(1862), 1, + anon_sym_LPAREN, + STATE(877), 1, aux_sym_match_value_pattern_repeat1, - ACTIONS(1858), 10, + ACTIONS(1864), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [48165] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1837), 1, + anon_sym_if, + ACTIONS(1839), 1, + anon_sym_and, + ACTIONS(1841), 1, + anon_sym_or, + ACTIONS(1866), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + [48188] = 9, + ACTIONS(1868), 1, + anon_sym_LBRACE2, + ACTIONS(1872), 1, + anon_sym_BSLASH, + ACTIONS(1874), 1, + sym_comment, + ACTIONS(1876), 1, + sym__string_end, + STATE(900), 1, + aux_sym_string_repeat1, + STATE(1037), 1, + sym_string_content, + STATE(1043), 1, + sym_interpolation, + STATE(942), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(1870), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [48219] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1839), 1, + anon_sym_and, + ACTIONS(1841), 1, + anon_sym_or, + ACTIONS(1878), 9, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + [48240] = 9, + ACTIONS(1868), 1, + anon_sym_LBRACE2, + ACTIONS(1872), 1, + anon_sym_BSLASH, + ACTIONS(1874), 1, + sym_comment, + ACTIONS(1880), 1, + sym__string_end, + STATE(893), 1, + aux_sym_string_repeat1, + STATE(1037), 1, + sym_string_content, + STATE(1043), 1, + sym_interpolation, + STATE(942), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(1870), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [48271] = 9, + ACTIONS(1868), 1, + anon_sym_LBRACE2, + ACTIONS(1872), 1, + anon_sym_BSLASH, + ACTIONS(1874), 1, + sym_comment, + ACTIONS(1882), 1, + sym__string_end, + STATE(887), 1, + aux_sym_string_repeat1, + STATE(1037), 1, + sym_string_content, + STATE(1043), 1, + sym_interpolation, + STATE(942), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(1870), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [48302] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1850), 1, + anon_sym_if, + ACTIONS(1852), 1, + anon_sym_async, + ACTIONS(1854), 1, + anon_sym_for, + ACTIONS(1856), 1, + anon_sym_and, + ACTIONS(1858), 1, + anon_sym_or, + ACTIONS(1884), 1, + anon_sym_COMMA, + ACTIONS(1886), 1, + anon_sym_COLON, + ACTIONS(1888), 1, + anon_sym_RBRACE, + STATE(932), 1, + sym_for_in_clause, + STATE(1099), 1, + aux_sym__collection_elements_repeat1, + STATE(1459), 1, + sym__comprehension_clauses, + [48339] = 9, + ACTIONS(1868), 1, + anon_sym_LBRACE2, + ACTIONS(1872), 1, + anon_sym_BSLASH, + ACTIONS(1874), 1, + sym_comment, + ACTIONS(1890), 1, + sym__string_end, + STATE(893), 1, + aux_sym_string_repeat1, + STATE(1037), 1, + sym_string_content, + STATE(1043), 1, + sym_interpolation, + STATE(942), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(1870), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [48370] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1837), 1, + anon_sym_if, + ACTIONS(1839), 1, + anon_sym_and, + ACTIONS(1841), 1, + anon_sym_or, + ACTIONS(1892), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + [48393] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1839), 1, + anon_sym_and, + ACTIONS(1841), 1, + anon_sym_or, + ACTIONS(1894), 9, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + [48414] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1850), 1, + anon_sym_if, + ACTIONS(1852), 1, + anon_sym_async, + ACTIONS(1854), 1, + anon_sym_for, + ACTIONS(1856), 1, + anon_sym_and, + ACTIONS(1858), 1, + anon_sym_or, + ACTIONS(1884), 1, + anon_sym_COMMA, + ACTIONS(1886), 1, + anon_sym_COLON, + ACTIONS(1888), 1, + anon_sym_RBRACE, + STATE(932), 1, + sym_for_in_clause, + STATE(1099), 1, + aux_sym__collection_elements_repeat1, + STATE(1382), 1, + sym__comprehension_clauses, + [48451] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1850), 1, + anon_sym_if, + ACTIONS(1856), 1, + anon_sym_and, + ACTIONS(1858), 1, + anon_sym_or, + ACTIONS(1896), 1, + anon_sym_as, + ACTIONS(1866), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + [48476] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1850), 1, + anon_sym_if, + ACTIONS(1852), 1, + anon_sym_async, + ACTIONS(1854), 1, + anon_sym_for, + ACTIONS(1856), 1, + anon_sym_and, + ACTIONS(1858), 1, + anon_sym_or, + ACTIONS(1884), 1, + anon_sym_COMMA, + ACTIONS(1886), 1, + anon_sym_COLON, + ACTIONS(1888), 1, + anon_sym_RBRACE, + STATE(932), 1, + sym_for_in_clause, + STATE(1099), 1, + aux_sym__collection_elements_repeat1, + STATE(1408), 1, + sym__comprehension_clauses, + [48513] = 9, + ACTIONS(1874), 1, + sym_comment, + ACTIONS(1898), 1, + anon_sym_LBRACE2, + ACTIONS(1904), 1, + anon_sym_BSLASH, + ACTIONS(1907), 1, + sym__string_end, + STATE(893), 1, + aux_sym_string_repeat1, + STATE(1037), 1, + sym_string_content, + STATE(1043), 1, + sym_interpolation, + STATE(942), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(1901), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [48544] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1860), 1, + anon_sym_DOT, + ACTIONS(1909), 1, + anon_sym_LPAREN, + STATE(880), 1, + aux_sym_match_value_pattern_repeat1, + ACTIONS(1911), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [48567] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1837), 1, + anon_sym_if, + ACTIONS(1839), 1, + anon_sym_and, + ACTIONS(1841), 1, + anon_sym_or, + ACTIONS(1915), 1, + anon_sym_COMMA, + STATE(954), 1, + aux_sym_expression_list_repeat1, + ACTIONS(1913), 6, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + [48594] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1856), 1, + anon_sym_and, + ACTIONS(1858), 1, + anon_sym_or, + ACTIONS(1919), 1, + anon_sym_as, + ACTIONS(1917), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + [48617] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1839), 1, + anon_sym_and, + ACTIONS(1841), 1, + anon_sym_or, + ACTIONS(1917), 9, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + [48638] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1856), 1, + anon_sym_and, + ACTIONS(1919), 1, + anon_sym_as, + ACTIONS(1917), 9, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_or, + [48659] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1850), 1, + anon_sym_if, + ACTIONS(1856), 1, + anon_sym_and, + ACTIONS(1858), 1, + anon_sym_or, + ACTIONS(1921), 1, + anon_sym_as, + ACTIONS(1835), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + [48684] = 9, + ACTIONS(1868), 1, + anon_sym_LBRACE2, + ACTIONS(1872), 1, + anon_sym_BSLASH, + ACTIONS(1874), 1, + sym_comment, + ACTIONS(1923), 1, + sym__string_end, + STATE(893), 1, + aux_sym_string_repeat1, + STATE(1037), 1, + sym_string_content, + STATE(1043), 1, + sym_interpolation, + STATE(942), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(1870), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [48715] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(612), 1, + sym__string_start, + STATE(644), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1925), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [48736] = 9, + ACTIONS(1868), 1, + anon_sym_LBRACE2, + ACTIONS(1872), 1, + anon_sym_BSLASH, + ACTIONS(1874), 1, + sym_comment, + ACTIONS(1927), 1, + sym__string_end, + STATE(906), 1, + aux_sym_string_repeat1, + STATE(1037), 1, + sym_string_content, + STATE(1043), 1, + sym_interpolation, + STATE(942), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(1870), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [48767] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1856), 1, + anon_sym_and, + ACTIONS(1858), 1, + anon_sym_or, + ACTIONS(1929), 1, + anon_sym_as, + ACTIONS(1878), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + [48790] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1830), 11, anon_sym_import, + anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -65001,740 +63220,299 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [49010] = 4, + [48807] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(646), 1, - sym__string_start, - STATE(679), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1863), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [49031] = 9, - ACTIONS(1865), 1, - anon_sym_LBRACE2, - ACTIONS(1869), 1, - anon_sym_BSLASH, - ACTIONS(1871), 1, - sym_comment, - ACTIONS(1873), 1, - sym__string_end, - STATE(912), 1, - aux_sym_string_repeat1, - STATE(1059), 1, - sym_string_content, - STATE(1092), 1, - sym_interpolation, - STATE(994), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(1867), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [49062] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1877), 1, - anon_sym_as, - ACTIONS(1879), 1, - anon_sym_if, - ACTIONS(1881), 1, + ACTIONS(1839), 1, anon_sym_and, - ACTIONS(1883), 1, - anon_sym_or, - ACTIONS(1875), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [49087] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1881), 1, - anon_sym_and, - ACTIONS(1883), 1, - anon_sym_or, - ACTIONS(1887), 1, - anon_sym_as, - ACTIONS(1885), 8, + ACTIONS(1917), 10, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [49110] = 9, - ACTIONS(1871), 1, - sym_comment, - ACTIONS(1889), 1, - anon_sym_LBRACE2, - ACTIONS(1895), 1, - anon_sym_BSLASH, - ACTIONS(1898), 1, - sym__string_end, - STATE(912), 1, - aux_sym_string_repeat1, - STATE(1059), 1, - sym_string_content, - STATE(1092), 1, - sym_interpolation, - STATE(994), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(1892), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [49141] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1879), 1, - anon_sym_if, - ACTIONS(1881), 1, - anon_sym_and, - ACTIONS(1883), 1, - anon_sym_or, - ACTIONS(1900), 1, - anon_sym_RPAREN, - ACTIONS(1902), 1, - anon_sym_COMMA, - ACTIONS(1905), 1, - anon_sym_as, - ACTIONS(1907), 1, - anon_sym_async, - ACTIONS(1909), 1, - anon_sym_for, - STATE(960), 1, - sym_for_in_clause, - STATE(1124), 1, - aux_sym__collection_elements_repeat1, - STATE(1423), 1, - sym__comprehension_clauses, - [49178] = 9, - ACTIONS(1865), 1, - anon_sym_LBRACE2, - ACTIONS(1869), 1, - anon_sym_BSLASH, - ACTIONS(1871), 1, - sym_comment, - ACTIONS(1911), 1, - sym__string_end, - STATE(924), 1, - aux_sym_string_repeat1, - STATE(1059), 1, - sym_string_content, - STATE(1092), 1, - sym_interpolation, - STATE(994), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(1867), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [49209] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1913), 1, - anon_sym_if, - ACTIONS(1915), 1, - anon_sym_and, - ACTIONS(1917), 1, - anon_sym_or, - ACTIONS(1875), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, anon_sym_else, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_EQ, + anon_sym_or, sym_type_conversion, - [49232] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1881), 1, - anon_sym_and, - ACTIONS(1883), 1, - anon_sym_or, - ACTIONS(1921), 1, - anon_sym_as, - ACTIONS(1919), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [49255] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1879), 1, - anon_sym_if, - ACTIONS(1881), 1, - anon_sym_and, - ACTIONS(1883), 1, - anon_sym_or, - ACTIONS(1925), 1, - anon_sym_as, - ACTIONS(1923), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [49280] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1881), 1, - anon_sym_and, - ACTIONS(1929), 1, - anon_sym_as, - ACTIONS(1927), 9, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_or, - [49301] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1881), 1, - anon_sym_and, - ACTIONS(1883), 1, - anon_sym_or, - ACTIONS(1929), 1, - anon_sym_as, - ACTIONS(1927), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [49324] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1879), 1, - anon_sym_if, - ACTIONS(1881), 1, - anon_sym_and, - ACTIONS(1883), 1, - anon_sym_or, - ACTIONS(1907), 1, - anon_sym_async, - ACTIONS(1909), 1, - anon_sym_for, - ACTIONS(1931), 1, - anon_sym_COMMA, - ACTIONS(1933), 1, - anon_sym_COLON, - ACTIONS(1935), 1, - anon_sym_RBRACE, - STATE(960), 1, - sym_for_in_clause, - STATE(1124), 1, - aux_sym__collection_elements_repeat1, - STATE(1495), 1, - sym__comprehension_clauses, - [49361] = 9, - ACTIONS(1865), 1, + [48826] = 9, + ACTIONS(1868), 1, anon_sym_LBRACE2, - ACTIONS(1869), 1, + ACTIONS(1872), 1, anon_sym_BSLASH, - ACTIONS(1871), 1, + ACTIONS(1874), 1, sym_comment, - ACTIONS(1937), 1, + ACTIONS(1931), 1, sym__string_end, - STATE(912), 1, + STATE(893), 1, aux_sym_string_repeat1, - STATE(1059), 1, + STATE(1037), 1, sym_string_content, - STATE(1092), 1, + STATE(1043), 1, sym_interpolation, - STATE(994), 2, + STATE(942), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(1867), 3, + ACTIONS(1870), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [49392] = 7, + [48857] = 9, + ACTIONS(1868), 1, + anon_sym_LBRACE2, + ACTIONS(1872), 1, + anon_sym_BSLASH, + ACTIONS(1874), 1, + sym_comment, + ACTIONS(1933), 1, + sym__string_end, + STATE(884), 1, + aux_sym_string_repeat1, + STATE(1037), 1, + sym_string_content, + STATE(1043), 1, + sym_interpolation, + STATE(942), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(1870), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [48888] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1913), 1, + ACTIONS(1850), 1, anon_sym_if, - ACTIONS(1915), 1, + ACTIONS(1856), 1, anon_sym_and, - ACTIONS(1917), 1, + ACTIONS(1858), 1, anon_sym_or, - ACTIONS(1941), 1, - anon_sym_COMMA, - STATE(988), 1, - aux_sym_expression_list_repeat1, - ACTIONS(1939), 6, + ACTIONS(1935), 1, + anon_sym_as, + ACTIONS(1892), 7, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [49419] = 6, + [48913] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, - anon_sym_if, - ACTIONS(1881), 1, + ACTIONS(1856), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(1858), 1, anon_sym_or, - ACTIONS(1945), 1, + ACTIONS(1937), 1, anon_sym_as, + ACTIONS(1894), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + [48936] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1850), 1, + anon_sym_if, + ACTIONS(1852), 1, + anon_sym_async, + ACTIONS(1854), 1, + anon_sym_for, + ACTIONS(1856), 1, + anon_sym_and, + ACTIONS(1858), 1, + anon_sym_or, + ACTIONS(1939), 1, + anon_sym_RPAREN, + ACTIONS(1941), 1, + anon_sym_COMMA, + STATE(932), 1, + sym_for_in_clause, + STATE(1264), 1, + aux_sym_argument_list_repeat1, + STATE(1378), 1, + sym__comprehension_clauses, + [48970] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1850), 1, + anon_sym_if, + ACTIONS(1852), 1, + anon_sym_async, + ACTIONS(1854), 1, + anon_sym_for, + ACTIONS(1856), 1, + anon_sym_and, + ACTIONS(1858), 1, + anon_sym_or, + ACTIONS(1884), 1, + anon_sym_COMMA, + ACTIONS(1888), 1, + anon_sym_RBRACK, + STATE(932), 1, + sym_for_in_clause, + STATE(1099), 1, + aux_sym__collection_elements_repeat1, + STATE(1457), 1, + sym__comprehension_clauses, + [49004] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1850), 1, + anon_sym_if, + ACTIONS(1852), 1, + anon_sym_async, + ACTIONS(1854), 1, + anon_sym_for, + ACTIONS(1856), 1, + anon_sym_and, + ACTIONS(1858), 1, + anon_sym_or, + ACTIONS(1884), 1, + anon_sym_COMMA, + ACTIONS(1888), 1, + anon_sym_RBRACK, + STATE(932), 1, + sym_for_in_clause, + STATE(1099), 1, + aux_sym__collection_elements_repeat1, + STATE(1379), 1, + sym__comprehension_clauses, + [49038] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1837), 1, + anon_sym_if, + ACTIONS(1839), 1, + anon_sym_and, + ACTIONS(1841), 1, + anon_sym_or, ACTIONS(1943), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [49444] = 9, - ACTIONS(1865), 1, - anon_sym_LBRACE2, - ACTIONS(1869), 1, - anon_sym_BSLASH, - ACTIONS(1871), 1, + anon_sym_EQ, + sym_type_conversion, + [49060] = 11, + ACTIONS(3), 1, sym_comment, + ACTIONS(1850), 1, + anon_sym_if, + ACTIONS(1852), 1, + anon_sym_async, + ACTIONS(1854), 1, + anon_sym_for, + ACTIONS(1856), 1, + anon_sym_and, + ACTIONS(1858), 1, + anon_sym_or, + ACTIONS(1884), 1, + anon_sym_COMMA, + ACTIONS(1888), 1, + anon_sym_RBRACK, + STATE(932), 1, + sym_for_in_clause, + STATE(1099), 1, + aux_sym__collection_elements_repeat1, + STATE(1409), 1, + sym__comprehension_clauses, + [49094] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1837), 1, + anon_sym_if, + ACTIONS(1839), 1, + anon_sym_and, + ACTIONS(1841), 1, + anon_sym_or, + ACTIONS(1945), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + [49116] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1850), 1, + anon_sym_if, + ACTIONS(1852), 1, + anon_sym_async, + ACTIONS(1854), 1, + anon_sym_for, + ACTIONS(1856), 1, + anon_sym_and, + ACTIONS(1858), 1, + anon_sym_or, + ACTIONS(1884), 1, + anon_sym_COMMA, ACTIONS(1947), 1, - sym__string_end, - STATE(912), 1, - aux_sym_string_repeat1, - STATE(1059), 1, - sym_string_content, - STATE(1092), 1, - sym_interpolation, - STATE(994), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(1867), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [49475] = 9, - ACTIONS(1865), 1, - anon_sym_LBRACE2, - ACTIONS(1869), 1, - anon_sym_BSLASH, - ACTIONS(1871), 1, - sym_comment, - ACTIONS(1949), 1, - sym__string_end, - STATE(909), 1, - aux_sym_string_repeat1, - STATE(1059), 1, - sym_string_content, - STATE(1092), 1, - sym_interpolation, - STATE(994), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(1867), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [49506] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1951), 1, - anon_sym_DOT, - ACTIONS(1953), 1, - anon_sym_LPAREN, - STATE(930), 1, - aux_sym_match_value_pattern_repeat1, - ACTIONS(1955), 8, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [49529] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1879), 1, - anon_sym_if, - ACTIONS(1881), 1, - anon_sym_and, - ACTIONS(1883), 1, - anon_sym_or, - ACTIONS(1907), 1, - anon_sym_async, - ACTIONS(1909), 1, - anon_sym_for, - ACTIONS(1931), 1, - anon_sym_COMMA, - ACTIONS(1933), 1, - anon_sym_COLON, - ACTIONS(1935), 1, - anon_sym_RBRACE, - STATE(960), 1, + STATE(932), 1, sym_for_in_clause, - STATE(1124), 1, + STATE(1099), 1, aux_sym__collection_elements_repeat1, - STATE(1421), 1, + STATE(1436), 1, sym__comprehension_clauses, - [49566] = 5, + [49150] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1913), 1, + ACTIONS(1837), 1, anon_sym_if, - ACTIONS(1915), 1, + ACTIONS(1839), 1, anon_sym_and, - ACTIONS(1917), 1, + ACTIONS(1841), 1, anon_sym_or, - ACTIONS(1923), 8, + ACTIONS(1949), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_else, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - [49589] = 4, + [49172] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1915), 1, - anon_sym_and, - ACTIONS(1917), 1, - anon_sym_or, - ACTIONS(1919), 9, + ACTIONS(1843), 1, anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1850), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [49610] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1951), 1, - anon_sym_DOT, - ACTIONS(1957), 1, - anon_sym_LPAREN, - STATE(907), 1, - aux_sym_match_value_pattern_repeat1, - ACTIONS(1959), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [49633] = 9, - ACTIONS(1865), 1, - anon_sym_LBRACE2, - ACTIONS(1869), 1, - anon_sym_BSLASH, - ACTIONS(1871), 1, - sym_comment, - ACTIONS(1961), 1, - sym__string_end, - STATE(933), 1, - aux_sym_string_repeat1, - STATE(1059), 1, - sym_string_content, - STATE(1092), 1, - sym_interpolation, - STATE(994), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(1867), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [49664] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1879), 1, - anon_sym_if, - ACTIONS(1881), 1, - anon_sym_and, - ACTIONS(1883), 1, - anon_sym_or, - ACTIONS(1907), 1, + ACTIONS(1852), 1, anon_sym_async, - ACTIONS(1909), 1, + ACTIONS(1854), 1, anon_sym_for, - ACTIONS(1931), 1, + ACTIONS(1856), 1, + anon_sym_and, + ACTIONS(1858), 1, + anon_sym_or, + ACTIONS(1884), 1, anon_sym_COMMA, - ACTIONS(1933), 1, - anon_sym_COLON, - ACTIONS(1935), 1, - anon_sym_RBRACE, - STATE(960), 1, + STATE(932), 1, sym_for_in_clause, - STATE(1124), 1, + STATE(1099), 1, aux_sym__collection_elements_repeat1, - STATE(1508), 1, + STATE(1378), 1, sym__comprehension_clauses, - [49701] = 9, - ACTIONS(1865), 1, - anon_sym_LBRACE2, - ACTIONS(1869), 1, - anon_sym_BSLASH, - ACTIONS(1871), 1, - sym_comment, - ACTIONS(1963), 1, - sym__string_end, - STATE(912), 1, - aux_sym_string_repeat1, - STATE(1059), 1, - sym_string_content, - STATE(1092), 1, - sym_interpolation, - STATE(994), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(1867), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [49732] = 5, + [49206] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1913), 1, - anon_sym_if, - ACTIONS(1915), 1, - anon_sym_and, - ACTIONS(1917), 1, - anon_sym_or, - ACTIONS(1943), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [49755] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1915), 1, - anon_sym_and, - ACTIONS(1917), 1, - anon_sym_or, - ACTIONS(1885), 9, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [49776] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1858), 11, - anon_sym_import, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [49793] = 9, - ACTIONS(1865), 1, - anon_sym_LBRACE2, - ACTIONS(1869), 1, - anon_sym_BSLASH, - ACTIONS(1871), 1, - sym_comment, - ACTIONS(1965), 1, - sym__string_end, - STATE(921), 1, - aux_sym_string_repeat1, - STATE(1059), 1, - sym_string_content, - STATE(1092), 1, - sym_interpolation, - STATE(994), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(1867), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [49824] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1915), 1, - anon_sym_and, - ACTIONS(1917), 1, - anon_sym_or, - ACTIONS(1927), 9, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [49845] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1915), 1, - anon_sym_and, - ACTIONS(1927), 10, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_or, - sym_type_conversion, - [49864] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1879), 1, - anon_sym_if, - ACTIONS(1881), 1, - anon_sym_and, - ACTIONS(1883), 1, - anon_sym_or, - ACTIONS(1907), 1, - anon_sym_async, - ACTIONS(1909), 1, - anon_sym_for, - ACTIONS(1931), 1, - anon_sym_COMMA, - ACTIONS(1967), 1, - anon_sym_RPAREN, - STATE(960), 1, - sym_for_in_clause, - STATE(1124), 1, - aux_sym__collection_elements_repeat1, - STATE(1476), 1, - sym__comprehension_clauses, - [49898] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1879), 1, - anon_sym_if, - ACTIONS(1881), 1, - anon_sym_and, - ACTIONS(1883), 1, - anon_sym_or, - ACTIONS(1907), 1, - anon_sym_async, - ACTIONS(1909), 1, - anon_sym_for, - ACTIONS(1931), 1, - anon_sym_COMMA, - ACTIONS(1935), 1, - anon_sym_RBRACK, - STATE(960), 1, - sym_for_in_clause, - STATE(1124), 1, - aux_sym__collection_elements_repeat1, - STATE(1493), 1, - sym__comprehension_clauses, - [49932] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1879), 1, - anon_sym_if, - ACTIONS(1881), 1, - anon_sym_and, - ACTIONS(1883), 1, - anon_sym_or, - ACTIONS(1907), 1, - anon_sym_async, - ACTIONS(1909), 1, - anon_sym_for, - ACTIONS(1931), 1, - anon_sym_COMMA, - ACTIONS(1935), 1, - anon_sym_RBRACK, - STATE(960), 1, - sym_for_in_clause, - STATE(1124), 1, - aux_sym__collection_elements_repeat1, - STATE(1422), 1, - sym__comprehension_clauses, - [49966] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1879), 1, - anon_sym_if, - ACTIONS(1881), 1, - anon_sym_and, - ACTIONS(1883), 1, - anon_sym_or, - ACTIONS(1907), 1, - anon_sym_async, - ACTIONS(1909), 1, - anon_sym_for, - ACTIONS(1969), 1, - anon_sym_RPAREN, - ACTIONS(1971), 1, - anon_sym_COMMA, - STATE(960), 1, - sym_for_in_clause, - STATE(1316), 1, - aux_sym_argument_list_repeat1, - STATE(1476), 1, - sym__comprehension_clauses, - [50000] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1975), 2, + ACTIONS(1953), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1973), 8, + ACTIONS(1951), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -65743,56 +63521,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [50018] = 5, + [49224] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1913), 1, + ACTIONS(1850), 1, anon_sym_if, - ACTIONS(1915), 1, - anon_sym_and, - ACTIONS(1917), 1, - anon_sym_or, - ACTIONS(1977), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [50040] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1879), 1, - anon_sym_if, - ACTIONS(1881), 1, - anon_sym_and, - ACTIONS(1883), 1, - anon_sym_or, - ACTIONS(1907), 1, + ACTIONS(1852), 1, anon_sym_async, - ACTIONS(1909), 1, + ACTIONS(1854), 1, anon_sym_for, - ACTIONS(1979), 1, + ACTIONS(1856), 1, + anon_sym_and, + ACTIONS(1858), 1, + anon_sym_or, + ACTIONS(1955), 1, anon_sym_RPAREN, - ACTIONS(1981), 1, + ACTIONS(1957), 1, anon_sym_COMMA, - STATE(960), 1, + STATE(932), 1, sym_for_in_clause, - STATE(1238), 1, + STATE(1216), 1, aux_sym_argument_list_repeat1, - STATE(1423), 1, + STATE(1436), 1, sym__comprehension_clauses, - [50074] = 5, + [49258] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1913), 1, + ACTIONS(1850), 1, anon_sym_if, - ACTIONS(1915), 1, + ACTIONS(1852), 1, + anon_sym_async, + ACTIONS(1854), 1, + anon_sym_for, + ACTIONS(1856), 1, anon_sym_and, - ACTIONS(1917), 1, + ACTIONS(1858), 1, anon_sym_or, - ACTIONS(1983), 7, + ACTIONS(1884), 1, + anon_sym_COMMA, + ACTIONS(1959), 1, + anon_sym_RPAREN, + STATE(932), 1, + sym_for_in_clause, + STATE(1099), 1, + aux_sym__collection_elements_repeat1, + STATE(1410), 1, + sym__comprehension_clauses, + [49292] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1850), 1, + anon_sym_if, + ACTIONS(1852), 1, + anon_sym_async, + ACTIONS(1854), 1, + anon_sym_for, + ACTIONS(1856), 1, + anon_sym_and, + ACTIONS(1858), 1, + anon_sym_or, + ACTIONS(1961), 1, + anon_sym_RPAREN, + ACTIONS(1963), 1, + anon_sym_COMMA, + STATE(932), 1, + sym_for_in_clause, + STATE(1271), 1, + aux_sym_argument_list_repeat1, + STATE(1410), 1, + sym__comprehension_clauses, + [49326] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1837), 1, + anon_sym_if, + ACTIONS(1839), 1, + anon_sym_and, + ACTIONS(1841), 1, + anon_sym_or, + ACTIONS(1965), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -65800,190 +63607,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - [50096] = 5, + [49348] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1913), 1, - anon_sym_if, - ACTIONS(1915), 1, - anon_sym_and, - ACTIONS(1917), 1, - anon_sym_or, - ACTIONS(1985), 7, + ACTIONS(1969), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1967), 8, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [49366] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1973), 1, + anon_sym_PIPE, + STATE(925), 1, + aux_sym_match_or_pattern_repeat1, + ACTIONS(1971), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [50118] = 5, + [49385] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1913), 1, + ACTIONS(1978), 1, anon_sym_if, - ACTIONS(1915), 1, - anon_sym_and, - ACTIONS(1917), 1, - anon_sym_or, + ACTIONS(1981), 1, + anon_sym_async, + ACTIONS(1984), 1, + anon_sym_for, + ACTIONS(1976), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(926), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [49408] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1989), 1, + anon_sym_PIPE, + STATE(925), 1, + aux_sym_match_or_pattern_repeat1, ACTIONS(1987), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [50140] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1879), 1, - anon_sym_if, - ACTIONS(1881), 1, - anon_sym_and, - ACTIONS(1883), 1, - anon_sym_or, - ACTIONS(1907), 1, - anon_sym_async, - ACTIONS(1909), 1, - anon_sym_for, - ACTIONS(1989), 1, - anon_sym_RPAREN, - ACTIONS(1991), 1, - anon_sym_COMMA, - STATE(960), 1, - sym_for_in_clause, - STATE(1289), 1, - aux_sym_argument_list_repeat1, - STATE(1510), 1, - sym__comprehension_clauses, - [50174] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1879), 1, - anon_sym_if, - ACTIONS(1881), 1, - anon_sym_and, - ACTIONS(1883), 1, - anon_sym_or, - ACTIONS(1907), 1, - anon_sym_async, - ACTIONS(1909), 1, - anon_sym_for, - ACTIONS(1931), 1, - anon_sym_COMMA, - ACTIONS(1993), 1, - anon_sym_RPAREN, - STATE(960), 1, - sym_for_in_clause, - STATE(1124), 1, - aux_sym__collection_elements_repeat1, - STATE(1510), 1, - sym__comprehension_clauses, - [50208] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1879), 1, - anon_sym_if, - ACTIONS(1881), 1, - anon_sym_and, - ACTIONS(1883), 1, - anon_sym_or, - ACTIONS(1907), 1, - anon_sym_async, - ACTIONS(1909), 1, - anon_sym_for, - ACTIONS(1931), 1, - anon_sym_COMMA, - ACTIONS(1935), 1, - anon_sym_RBRACK, - STATE(960), 1, - sym_for_in_clause, - STATE(1124), 1, - aux_sym__collection_elements_repeat1, - STATE(1509), 1, - sym__comprehension_clauses, - [50242] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1997), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1995), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [50260] = 11, + [49427] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, - anon_sym_if, - ACTIONS(1881), 1, + ACTIONS(1856), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(1858), 1, anon_sym_or, - ACTIONS(1900), 1, + ACTIONS(1991), 7, anon_sym_RPAREN, - ACTIONS(1907), 1, - anon_sym_async, - ACTIONS(1909), 1, - anon_sym_for, - ACTIONS(1931), 1, anon_sym_COMMA, - STATE(960), 1, - sym_for_in_clause, - STATE(1124), 1, - aux_sym__collection_elements_repeat1, - STATE(1423), 1, - sym__comprehension_clauses, - [50294] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2001), 1, anon_sym_if, - ACTIONS(2004), 1, anon_sym_async, - ACTIONS(2007), 1, anon_sym_for, - ACTIONS(1999), 3, - anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - STATE(955), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [50317] = 7, + [49446] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1913), 1, + ACTIONS(1837), 1, anon_sym_if, + ACTIONS(1839), 1, + anon_sym_and, + ACTIONS(1841), 1, + anon_sym_or, ACTIONS(1915), 1, - anon_sym_and, - ACTIONS(1917), 1, - anon_sym_or, - ACTIONS(1941), 1, anon_sym_COMMA, - STATE(988), 1, + STATE(954), 1, aux_sym_expression_list_repeat1, - ACTIONS(2010), 4, + ACTIONS(1993), 4, anon_sym_COLON, anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - [50342] = 4, + [49471] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2014), 1, + ACTIONS(1989), 1, anon_sym_PIPE, - STATE(961), 1, + STATE(927), 1, aux_sym_match_or_pattern_repeat1, - ACTIONS(2012), 7, + ACTIONS(1995), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -65991,29 +63717,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, - [50361] = 4, + [49490] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2014), 1, - anon_sym_PIPE, - STATE(957), 1, - aux_sym_match_or_pattern_repeat1, - ACTIONS(2016), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - [50380] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1881), 1, + ACTIONS(1856), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(1858), 1, anon_sym_or, - ACTIONS(2018), 7, + ACTIONS(1991), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -66021,298 +63732,209 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [50399] = 6, + [49509] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1907), 1, + ACTIONS(1852), 1, anon_sym_async, - ACTIONS(1909), 1, + ACTIONS(1854), 1, anon_sym_for, - ACTIONS(2022), 1, + ACTIONS(1999), 1, anon_sym_if, - ACTIONS(2020), 3, + ACTIONS(1997), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - STATE(962), 3, + STATE(934), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [50422] = 4, + [49532] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2026), 1, - anon_sym_PIPE, - STATE(961), 1, - aux_sym_match_or_pattern_repeat1, - ACTIONS(2024), 7, + ACTIONS(1856), 1, + anon_sym_and, + ACTIONS(1858), 1, + anon_sym_or, + ACTIONS(1991), 7, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [50441] = 6, + [49551] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1907), 1, + ACTIONS(1852), 1, anon_sym_async, - ACTIONS(1909), 1, + ACTIONS(1854), 1, anon_sym_for, - ACTIONS(2022), 1, + ACTIONS(1999), 1, anon_sym_if, - ACTIONS(2029), 3, + ACTIONS(2001), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - STATE(955), 3, + STATE(926), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [50464] = 4, + [49574] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(2003), 1, + anon_sym_if, + ACTIONS(2005), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(2007), 1, anon_sym_or, - ACTIONS(2018), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [50483] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1881), 1, - anon_sym_and, - ACTIONS(1883), 1, - anon_sym_or, - ACTIONS(2018), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [50502] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2031), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [50516] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2035), 1, - anon_sym_COMMA, - STATE(967), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2033), 6, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [50534] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2039), 1, - anon_sym_COMMA, - STATE(967), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2037), 6, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [50552] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2042), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [50566] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2044), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [50580] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2046), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [50594] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2048), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [50608] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2050), 1, - anon_sym_from, - ACTIONS(2052), 1, - anon_sym_COMMA, - ACTIONS(2054), 1, - anon_sym_if, - ACTIONS(2056), 1, - anon_sym_and, - ACTIONS(2058), 1, - anon_sym_or, - STATE(1099), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2060), 2, + ACTIONS(1943), 5, sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_EQ, anon_sym_SEMI, - [50634] = 7, + [49594] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2009), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [49608] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2011), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [49622] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2013), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [49636] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2005), 1, + anon_sym_and, + ACTIONS(2007), 1, + anon_sym_or, + ACTIONS(1878), 6, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_if, + anon_sym_EQ, + anon_sym_SEMI, + [49654] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2015), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [49668] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2017), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [49682] = 6, + ACTIONS(1874), 1, + sym_comment, + ACTIONS(2019), 1, + anon_sym_LBRACE2, + ACTIONS(2023), 1, + anon_sym_BSLASH, + ACTIONS(2025), 1, + sym__string_end, + STATE(952), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(2021), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [49704] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2005), 1, + anon_sym_and, + ACTIONS(2007), 1, + anon_sym_or, + ACTIONS(1917), 6, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_if, + anon_sym_EQ, + anon_sym_SEMI, + [49722] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(67), 1, anon_sym_AT, - ACTIONS(2062), 1, + ACTIONS(2027), 1, anon_sym_async, - ACTIONS(2064), 1, + ACTIONS(2029), 1, anon_sym_def, - ACTIONS(2066), 1, + ACTIONS(2031), 1, anon_sym_class, - STATE(573), 2, + STATE(472), 2, sym_function_definition, sym_class_definition, - STATE(1086), 2, + STATE(1058), 2, sym_decorator, aux_sym_decorated_definition_repeat1, - [50658] = 2, + [49746] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2068), 8, - anon_sym_RPAREN, + ACTIONS(2035), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [50672] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2070), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [50686] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1951), 1, - anon_sym_DOT, - ACTIONS(1953), 1, - anon_sym_LPAREN, - ACTIONS(2072), 1, - anon_sym_EQ, - STATE(930), 1, - aux_sym_match_value_pattern_repeat1, - ACTIONS(1955), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [50708] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2076), 1, - anon_sym_COMMA, - STATE(981), 1, + STATE(958), 1, aux_sym_for_in_clause_repeat1, - ACTIONS(2074), 6, + ACTIONS(2033), 6, anon_sym_RPAREN, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [50726] = 7, + [49764] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(870), 1, - anon_sym_except_STAR, - ACTIONS(878), 1, - anon_sym_except, - ACTIONS(2078), 1, - anon_sym_finally, - STATE(568), 1, - sym_finally_clause, - STATE(247), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - STATE(248), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - [50750] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2054), 1, - anon_sym_if, - ACTIONS(2056), 1, - anon_sym_and, - ACTIONS(2058), 1, - anon_sym_or, - ACTIONS(1875), 5, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_SEMI, - [50770] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2080), 8, + ACTIONS(2037), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -66321,35 +63943,307 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [50784] = 4, + [49778] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2084), 1, + ACTIONS(2003), 1, + anon_sym_if, + ACTIONS(2005), 1, + anon_sym_and, + ACTIONS(2007), 1, + anon_sym_or, + ACTIONS(1892), 5, + sym__newline, + anon_sym_from, anon_sym_COMMA, - STATE(981), 1, + anon_sym_EQ, + anon_sym_SEMI, + [49798] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2041), 1, + anon_sym_COMMA, + STATE(982), 1, aux_sym_for_in_clause_repeat1, - ACTIONS(2082), 6, + ACTIONS(2039), 6, anon_sym_RPAREN, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [50802] = 4, + [49816] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(2045), 1, + anon_sym_COMMA, + STATE(983), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2043), 6, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + [49834] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2047), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [49848] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2049), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [49862] = 6, + ACTIONS(1874), 1, + sym_comment, + ACTIONS(2051), 1, + anon_sym_LBRACE2, ACTIONS(2056), 1, + anon_sym_BSLASH, + ACTIONS(2059), 1, + sym__string_end, + STATE(952), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(2053), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [49884] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2061), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [49898] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2063), 1, + anon_sym_COMMA, + STATE(983), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2043), 6, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + [49916] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2065), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [49930] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2003), 1, + anon_sym_if, + ACTIONS(2005), 1, anon_sym_and, - ACTIONS(2058), 1, + ACTIONS(2007), 1, anon_sym_or, - ACTIONS(1919), 6, + ACTIONS(1835), 5, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_SEMI, + [49950] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2005), 1, + anon_sym_and, + ACTIONS(1917), 7, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_if, + anon_sym_EQ, + anon_sym_or, + anon_sym_SEMI, + [49966] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_COMMA, + STATE(982), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(2067), 6, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + [49984] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2071), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [49998] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2075), 1, + anon_sym_PIPE, + ACTIONS(2073), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + [50014] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2077), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [50028] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1385), 8, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_if, + anon_sym_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_SEMI, + [50042] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1856), 1, + anon_sym_and, + ACTIONS(1858), 1, + anon_sym_or, + ACTIONS(2079), 6, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + [50060] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2005), 1, + anon_sym_and, + ACTIONS(2007), 1, + anon_sym_or, + ACTIONS(1894), 6, sym__newline, anon_sym_from, anon_sym_COMMA, anon_sym_if, anon_sym_EQ, anon_sym_SEMI, - [50820] = 2, + [50078] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2081), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [50092] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1925), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [50106] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2083), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [50120] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1826), 8, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_if, + anon_sym_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_SEMI, + [50134] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2085), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [50148] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2087), 8, @@ -66361,24 +64255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [50834] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(870), 1, - anon_sym_except_STAR, - ACTIONS(878), 1, - anon_sym_except, - ACTIONS(2078), 1, - anon_sym_finally, - STATE(513), 1, - sym_finally_clause, - STATE(239), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - STATE(244), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - [50858] = 2, + [50162] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2089), 8, @@ -66390,48 +64267,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [50872] = 2, + [50176] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(2003), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [50886] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2054), 1, - anon_sym_if, - ACTIONS(2056), 1, + ACTIONS(2005), 1, anon_sym_and, - ACTIONS(2058), 1, + ACTIONS(2007), 1, anon_sym_or, - ACTIONS(1943), 5, + ACTIONS(1866), 5, sym__newline, anon_sym_from, anon_sym_COMMA, anon_sym_EQ, anon_sym_SEMI, - [50906] = 4, + [50196] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2093), 1, anon_sym_COMMA, - STATE(967), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2033), 6, + STATE(948), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(2091), 6, anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [50924] = 2, + [50214] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2095), 8, @@ -66443,53 +64308,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [50938] = 4, + [50228] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2099), 1, - anon_sym_COMMA, - STATE(1007), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(2097), 6, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [50956] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2101), 8, + ACTIONS(1860), 1, + anon_sym_DOT, + ACTIONS(1909), 1, + anon_sym_LPAREN, + ACTIONS(2097), 1, + anon_sym_EQ, + STATE(880), 1, + aux_sym_match_value_pattern_repeat1, + ACTIONS(1911), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [50970] = 7, + [50250] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(860), 1, - anon_sym_except, - ACTIONS(876), 1, - anon_sym_except_STAR, - ACTIONS(2103), 1, - anon_sym_finally, - STATE(525), 1, - sym_finally_clause, - STATE(242), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - STATE(243), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - [50994] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1429), 8, + ACTIONS(1822), 8, sym__newline, anon_sym_from, anon_sym_COMMA, @@ -66498,23 +64336,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_SEMI, - [51008] = 6, - ACTIONS(1871), 1, + [50264] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(2105), 1, - anon_sym_LBRACE2, + ACTIONS(67), 1, + anon_sym_AT, + ACTIONS(2099), 1, + anon_sym_async, + ACTIONS(2101), 1, + anon_sym_def, + ACTIONS(2103), 1, + anon_sym_class, + STATE(496), 2, + sym_function_definition, + sym_class_definition, + STATE(1058), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + [50288] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2105), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [50302] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2003), 1, + anon_sym_if, + ACTIONS(2005), 1, + anon_sym_and, + ACTIONS(2007), 1, + anon_sym_or, + ACTIONS(2107), 1, + anon_sym_from, ACTIONS(2109), 1, - anon_sym_BSLASH, - ACTIONS(2111), 1, - sym__string_end, - STATE(1005), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(2107), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [51030] = 2, + anon_sym_COMMA, + STATE(1068), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2111), 2, + sym__newline, + anon_sym_SEMI, + [50328] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2113), 8, @@ -66526,34 +64395,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [51044] = 2, + [50342] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1854), 8, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_if, - anon_sym_EQ, - anon_sym_and, - anon_sym_or, - anon_sym_SEMI, - [51058] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1850), 8, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_if, - anon_sym_EQ, - anon_sym_and, - anon_sym_or, - anon_sym_SEMI, - [51072] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2115), 8, + ACTIONS(1971), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -66562,270 +64407,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [51086] = 7, + [50356] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, - anon_sym_AT, ACTIONS(2117), 1, + anon_sym_COMMA, + STATE(982), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(2115), 6, + anon_sym_RPAREN, + anon_sym_if, anon_sym_async, - ACTIONS(2119), 1, - anon_sym_def, - ACTIONS(2121), 1, - anon_sym_class, - STATE(567), 2, - sym_function_definition, - sym_class_definition, - STATE(1086), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - [51110] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2024), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, + anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [51124] = 2, + [50374] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2123), 8, - anon_sym_RPAREN, + ACTIONS(2122), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, + STATE(983), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2120), 6, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [51138] = 2, + anon_sym_EQ, + sym_type_conversion, + [50392] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2125), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [51152] = 3, + ACTIONS(2125), 1, + anon_sym_except, + ACTIONS(2127), 1, + anon_sym_finally, + STATE(497), 1, + sym_finally_clause, + STATE(236), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + STATE(238), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + [50413] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2129), 1, - anon_sym_PIPE, - ACTIONS(2127), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - [51168] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1881), 1, - anon_sym_and, - ACTIONS(1883), 1, - anon_sym_or, - ACTIONS(2131), 6, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [51186] = 6, - ACTIONS(1871), 1, - sym_comment, - ACTIONS(2133), 1, - anon_sym_LBRACE2, - ACTIONS(2138), 1, - anon_sym_BSLASH, - ACTIONS(2141), 1, - sym__string_end, - STATE(1005), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(2135), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [51208] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2143), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [51222] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2147), 1, - anon_sym_COMMA, - STATE(981), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(2145), 6, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [51240] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2054), 1, - anon_sym_if, - ACTIONS(2056), 1, - anon_sym_and, - ACTIONS(2058), 1, - anon_sym_or, - ACTIONS(1983), 5, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_SEMI, - [51260] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(860), 1, anon_sym_except, - ACTIONS(876), 1, - anon_sym_except_STAR, - ACTIONS(2103), 1, + ACTIONS(2131), 1, anon_sym_finally, - STATE(580), 1, + STATE(471), 1, sym_finally_clause, - STATE(237), 2, + STATE(226), 2, sym_except_clause, aux_sym_try_statement_repeat1, - STATE(250), 2, + STATE(228), 2, sym_except_group_clause, aux_sym_try_statement_repeat2, - [51284] = 2, + [50434] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1863), 8, + ACTIONS(1385), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [51298] = 5, + anon_sym_and, + anon_sym_or, + [50447] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2054), 1, + ACTIONS(2133), 1, anon_sym_if, - ACTIONS(2056), 1, + ACTIONS(2135), 1, anon_sym_and, - ACTIONS(2058), 1, + ACTIONS(2137), 1, anon_sym_or, - ACTIONS(1923), 5, + ACTIONS(1866), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + [50466] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2133), 1, + anon_sym_if, + ACTIONS(2135), 1, + anon_sym_and, + ACTIONS(2137), 1, + anon_sym_or, + ACTIONS(1835), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + [50485] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2003), 1, + anon_sym_if, + ACTIONS(2005), 1, + anon_sym_and, + ACTIONS(2007), 1, + anon_sym_or, + ACTIONS(1949), 4, sym__newline, anon_sym_from, anon_sym_COMMA, - anon_sym_EQ, anon_sym_SEMI, - [51318] = 2, + [50504] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2149), 8, + ACTIONS(2003), 1, + anon_sym_if, + ACTIONS(2005), 1, + anon_sym_and, + ACTIONS(2007), 1, + anon_sym_or, + ACTIONS(1945), 4, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_SEMI, + [50523] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2139), 1, + sym_identifier, + ACTIONS(2141), 1, + anon_sym_STAR, + ACTIONS(2143), 1, + anon_sym_STAR_STAR, + STATE(1201), 4, + sym_typevar_parameter, + sym_typevartuple_parameter, + sym_paramspec_parameter, + sym__type_parameter, + [50542] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2135), 1, + anon_sym_and, + ACTIONS(2137), 1, + anon_sym_or, + ACTIONS(1917), 5, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [51332] = 4, + [50559] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2056), 1, - anon_sym_and, - ACTIONS(2058), 1, - anon_sym_or, - ACTIONS(1885), 6, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_if, - anon_sym_EQ, - anon_sym_SEMI, - [51350] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2153), 1, - anon_sym_COMMA, - STATE(977), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(2151), 6, + ACTIONS(2145), 7, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [51368] = 2, + [50572] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2155), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [51382] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2056), 1, - anon_sym_and, - ACTIONS(2058), 1, - anon_sym_or, - ACTIONS(1927), 6, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_if, - anon_sym_EQ, - anon_sym_SEMI, - [51400] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2056), 1, - anon_sym_and, - ACTIONS(1927), 7, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_if, - anon_sym_EQ, - anon_sym_or, - anon_sym_SEMI, - [51416] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1987), 7, + ACTIONS(1945), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -66833,234 +64581,442 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - [51429] = 8, + [50585] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1913), 1, + ACTIONS(2003), 1, anon_sym_if, - ACTIONS(1915), 1, + ACTIONS(2005), 1, anon_sym_and, - ACTIONS(1917), 1, + ACTIONS(2007), 1, anon_sym_or, - ACTIONS(2157), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2159), 1, - anon_sym_COLON, - ACTIONS(2161), 1, - anon_sym_RBRACK, - STATE(1251), 1, - aux_sym_subscript_repeat1, - [51454] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1907), 1, - anon_sym_async, - ACTIONS(1909), 1, - anon_sym_for, - ACTIONS(2163), 1, - anon_sym_COMMA, - ACTIONS(2165), 1, - anon_sym_RBRACE, - STATE(960), 1, - sym_for_in_clause, - STATE(1254), 1, - aux_sym_dictionary_repeat1, - STATE(1506), 1, - sym__comprehension_clauses, - [51479] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1907), 1, - anon_sym_async, - ACTIONS(1909), 1, - anon_sym_for, - ACTIONS(2167), 1, - anon_sym_COMMA, - ACTIONS(2169), 1, - anon_sym_RBRACE, - STATE(960), 1, - sym_for_in_clause, - STATE(1246), 1, - aux_sym_dictionary_repeat1, - STATE(1420), 1, - sym__comprehension_clauses, - [51504] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2054), 1, - anon_sym_if, - ACTIONS(2056), 1, - anon_sym_and, - ACTIONS(2058), 1, - anon_sym_or, - ACTIONS(1987), 4, + STATE(1068), 1, + aux_sym_expression_list_repeat1, + ACTIONS(1913), 2, sym__newline, - anon_sym_from, - anon_sym_COMMA, anon_sym_SEMI, - [51523] = 7, + [50608] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2171), 1, - sym_identifier, - ACTIONS(2173), 1, - anon_sym_DOT, - ACTIONS(2175), 1, - anon_sym___future__, - STATE(1143), 1, - aux_sym_import_prefix_repeat1, - STATE(1340), 1, - sym_import_prefix, - STATE(1453), 2, - sym_relative_import, - sym_dotted_name, - [51546] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1913), 1, - anon_sym_if, - ACTIONS(1915), 1, + ACTIONS(2135), 1, anon_sym_and, - ACTIONS(1917), 1, + ACTIONS(1917), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_or, - ACTIONS(2177), 4, + [50623] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1837), 1, + anon_sym_if, + ACTIONS(1839), 1, + anon_sym_and, + ACTIONS(1841), 1, + anon_sym_or, + ACTIONS(2147), 1, + anon_sym_COMMA, + ACTIONS(2149), 1, + anon_sym_COLON, + ACTIONS(2151), 1, + anon_sym_RBRACK, + STATE(1219), 1, + aux_sym_subscript_repeat1, + [50648] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2003), 1, + anon_sym_if, + ACTIONS(2005), 1, + anon_sym_and, + ACTIONS(2007), 1, + anon_sym_or, + ACTIONS(2109), 1, + anon_sym_COMMA, + STATE(1068), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2153), 2, + sym__newline, + anon_sym_SEMI, + [50671] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1837), 1, + anon_sym_if, + ACTIONS(1839), 1, + anon_sym_and, + ACTIONS(1841), 1, + anon_sym_or, + ACTIONS(2155), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RBRACE, + [50690] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2133), 1, + anon_sym_if, + ACTIONS(2135), 1, + anon_sym_and, + ACTIONS(2137), 1, + anon_sym_or, + ACTIONS(2159), 1, + anon_sym_as, + ACTIONS(2157), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + [50711] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2003), 1, + anon_sym_if, + ACTIONS(2005), 1, + anon_sym_and, + ACTIONS(2007), 1, + anon_sym_or, + ACTIONS(2109), 1, + anon_sym_COMMA, + STATE(1068), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2161), 2, + sym__newline, + anon_sym_SEMI, + [50734] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1850), 1, + anon_sym_if, + ACTIONS(1856), 1, + anon_sym_and, + ACTIONS(1858), 1, + anon_sym_or, + ACTIONS(2163), 4, + anon_sym_COMMA, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [50753] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2129), 1, + anon_sym_except, + ACTIONS(2131), 1, + anon_sym_finally, + STATE(490), 1, + sym_finally_clause, + STATE(218), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + STATE(235), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + [50774] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2115), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + [50787] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2165), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + [50800] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2003), 1, + anon_sym_if, + ACTIONS(2005), 1, + anon_sym_and, + ACTIONS(2007), 1, + anon_sym_or, + ACTIONS(2109), 1, + anon_sym_COMMA, + STATE(1068), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2167), 2, + sym__newline, + anon_sym_SEMI, + [50823] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2135), 1, + anon_sym_and, + ACTIONS(2137), 1, + anon_sym_or, + ACTIONS(1894), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + [50840] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1837), 1, + anon_sym_if, + ACTIONS(1839), 1, + anon_sym_and, + ACTIONS(1841), 1, + anon_sym_or, + ACTIONS(2169), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [51565] = 5, + [50859] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1913), 1, + ACTIONS(2003), 1, anon_sym_if, - ACTIONS(1915), 1, + ACTIONS(2005), 1, anon_sym_and, - ACTIONS(1917), 1, + ACTIONS(2007), 1, anon_sym_or, - ACTIONS(2179), 4, + ACTIONS(2171), 1, + anon_sym_COMMA, + STATE(1154), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(2173), 2, + sym__newline, + anon_sym_SEMI, + [50882] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2133), 1, + anon_sym_if, + ACTIONS(2135), 1, + anon_sym_and, + ACTIONS(2137), 1, + anon_sym_or, + ACTIONS(1892), 4, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RBRACE, - [51584] = 7, + anon_sym_as, + anon_sym_COLON, + [50901] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2054), 1, + ACTIONS(2003), 1, anon_sym_if, - ACTIONS(2056), 1, + ACTIONS(2005), 1, anon_sym_and, - ACTIONS(2058), 1, + ACTIONS(2007), 1, + anon_sym_or, + ACTIONS(2171), 1, + anon_sym_COMMA, + STATE(1116), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(2175), 2, + sym__newline, + anon_sym_SEMI, + [50924] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1837), 1, + anon_sym_if, + ACTIONS(1839), 1, + anon_sym_and, + ACTIONS(1841), 1, + anon_sym_or, + ACTIONS(2149), 1, + anon_sym_COLON, + ACTIONS(2177), 1, + anon_sym_COMMA, + ACTIONS(2179), 1, + anon_sym_RBRACK, + STATE(1252), 1, + aux_sym_subscript_repeat1, + [50949] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2135), 1, + anon_sym_and, + ACTIONS(2137), 1, + anon_sym_or, + ACTIONS(1878), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + [50966] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2003), 1, + anon_sym_if, + ACTIONS(2005), 1, + anon_sym_and, + ACTIONS(2007), 1, anon_sym_or, ACTIONS(2181), 1, anon_sym_COMMA, - STATE(1131), 1, + STATE(1122), 1, aux_sym_print_statement_repeat1, ACTIONS(2183), 2, sym__newline, anon_sym_SEMI, - [51607] = 7, + [50989] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2054), 1, - anon_sym_if, - ACTIONS(2056), 1, - anon_sym_and, - ACTIONS(2058), 1, - anon_sym_or, ACTIONS(2185), 1, - anon_sym_COMMA, - STATE(1192), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(2187), 2, - sym__newline, - anon_sym_SEMI, - [51630] = 2, + sym_identifier, + ACTIONS(2187), 1, + anon_sym_DOT, + ACTIONS(2189), 1, + anon_sym___future__, + STATE(1144), 1, + aux_sym_import_prefix_repeat1, + STATE(1284), 1, + sym_import_prefix, + STATE(1391), 2, + sym_relative_import, + sym_dotted_name, + [51012] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2189), 7, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(2139), 1, + sym_identifier, + ACTIONS(2141), 1, + anon_sym_STAR, + ACTIONS(2143), 1, + anon_sym_STAR_STAR, + STATE(1342), 4, + sym_typevar_parameter, + sym_typevartuple_parameter, + sym_paramspec_parameter, + sym__type_parameter, + [51031] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2003), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [51643] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1907), 1, - anon_sym_async, - ACTIONS(1909), 1, - anon_sym_for, - ACTIONS(2191), 1, - anon_sym_COMMA, - ACTIONS(2193), 1, - anon_sym_RBRACE, - STATE(960), 1, - sym_for_in_clause, - STATE(1279), 1, - aux_sym_dictionary_repeat1, - STATE(1496), 1, - sym__comprehension_clauses, - [51668] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1913), 1, - anon_sym_if, - ACTIONS(1915), 1, + ACTIONS(2005), 1, anon_sym_and, - ACTIONS(1917), 1, + ACTIONS(2007), 1, anon_sym_or, - ACTIONS(2159), 1, - anon_sym_COLON, - ACTIONS(2195), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2197), 1, - anon_sym_RBRACK, - STATE(1292), 1, - aux_sym_subscript_repeat1, - [51693] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [51706] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2082), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [51719] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2052), 1, - anon_sym_COMMA, - ACTIONS(2054), 1, - anon_sym_if, - ACTIONS(2056), 1, - anon_sym_and, - ACTIONS(2058), 1, - anon_sym_or, - STATE(1099), 1, + STATE(1068), 1, aux_sym_expression_list_repeat1, - ACTIONS(2201), 2, + ACTIONS(2191), 2, sym__newline, anon_sym_SEMI, - [51742] = 2, + [51054] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1939), 7, + ACTIONS(1852), 1, + anon_sym_async, + ACTIONS(1854), 1, + anon_sym_for, + ACTIONS(2193), 1, + anon_sym_COMMA, + ACTIONS(2195), 1, + anon_sym_RBRACE, + STATE(932), 1, + sym_for_in_clause, + STATE(1195), 1, + aux_sym_dictionary_repeat1, + STATE(1460), 1, + sym__comprehension_clauses, + [51079] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2125), 1, + anon_sym_except, + ACTIONS(2127), 1, + anon_sym_finally, + STATE(510), 1, + sym_finally_clause, + STATE(229), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + STATE(233), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + [51100] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1837), 1, + anon_sym_if, + ACTIONS(1839), 1, + anon_sym_and, + ACTIONS(1841), 1, + anon_sym_or, + ACTIONS(2149), 1, + anon_sym_COLON, + ACTIONS(2197), 1, + anon_sym_COMMA, + ACTIONS(2199), 1, + anon_sym_RBRACK, + STATE(1274), 1, + aux_sym_subscript_repeat1, + [51125] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1852), 1, + anon_sym_async, + ACTIONS(1854), 1, + anon_sym_for, + ACTIONS(2201), 1, + anon_sym_COMMA, + ACTIONS(2203), 1, + anon_sym_RBRACE, + STATE(932), 1, + sym_for_in_clause, + STATE(1256), 1, + aux_sym_dictionary_repeat1, + STATE(1383), 1, + sym__comprehension_clauses, + [51150] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2205), 1, + sym_identifier, + ACTIONS(2207), 1, + anon_sym_LPAREN, + ACTIONS(2209), 1, + anon_sym_STAR, + STATE(1098), 1, + sym_dotted_name, + STATE(1139), 1, + sym_aliased_import, + STATE(1318), 1, + sym_wildcard_import, + STATE(1358), 1, + sym__import_list, + [51175] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1822), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + [51188] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1913), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -67068,5654 +65024,5259 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - [51755] = 7, + [51201] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2052), 1, + ACTIONS(1826), 7, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2054), 1, + anon_sym_as, anon_sym_if, - ACTIONS(2056), 1, + anon_sym_COLON, anon_sym_and, - ACTIONS(2058), 1, anon_sym_or, - STATE(1099), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2203), 2, - sym__newline, - anon_sym_SEMI, - [51778] = 5, + [51214] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2205), 1, - sym_identifier, - ACTIONS(2207), 1, - anon_sym_STAR, - ACTIONS(2209), 1, - anon_sym_STAR_STAR, - STATE(1301), 4, - sym_typevar_parameter, - sym_typevartuple_parameter, - sym_paramspec_parameter, - sym__type_parameter, - [51797] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2054), 1, - anon_sym_if, - ACTIONS(2056), 1, - anon_sym_and, - ACTIONS(2058), 1, - anon_sym_or, - ACTIONS(1977), 4, - sym__newline, - anon_sym_from, + ACTIONS(2213), 1, + anon_sym_as, + ACTIONS(2211), 6, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_SEMI, - [51816] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2052), 1, - anon_sym_COMMA, - ACTIONS(2054), 1, anon_sym_if, - ACTIONS(2056), 1, - anon_sym_and, - ACTIONS(2058), 1, - anon_sym_or, - STATE(1099), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2211), 2, - sym__newline, - anon_sym_SEMI, - [51839] = 5, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + [51229] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2205), 1, - sym_identifier, - ACTIONS(2207), 1, - anon_sym_STAR, - ACTIONS(2209), 1, - anon_sym_STAR_STAR, - STATE(1383), 4, - sym_typevar_parameter, - sym_typevartuple_parameter, - sym_paramspec_parameter, - sym__type_parameter, - [51858] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2052), 1, - anon_sym_COMMA, - ACTIONS(2054), 1, - anon_sym_if, - ACTIONS(2056), 1, - anon_sym_and, - ACTIONS(2058), 1, - anon_sym_or, - STATE(1099), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2213), 2, - sym__newline, - anon_sym_SEMI, - [51881] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1879), 1, - anon_sym_if, - ACTIONS(1881), 1, - anon_sym_and, - ACTIONS(1883), 1, - anon_sym_or, - ACTIONS(2215), 4, - anon_sym_COMMA, + ACTIONS(1852), 1, anon_sym_async, + ACTIONS(1854), 1, anon_sym_for, + ACTIONS(2215), 1, + anon_sym_COMMA, + ACTIONS(2217), 1, anon_sym_RBRACE, - [51900] = 7, + STATE(932), 1, + sym_for_in_clause, + STATE(1236), 1, + aux_sym_dictionary_repeat1, + STATE(1407), 1, + sym__comprehension_clauses, + [51254] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2052), 1, - anon_sym_COMMA, - ACTIONS(2054), 1, + ACTIONS(1837), 1, anon_sym_if, - ACTIONS(2056), 1, + ACTIONS(1839), 1, anon_sym_and, - ACTIONS(2058), 1, + ACTIONS(1841), 1, anon_sym_or, - STATE(1099), 1, - aux_sym_expression_list_repeat1, - ACTIONS(1939), 2, - sym__newline, - anon_sym_SEMI, - [51923] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1850), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_and, - anon_sym_or, - [51936] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2219), 1, - anon_sym_as, - ACTIONS(2217), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - [51951] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1854), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_and, - anon_sym_or, - [51964] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2221), 1, - anon_sym_and, - ACTIONS(2223), 1, - anon_sym_or, - ACTIONS(1919), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [51981] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2221), 1, - anon_sym_and, - ACTIONS(2223), 1, - anon_sym_or, - ACTIONS(2225), 1, - anon_sym_if, - ACTIONS(1943), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_COLON, - [52000] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2221), 1, - anon_sym_and, - ACTIONS(2223), 1, - anon_sym_or, - ACTIONS(1885), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [52017] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2221), 1, - anon_sym_and, - ACTIONS(2223), 1, - anon_sym_or, - ACTIONS(2225), 1, - anon_sym_if, - ACTIONS(2229), 1, - anon_sym_as, - ACTIONS(2227), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - [52038] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2054), 1, - anon_sym_if, - ACTIONS(2056), 1, - anon_sym_and, - ACTIONS(2058), 1, - anon_sym_or, - ACTIONS(2185), 1, - anon_sym_COMMA, - STATE(1206), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(2231), 2, - sym__newline, - anon_sym_SEMI, - [52061] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2221), 1, - anon_sym_and, - ACTIONS(1927), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_or, - [52076] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2221), 1, - anon_sym_and, - ACTIONS(2223), 1, - anon_sym_or, - ACTIONS(1927), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [52093] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1429), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_and, - anon_sym_or, - [52106] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2221), 1, - anon_sym_and, - ACTIONS(2223), 1, - anon_sym_or, - ACTIONS(2225), 1, - anon_sym_if, - ACTIONS(1875), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_COLON, - [52125] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1913), 1, - anon_sym_if, ACTIONS(1915), 1, - anon_sym_and, - ACTIONS(1917), 1, - anon_sym_or, - ACTIONS(2159), 1, - anon_sym_COLON, - ACTIONS(2233), 1, anon_sym_COMMA, - ACTIONS(2235), 1, - anon_sym_RBRACK, - STATE(1320), 1, - aux_sym_subscript_repeat1, - [52150] = 5, + ACTIONS(2219), 1, + anon_sym_COLON, + STATE(954), 1, + aux_sym_expression_list_repeat1, + [51276] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2221), 1, + ACTIONS(2003), 1, + anon_sym_if, + ACTIONS(2005), 1, anon_sym_and, - ACTIONS(2223), 1, + ACTIONS(2007), 1, + anon_sym_or, + ACTIONS(2221), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_SEMI, + [51294] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1837), 1, + anon_sym_if, + ACTIONS(1839), 1, + anon_sym_and, + ACTIONS(1841), 1, anon_sym_or, ACTIONS(2225), 1, - anon_sym_if, - ACTIONS(1923), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_COLON, - [52169] = 8, + ACTIONS(2223), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [51314] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2237), 1, - sym_identifier, - ACTIONS(2239), 1, - anon_sym_LPAREN, - ACTIONS(2241), 1, - anon_sym_STAR, - STATE(1125), 1, - sym_dotted_name, - STATE(1155), 1, - sym_aliased_import, - STATE(1349), 1, - sym__import_list, - STATE(1396), 1, - sym_wildcard_import, - [52194] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2243), 1, + ACTIONS(2227), 1, anon_sym_DOT, - STATE(1076), 1, + STATE(1035), 1, aux_sym_match_value_pattern_repeat1, - ACTIONS(2245), 4, + ACTIONS(2229), 4, sym__newline, anon_sym_COMMA, anon_sym_as, anon_sym_SEMI, - [52210] = 3, - ACTIONS(1871), 1, + [51330] = 3, + ACTIONS(1874), 1, sym_comment, - ACTIONS(2247), 2, + ACTIONS(2231), 2, anon_sym_LBRACE2, anon_sym_BSLASH, - ACTIONS(2249), 4, + ACTIONS(2233), 4, sym__string_content, sym__string_end, sym__escape_interpolation, sym_escape_sequence, - [52224] = 4, + [51344] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2253), 1, + ACTIONS(2003), 1, + anon_sym_if, + ACTIONS(2005), 1, + anon_sym_and, + ACTIONS(2007), 1, + anon_sym_or, + ACTIONS(2235), 3, + sym__newline, anon_sym_COMMA, - STATE(1060), 1, + anon_sym_SEMI, + [51362] = 3, + ACTIONS(1874), 1, + sym_comment, + ACTIONS(2237), 2, + anon_sym_LBRACE2, + anon_sym_BSLASH, + ACTIONS(2239), 4, + sym__string_content, + sym__string_end, + sym__escape_interpolation, + sym_escape_sequence, + [51376] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2227), 1, + anon_sym_DOT, + STATE(1050), 1, + aux_sym_match_value_pattern_repeat1, + ACTIONS(2241), 4, + sym__newline, + anon_sym_COMMA, + anon_sym_as, + anon_sym_SEMI, + [51392] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2243), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + [51404] = 3, + ACTIONS(1874), 1, + sym_comment, + ACTIONS(2245), 2, + anon_sym_LBRACE2, + anon_sym_BSLASH, + ACTIONS(2247), 4, + sym__string_content, + sym__string_end, + sym__escape_interpolation, + sym_escape_sequence, + [51418] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2133), 1, + anon_sym_if, + ACTIONS(2135), 1, + anon_sym_and, + ACTIONS(2137), 1, + anon_sym_or, + ACTIONS(2251), 1, + anon_sym_COLON, + ACTIONS(2249), 2, + anon_sym_COMMA, + anon_sym_as, + [51438] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1837), 1, + anon_sym_if, + ACTIONS(1839), 1, + anon_sym_and, + ACTIONS(1841), 1, + anon_sym_or, + ACTIONS(2253), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + [51456] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + anon_sym_COMMA, + STATE(1040), 1, aux_sym_open_sequence_match_pattern_repeat1, - ACTIONS(2251), 4, + ACTIONS(2255), 4, anon_sym_RPAREN, anon_sym_if, anon_sym_COLON, anon_sym_RBRACK, - [52240] = 4, + [51472] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1951), 1, + ACTIONS(1837), 1, + anon_sym_if, + ACTIONS(1839), 1, + anon_sym_and, + ACTIONS(1841), 1, + anon_sym_or, + ACTIONS(2149), 1, + anon_sym_COLON, + ACTIONS(2260), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [51492] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1860), 1, anon_sym_DOT, - STATE(907), 1, + STATE(877), 1, aux_sym_match_value_pattern_repeat1, - ACTIONS(2256), 4, + ACTIONS(2241), 4, anon_sym_import, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - [52256] = 7, + [51508] = 3, + ACTIONS(1874), 1, + sym_comment, + ACTIONS(2262), 2, + anon_sym_LBRACE2, + anon_sym_BSLASH, + ACTIONS(2264), 4, + sym__string_content, + sym__string_end, + sym__escape_interpolation, + sym_escape_sequence, + [51522] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1913), 1, + ACTIONS(1837), 1, anon_sym_if, - ACTIONS(1915), 1, + ACTIONS(1839), 1, anon_sym_and, - ACTIONS(1917), 1, + ACTIONS(1841), 1, anon_sym_or, - ACTIONS(1941), 1, + ACTIONS(1915), 1, anon_sym_COMMA, - ACTIONS(2258), 1, + ACTIONS(2266), 1, anon_sym_COLON, - STATE(988), 1, + STATE(954), 1, aux_sym_expression_list_repeat1, - [52278] = 3, - ACTIONS(1871), 1, + [51544] = 3, + ACTIONS(1874), 1, sym_comment, - ACTIONS(2260), 2, + ACTIONS(2268), 2, anon_sym_LBRACE2, anon_sym_BSLASH, - ACTIONS(2262), 4, + ACTIONS(2270), 4, sym__string_content, sym__string_end, sym__escape_interpolation, sym_escape_sequence, - [52292] = 2, + [51558] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2264), 6, + ACTIONS(1837), 1, + anon_sym_if, + ACTIONS(1839), 1, + anon_sym_and, + ACTIONS(1841), 1, + anon_sym_or, + ACTIONS(1961), 1, anon_sym_RPAREN, + ACTIONS(1963), 1, anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - [52304] = 3, - ACTIONS(1871), 1, - sym_comment, - ACTIONS(2266), 2, - anon_sym_LBRACE2, - anon_sym_BSLASH, - ACTIONS(2268), 4, - sym__string_content, - sym__string_end, - sym__escape_interpolation, - sym_escape_sequence, - [52318] = 3, - ACTIONS(1871), 1, - sym_comment, - ACTIONS(2270), 2, - anon_sym_LBRACE2, - anon_sym_BSLASH, - ACTIONS(2272), 4, - sym__string_content, - sym__string_end, - sym__escape_interpolation, - sym_escape_sequence, - [52332] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1913), 1, - anon_sym_if, - ACTIONS(1915), 1, - anon_sym_and, - ACTIONS(1917), 1, - anon_sym_or, - ACTIONS(2276), 1, - anon_sym_COLON, - ACTIONS(2274), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [52352] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2054), 1, - anon_sym_if, - ACTIONS(2056), 1, - anon_sym_and, - ACTIONS(2058), 1, - anon_sym_or, - ACTIONS(2278), 3, - sym__newline, - anon_sym_COMMA, - anon_sym_SEMI, - [52370] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1913), 1, - anon_sym_if, - ACTIONS(1915), 1, - anon_sym_and, - ACTIONS(1917), 1, - anon_sym_or, - ACTIONS(2282), 1, - anon_sym_COLON, - ACTIONS(2280), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [52390] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2054), 1, - anon_sym_if, - ACTIONS(2056), 1, - anon_sym_and, - ACTIONS(2058), 1, - anon_sym_or, - ACTIONS(2284), 3, - sym__newline, - anon_sym_COMMA, - anon_sym_SEMI, - [52408] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1955), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - [52420] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1913), 1, - anon_sym_if, - ACTIONS(1915), 1, - anon_sym_and, - ACTIONS(1917), 1, - anon_sym_or, - ACTIONS(2286), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - [52438] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2054), 1, - anon_sym_if, - ACTIONS(2056), 1, - anon_sym_and, - ACTIONS(2058), 1, - anon_sym_or, - ACTIONS(2288), 3, - sym__newline, - anon_sym_COMMA, - anon_sym_SEMI, - [52456] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1913), 1, - anon_sym_if, - ACTIONS(1915), 1, - anon_sym_and, - ACTIONS(1917), 1, - anon_sym_or, - ACTIONS(1941), 1, - anon_sym_COMMA, - ACTIONS(2290), 1, - anon_sym_COLON, - STATE(988), 1, - aux_sym_expression_list_repeat1, - [52478] = 3, - ACTIONS(1871), 1, - sym_comment, - ACTIONS(2292), 2, - anon_sym_LBRACE2, - anon_sym_BSLASH, - ACTIONS(2294), 4, - sym__string_content, - sym__string_end, - sym__escape_interpolation, - sym_escape_sequence, - [52492] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2243), 1, - anon_sym_DOT, - STATE(1080), 1, - aux_sym_match_value_pattern_repeat1, - ACTIONS(2256), 4, - sym__newline, - anon_sym_COMMA, - anon_sym_as, - anon_sym_SEMI, - [52508] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1913), 1, - anon_sym_if, - ACTIONS(1915), 1, - anon_sym_and, - ACTIONS(1917), 1, - anon_sym_or, - ACTIONS(1989), 1, - anon_sym_RPAREN, - ACTIONS(1991), 1, - anon_sym_COMMA, - STATE(1289), 1, + STATE(1271), 1, aux_sym_argument_list_repeat1, - [52530] = 5, + [51580] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1913), 1, - anon_sym_if, - ACTIONS(1915), 1, - anon_sym_and, - ACTIONS(1917), 1, - anon_sym_or, - ACTIONS(2296), 3, + ACTIONS(1860), 1, + anon_sym_DOT, + STATE(1042), 1, + aux_sym_match_value_pattern_repeat1, + ACTIONS(2229), 4, + anon_sym_import, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - [52548] = 7, + anon_sym_as, + [51596] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1913), 1, + ACTIONS(1837), 1, anon_sym_if, - ACTIONS(1915), 1, + ACTIONS(1839), 1, anon_sym_and, - ACTIONS(1917), 1, + ACTIONS(1841), 1, anon_sym_or, - ACTIONS(1941), 1, - anon_sym_COMMA, - ACTIONS(2298), 1, + ACTIONS(2274), 1, anon_sym_COLON, - STATE(988), 1, - aux_sym_expression_list_repeat1, - [52570] = 4, + ACTIONS(2272), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [51616] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2300), 1, + ACTIONS(2003), 1, + anon_sym_if, + ACTIONS(2005), 1, + anon_sym_and, + ACTIONS(2007), 1, + anon_sym_or, + ACTIONS(2169), 3, + sym__newline, + anon_sym_EQ, + anon_sym_SEMI, + [51634] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2276), 1, anon_sym_DOT, - STATE(1080), 1, + STATE(1050), 1, aux_sym_match_value_pattern_repeat1, - ACTIONS(1858), 4, + ACTIONS(1830), 4, sym__newline, anon_sym_COMMA, anon_sym_as, anon_sym_SEMI, - [52586] = 6, + [51650] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2221), 1, + ACTIONS(1837), 1, + anon_sym_if, + ACTIONS(1839), 1, anon_sym_and, - ACTIONS(2223), 1, + ACTIONS(1841), 1, anon_sym_or, - ACTIONS(2225), 1, - anon_sym_if, - ACTIONS(2305), 1, - anon_sym_COLON, - ACTIONS(2303), 2, - anon_sym_COMMA, - anon_sym_as, - [52606] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1913), 1, - anon_sym_if, ACTIONS(1915), 1, - anon_sym_and, - ACTIONS(1917), 1, - anon_sym_or, - ACTIONS(2159), 1, - anon_sym_COLON, - ACTIONS(2307), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [52626] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1913), 1, - anon_sym_if, - ACTIONS(1915), 1, - anon_sym_and, - ACTIONS(1917), 1, - anon_sym_or, - ACTIONS(1941), 1, - anon_sym_COMMA, - ACTIONS(2309), 1, + ACTIONS(2279), 1, anon_sym_COLON, - STATE(988), 1, + STATE(954), 1, aux_sym_expression_list_repeat1, - [52648] = 5, + [51672] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1913), 1, - anon_sym_if, - ACTIONS(1915), 1, - anon_sym_and, - ACTIONS(1917), 1, - anon_sym_or, - ACTIONS(2311), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ, - [52666] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2315), 1, + ACTIONS(2283), 1, anon_sym_COLON, - ACTIONS(2317), 1, + ACTIONS(2285), 1, anon_sym_EQ, - STATE(1203), 1, + STATE(1108), 1, sym__type_bound, - STATE(1359), 1, + STATE(1333), 1, sym__type_param_default, - ACTIONS(2313), 2, + ACTIONS(2281), 2, anon_sym_COMMA, anon_sym_RBRACK, - [52686] = 4, + [51692] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2321), 1, + ACTIONS(1911), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + [51704] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1837), 1, + anon_sym_if, + ACTIONS(1839), 1, + anon_sym_and, + ACTIONS(1841), 1, + anon_sym_or, + ACTIONS(1915), 1, + anon_sym_COMMA, + ACTIONS(2287), 1, + anon_sym_COLON, + STATE(954), 1, + aux_sym_expression_list_repeat1, + [51726] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1837), 1, + anon_sym_if, + ACTIONS(1839), 1, + anon_sym_and, + ACTIONS(1841), 1, + anon_sym_or, + ACTIONS(1915), 1, + anon_sym_COMMA, + ACTIONS(2289), 1, + anon_sym_COLON, + STATE(954), 1, + aux_sym_expression_list_repeat1, + [51748] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2003), 1, + anon_sym_if, + ACTIONS(2005), 1, + anon_sym_and, + ACTIONS(2007), 1, + anon_sym_or, + ACTIONS(2291), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_SEMI, + [51766] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1837), 1, + anon_sym_if, + ACTIONS(1839), 1, + anon_sym_and, + ACTIONS(1841), 1, + anon_sym_or, + ACTIONS(1915), 1, + anon_sym_COMMA, + ACTIONS(2293), 1, + anon_sym_COLON, + STATE(954), 1, + aux_sym_expression_list_repeat1, + [51788] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2297), 1, anon_sym_AT, - STATE(1086), 2, + STATE(1058), 2, sym_decorator, aux_sym_decorated_definition_repeat1, - ACTIONS(2319), 3, + ACTIONS(2295), 3, anon_sym_async, anon_sym_def, anon_sym_class, - [52702] = 7, + [51804] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1913), 1, + ACTIONS(1837), 1, anon_sym_if, - ACTIONS(1915), 1, + ACTIONS(1839), 1, anon_sym_and, - ACTIONS(1917), 1, + ACTIONS(1841), 1, anon_sym_or, - ACTIONS(1941), 1, + ACTIONS(2300), 3, anon_sym_COMMA, - ACTIONS(2324), 1, - anon_sym_COLON, - STATE(988), 1, - aux_sym_expression_list_repeat1, - [52724] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1913), 1, - anon_sym_if, - ACTIONS(1915), 1, - anon_sym_and, - ACTIONS(1917), 1, - anon_sym_or, - ACTIONS(1941), 1, - anon_sym_COMMA, - ACTIONS(2326), 1, - anon_sym_COLON, - STATE(988), 1, - aux_sym_expression_list_repeat1, - [52746] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2054), 1, - anon_sym_if, - ACTIONS(2056), 1, - anon_sym_and, - ACTIONS(2058), 1, - anon_sym_or, - ACTIONS(2177), 3, - sym__newline, + anon_sym_RBRACK, anon_sym_EQ, - anon_sym_SEMI, - [52764] = 4, - ACTIONS(3), 1, + [51822] = 3, + ACTIONS(1874), 1, sym_comment, - ACTIONS(1951), 1, - anon_sym_DOT, - STATE(1061), 1, - aux_sym_match_value_pattern_repeat1, - ACTIONS(2245), 4, - anon_sym_import, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - [52780] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2221), 1, - anon_sym_and, - ACTIONS(2223), 1, - anon_sym_or, - ACTIONS(2225), 1, - anon_sym_if, - ACTIONS(2330), 1, - anon_sym_COLON, - ACTIONS(2328), 2, - anon_sym_COMMA, - anon_sym_as, - [52800] = 3, - ACTIONS(1871), 1, - sym_comment, - ACTIONS(2332), 2, + ACTIONS(2302), 2, anon_sym_LBRACE2, anon_sym_BSLASH, - ACTIONS(2334), 4, + ACTIONS(2304), 4, sym__string_content, sym__string_end, sym__escape_interpolation, sym_escape_sequence, - [52814] = 5, + [51836] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1913), 1, + ACTIONS(2133), 1, anon_sym_if, - ACTIONS(1915), 1, + ACTIONS(2135), 1, anon_sym_and, - ACTIONS(1917), 1, + ACTIONS(2137), 1, anon_sym_or, - ACTIONS(2336), 2, + ACTIONS(2308), 1, + anon_sym_COLON, + ACTIONS(2306), 2, + anon_sym_COMMA, + anon_sym_as, + [51856] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1837), 1, + anon_sym_if, + ACTIONS(1839), 1, + anon_sym_and, + ACTIONS(1841), 1, + anon_sym_or, + ACTIONS(2310), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + [51874] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2312), 1, + anon_sym_LPAREN, + ACTIONS(2314), 1, + anon_sym_COLON, + ACTIONS(2316), 1, + anon_sym_LBRACK, + STATE(1240), 1, + sym_type_parameters, + STATE(1435), 1, + sym_argument_list, + [51893] = 6, + ACTIONS(1874), 1, + sym_comment, + ACTIONS(2318), 1, + anon_sym_RBRACE, + ACTIONS(2320), 1, + anon_sym_LBRACE2, + ACTIONS(2322), 1, + aux_sym_format_specifier_token1, + STATE(1090), 1, + aux_sym_format_specifier_repeat1, + STATE(1221), 1, + sym_interpolation, + [51912] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1837), 1, + anon_sym_if, + ACTIONS(1839), 1, + anon_sym_and, + ACTIONS(1841), 1, + anon_sym_or, + ACTIONS(2324), 2, anon_sym_COMMA, anon_sym_RBRACK, - [52831] = 6, + [51929] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2221), 1, - anon_sym_and, - ACTIONS(2223), 1, - anon_sym_or, - ACTIONS(2225), 1, - anon_sym_if, - ACTIONS(2338), 1, - anon_sym_as, - ACTIONS(2340), 1, - anon_sym_COLON, - [52850] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2237), 1, + ACTIONS(2205), 1, sym_identifier, - STATE(1178), 1, + ACTIONS(2326), 1, + anon_sym_LPAREN, + STATE(1098), 1, sym_dotted_name, - STATE(1242), 1, + STATE(1139), 1, sym_aliased_import, - ACTIONS(2342), 2, + STATE(1347), 1, + sym__import_list, + [51948] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2003), 1, + anon_sym_if, + ACTIONS(2005), 1, + anon_sym_and, + ACTIONS(2007), 1, + anon_sym_or, + ACTIONS(1965), 2, sym__newline, anon_sym_SEMI, - [52867] = 6, + [51965] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2328), 1, + anon_sym_COMMA, + STATE(1091), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2043), 3, + sym__newline, + anon_sym_from, + anon_sym_SEMI, + [51980] = 6, + ACTIONS(1874), 1, + sym_comment, + ACTIONS(2330), 1, + anon_sym_RBRACE, + ACTIONS(2332), 1, + anon_sym_LBRACE2, + ACTIONS(2335), 1, + aux_sym_format_specifier_token1, + STATE(1069), 1, + aux_sym_format_specifier_repeat1, + STATE(1221), 1, + sym_interpolation, + [51999] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2003), 1, + anon_sym_if, + ACTIONS(2005), 1, + anon_sym_and, + ACTIONS(2007), 1, + anon_sym_or, + ACTIONS(2338), 2, + sym__newline, + anon_sym_SEMI, + [52016] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2205), 1, + sym_identifier, + STATE(1165), 1, + sym_dotted_name, + STATE(1198), 1, + sym_aliased_import, + ACTIONS(2340), 2, + sym__newline, + anon_sym_SEMI, + [52033] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2312), 1, + anon_sym_LPAREN, + ACTIONS(2316), 1, + anon_sym_LBRACK, + ACTIONS(2342), 1, + anon_sym_COLON, + STATE(1202), 1, + sym_type_parameters, + STATE(1471), 1, + sym_argument_list, + [52052] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2344), 1, - anon_sym_LPAREN, - ACTIONS(2346), 1, - anon_sym_COLON, - ACTIONS(2348), 1, - anon_sym_LBRACK, - STATE(1272), 1, - sym_type_parameters, - STATE(1500), 1, - sym_argument_list, - [52886] = 5, + anon_sym_COMMA, + STATE(1091), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2043), 3, + sym__newline, + anon_sym_from, + anon_sym_SEMI, + [52067] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2237), 1, + ACTIONS(2205), 1, sym_identifier, - STATE(1178), 1, + STATE(1165), 1, sym_dotted_name, - STATE(1242), 1, + STATE(1198), 1, sym_aliased_import, - ACTIONS(2342), 2, + ACTIONS(2346), 2, sym__newline, anon_sym_SEMI, - [52903] = 5, + [52084] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1913), 1, + ACTIONS(2133), 1, anon_sym_if, - ACTIONS(1915), 1, + ACTIONS(2135), 1, anon_sym_and, - ACTIONS(1917), 1, + ACTIONS(2137), 1, anon_sym_or, - ACTIONS(2215), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [52920] = 4, - ACTIONS(3), 1, - sym_comment, + ACTIONS(2348), 1, + anon_sym_as, ACTIONS(2350), 1, - anon_sym_COMMA, - STATE(1103), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2033), 3, - sym__newline, - anon_sym_from, - anon_sym_SEMI, - [52935] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2054), 1, - anon_sym_if, - ACTIONS(2056), 1, - anon_sym_and, - ACTIONS(2058), 1, - anon_sym_or, - ACTIONS(1985), 2, - sym__newline, - anon_sym_SEMI, - [52952] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2054), 1, - anon_sym_if, - ACTIONS(2056), 1, - anon_sym_and, - ACTIONS(2058), 1, - anon_sym_or, - ACTIONS(2352), 2, - sym__newline, - anon_sym_SEMI, - [52969] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2054), 1, - anon_sym_if, - ACTIONS(2056), 1, - anon_sym_and, - ACTIONS(2058), 1, - anon_sym_or, - ACTIONS(2354), 2, - sym__newline, - anon_sym_SEMI, - [52986] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2356), 1, - anon_sym_COMMA, - STATE(1103), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2037), 3, - sym__newline, - anon_sym_from, - anon_sym_SEMI, - [53001] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2359), 1, anon_sym_COLON, - ACTIONS(2361), 1, - anon_sym_RBRACE, - ACTIONS(2363), 1, - anon_sym_EQ, - ACTIONS(2365), 1, - sym_type_conversion, - STATE(1515), 1, - sym_format_specifier, - [53020] = 5, + [52103] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1913), 1, - anon_sym_if, - ACTIONS(1915), 1, - anon_sym_and, - ACTIONS(1917), 1, - anon_sym_or, - ACTIONS(2367), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [53037] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1913), 1, - anon_sym_if, - ACTIONS(1915), 1, - anon_sym_and, - ACTIONS(1917), 1, - anon_sym_or, - ACTIONS(2369), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [53054] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1913), 1, - anon_sym_if, - ACTIONS(1915), 1, - anon_sym_and, - ACTIONS(1917), 1, - anon_sym_or, - ACTIONS(2371), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [53071] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1913), 1, - anon_sym_if, - ACTIONS(1915), 1, - anon_sym_and, - ACTIONS(1917), 1, - anon_sym_or, - ACTIONS(2373), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [53088] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1913), 1, - anon_sym_if, - ACTIONS(1915), 1, - anon_sym_and, - ACTIONS(1917), 1, - anon_sym_or, - ACTIONS(2375), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [53105] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2359), 1, - anon_sym_COLON, - ACTIONS(2377), 1, - anon_sym_RBRACE, - ACTIONS(2379), 1, - anon_sym_EQ, - ACTIONS(2381), 1, - sym_type_conversion, - STATE(1501), 1, - sym_format_specifier, - [53124] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2383), 1, - anon_sym_COMMA, - STATE(1103), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2033), 3, - sym__newline, - anon_sym_from, - anon_sym_SEMI, - [53139] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2221), 1, - anon_sym_and, - ACTIONS(2223), 1, - anon_sym_or, - ACTIONS(2225), 1, - anon_sym_if, - ACTIONS(2385), 1, - anon_sym_as, - ACTIONS(2387), 1, - anon_sym_COLON, - [53158] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2344), 1, - anon_sym_LPAREN, - ACTIONS(2348), 1, - anon_sym_LBRACK, - ACTIONS(2389), 1, - anon_sym_COLON, - STATE(1325), 1, - sym_type_parameters, - STATE(1472), 1, - sym_argument_list, - [53177] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1913), 1, - anon_sym_if, - ACTIONS(1915), 1, - anon_sym_and, - ACTIONS(1917), 1, - anon_sym_or, - ACTIONS(2391), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [53194] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1913), 1, - anon_sym_if, - ACTIONS(1915), 1, - anon_sym_and, - ACTIONS(1917), 1, - anon_sym_or, - ACTIONS(2393), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [53211] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2237), 1, - sym_identifier, - STATE(1178), 1, - sym_dotted_name, - STATE(1242), 1, - sym_aliased_import, - ACTIONS(2395), 2, - sym__newline, - anon_sym_SEMI, - [53228] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2054), 1, - anon_sym_if, - ACTIONS(2056), 1, - anon_sym_and, - ACTIONS(2058), 1, - anon_sym_or, - ACTIONS(2397), 2, - sym__newline, - anon_sym_SEMI, - [53245] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1858), 5, + ACTIONS(1830), 5, sym__newline, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_SEMI, - [53256] = 5, + [52114] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2054), 1, + ACTIONS(1837), 1, anon_sym_if, - ACTIONS(2056), 1, + ACTIONS(1839), 1, anon_sym_and, - ACTIONS(2058), 1, + ACTIONS(1841), 1, anon_sym_or, - ACTIONS(2399), 2, - sym__newline, - anon_sym_SEMI, - [53273] = 4, + ACTIONS(2352), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [52131] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2403), 1, + ACTIONS(1884), 1, anon_sym_COMMA, - STATE(1120), 1, + STATE(1085), 1, aux_sym__collection_elements_repeat1, - ACTIONS(2401), 3, + ACTIONS(1888), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - [53288] = 2, + [52146] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2406), 5, + ACTIONS(2205), 1, + sym_identifier, + STATE(1165), 1, + sym_dotted_name, + STATE(1198), 1, + sym_aliased_import, + ACTIONS(2340), 2, + sym__newline, + anon_sym_SEMI, + [52163] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1837), 1, + anon_sym_if, + ACTIONS(1839), 1, + anon_sym_and, + ACTIONS(1841), 1, + anon_sym_or, + ACTIONS(2354), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [52180] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1837), 1, + anon_sym_if, + ACTIONS(1839), 1, + anon_sym_and, + ACTIONS(1841), 1, + anon_sym_or, + ACTIONS(2163), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [52197] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1837), 1, + anon_sym_if, + ACTIONS(1839), 1, + anon_sym_and, + ACTIONS(1841), 1, + anon_sym_or, + ACTIONS(2356), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [52214] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2358), 5, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, anon_sym_RBRACK, - [53299] = 4, + [52225] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1931), 1, + ACTIONS(2003), 1, + anon_sym_if, + ACTIONS(2005), 1, + anon_sym_and, + ACTIONS(2007), 1, + anon_sym_or, + ACTIONS(2360), 2, + sym__newline, + anon_sym_SEMI, + [52242] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2364), 1, anon_sym_COMMA, - STATE(1128), 1, + STATE(1094), 1, aux_sym__collection_elements_repeat1, - ACTIONS(1935), 3, + ACTIONS(2362), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - [53314] = 6, - ACTIONS(1871), 1, + [52257] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(2408), 1, + ACTIONS(2366), 1, + anon_sym_COLON, + ACTIONS(2368), 1, anon_sym_RBRACE, - ACTIONS(2410), 1, + ACTIONS(2370), 1, + anon_sym_EQ, + ACTIONS(2372), 1, + sym_type_conversion, + STATE(1486), 1, + sym_format_specifier, + [52276] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2255), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + [52287] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1837), 1, + anon_sym_if, + ACTIONS(1839), 1, + anon_sym_and, + ACTIONS(1841), 1, + anon_sym_or, + ACTIONS(2374), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [52304] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1837), 1, + anon_sym_if, + ACTIONS(1839), 1, + anon_sym_and, + ACTIONS(1841), 1, + anon_sym_or, + ACTIONS(2376), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [52321] = 6, + ACTIONS(1874), 1, + sym_comment, + ACTIONS(2320), 1, anon_sym_LBRACE2, - ACTIONS(2413), 1, + ACTIONS(2378), 1, + anon_sym_RBRACE, + ACTIONS(2380), 1, aux_sym_format_specifier_token1, - STATE(1123), 1, + STATE(1069), 1, aux_sym_format_specifier_repeat1, - STATE(1321), 1, + STATE(1221), 1, sym_interpolation, - [53333] = 4, + [52340] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2382), 1, + anon_sym_COMMA, + STATE(1091), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2120), 3, + sym__newline, + anon_sym_from, + anon_sym_SEMI, + [52355] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2003), 1, + anon_sym_if, + ACTIONS(2005), 1, + anon_sym_and, + ACTIONS(2007), 1, + anon_sym_or, + ACTIONS(2385), 2, + sym__newline, + anon_sym_SEMI, + [52372] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2366), 1, + anon_sym_COLON, + ACTIONS(2387), 1, + anon_sym_RBRACE, + ACTIONS(2389), 1, + anon_sym_EQ, + ACTIONS(2391), 1, + sym_type_conversion, + STATE(1404), 1, + sym_format_specifier, + [52391] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2395), 1, + anon_sym_COMMA, + STATE(1094), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(2393), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [52406] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1837), 1, + anon_sym_if, + ACTIONS(1839), 1, + anon_sym_and, + ACTIONS(1841), 1, + anon_sym_or, + ACTIONS(2398), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [52423] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1837), 1, + anon_sym_if, + ACTIONS(1839), 1, + anon_sym_and, + ACTIONS(1841), 1, + anon_sym_or, + ACTIONS(2400), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [52440] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2003), 1, + anon_sym_if, + ACTIONS(2005), 1, + anon_sym_and, + ACTIONS(2007), 1, + anon_sym_or, + ACTIONS(2402), 2, + sym__newline, + anon_sym_SEMI, + [52457] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2404), 1, + anon_sym_COMMA, + ACTIONS(2406), 1, + anon_sym_as, + STATE(1175), 1, + aux_sym__import_list_repeat1, + ACTIONS(2408), 2, + sym__newline, + anon_sym_SEMI, + [52474] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2410), 1, + anon_sym_COMMA, + STATE(1094), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(2362), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [52489] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2133), 1, + anon_sym_if, + ACTIONS(2135), 1, + anon_sym_and, + ACTIONS(2137), 1, + anon_sym_or, + ACTIONS(2412), 1, + anon_sym_as, + ACTIONS(2414), 1, + anon_sym_COLON, + [52508] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2418), 1, anon_sym_COMMA, - STATE(1120), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(2416), 3, + STATE(1101), 1, + aux_sym_with_clause_repeat1, + ACTIONS(2416), 2, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [53348] = 5, + anon_sym_COLON, + [52522] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2420), 1, + ACTIONS(2366), 1, + anon_sym_COLON, + ACTIONS(2421), 1, + anon_sym_RBRACE, + ACTIONS(2423), 1, + sym_type_conversion, + STATE(1484), 1, + sym_format_specifier, + [52538] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1945), 4, + sym__newline, + anon_sym_from, anon_sym_COMMA, - ACTIONS(2422), 1, - anon_sym_as, - STATE(1198), 1, - aux_sym__import_list_repeat1, - ACTIONS(2424), 2, + anon_sym_SEMI, + [52548] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2425), 1, + anon_sym_COMMA, + STATE(1129), 1, + aux_sym_print_statement_repeat1, + ACTIONS(2427), 2, sym__newline, anon_sym_SEMI, - [53365] = 6, - ACTIONS(1871), 1, - sym_comment, - ACTIONS(2426), 1, - anon_sym_RBRACE, - ACTIONS(2428), 1, - anon_sym_LBRACE2, - ACTIONS(2430), 1, - aux_sym_format_specifier_token1, - STATE(1123), 1, - aux_sym_format_specifier_repeat1, - STATE(1321), 1, - sym_interpolation, - [53384] = 2, + [52562] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2251), 5, + ACTIONS(2429), 4, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RBRACE, + [52572] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2431), 1, + anon_sym_COMMA, + STATE(1106), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(2221), 2, + sym__newline, + anon_sym_SEMI, + [52586] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2434), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RBRACE, + [52596] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2285), 1, + anon_sym_EQ, + STATE(1343), 1, + sym__type_param_default, + ACTIONS(2436), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [52610] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1837), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - [53395] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2432), 1, - anon_sym_COMMA, - STATE(1120), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(2416), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [53410] = 6, - ACTIONS(1871), 1, - sym_comment, - ACTIONS(2428), 1, - anon_sym_LBRACE2, - ACTIONS(2434), 1, - anon_sym_RBRACE, - ACTIONS(2436), 1, - aux_sym_format_specifier_token1, - STATE(1126), 1, - aux_sym_format_specifier_repeat1, - STATE(1321), 1, - sym_interpolation, - [53429] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2237), 1, - sym_identifier, + ACTIONS(1839), 1, + anon_sym_and, + ACTIONS(1841), 1, + anon_sym_or, ACTIONS(2438), 1, - anon_sym_LPAREN, - STATE(1125), 1, - sym_dotted_name, - STATE(1155), 1, - sym_aliased_import, - STATE(1401), 1, - sym__import_list, - [53448] = 4, + anon_sym_COLON, + [52626] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, anon_sym_COMMA, - STATE(1156), 1, + STATE(1104), 1, aux_sym_print_statement_repeat1, ACTIONS(2442), 2, sym__newline, anon_sym_SEMI, - [53462] = 5, + [52640] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1913), 1, - anon_sym_if, - ACTIONS(1915), 1, - anon_sym_and, - ACTIONS(1917), 1, - anon_sym_or, ACTIONS(2444), 1, - anon_sym_else, - [53478] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2446), 1, - anon_sym_COMMA, - STATE(1193), 1, - aux_sym_print_statement_repeat1, - ACTIONS(2448), 2, - sym__newline, - anon_sym_SEMI, - [53492] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2237), 1, - sym_identifier, - STATE(1125), 1, - sym_dotted_name, - STATE(1155), 1, - sym_aliased_import, - STATE(1356), 1, - sym__import_list, - [53508] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(592), 1, - sym__newline, - ACTIONS(2450), 1, - anon_sym_SEMI, - STATE(133), 1, - sym__semicolon, - STATE(1214), 1, - aux_sym__simple_statements_repeat1, - [53524] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2179), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RBRACE, - [53534] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2454), 1, - anon_sym_COMMA, - STATE(1194), 1, - aux_sym__patterns_repeat1, - ACTIONS(2452), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [53548] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2456), 1, - anon_sym_SEMI, - ACTIONS(2458), 1, - sym__newline, - STATE(144), 1, - sym__semicolon, - STATE(1140), 1, - aux_sym__simple_statements_repeat1, - [53564] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2342), 1, - anon_sym_RPAREN, - ACTIONS(2460), 1, - sym_identifier, - STATE(1296), 1, - sym_dotted_name, - STATE(1366), 1, - sym_aliased_import, - [53580] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(596), 1, - sym__newline, - ACTIONS(2462), 1, - anon_sym_SEMI, - STATE(134), 1, - sym__semicolon, - STATE(1214), 1, - aux_sym__simple_statements_repeat1, - [53596] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(586), 1, - sym__newline, - ACTIONS(2464), 1, - anon_sym_SEMI, - STATE(141), 1, - sym__semicolon, - STATE(1214), 1, - aux_sym__simple_statements_repeat1, - [53612] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2177), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [53622] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2468), 1, - anon_sym_DOT, - STATE(1196), 1, - aux_sym_import_prefix_repeat1, - ACTIONS(2466), 2, - anon_sym_import, - sym_identifier, - [53636] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2470), 1, - anon_sym_SEMI, - ACTIONS(2472), 1, - sym__newline, - STATE(142), 1, - sym__semicolon, - STATE(1135), 1, - aux_sym__simple_statements_repeat1, - [53652] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1913), 1, - anon_sym_if, - ACTIONS(1915), 1, - anon_sym_and, - ACTIONS(1917), 1, - anon_sym_or, - ACTIONS(2474), 1, - anon_sym_else, - [53668] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2476), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RBRACE, - [53678] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2478), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RBRACE, - [53688] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1913), 1, - anon_sym_if, - ACTIONS(1915), 1, - anon_sym_and, - ACTIONS(1917), 1, - anon_sym_or, - ACTIONS(2480), 1, - anon_sym_COLON, - [53704] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1913), 1, - anon_sym_if, - ACTIONS(1915), 1, - anon_sym_and, - ACTIONS(1917), 1, - anon_sym_or, - ACTIONS(2482), 1, - anon_sym_COLON, - [53720] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2484), 1, - anon_sym_COMMA, - STATE(1150), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(2288), 2, - sym__newline, - anon_sym_SEMI, - [53734] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2487), 4, - anon_sym_async, - anon_sym_def, - anon_sym_class, - anon_sym_AT, - [53744] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1913), 1, - anon_sym_if, - ACTIONS(1915), 1, - anon_sym_and, - ACTIONS(1917), 1, - anon_sym_or, - ACTIONS(2489), 1, - anon_sym_COLON, - [53760] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2491), 1, anon_sym_case, - STATE(595), 1, + STATE(512), 1, sym_cases, - STATE(343), 2, + STATE(340), 2, sym_case_block, aux_sym_cases_repeat1, - [53774] = 5, + [52654] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2444), 1, + anon_sym_case, + STATE(565), 1, + sym_cases, + STATE(340), 2, + sym_case_block, + aux_sym_cases_repeat1, + [52668] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2316), 1, + anon_sym_LBRACK, + ACTIONS(2446), 1, + anon_sym_LPAREN, + STATE(1330), 1, + sym_type_parameters, + STATE(1340), 1, + sym_parameters, + [52684] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1837), 1, + anon_sym_if, + ACTIONS(1839), 1, + anon_sym_and, + ACTIONS(1841), 1, + anon_sym_or, + ACTIONS(2448), 1, + anon_sym_else, + [52700] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1837), 1, + anon_sym_if, + ACTIONS(1839), 1, + anon_sym_and, + ACTIONS(1841), 1, + anon_sym_or, + ACTIONS(2450), 1, + anon_sym_COLON, + [52716] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2171), 1, + anon_sym_COMMA, + STATE(1106), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(2452), 2, + sym__newline, + anon_sym_SEMI, + [52730] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(568), 1, + sym__newline, + ACTIONS(2454), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__semicolon, + STATE(1167), 1, + aux_sym__simple_statements_repeat1, + [52746] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1837), 1, + anon_sym_if, + ACTIONS(1839), 1, + anon_sym_and, + ACTIONS(1841), 1, + anon_sym_or, + ACTIONS(2456), 1, + anon_sym_COLON, + [52762] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2155), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RBRACE, + [52772] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2460), 1, - sym_identifier, - STATE(1195), 1, - sym_dotted_name, - STATE(1285), 1, - sym_aliased_import, - STATE(1469), 1, - sym__import_list, - [53790] = 4, + anon_sym_COMMA, + STATE(1134), 1, + aux_sym__patterns_repeat1, + ACTIONS(2458), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [52786] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2420), 1, + ACTIONS(1837), 1, + anon_sym_if, + ACTIONS(1839), 1, + anon_sym_and, + ACTIONS(1841), 1, + anon_sym_or, + ACTIONS(2462), 1, + anon_sym_COLON, + [52802] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2464), 1, anon_sym_COMMA, - STATE(1199), 1, - aux_sym__import_list_repeat1, - ACTIONS(2424), 2, + STATE(1129), 1, + aux_sym_print_statement_repeat1, + ACTIONS(2466), 2, sym__newline, anon_sym_SEMI, - [53804] = 4, + [52816] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1837), 1, + anon_sym_if, + ACTIONS(1839), 1, + anon_sym_and, + ACTIONS(1841), 1, + anon_sym_or, + ACTIONS(2468), 1, + anon_sym_COLON, + [52832] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1837), 1, + anon_sym_if, + ACTIONS(1839), 1, + anon_sym_and, + ACTIONS(1841), 1, + anon_sym_or, + ACTIONS(2470), 1, + anon_sym_COLON, + [52848] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2472), 1, + anon_sym_COMMA, + STATE(1125), 1, + aux_sym__import_list_repeat1, + ACTIONS(2475), 2, + sym__newline, + anon_sym_SEMI, + [52862] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2285), 1, + anon_sym_EQ, + STATE(1345), 1, + sym__type_param_default, + ACTIONS(2477), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [52876] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1837), 1, + anon_sym_if, + ACTIONS(1839), 1, + anon_sym_and, + ACTIONS(1841), 1, + anon_sym_or, + ACTIONS(2479), 1, + anon_sym_COLON, + [52892] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2483), 1, + anon_sym_DOT, + STATE(1128), 1, + aux_sym_import_prefix_repeat1, + ACTIONS(2481), 2, + anon_sym_import, + sym_identifier, + [52906] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2486), 1, + anon_sym_COMMA, + STATE(1129), 1, + aux_sym_print_statement_repeat1, + ACTIONS(2489), 2, + sym__newline, + anon_sym_SEMI, + [52920] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1837), 1, + anon_sym_if, + ACTIONS(1839), 1, + anon_sym_and, + ACTIONS(1841), 1, + anon_sym_or, + ACTIONS(2491), 1, + anon_sym_COLON, + [52936] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2316), 1, + anon_sym_LBRACK, + ACTIONS(2446), 1, + anon_sym_LPAREN, + STATE(1334), 1, + sym_parameters, + STATE(1338), 1, + sym_type_parameters, + [52952] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(1925), 1, + anon_sym_COLON, + STATE(571), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + [52966] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2493), 1, anon_sym_COMMA, - STATE(1156), 1, - aux_sym_print_statement_repeat1, - ACTIONS(2496), 2, - sym__newline, - anon_sym_SEMI, - [53818] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2395), 1, - anon_sym_RPAREN, - ACTIONS(2460), 1, - sym_identifier, - STATE(1296), 1, - sym_dotted_name, - STATE(1366), 1, - sym_aliased_import, - [53834] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2342), 1, - anon_sym_RPAREN, - ACTIONS(2460), 1, - sym_identifier, - STATE(1296), 1, - sym_dotted_name, - STATE(1366), 1, - sym_aliased_import, - [53850] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1913), 1, - anon_sym_if, - ACTIONS(1915), 1, - anon_sym_and, - ACTIONS(1917), 1, - anon_sym_or, - ACTIONS(2498), 1, - anon_sym_COLON, - [53866] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1913), 1, - anon_sym_if, - ACTIONS(1915), 1, - anon_sym_and, - ACTIONS(1917), 1, - anon_sym_or, - ACTIONS(2500), 1, - anon_sym_COLON, - [53882] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1913), 1, - anon_sym_if, - ACTIONS(1915), 1, - anon_sym_and, - ACTIONS(1917), 1, - anon_sym_or, - ACTIONS(2502), 1, - anon_sym_COLON, - [53898] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(580), 1, - sym__newline, - ACTIONS(2504), 1, - anon_sym_SEMI, - STATE(137), 1, - sym__semicolon, - STATE(1214), 1, - aux_sym__simple_statements_repeat1, - [53914] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2506), 1, - anon_sym_SEMI, - ACTIONS(2508), 1, - sym__newline, - STATE(136), 1, - sym__semicolon, - STATE(1162), 1, - aux_sym__simple_statements_repeat1, - [53930] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2359), 1, - anon_sym_COLON, - ACTIONS(2510), 1, - anon_sym_RBRACE, - ACTIONS(2512), 1, - sym_type_conversion, - STATE(1414), 1, - sym_format_specifier, - [53946] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2514), 1, - anon_sym_COMMA, - STATE(1060), 1, + STATE(1040), 1, aux_sym_open_sequence_match_pattern_repeat1, - ACTIONS(1709), 2, + ACTIONS(1663), 2, anon_sym_if, anon_sym_COLON, - [53960] = 4, + [52980] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2516), 1, + ACTIONS(2497), 1, anon_sym_COMMA, - STATE(1185), 1, - aux_sym_global_statement_repeat1, - ACTIONS(2518), 2, - sym__newline, - anon_sym_SEMI, - [53974] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2522), 1, - anon_sym_COLON, - ACTIONS(2524), 1, - anon_sym_EQ, - ACTIONS(2520), 2, + STATE(843), 1, + aux_sym__patterns_repeat1, + ACTIONS(2495), 2, anon_sym_RPAREN, - anon_sym_COMMA, - [53988] = 4, + anon_sym_RBRACK, + [52994] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2516), 1, - anon_sym_COMMA, - STATE(1185), 1, - aux_sym_global_statement_repeat1, - ACTIONS(2526), 2, - sym__newline, - anon_sym_SEMI, - [54002] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2530), 1, - anon_sym_COMMA, - STATE(1169), 1, - aux_sym_with_clause_repeat1, - ACTIONS(2528), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [54016] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1913), 1, + ACTIONS(1837), 1, anon_sym_if, - ACTIONS(1915), 1, + ACTIONS(1839), 1, anon_sym_and, - ACTIONS(1917), 1, + ACTIONS(1841), 1, anon_sym_or, - ACTIONS(2533), 1, + ACTIONS(2499), 1, anon_sym_COLON, - [54032] = 4, + [53010] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2491), 1, - anon_sym_case, - STATE(592), 1, - sym_cases, - STATE(343), 2, - sym_case_block, - aux_sym_cases_repeat1, - [54046] = 4, + ACTIONS(1837), 1, + anon_sym_if, + ACTIONS(1839), 1, + anon_sym_and, + ACTIONS(1841), 1, + anon_sym_or, + ACTIONS(2501), 1, + anon_sym_else, + [53026] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2317), 1, + ACTIONS(2503), 1, + sym_identifier, + STATE(1143), 1, + sym_dotted_name, + STATE(1259), 1, + sym_aliased_import, + STATE(1481), 1, + sym__import_list, + [53042] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1837), 1, + anon_sym_if, + ACTIONS(1839), 1, + anon_sym_and, + ACTIONS(1841), 1, + anon_sym_or, + ACTIONS(2505), 1, + anon_sym_COLON, + [53058] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2404), 1, + anon_sym_COMMA, + STATE(1171), 1, + aux_sym__import_list_repeat1, + ACTIONS(2408), 2, + sym__newline, + anon_sym_SEMI, + [53072] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2003), 1, + anon_sym_if, + ACTIONS(2005), 1, + anon_sym_and, + ACTIONS(2007), 1, + anon_sym_or, + ACTIONS(2507), 1, + sym__newline, + [53088] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2511), 1, anon_sym_EQ, - STATE(1387), 1, + ACTIONS(2509), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + [53100] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2205), 1, + sym_identifier, + STATE(1098), 1, + sym_dotted_name, + STATE(1139), 1, + sym_aliased_import, + STATE(1325), 1, + sym__import_list, + [53116] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2408), 1, + anon_sym_RPAREN, + ACTIONS(2513), 1, + anon_sym_COMMA, + ACTIONS(2515), 1, + anon_sym_as, + STATE(1242), 1, + aux_sym__import_list_repeat1, + [53132] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2519), 1, + anon_sym_DOT, + STATE(1128), 1, + aux_sym_import_prefix_repeat1, + ACTIONS(2517), 2, + anon_sym_import, + sym_identifier, + [53146] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2285), 1, + anon_sym_EQ, + STATE(1346), 1, sym__type_param_default, - ACTIONS(2535), 2, + ACTIONS(2521), 2, anon_sym_COMMA, anon_sym_RBRACK, - [54060] = 5, + [53160] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2460), 1, - sym_identifier, - STATE(1195), 1, - sym_dotted_name, - STATE(1285), 1, - sym_aliased_import, - STATE(1470), 1, - sym__import_list, - [54076] = 5, + ACTIONS(2523), 1, + anon_sym_SEMI, + ACTIONS(2525), 1, + sym__newline, + STATE(131), 1, + sym__semicolon, + STATE(1166), 1, + aux_sym__simple_statements_repeat1, + [53176] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2348), 1, + ACTIONS(2527), 1, + anon_sym_COMMA, + STATE(1159), 1, + aux_sym_global_statement_repeat1, + ACTIONS(2529), 2, + sym__newline, + anon_sym_SEMI, + [53190] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2527), 1, + anon_sym_COMMA, + STATE(1159), 1, + aux_sym_global_statement_repeat1, + ACTIONS(2531), 2, + sym__newline, + anon_sym_SEMI, + [53204] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2316), 1, anon_sym_LBRACK, - ACTIONS(2537), 1, + ACTIONS(2446), 1, anon_sym_LPAREN, - STATE(1389), 1, + STATE(1366), 1, sym_parameters, - STATE(1399), 1, + STATE(1370), 1, sym_type_parameters, - [54092] = 5, + [53220] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1913), 1, - anon_sym_if, - ACTIONS(1915), 1, - anon_sym_and, - ACTIONS(1917), 1, - anon_sym_or, - ACTIONS(2539), 1, - anon_sym_COLON, - [54108] = 4, + ACTIONS(2533), 4, + anon_sym_async, + anon_sym_def, + anon_sym_class, + anon_sym_AT, + [53230] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2541), 1, - anon_sym_COMMA, - STATE(1176), 1, - aux_sym__import_list_repeat1, - ACTIONS(2544), 2, - sym__newline, - anon_sym_SEMI, - [54122] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1913), 1, - anon_sym_if, - ACTIONS(1915), 1, - anon_sym_and, - ACTIONS(1917), 1, - anon_sym_or, - ACTIONS(2546), 1, - anon_sym_COLON, - [54138] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_as, - ACTIONS(2548), 3, - sym__newline, - anon_sym_COMMA, - anon_sym_SEMI, - [54150] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2550), 1, + ACTIONS(2535), 1, anon_sym_case, - STATE(498), 1, + STATE(484), 1, sym_cases, - STATE(365), 2, + STATE(342), 2, sym_case_block, aux_sym_cases_repeat1, - [54164] = 5, + [53244] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1913), 1, + ACTIONS(2535), 1, + anon_sym_case, + STATE(483), 1, + sym_cases, + STATE(342), 2, + sym_case_block, + aux_sym_cases_repeat1, + [53258] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1837), 1, anon_sym_if, - ACTIONS(1915), 1, + ACTIONS(1839), 1, anon_sym_and, - ACTIONS(1917), 1, + ACTIONS(1841), 1, anon_sym_or, + ACTIONS(2537), 1, + anon_sym_COLON, + [53274] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2171), 1, + anon_sym_COMMA, + STATE(1106), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(2539), 2, + sym__newline, + anon_sym_SEMI, + [53288] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2340), 1, + anon_sym_RPAREN, + ACTIONS(2503), 1, + sym_identifier, + STATE(1234), 1, + sym_dotted_name, + STATE(1336), 1, + sym_aliased_import, + [53304] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(566), 1, + sym__newline, + ACTIONS(2541), 1, + anon_sym_SEMI, + STATE(130), 1, + sym__semicolon, + STATE(1167), 1, + aux_sym__simple_statements_repeat1, + [53320] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1837), 1, + anon_sym_if, + ACTIONS(1839), 1, + anon_sym_and, + ACTIONS(1841), 1, + anon_sym_or, + ACTIONS(2543), 1, + anon_sym_else, + [53336] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2340), 1, + anon_sym_RPAREN, + ACTIONS(2503), 1, + sym_identifier, + STATE(1234), 1, + sym_dotted_name, + STATE(1336), 1, + sym_aliased_import, + [53352] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2545), 1, + anon_sym_COMMA, + STATE(1159), 1, + aux_sym_global_statement_repeat1, + ACTIONS(2548), 2, + sym__newline, + anon_sym_SEMI, + [53366] = 4, + ACTIONS(3), 1, + sym_comment, ACTIONS(2552), 1, anon_sym_COLON, - [54180] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2550), 1, - anon_sym_case, - STATE(582), 1, - sym_cases, - STATE(365), 2, - sym_case_block, - aux_sym_cases_repeat1, - [54194] = 5, - ACTIONS(3), 1, - sym_comment, ACTIONS(2554), 1, - anon_sym_SEMI, - ACTIONS(2556), 1, - sym__newline, - STATE(139), 1, - sym__semicolon, - STATE(1141), 1, - aux_sym__simple_statements_repeat1, - [54210] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(1863), 1, - anon_sym_COLON, - STATE(601), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - [54224] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1913), 1, - anon_sym_if, - ACTIONS(1915), 1, - anon_sym_and, - ACTIONS(1917), 1, - anon_sym_or, - ACTIONS(2558), 1, - anon_sym_else, - [54240] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2560), 1, - anon_sym_COMMA, - STATE(1185), 1, - aux_sym_global_statement_repeat1, - ACTIONS(2563), 2, - sym__newline, - anon_sym_SEMI, - [54254] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2348), 1, - anon_sym_LBRACK, - ACTIONS(2537), 1, - anon_sym_LPAREN, - STATE(1386), 1, - sym_type_parameters, - STATE(1392), 1, - sym_parameters, - [54270] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2567), 1, anon_sym_EQ, - ACTIONS(2565), 3, + ACTIONS(2550), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [53380] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2527), 1, + anon_sym_COMMA, + STATE(1147), 1, + aux_sym_global_statement_repeat1, + ACTIONS(2556), 2, + sym__newline, + anon_sym_SEMI, + [53394] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2366), 1, + anon_sym_COLON, + ACTIONS(2558), 1, + anon_sym_RBRACE, + ACTIONS(2560), 1, + sym_type_conversion, + STATE(1399), 1, + sym_format_specifier, + [53410] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, + anon_sym_SEMI, + ACTIONS(2564), 1, + sym__newline, + STATE(134), 1, + sym__semicolon, + STATE(1117), 1, + aux_sym__simple_statements_repeat1, + [53426] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1837), 1, + anon_sym_if, + ACTIONS(1839), 1, + anon_sym_and, + ACTIONS(1841), 1, + anon_sym_or, + ACTIONS(2566), 1, + anon_sym_COLON, + [53442] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2406), 1, + anon_sym_as, + ACTIONS(2568), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_SEMI, + [53454] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(562), 1, + sym__newline, + ACTIONS(2570), 1, + anon_sym_SEMI, + STATE(132), 1, + sym__semicolon, + STATE(1167), 1, + aux_sym__simple_statements_repeat1, + [53470] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2572), 1, + anon_sym_SEMI, + ACTIONS(2575), 1, + sym__newline, + STATE(135), 1, + sym__semicolon, + STATE(1167), 1, + aux_sym__simple_statements_repeat1, + [53486] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2527), 1, + anon_sym_COMMA, + STATE(1148), 1, + aux_sym_global_statement_repeat1, + ACTIONS(2577), 2, + sym__newline, + anon_sym_SEMI, + [53500] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2503), 1, + sym_identifier, + STATE(1143), 1, + sym_dotted_name, + STATE(1259), 1, + sym_aliased_import, + STATE(1482), 1, + sym__import_list, + [53516] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2346), 1, + anon_sym_RPAREN, + ACTIONS(2503), 1, + sym_identifier, + STATE(1234), 1, + sym_dotted_name, + STATE(1336), 1, + sym_aliased_import, + [53532] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2579), 1, + anon_sym_COMMA, + STATE(1125), 1, + aux_sym__import_list_repeat1, + ACTIONS(2581), 2, + sym__newline, + anon_sym_SEMI, + [53546] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2316), 1, + anon_sym_LBRACK, + ACTIONS(2446), 1, + anon_sym_LPAREN, + STATE(1348), 1, + sym_parameters, + STATE(1360), 1, + sym_type_parameters, + [53562] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2583), 1, + anon_sym_SEMI, + ACTIONS(2585), 1, + sym__newline, + STATE(133), 1, + sym__semicolon, + STATE(1156), 1, + aux_sym__simple_statements_repeat1, + [53578] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2169), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - [54282] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(594), 1, - sym__newline, - ACTIONS(2569), 1, - anon_sym_SEMI, - STATE(135), 1, - sym__semicolon, - STATE(1214), 1, - aux_sym__simple_statements_repeat1, - [54298] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1913), 1, - anon_sym_if, - ACTIONS(1915), 1, - anon_sym_and, - ACTIONS(1917), 1, - anon_sym_or, - ACTIONS(2571), 1, - anon_sym_COLON, - [54314] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(584), 1, - sym__newline, - ACTIONS(2573), 1, - anon_sym_SEMI, - STATE(145), 1, - sym__semicolon, - STATE(1214), 1, - aux_sym__simple_statements_repeat1, - [54330] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2359), 1, - anon_sym_COLON, - ACTIONS(2575), 1, - anon_sym_RBRACE, - ACTIONS(2577), 1, - sym_type_conversion, - STATE(1473), 1, - sym_format_specifier, - [54346] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2185), 1, - anon_sym_COMMA, - STATE(1150), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(2579), 2, - sym__newline, - anon_sym_SEMI, - [54360] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2581), 1, - anon_sym_COMMA, - STATE(1156), 1, - aux_sym_print_statement_repeat1, - ACTIONS(2583), 2, - sym__newline, - anon_sym_SEMI, - [54374] = 4, + anon_sym_EQ, + [53588] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2587), 1, anon_sym_COMMA, - STATE(873), 1, - aux_sym__patterns_repeat1, - ACTIONS(2585), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [54388] = 5, + STATE(1125), 1, + aux_sym__import_list_repeat1, + ACTIONS(2581), 2, + sym__newline, + anon_sym_SEMI, + [53602] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2424), 1, - anon_sym_RPAREN, + ACTIONS(1837), 1, + anon_sym_if, + ACTIONS(1839), 1, + anon_sym_and, + ACTIONS(1841), 1, + anon_sym_or, ACTIONS(2589), 1, - anon_sym_COMMA, - ACTIONS(2591), 1, - anon_sym_as, - STATE(1335), 1, - aux_sym__import_list_repeat1, - [54404] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2595), 1, - anon_sym_DOT, - STATE(1196), 1, - aux_sym_import_prefix_repeat1, - ACTIONS(2593), 2, - anon_sym_import, - sym_identifier, - [54418] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1913), 1, - anon_sym_if, - ACTIONS(1915), 1, - anon_sym_and, - ACTIONS(1917), 1, - anon_sym_or, - ACTIONS(2598), 1, - anon_sym_COLON, - [54434] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2600), 1, - anon_sym_COMMA, - STATE(1176), 1, - aux_sym__import_list_repeat1, - ACTIONS(2602), 2, - sym__newline, - anon_sym_SEMI, - [54448] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2604), 1, - anon_sym_COMMA, - STATE(1176), 1, - aux_sym__import_list_repeat1, - ACTIONS(2602), 2, - sym__newline, - anon_sym_SEMI, - [54462] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1913), 1, - anon_sym_if, - ACTIONS(1915), 1, - anon_sym_and, - ACTIONS(1917), 1, - anon_sym_or, - ACTIONS(2606), 1, anon_sym_else, - [54478] = 5, + [53618] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(600), 1, + ACTIONS(1693), 1, + anon_sym_RPAREN, + ACTIONS(2591), 1, + anon_sym_COMMA, + STATE(1289), 1, + aux_sym_match_class_pattern_repeat1, + [53631] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1860), 1, + anon_sym_DOT, + ACTIONS(1864), 1, + anon_sym_COLON, + STATE(877), 1, + aux_sym_match_value_pattern_repeat1, + [53644] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1776), 1, + anon_sym_COMMA, + ACTIONS(2593), 1, + anon_sym_in, + STATE(854), 1, + aux_sym__patterns_repeat1, + [53657] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1377), 3, sym__newline, - ACTIONS(2608), 1, + anon_sym_in, anon_sym_SEMI, - STATE(140), 1, - sym__semicolon, - STATE(1214), 1, - aux_sym__simple_statements_repeat1, - [54494] = 4, + [53666] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2317), 1, + ACTIONS(2316), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, anon_sym_EQ, - STATE(1382), 1, - sym__type_param_default, - ACTIONS(2610), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [54508] = 4, + STATE(1468), 1, + sym_type_parameters, + [53679] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2317), 1, - anon_sym_EQ, - STATE(1384), 1, - sym__type_param_default, - ACTIONS(2612), 2, + ACTIONS(2597), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [54522] = 5, + ACTIONS(2599), 1, + anon_sym_RBRACE, + STATE(1197), 1, + aux_sym_dictionary_repeat1, + [53692] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2054), 1, - anon_sym_if, - ACTIONS(2056), 1, - anon_sym_and, - ACTIONS(2058), 1, - anon_sym_or, + ACTIONS(1776), 1, + anon_sym_COMMA, + ACTIONS(2601), 1, + anon_sym_in, + STATE(854), 1, + aux_sym__patterns_repeat1, + [53705] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1373), 3, + sym__newline, + anon_sym_in, + anon_sym_SEMI, + [53714] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1776), 1, + anon_sym_COMMA, + ACTIONS(2603), 1, + anon_sym_in, + STATE(854), 1, + aux_sym__patterns_repeat1, + [53727] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2550), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + [53736] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1820), 1, + anon_sym_COLON, + ACTIONS(2605), 1, + anon_sym_COMMA, + STATE(1209), 1, + aux_sym__parameters_repeat1, + [53749] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2607), 1, + anon_sym_COMMA, + ACTIONS(2610), 1, + anon_sym_RBRACK, + STATE(1188), 1, + aux_sym_subscript_repeat1, + [53762] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2201), 1, + anon_sym_COMMA, + ACTIONS(2203), 1, + anon_sym_RBRACE, + STATE(1182), 1, + aux_sym_dictionary_repeat1, + [53775] = 3, + ACTIONS(1874), 1, + sym_comment, + ACTIONS(2237), 1, + anon_sym_RBRACE, + ACTIONS(2239), 2, + anon_sym_LBRACE2, + aux_sym_format_specifier_token1, + [53786] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2612), 1, + anon_sym_COMMA, ACTIONS(2614), 1, - sym__newline, - [54538] = 5, + anon_sym_COLON, + STATE(1187), 1, + aux_sym__parameters_repeat1, + [53799] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2348), 1, - anon_sym_LBRACK, - ACTIONS(2537), 1, - anon_sym_LPAREN, - STATE(1360), 1, - sym_parameters, - STATE(1402), 1, - sym_type_parameters, - [54554] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2185), 1, + ACTIONS(958), 1, + anon_sym_RPAREN, + ACTIONS(2616), 1, anon_sym_COMMA, - STATE(1150), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(2616), 2, - sym__newline, - anon_sym_SEMI, - [54568] = 5, + STATE(1101), 1, + aux_sym_with_clause_repeat1, + [53812] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2348), 1, - anon_sym_LBRACK, - ACTIONS(2537), 1, - anon_sym_LPAREN, - STATE(1361), 1, - sym_parameters, - STATE(1404), 1, - sym_type_parameters, - [54584] = 5, + ACTIONS(2416), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + [53821] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2618), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + [53830] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2618), 1, - anon_sym_SEMI, ACTIONS(2620), 1, - sym__newline, - STATE(138), 1, - sym__semicolon, - STATE(1190), 1, - aux_sym__simple_statements_repeat1, - [54600] = 4, + anon_sym_COMMA, + ACTIONS(2622), 1, + anon_sym_RBRACE, + STATE(1197), 1, + aux_sym_dictionary_repeat1, + [53843] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2516), 1, + ACTIONS(1089), 3, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1166), 1, - aux_sym_global_statement_repeat1, - ACTIONS(2622), 2, - sym__newline, - anon_sym_SEMI, - [54614] = 5, + anon_sym_COLON, + [53852] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2624), 1, - anon_sym_SEMI, - ACTIONS(2626), 1, - sym__newline, - STATE(146), 1, - sym__semicolon, - STATE(1201), 1, - aux_sym__simple_statements_repeat1, - [54630] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2516), 1, anon_sym_COMMA, - STATE(1168), 1, - aux_sym_global_statement_repeat1, - ACTIONS(2628), 2, - sym__newline, - anon_sym_SEMI, - [54644] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2630), 1, - anon_sym_SEMI, - ACTIONS(2632), 1, - sym__newline, - STATE(143), 1, - sym__semicolon, - STATE(1188), 1, - aux_sym__simple_statements_repeat1, - [54660] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1987), 4, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_SEMI, - [54670] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2634), 1, - anon_sym_SEMI, - ACTIONS(2637), 1, - sym__newline, - STATE(147), 1, - sym__semicolon, - STATE(1214), 1, - aux_sym__simple_statements_repeat1, - [54686] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1405), 3, - sym__newline, - anon_sym_in, - anon_sym_SEMI, - [54695] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2639), 1, - anon_sym_RPAREN, - ACTIONS(2641), 1, - anon_sym_COMMA, - STATE(1300), 1, - aux_sym_argument_list_repeat1, - [54708] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1824), 1, - anon_sym_COMMA, - ACTIONS(2643), 1, - anon_sym_in, - STATE(884), 1, - aux_sym__patterns_repeat1, - [54721] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2645), 1, - anon_sym_RPAREN, - ACTIONS(2647), 1, - anon_sym_COMMA, - STATE(1216), 1, - aux_sym_argument_list_repeat1, - [54734] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2649), 1, - anon_sym_EQ, - ACTIONS(2651), 2, - sym__newline, - anon_sym_SEMI, - [54745] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1969), 1, - anon_sym_RPAREN, - ACTIONS(1971), 1, - anon_sym_COMMA, - STATE(1313), 1, - aux_sym_argument_list_repeat1, - [54758] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1931), 1, - anon_sym_COMMA, - ACTIONS(1993), 1, - anon_sym_RPAREN, - STATE(1315), 1, - aux_sym__collection_elements_repeat1, - [54771] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2653), 1, - anon_sym_RPAREN, - ACTIONS(2655), 1, - anon_sym_COMMA, - STATE(1300), 1, - aux_sym_argument_list_repeat1, - [54784] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2177), 3, - sym__newline, - anon_sym_EQ, - anon_sym_SEMI, - [54793] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1824), 1, - anon_sym_COMMA, - ACTIONS(2657), 1, - anon_sym_in, - STATE(884), 1, - aux_sym__patterns_repeat1, - [54806] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1824), 1, - anon_sym_COMMA, - ACTIONS(2659), 1, - anon_sym_in, - STATE(884), 1, - aux_sym__patterns_repeat1, - [54819] = 3, - ACTIONS(1871), 1, - sym_comment, - ACTIONS(2260), 1, + ACTIONS(2627), 1, anon_sym_RBRACE, - ACTIONS(2262), 2, - anon_sym_LBRACE2, - aux_sym_format_specifier_token1, - [54830] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2460), 1, - sym_identifier, - STATE(1296), 1, - sym_dotted_name, - STATE(1366), 1, - sym_aliased_import, - [54843] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2163), 1, - anon_sym_COMMA, - ACTIONS(2165), 1, - anon_sym_RBRACE, - STATE(1250), 1, + STATE(1197), 1, aux_sym_dictionary_repeat1, - [54856] = 4, + [53865] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2568), 3, + sym__newline, anon_sym_COMMA, - ACTIONS(2161), 1, + anon_sym_SEMI, + [53874] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1939), 1, + anon_sym_RPAREN, + ACTIONS(1941), 1, + anon_sym_COMMA, + STATE(1279), 1, + aux_sym_argument_list_repeat1, + [53887] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1843), 1, + anon_sym_RPAREN, + ACTIONS(1884), 1, + anon_sym_COMMA, + STATE(1301), 1, + aux_sym__collection_elements_repeat1, + [53900] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2629), 1, + anon_sym_COMMA, + ACTIONS(2631), 1, anon_sym_RBRACK, - STATE(1249), 1, - aux_sym_subscript_repeat1, - [54869] = 4, + STATE(1241), 1, + aux_sym_type_parameters_repeat1, + [53913] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2544), 1, - anon_sym_RPAREN, - ACTIONS(2661), 1, - anon_sym_COMMA, - STATE(1230), 1, - aux_sym__import_list_repeat1, - [54882] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2664), 1, - anon_sym_RPAREN, - ACTIONS(2666), 1, - anon_sym_COMMA, - STATE(1314), 1, - aux_sym_argument_list_repeat1, - [54895] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2668), 1, - anon_sym_RPAREN, - ACTIONS(2670), 1, - anon_sym_COMMA, - STATE(1256), 1, - aux_sym__parameters_repeat1, - [54908] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1979), 1, - anon_sym_RPAREN, - ACTIONS(1981), 1, - anon_sym_COMMA, - STATE(1222), 1, - aux_sym_argument_list_repeat1, - [54921] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2528), 3, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(2312), 1, + anon_sym_LPAREN, + ACTIONS(2633), 1, anon_sym_COLON, - [54930] = 4, + STATE(1485), 1, + sym_argument_list, + [53926] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1721), 1, - anon_sym_RPAREN, - ACTIONS(2672), 1, - sym_identifier, - STATE(1412), 1, - sym_match_keyword_pattern, - [54943] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2359), 1, - anon_sym_COLON, - ACTIONS(2575), 1, - anon_sym_RBRACE, - STATE(1473), 1, - sym_format_specifier, - [54956] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2674), 1, - anon_sym_RPAREN, - ACTIONS(2676), 1, + ACTIONS(1884), 1, anon_sym_COMMA, - STATE(1237), 1, - aux_sym_match_class_pattern_repeat2, - [54969] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2679), 1, + ACTIONS(1959), 1, anon_sym_RPAREN, - ACTIONS(2681), 1, - anon_sym_COMMA, - STATE(1300), 1, - aux_sym_argument_list_repeat1, - [54982] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2683), 1, - anon_sym_COMMA, - ACTIONS(2685), 1, - anon_sym_COLON, - STATE(1299), 1, - aux_sym_with_clause_repeat1, - [54995] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2672), 1, - sym_identifier, - ACTIONS(2687), 1, - anon_sym_RPAREN, - STATE(1412), 1, - sym_match_keyword_pattern, - [55008] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2687), 1, - anon_sym_RPAREN, - ACTIONS(2689), 1, - anon_sym_COMMA, - STATE(1237), 1, - aux_sym_match_class_pattern_repeat2, - [55021] = 2, + STATE(1301), 1, + aux_sym__collection_elements_repeat1, + [53939] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2548), 3, sym__newline, anon_sym_COMMA, anon_sym_SEMI, - [55030] = 4, + [53948] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1846), 1, + ACTIONS(2554), 1, + anon_sym_EQ, + ACTIONS(2550), 2, + anon_sym_COMMA, anon_sym_COLON, - ACTIONS(2691), 1, - anon_sym_COMMA, - STATE(1310), 1, - aux_sym__parameters_repeat1, - [55043] = 2, + [53959] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1401), 3, - sym__newline, - anon_sym_in, - anon_sym_SEMI, - [55052] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2693), 3, - sym__newline, - anon_sym_COMMA, - anon_sym_SEMI, - [55061] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2695), 1, - anon_sym_COMMA, - ACTIONS(2697), 1, - anon_sym_RBRACE, - STATE(1283), 1, - aux_sym_dictionary_repeat1, - [55074] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1721), 1, - anon_sym_RPAREN, - ACTIONS(2699), 1, - anon_sym_COMMA, - STATE(1241), 1, - aux_sym_match_class_pattern_repeat2, - [55087] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2687), 1, - anon_sym_RPAREN, - ACTIONS(2689), 1, - anon_sym_COMMA, - STATE(1267), 1, - aux_sym_match_class_pattern_repeat2, - [55100] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2701), 1, - anon_sym_COMMA, - ACTIONS(2703), 1, - anon_sym_RBRACK, - STATE(1287), 1, - aux_sym_subscript_repeat1, - [55113] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2705), 1, - anon_sym_COMMA, - ACTIONS(2707), 1, - anon_sym_RBRACE, - STATE(1283), 1, - aux_sym_dictionary_repeat1, - [55126] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2709), 1, - anon_sym_COMMA, - ACTIONS(2711), 1, - anon_sym_RBRACK, - STATE(1287), 1, - aux_sym_subscript_repeat1, - [55139] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2713), 1, - anon_sym_COMMA, - ACTIONS(2715), 1, - anon_sym_RBRACE, - STATE(1283), 1, - aux_sym_dictionary_repeat1, - [55152] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2717), 1, - anon_sym_COMMA, - ACTIONS(2719), 1, - anon_sym_RBRACK, - STATE(1344), 1, - aux_sym_open_sequence_match_pattern_repeat1, - [55165] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2721), 1, - anon_sym_COMMA, - ACTIONS(2723), 1, - anon_sym_RBRACE, - STATE(1283), 1, - aux_sym_dictionary_repeat1, - [55178] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2725), 1, - anon_sym_COMMA, - ACTIONS(2727), 1, - anon_sym_RBRACE, - STATE(1338), 1, - aux_sym_match_mapping_pattern_repeat1, - [55191] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1846), 1, - anon_sym_RPAREN, - ACTIONS(2729), 1, - anon_sym_COMMA, - STATE(1284), 1, - aux_sym__parameters_repeat1, - [55204] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1136), 3, + ACTIONS(2635), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - [55213] = 4, + [53968] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2416), 1, + ACTIONS(2366), 1, + anon_sym_COLON, + ACTIONS(2421), 1, + anon_sym_RBRACE, + STATE(1484), 1, + sym_format_specifier, + [53981] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2637), 3, anon_sym_RPAREN, - ACTIONS(2731), 1, anon_sym_COMMA, - STATE(1120), 1, - aux_sym__collection_elements_repeat1, - [55226] = 3, + anon_sym_COLON, + [53990] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2050), 1, - anon_sym_from, - ACTIONS(2060), 2, + ACTIONS(2637), 1, + anon_sym_COLON, + ACTIONS(2639), 1, + anon_sym_COMMA, + STATE(1209), 1, + aux_sym__parameters_repeat1, + [54003] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2215), 1, + anon_sym_COMMA, + ACTIONS(2217), 1, + anon_sym_RBRACE, + STATE(1232), 1, + aux_sym_dictionary_repeat1, + [54016] = 3, + ACTIONS(1874), 1, + sym_comment, + ACTIONS(2302), 1, + anon_sym_RBRACE, + ACTIONS(2304), 2, + anon_sym_LBRACE2, + aux_sym_format_specifier_token1, + [54027] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2509), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + [54036] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2642), 1, + anon_sym_RPAREN, + ACTIONS(2644), 1, + anon_sym_COMMA, + STATE(1282), 1, + aux_sym_argument_list_repeat1, + [54049] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2614), 1, + anon_sym_RPAREN, + ACTIONS(2646), 1, + anon_sym_COMMA, + STATE(1238), 1, + aux_sym__parameters_repeat1, + [54062] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2648), 1, + anon_sym_RPAREN, + ACTIONS(2650), 1, + anon_sym_COMMA, + STATE(1282), 1, + aux_sym_argument_list_repeat1, + [54075] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2652), 1, + anon_sym_RPAREN, + ACTIONS(2654), 1, + anon_sym_COMMA, + STATE(1282), 1, + aux_sym_argument_list_repeat1, + [54088] = 3, + ACTIONS(1874), 1, + sym_comment, + ACTIONS(2231), 1, + anon_sym_RBRACE, + ACTIONS(2233), 2, + anon_sym_LBRACE2, + aux_sym_format_specifier_token1, + [54099] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2656), 1, + anon_sym_COMMA, + ACTIONS(2658), 1, + anon_sym_RBRACK, + STATE(1188), 1, + aux_sym_subscript_repeat1, + [54112] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2660), 1, + anon_sym_COMMA, + ACTIONS(2662), 1, + anon_sym_RBRACK, + STATE(1188), 1, + aux_sym_subscript_repeat1, + [54125] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2664), 3, sym__newline, - anon_sym_SEMI, - [55237] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1824), 1, anon_sym_COMMA, - ACTIONS(2733), 1, - anon_sym_in, - STATE(884), 1, - aux_sym__patterns_repeat1, - [55250] = 4, + anon_sym_SEMI, + [54134] = 3, + ACTIONS(1874), 1, + sym_comment, + ACTIONS(2666), 1, + anon_sym_RBRACE, + ACTIONS(2668), 2, + anon_sym_LBRACE2, + aux_sym_format_specifier_token1, + [54145] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2672), 1, + ACTIONS(2366), 1, + anon_sym_COLON, + ACTIONS(2670), 1, + anon_sym_RBRACE, + STATE(1472), 1, + sym_format_specifier, + [54158] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2205), 1, sym_identifier, - ACTIONS(2735), 1, - anon_sym_RPAREN, - STATE(1412), 1, - sym_match_keyword_pattern, - [55263] = 3, + STATE(1165), 1, + sym_dotted_name, + STATE(1198), 1, + sym_aliased_import, + [54171] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(976), 1, - anon_sym_except, - ACTIONS(974), 2, - anon_sym_except_STAR, - anon_sym_finally, - [55274] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1989), 1, - anon_sym_RPAREN, - ACTIONS(1991), 1, + ACTIONS(1776), 1, anon_sym_COMMA, - STATE(1286), 1, - aux_sym_argument_list_repeat1, - [55287] = 4, + ACTIONS(2672), 1, + anon_sym_in, + STATE(854), 1, + aux_sym__patterns_repeat1, + [54184] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2737), 1, - anon_sym_RPAREN, - ACTIONS(2739), 1, + ACTIONS(2674), 1, anon_sym_COMMA, - STATE(1288), 1, - aux_sym_argument_list_repeat1, - [55300] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2167), 1, - anon_sym_COMMA, - ACTIONS(2169), 1, - anon_sym_RBRACE, - STATE(1252), 1, - aux_sym_dictionary_repeat1, - [55313] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2195), 1, - anon_sym_COMMA, - ACTIONS(2197), 1, + ACTIONS(2676), 1, anon_sym_RBRACK, - STATE(1291), 1, - aux_sym_subscript_repeat1, - [55326] = 4, + STATE(1272), 1, + aux_sym_open_sequence_match_pattern_repeat1, + [54197] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2735), 1, - anon_sym_RPAREN, - ACTIONS(2741), 1, + ACTIONS(2503), 1, + sym_identifier, + STATE(1234), 1, + sym_dotted_name, + STATE(1336), 1, + sym_aliased_import, + [54210] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2678), 1, anon_sym_COMMA, - STATE(1237), 1, - aux_sym_match_class_pattern_repeat2, - [55339] = 2, + ACTIONS(2680), 1, + anon_sym_RBRACE, + STATE(1260), 1, + aux_sym_match_mapping_pattern_repeat1, + [54223] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2743), 3, + ACTIONS(2682), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_EQ, - [55348] = 4, + [54232] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2359), 1, - anon_sym_COLON, - ACTIONS(2510), 1, - anon_sym_RBRACE, - STATE(1414), 1, - sym_format_specifier, - [55361] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2672), 1, - sym_identifier, - ACTIONS(2745), 1, - anon_sym_RPAREN, - STATE(1412), 1, - sym_match_keyword_pattern, - [55374] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1719), 1, - anon_sym_RPAREN, - ACTIONS(2747), 1, + ACTIONS(2684), 1, anon_sym_COMMA, - STATE(1295), 1, - aux_sym_match_class_pattern_repeat1, - [55387] = 4, + ACTIONS(2687), 1, + anon_sym_RBRACK, + STATE(1229), 1, + aux_sym_type_parameters_repeat1, + [54245] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2344), 1, + ACTIONS(2689), 1, + anon_sym_COMMA, + ACTIONS(2691), 1, + anon_sym_RBRACE, + STATE(1197), 1, + aux_sym_dictionary_repeat1, + [54258] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2169), 3, + sym__newline, + anon_sym_EQ, + anon_sym_SEMI, + [54267] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2693), 1, + anon_sym_COMMA, + ACTIONS(2695), 1, + anon_sym_RBRACE, + STATE(1197), 1, + aux_sym_dictionary_repeat1, + [54280] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2475), 1, + anon_sym_RPAREN, + ACTIONS(2697), 1, + anon_sym_COMMA, + STATE(1233), 1, + aux_sym__import_list_repeat1, + [54293] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2515), 1, + anon_sym_as, + ACTIONS(2568), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [54304] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2700), 1, + anon_sym_EQ, + ACTIONS(2702), 2, + sym__newline, + anon_sym_SEMI, + [54315] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2704), 1, + anon_sym_COMMA, + ACTIONS(2706), 1, + anon_sym_RBRACE, + STATE(1197), 1, + aux_sym_dictionary_repeat1, + [54328] = 3, + ACTIONS(1874), 1, + sym_comment, + ACTIONS(2268), 1, + anon_sym_RBRACE, + ACTIONS(2270), 2, + anon_sym_LBRACE2, + aux_sym_format_specifier_token1, + [54339] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1820), 1, + anon_sym_RPAREN, + ACTIONS(2708), 1, + anon_sym_COMMA, + STATE(1266), 1, + aux_sym__parameters_repeat1, + [54352] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2710), 1, + anon_sym_in, + ACTIONS(2712), 2, + sym__newline, + anon_sym_SEMI, + [54363] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2312), 1, anon_sym_LPAREN, - ACTIONS(2749), 1, + ACTIONS(2714), 1, anon_sym_COLON, - STATE(1482), 1, + STATE(1442), 1, sym_argument_list, - [55400] = 4, + [54376] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1719), 1, - anon_sym_RPAREN, - ACTIONS(2672), 1, - sym_identifier, - STATE(1412), 1, - sym_match_keyword_pattern, - [55413] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1014), 1, - anon_sym_except, - ACTIONS(1012), 2, - anon_sym_except_STAR, - anon_sym_finally, - [55424] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1719), 1, - anon_sym_RPAREN, - ACTIONS(2751), 1, + ACTIONS(2629), 1, anon_sym_COMMA, - STATE(1237), 1, - aux_sym_match_class_pattern_repeat2, - [55437] = 4, + ACTIONS(2716), 1, + anon_sym_RBRACK, + STATE(1229), 1, + aux_sym_type_parameters_repeat1, + [54389] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1018), 1, + ACTIONS(2581), 1, anon_sym_RPAREN, - ACTIONS(2753), 1, + ACTIONS(2718), 1, anon_sym_COMMA, - STATE(1169), 1, - aux_sym_with_clause_repeat1, - [55450] = 4, + STATE(1233), 1, + aux_sym__import_list_repeat1, + [54402] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2755), 1, - anon_sym_COMMA, - ACTIONS(2758), 1, - anon_sym_RBRACE, - STATE(1277), 1, - aux_sym_match_mapping_pattern_repeat1, - [55463] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2760), 3, + ACTIONS(2581), 1, anon_sym_RPAREN, + ACTIONS(2720), 1, anon_sym_COMMA, + STATE(1233), 1, + aux_sym__import_list_repeat1, + [54415] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2722), 1, + anon_sym_RPAREN, + ACTIONS(2724), 1, + anon_sym_COMMA, + STATE(1215), 1, + aux_sym_argument_list_repeat1, + [54428] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1961), 1, + anon_sym_RPAREN, + ACTIONS(1963), 1, + anon_sym_COMMA, + STATE(1268), 1, + aux_sym_argument_list_repeat1, + [54441] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2726), 1, + anon_sym_RPAREN, + ACTIONS(2728), 1, + anon_sym_COMMA, + STATE(1270), 1, + aux_sym_argument_list_repeat1, + [54454] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1884), 1, + anon_sym_COMMA, + ACTIONS(2730), 1, + anon_sym_RPAREN, + STATE(1085), 1, + aux_sym__collection_elements_repeat1, + [54467] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2197), 1, + anon_sym_COMMA, + ACTIONS(2199), 1, + anon_sym_RBRACK, + STATE(1273), 1, + aux_sym_subscript_repeat1, + [54480] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1955), 1, + anon_sym_RPAREN, + ACTIONS(1957), 1, + anon_sym_COMMA, + STATE(1213), 1, + aux_sym_argument_list_repeat1, + [54493] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2732), 3, + anon_sym_LPAREN, anon_sym_COLON, - [55472] = 4, + anon_sym_EQ, + [54502] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2366), 1, + anon_sym_COLON, + ACTIONS(2558), 1, + anon_sym_RBRACE, + STATE(1399), 1, + sym_format_specifier, + [54515] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2734), 1, + anon_sym_COMMA, + ACTIONS(2736), 1, + anon_sym_RBRACK, + STATE(1188), 1, + aux_sym_subscript_repeat1, + [54528] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2738), 1, + anon_sym_COMMA, + ACTIONS(2740), 1, + anon_sym_COLON, + STATE(1101), 1, + aux_sym_with_clause_repeat1, + [54541] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2742), 1, + anon_sym_RPAREN, + ACTIONS(2744), 1, + anon_sym_COMMA, + STATE(1192), 1, + aux_sym_with_clause_repeat1, + [54554] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2746), 1, + anon_sym_COLON, + ACTIONS(2550), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [54565] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2748), 1, + anon_sym_COMMA, + ACTIONS(2750), 1, + anon_sym_RBRACE, + STATE(1197), 1, + aux_sym_dictionary_repeat1, + [54578] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2752), 1, + anon_sym_COMMA, + ACTIONS(2754), 1, + anon_sym_RBRACK, + STATE(1188), 1, + aux_sym_subscript_repeat1, + [54591] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1687), 1, + anon_sym_RPAREN, + ACTIONS(2756), 1, + anon_sym_COMMA, + STATE(1040), 1, + aux_sym_open_sequence_match_pattern_repeat1, + [54604] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2408), 1, + anon_sym_RPAREN, + ACTIONS(2513), 1, + anon_sym_COMMA, + STATE(1243), 1, + aux_sym__import_list_repeat1, + [54617] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1812), 1, + anon_sym_RBRACE, + ACTIONS(2758), 1, + anon_sym_COMMA, + STATE(1298), 1, + aux_sym_match_mapping_pattern_repeat1, + [54630] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2193), 1, + anon_sym_COMMA, + ACTIONS(2195), 1, + anon_sym_RBRACE, + STATE(1230), 1, + aux_sym_dictionary_repeat1, + [54643] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1884), 1, + anon_sym_COMMA, + ACTIONS(2760), 1, + anon_sym_RPAREN, + STATE(1299), 1, + aux_sym__collection_elements_repeat1, + [54656] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2762), 1, - anon_sym_COMMA, + sym_identifier, ACTIONS(2764), 1, - anon_sym_RBRACE, - STATE(1283), 1, - aux_sym_dictionary_repeat1, - [55485] = 4, + anon_sym_RPAREN, + STATE(1320), 1, + sym_match_keyword_pattern, + [54669] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2766), 1, - anon_sym_COMMA, - ACTIONS(2769), 1, - anon_sym_RBRACK, - STATE(1280), 1, - aux_sym_type_parameters_repeat1, - [55498] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2771), 3, anon_sym_RPAREN, + ACTIONS(2768), 1, anon_sym_COMMA, - anon_sym_COLON, - [55507] = 4, + STATE(1282), 1, + aux_sym_argument_list_repeat1, + [54682] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1900), 1, + ACTIONS(2770), 1, anon_sym_RPAREN, - ACTIONS(1931), 1, + ACTIONS(2772), 1, anon_sym_COMMA, - STATE(1315), 1, - aux_sym__collection_elements_repeat1, - [55520] = 4, + STATE(1285), 1, + aux_sym_match_class_pattern_repeat2, + [54695] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2773), 1, - anon_sym_COMMA, - ACTIONS(2776), 1, - anon_sym_RBRACE, - STATE(1283), 1, - aux_sym_dictionary_repeat1, - [55533] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2760), 1, + ACTIONS(2637), 1, anon_sym_RPAREN, - ACTIONS(2778), 1, + ACTIONS(2774), 1, anon_sym_COMMA, - STATE(1284), 1, + STATE(1266), 1, aux_sym__parameters_repeat1, - [55546] = 4, + [54708] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2424), 1, + ACTIONS(2777), 1, anon_sym_RPAREN, - ACTIONS(2589), 1, + ACTIONS(2779), 1, anon_sym_COMMA, - STATE(1334), 1, - aux_sym__import_list_repeat1, - [55559] = 4, + STATE(1282), 1, + aux_sym_argument_list_repeat1, + [54721] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2781), 1, anon_sym_RPAREN, ACTIONS(2783), 1, anon_sym_COMMA, - STATE(1300), 1, + STATE(1282), 1, aux_sym_argument_list_repeat1, - [55572] = 4, + [54734] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2762), 1, + sym_identifier, + ACTIONS(2770), 1, + anon_sym_RPAREN, + STATE(1320), 1, + sym_match_keyword_pattern, + [54747] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2785), 1, - anon_sym_COMMA, - ACTIONS(2788), 1, - anon_sym_RBRACK, - STATE(1287), 1, - aux_sym_subscript_repeat1, - [55585] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2790), 1, anon_sym_RPAREN, - ACTIONS(2792), 1, + ACTIONS(2787), 1, anon_sym_COMMA, - STATE(1300), 1, + STATE(1282), 1, aux_sym_argument_list_repeat1, - [55598] = 4, + [54760] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2794), 1, + ACTIONS(2789), 1, anon_sym_RPAREN, - ACTIONS(2796), 1, + ACTIONS(2791), 1, anon_sym_COMMA, - STATE(1300), 1, + STATE(1282), 1, aux_sym_argument_list_repeat1, - [55611] = 4, + [54773] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2798), 1, - anon_sym_COMMA, - ACTIONS(2800), 1, - anon_sym_RBRACE, - STATE(1283), 1, - aux_sym_dictionary_repeat1, - [55624] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2802), 1, - anon_sym_COMMA, - ACTIONS(2804), 1, + ACTIONS(1687), 1, anon_sym_RBRACK, - STATE(1287), 1, - aux_sym_subscript_repeat1, - [55637] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2806), 1, + ACTIONS(2793), 1, anon_sym_COMMA, - ACTIONS(2808), 1, - anon_sym_RBRACK, - STATE(1287), 1, - aux_sym_subscript_repeat1, - [55650] = 4, + STATE(1040), 1, + aux_sym_open_sequence_match_pattern_repeat1, + [54786] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2359), 1, + ACTIONS(2795), 1, + anon_sym_COMMA, + ACTIONS(2797), 1, + anon_sym_RBRACK, + STATE(1188), 1, + aux_sym_subscript_repeat1, + [54799] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2799), 1, + anon_sym_COMMA, + ACTIONS(2801), 1, + anon_sym_RBRACK, + STATE(1188), 1, + aux_sym_subscript_repeat1, + [54812] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2366), 1, anon_sym_COLON, - ACTIONS(2810), 1, + ACTIONS(2803), 1, anon_sym_RBRACE, - STATE(1478), 1, + STATE(1394), 1, sym_format_specifier, - [55663] = 4, + [54825] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2233), 1, + ACTIONS(2147), 1, anon_sym_COMMA, - ACTIONS(2235), 1, + ACTIONS(2151), 1, anon_sym_RBRACK, - STATE(1317), 1, + STATE(1218), 1, aux_sym_subscript_repeat1, - [55676] = 4, + [54838] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2812), 1, + ACTIONS(2805), 1, anon_sym_RPAREN, - ACTIONS(2814), 1, + ACTIONS(2807), 1, anon_sym_COMMA, - STATE(1295), 1, - aux_sym_match_class_pattern_repeat1, - [55689] = 3, + STATE(1265), 1, + aux_sym_match_class_pattern_repeat2, + [54851] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2591), 1, - anon_sym_as, - ACTIONS(2548), 2, + ACTIONS(2805), 1, anon_sym_RPAREN, + ACTIONS(2807), 1, anon_sym_COMMA, - [55700] = 4, + STATE(1285), 1, + aux_sym_match_class_pattern_repeat2, + [54864] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2817), 1, - anon_sym_if, - ACTIONS(2819), 1, - anon_sym_COLON, - STATE(1490), 1, - sym_guard, - [55713] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2191), 1, - anon_sym_COMMA, - ACTIONS(2193), 1, - anon_sym_RBRACE, - STATE(1290), 1, - aux_sym_dictionary_repeat1, - [55726] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2683), 1, - anon_sym_COMMA, - ACTIONS(2821), 1, - anon_sym_COLON, - STATE(1169), 1, - aux_sym_with_clause_repeat1, - [55739] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2823), 1, + ACTIONS(2809), 1, anon_sym_RPAREN, - ACTIONS(2825), 1, + ACTIONS(2811), 1, anon_sym_COMMA, - STATE(1300), 1, + STATE(1282), 1, aux_sym_argument_list_repeat1, - [55752] = 4, + [54877] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(2762), 1, + sym_identifier, + ACTIONS(2805), 1, + anon_sym_RPAREN, + STATE(1320), 1, + sym_match_keyword_pattern, + [54890] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2738), 1, + anon_sym_COMMA, + ACTIONS(2813), 1, + anon_sym_COLON, + STATE(1253), 1, + aux_sym_with_clause_repeat1, + [54903] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2815), 1, + anon_sym_RPAREN, + ACTIONS(2817), 1, + anon_sym_COMMA, + STATE(1282), 1, + aux_sym_argument_list_repeat1, + [54916] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2820), 1, + anon_sym_RPAREN, + ACTIONS(2822), 1, + anon_sym_COMMA, + STATE(1267), 1, + aux_sym_argument_list_repeat1, + [54929] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2185), 1, + sym_identifier, + ACTIONS(2824), 1, + anon_sym_import, + STATE(1438), 1, + sym_dotted_name, + [54942] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2826), 1, + anon_sym_RPAREN, ACTIONS(2828), 1, anon_sym_COMMA, - ACTIONS(2830), 1, - anon_sym_RBRACK, - STATE(1319), 1, - aux_sym_type_parameters_repeat1, - [55765] = 4, + STATE(1285), 1, + aux_sym_match_class_pattern_repeat2, + [54955] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2832), 1, + ACTIONS(1691), 1, anon_sym_RPAREN, - ACTIONS(2834), 1, - anon_sym_COMMA, - STATE(1276), 1, - aux_sym_with_clause_repeat1, - [55778] = 4, + ACTIONS(2762), 1, + sym_identifier, + STATE(1320), 1, + sym_match_keyword_pattern, + [54968] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1931), 1, + ACTIONS(1776), 1, anon_sym_COMMA, - ACTIONS(1967), 1, - anon_sym_RPAREN, - STATE(1315), 1, - aux_sym__collection_elements_repeat1, - [55791] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2563), 3, - sym__newline, - anon_sym_COMMA, - anon_sym_SEMI, - [55800] = 3, - ACTIONS(1871), 1, - sym_comment, - ACTIONS(2270), 1, - anon_sym_RBRACE, - ACTIONS(2272), 2, - anon_sym_LBRACE2, - aux_sym_format_specifier_token1, - [55811] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2836), 1, - anon_sym_COLON, - ACTIONS(2520), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [55822] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1824), 1, - anon_sym_COMMA, - ACTIONS(2838), 1, + ACTIONS(2831), 1, anon_sym_in, - STATE(884), 1, + STATE(854), 1, aux_sym__patterns_repeat1, - [55835] = 3, - ACTIONS(1871), 1, - sym_comment, - ACTIONS(2266), 1, - anon_sym_RBRACE, - ACTIONS(2268), 2, - anon_sym_LBRACE2, - aux_sym_format_specifier_token1, - [55846] = 3, + [54981] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2840), 1, - anon_sym_in, - ACTIONS(2842), 2, - sym__newline, - anon_sym_SEMI, - [55857] = 4, + ACTIONS(2833), 1, + anon_sym_RPAREN, + ACTIONS(2835), 1, + anon_sym_COMMA, + STATE(1177), 1, + aux_sym_match_class_pattern_repeat1, + [54994] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2760), 1, - anon_sym_COLON, + ACTIONS(2837), 1, + anon_sym_RPAREN, + ACTIONS(2839), 1, + anon_sym_COMMA, + STATE(1289), 1, + aux_sym_match_class_pattern_repeat1, + [55007] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1691), 1, + anon_sym_RPAREN, + ACTIONS(2842), 1, + anon_sym_COMMA, + STATE(1278), 1, + aux_sym_match_class_pattern_repeat2, + [55020] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2833), 1, + anon_sym_RPAREN, ACTIONS(2844), 1, anon_sym_COMMA, - STATE(1310), 1, - aux_sym__parameters_repeat1, - [55870] = 4, + STATE(1302), 1, + aux_sym_match_class_pattern_repeat2, + [55033] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2348), 1, - anon_sym_LBRACK, - ACTIONS(2847), 1, - anon_sym_EQ, - STATE(1499), 1, - sym_type_parameters, - [55883] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2565), 3, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(2846), 1, + anon_sym_if, + ACTIONS(2848), 1, anon_sym_COLON, - [55892] = 4, + STATE(1453), 1, + sym_guard, + [55046] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2849), 1, - anon_sym_RPAREN, - ACTIONS(2851), 1, + ACTIONS(1776), 1, anon_sym_COMMA, - STATE(1300), 1, - aux_sym_argument_list_repeat1, - [55905] = 4, + ACTIONS(2850), 1, + anon_sym_in, + STATE(854), 1, + aux_sym__patterns_repeat1, + [55059] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2853), 1, - anon_sym_RPAREN, - ACTIONS(2855), 1, + ACTIONS(2177), 1, anon_sym_COMMA, - STATE(1300), 1, - aux_sym_argument_list_repeat1, - [55918] = 4, + ACTIONS(2179), 1, + anon_sym_RBRACK, + STATE(1257), 1, + aux_sym_subscript_repeat1, + [55072] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2416), 1, - anon_sym_RPAREN, - ACTIONS(2857), 1, + ACTIONS(2107), 1, + anon_sym_from, + ACTIONS(2111), 2, + sym__newline, + anon_sym_SEMI, + [55083] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2852), 1, + sym_identifier, + ACTIONS(2854), 1, + sym_match_wildcard_pattern, + STATE(1083), 1, + sym_match_capture_pattern, + [55096] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1884), 1, anon_sym_COMMA, - STATE(1120), 1, + ACTIONS(1947), 1, + anon_sym_RPAREN, + STATE(1301), 1, aux_sym__collection_elements_repeat1, - [55931] = 4, + [55109] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(2856), 1, + anon_sym_COMMA, ACTIONS(2859), 1, + anon_sym_RBRACE, + STATE(1298), 1, + aux_sym_match_mapping_pattern_repeat1, + [55122] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2362), 1, anon_sym_RPAREN, ACTIONS(2861), 1, anon_sym_COMMA, - STATE(1300), 1, - aux_sym_argument_list_repeat1, - [55944] = 4, + STATE(1094), 1, + aux_sym__collection_elements_repeat1, + [55135] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2863), 1, anon_sym_COMMA, - ACTIONS(2865), 1, - anon_sym_RBRACK, - STATE(1287), 1, - aux_sym_subscript_repeat1, - [55957] = 3, + ACTIONS(2865), 2, + anon_sym_if, + anon_sym_COLON, + [55146] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, - anon_sym_except, - ACTIONS(970), 2, - anon_sym_except_STAR, - anon_sym_finally, - [55968] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2828), 1, - anon_sym_COMMA, + ACTIONS(2362), 1, + anon_sym_RPAREN, ACTIONS(2867), 1, - anon_sym_RBRACK, - STATE(1280), 1, - aux_sym_type_parameters_repeat1, - [55981] = 4, + anon_sym_COMMA, + STATE(1094), 1, + aux_sym__collection_elements_repeat1, + [55159] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(1693), 1, + anon_sym_RPAREN, ACTIONS(2869), 1, anon_sym_COMMA, + STATE(1285), 1, + aux_sym_match_class_pattern_repeat2, + [55172] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1693), 1, + anon_sym_RPAREN, + ACTIONS(2762), 1, + sym_identifier, + STATE(1320), 1, + sym_match_keyword_pattern, + [55185] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2846), 1, + anon_sym_if, ACTIONS(2871), 1, - anon_sym_RBRACK, - STATE(1287), 1, - aux_sym_subscript_repeat1, - [55994] = 3, - ACTIONS(1871), 1, + anon_sym_COLON, + STATE(1376), 1, + sym_guard, + [55198] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2167), 2, + sym__newline, + anon_sym_SEMI, + [55206] = 3, + ACTIONS(3), 1, sym_comment, ACTIONS(2873), 1, - anon_sym_RBRACE, - ACTIONS(2875), 2, - anon_sym_LBRACE2, - aux_sym_format_specifier_token1, - [56005] = 4, + sym_integer, + ACTIONS(2875), 1, + sym_float, + [55216] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2359), 1, - anon_sym_COLON, + ACTIONS(2161), 2, + sym__newline, + anon_sym_SEMI, + [55224] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2859), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [55232] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1810), 1, + anon_sym_RBRACE, ACTIONS(2877), 1, + anon_sym_COMMA, + [55242] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2879), 2, + anon_sym_COMMA, anon_sym_RBRACE, - STATE(1440), 1, - sym_format_specifier, - [56018] = 4, + [55250] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1931), 1, - anon_sym_COMMA, - ACTIONS(2879), 1, - anon_sym_RPAREN, - STATE(1258), 1, - aux_sym__collection_elements_repeat1, - [56031] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1931), 1, - anon_sym_COMMA, ACTIONS(2881), 1, - anon_sym_RPAREN, - STATE(1128), 1, - aux_sym__collection_elements_repeat1, - [56044] = 4, + anon_sym_COMMA, + STATE(1133), 1, + aux_sym_open_sequence_match_pattern_repeat1, + [55260] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2344), 1, - anon_sym_LPAREN, ACTIONS(2883), 1, anon_sym_COLON, - STATE(1479), 1, - sym_argument_list, - [56057] = 4, + ACTIONS(2885), 1, + anon_sym_DASH_GT, + [55270] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2237), 1, - sym_identifier, - STATE(1178), 1, - sym_dotted_name, - STATE(1242), 1, - sym_aliased_import, - [56070] = 2, + ACTIONS(2887), 2, + sym__newline, + anon_sym_SEMI, + [55278] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2885), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_EQ, - [56079] = 2, + ACTIONS(2889), 2, + sym__newline, + anon_sym_SEMI, + [55286] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2887), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - [56088] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2889), 1, - anon_sym_RPAREN, ACTIONS(2891), 1, - anon_sym_COMMA, - STATE(1275), 1, - aux_sym_match_class_pattern_repeat2, - [56101] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2524), 1, - anon_sym_EQ, - ACTIONS(2520), 2, - anon_sym_COMMA, anon_sym_COLON, - [56112] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1824), 1, - anon_sym_COMMA, ACTIONS(2893), 1, - anon_sym_in, - STATE(884), 1, - aux_sym__patterns_repeat1, - [56125] = 4, + anon_sym_DASH_GT, + [55296] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2889), 1, - anon_sym_RPAREN, ACTIONS(2895), 1, anon_sym_COMMA, - STATE(1271), 1, - aux_sym_match_class_pattern_repeat1, - [56138] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1715), 1, - anon_sym_RPAREN, ACTIONS(2897), 1, - anon_sym_COMMA, - STATE(1060), 1, - aux_sym_open_sequence_match_pattern_repeat1, - [56151] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2602), 1, - anon_sym_RPAREN, - ACTIONS(2899), 1, - anon_sym_COMMA, - STATE(1230), 1, - aux_sym__import_list_repeat1, - [56164] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2602), 1, - anon_sym_RPAREN, - ACTIONS(2901), 1, - anon_sym_COMMA, - STATE(1230), 1, - aux_sym__import_list_repeat1, - [56177] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2668), 1, - anon_sym_COLON, - ACTIONS(2903), 1, - anon_sym_COMMA, - STATE(1243), 1, - aux_sym__parameters_repeat1, - [56190] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1006), 1, - anon_sym_except, - ACTIONS(1008), 2, - anon_sym_except_STAR, - anon_sym_finally, - [56201] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1844), 1, anon_sym_RBRACE, - ACTIONS(2905), 1, + [55306] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2899), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1277), 1, - aux_sym_match_mapping_pattern_repeat1, - [56214] = 3, + [55314] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1000), 1, + ACTIONS(2901), 2, + sym__newline, + anon_sym_SEMI, + [55322] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2837), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [55330] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2826), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [55338] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2903), 2, + sym__newline, + anon_sym_SEMI, + [55346] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(914), 2, anon_sym_except, - ACTIONS(1002), 2, - anon_sym_except_STAR, anon_sym_finally, - [56225] = 4, + [55354] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2171), 1, - sym_identifier, - ACTIONS(2907), 1, - anon_sym_import, - STATE(1471), 1, - sym_dotted_name, - [56238] = 4, + ACTIONS(2905), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [55362] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2909), 1, + ACTIONS(2153), 2, + sym__newline, + anon_sym_SEMI, + [55370] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2907), 2, + sym__newline, + anon_sym_SEMI, + [55378] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2109), 1, + anon_sym_COMMA, + STATE(1073), 1, + aux_sym_expression_list_repeat1, + [55388] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2909), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [55396] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2762), 1, sym_identifier, + STATE(1320), 1, + sym_match_keyword_pattern, + [55406] = 3, + ACTIONS(3), 1, + sym_comment, ACTIONS(2911), 1, - sym_match_wildcard_pattern, - STATE(1121), 1, - sym_match_capture_pattern, - [56251] = 4, + sym_integer, + ACTIONS(2913), 1, + sym_float, + [55416] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1951), 1, - anon_sym_DOT, - ACTIONS(1959), 1, + ACTIONS(2446), 1, + anon_sym_LPAREN, + STATE(1315), 1, + sym_parameters, + [55426] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2915), 2, + sym__newline, + anon_sym_SEMI, + [55434] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(906), 2, + anon_sym_except, + anon_sym_finally, + [55442] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2917), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [55450] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2919), 1, anon_sym_COLON, - STATE(907), 1, - aux_sym_match_value_pattern_repeat1, - [56264] = 2, + ACTIONS(2921), 1, + anon_sym_DASH_GT, + [55460] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2520), 3, + ACTIONS(902), 2, + anon_sym_except, + anon_sym_finally, + [55468] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2568), 2, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - [56273] = 4, + [55476] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1715), 1, - anon_sym_RBRACK, - ACTIONS(2913), 1, + ACTIONS(2664), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1060), 1, - aux_sym_open_sequence_match_pattern_repeat1, - [56286] = 3, - ACTIONS(1871), 1, - sym_comment, - ACTIONS(2292), 1, - anon_sym_RBRACE, - ACTIONS(2294), 2, - anon_sym_LBRACE2, - aux_sym_format_specifier_token1, - [56297] = 4, + [55484] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2817), 1, - anon_sym_if, - ACTIONS(2915), 1, - anon_sym_COLON, - STATE(1459), 1, - sym_guard, - [56310] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2917), 1, - anon_sym_COMMA, - ACTIONS(2919), 2, - anon_sym_if, - anon_sym_COLON, - [56321] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2921), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [56329] = 2, + ACTIONS(2446), 1, + anon_sym_LPAREN, + STATE(1312), 1, + sym_parameters, + [55494] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2923), 2, sym__newline, anon_sym_SEMI, - [56337] = 3, + [55502] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2925), 1, - anon_sym_COMMA, - STATE(1165), 1, - aux_sym_open_sequence_match_pattern_repeat1, - [56347] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2520), 2, - anon_sym_COMMA, anon_sym_COLON, - [56355] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2927), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [56363] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2929), 1, - anon_sym_COLON, - ACTIONS(2931), 1, + ACTIONS(2927), 1, anon_sym_DASH_GT, - [56373] = 3, + [55512] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2933), 1, - sym_integer, - ACTIONS(2935), 1, - sym_float, - [56383] = 2, + ACTIONS(894), 2, + anon_sym_except, + anon_sym_finally, + [55520] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2929), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [55528] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2931), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [55536] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2376), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [55544] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2933), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [55552] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2935), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [55560] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2937), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [56391] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2939), 2, sym__newline, anon_sym_SEMI, - [56399] = 2, + [55568] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2941), 2, + ACTIONS(2939), 1, anon_sym_COLON, + ACTIONS(2941), 1, anon_sym_DASH_GT, - [56407] = 2, + [55578] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2943), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [56415] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2945), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [56423] = 3, + ACTIONS(2943), 1, + sym_integer, + ACTIONS(2945), 1, + sym_float, + [55588] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2947), 1, anon_sym_COLON, ACTIONS(2949), 1, anon_sym_DASH_GT, - [56433] = 3, + [55598] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2951), 1, - anon_sym_COLON, - ACTIONS(2953), 1, - anon_sym_DASH_GT, - [56443] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1842), 1, + ACTIONS(2680), 1, anon_sym_RBRACE, - ACTIONS(2955), 1, + ACTIONS(2951), 1, anon_sym_COMMA, - [56453] = 3, + [55608] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1951), 1, + ACTIONS(1860), 1, anon_sym_DOT, - STATE(1342), 1, + STATE(1178), 1, aux_sym_match_value_pattern_repeat1, - [56463] = 3, + [55618] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2953), 1, + sym_identifier, + STATE(1327), 1, + sym_match_capture_pattern, + [55628] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2955), 2, + sym__newline, + anon_sym_SEMI, + [55636] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2957), 1, - anon_sym_COLON, + anon_sym_COMMA, + STATE(1258), 1, + aux_sym_open_sequence_match_pattern_repeat1, + [55646] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2863), 1, + anon_sym_COMMA, ACTIONS(2959), 1, - anon_sym_DASH_GT, - [56473] = 2, + anon_sym_RPAREN, + [55656] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2354), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [55664] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2961), 2, sym__newline, anon_sym_SEMI, - [56481] = 2, + [55672] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 2, + ACTIONS(2963), 2, anon_sym_RPAREN, anon_sym_COMMA, - [56489] = 3, + [55680] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2963), 1, + ACTIONS(2446), 1, + anon_sym_LPAREN, + STATE(1362), 1, + sym_parameters, + [55690] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2965), 2, anon_sym_COLON, - ACTIONS(2965), 1, anon_sym_DASH_GT, - [56499] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2373), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [56507] = 3, + [55698] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2967), 1, anon_sym_COLON, ACTIONS(2969), 1, anon_sym_DASH_GT, - [56517] = 2, + [55708] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2971), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [56525] = 2, + anon_sym_COLON, + anon_sym_DASH_GT, + [55716] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2758), 2, + ACTIONS(1915), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [56533] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2307), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [56541] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2812), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [56549] = 2, + STATE(949), 1, + aux_sym_expression_list_repeat1, + [55726] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2973), 2, - anon_sym_COLON, - anon_sym_DASH_GT, - [56557] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2975), 2, - anon_sym_RPAREN, anon_sym_COMMA, - [56565] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2977), 1, - anon_sym_COMMA, - ACTIONS(2979), 1, anon_sym_RBRACE, - [56575] = 2, + [55734] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2693), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [56583] = 2, + ACTIONS(2975), 1, + anon_sym_COLON, + ACTIONS(2977), 1, + anon_sym_DASH_GT, + [55744] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2979), 2, + sym__newline, + anon_sym_SEMI, + [55752] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2981), 2, sym__newline, anon_sym_SEMI, - [56591] = 2, + [55760] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1913), 2, + sym__newline, + anon_sym_SEMI, + [55768] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2446), 1, + anon_sym_LPAREN, + STATE(1350), 1, + sym_parameters, + [55778] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(898), 2, + anon_sym_except, + anon_sym_finally, + [55786] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2260), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [55794] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2983), 2, sym__newline, anon_sym_SEMI, - [56599] = 2, + [55802] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1939), 2, + ACTIONS(2575), 2, sym__newline, anon_sym_SEMI, - [56607] = 3, + [55810] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2550), 2, + anon_sym_COMMA, + anon_sym_COLON, + [55818] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2985), 1, - sym_integer, + anon_sym_COLON, + [55825] = 2, + ACTIONS(3), 1, + sym_comment, ACTIONS(2987), 1, - sym_float, - [56617] = 2, + anon_sym_in, + [55832] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2989), 2, - anon_sym_COMMA, + ACTIONS(2989), 1, + anon_sym_RPAREN, + [55839] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2991), 1, anon_sym_RBRACK, - [56625] = 2, + [55846] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2991), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [56633] = 2, + ACTIONS(2993), 1, + anon_sym_COLON, + [55853] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2993), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [56641] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2367), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [56649] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2537), 1, - anon_sym_LPAREN, - STATE(1353), 1, - sym_parameters, - [56659] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2995), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [56667] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2201), 2, - sym__newline, - anon_sym_SEMI, - [56675] = 3, + ACTIONS(2995), 1, + sym_identifier, + [55860] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2997), 1, - anon_sym_COLON, - ACTIONS(2999), 1, - anon_sym_DASH_GT, - [56685] = 3, + anon_sym_RBRACE, + [55867] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2999), 1, + anon_sym_RBRACE, + [55874] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2917), 1, - anon_sym_COMMA, ACTIONS(3001), 1, - anon_sym_RPAREN, - [56695] = 3, + anon_sym_RBRACE, + [55881] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3003), 1, - anon_sym_COMMA, - STATE(1333), 1, - aux_sym_open_sequence_match_pattern_repeat1, - [56705] = 3, + anon_sym_RBRACK, + [55888] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3005), 1, - anon_sym_COLON, + anon_sym_RBRACE, + [55895] = 2, + ACTIONS(3), 1, + sym_comment, ACTIONS(3007), 1, - anon_sym_DASH_GT, - [56715] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2203), 2, - sym__newline, - anon_sym_SEMI, - [56723] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2672), 1, - sym_identifier, - STATE(1412), 1, - sym_match_keyword_pattern, - [56733] = 3, + anon_sym_RPAREN, + [55902] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3009), 1, - sym_integer, + anon_sym_RBRACK, + [55909] = 2, + ACTIONS(3), 1, + sym_comment, ACTIONS(3011), 1, - sym_float, - [56743] = 2, + anon_sym_RPAREN, + [55916] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3013), 2, - sym__newline, - anon_sym_SEMI, - [56751] = 2, + ACTIONS(3013), 1, + anon_sym_import, + [55923] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2213), 2, - sym__newline, - anon_sym_SEMI, - [56759] = 3, + ACTIONS(3015), 1, + anon_sym_import, + [55930] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2052), 1, - anon_sym_COMMA, - STATE(1111), 1, - aux_sym_expression_list_repeat1, - [56769] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2537), 1, - anon_sym_LPAREN, - STATE(1369), 1, - sym_parameters, - [56779] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3015), 2, - sym__newline, - anon_sym_SEMI, - [56787] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3017), 2, - sym__newline, - anon_sym_SEMI, - [56795] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2537), 1, - anon_sym_LPAREN, - STATE(1364), 1, - sym_parameters, - [56805] = 3, + ACTIONS(3017), 1, + anon_sym_RPAREN, + [55937] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3019), 1, - sym_identifier, - STATE(1352), 1, - sym_match_capture_pattern, - [56815] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2537), 1, - anon_sym_LPAREN, - STATE(1367), 1, - sym_parameters, - [56825] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2637), 2, - sym__newline, - anon_sym_SEMI, - [56833] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3021), 2, - sym__newline, - anon_sym_SEMI, - [56841] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3023), 2, - sym__newline, - anon_sym_SEMI, - [56849] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3025), 2, - sym__newline, - anon_sym_SEMI, - [56857] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3027), 2, - sym__newline, - anon_sym_SEMI, - [56865] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3029), 2, - sym__newline, - anon_sym_SEMI, - [56873] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2727), 1, - anon_sym_RBRACE, - ACTIONS(3031), 1, - anon_sym_COMMA, - [56883] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2674), 2, anon_sym_RPAREN, - anon_sym_COMMA, - [56891] = 3, + [55944] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1941), 1, - anon_sym_COMMA, - STATE(966), 1, - aux_sym_expression_list_repeat1, - [56901] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2810), 1, + ACTIONS(3021), 1, anon_sym_RBRACE, - [56908] = 2, + [55951] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3023), 1, + sym_identifier, + [55958] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2831), 1, + anon_sym_in, + [55965] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3025), 1, + anon_sym_COLON, + [55972] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3027), 1, + anon_sym_COLON, + [55979] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2803), 1, + anon_sym_RBRACE, + [55986] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3029), 1, + anon_sym_COLON, + [55993] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3031), 1, + anon_sym_RBRACK, + [56000] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3033), 1, - anon_sym_COLON, - [56915] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2643), 1, - anon_sym_in, - [56922] = 2, + anon_sym_RBRACE, + [56007] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3035), 1, - anon_sym_COLON, - [56929] = 2, + anon_sym_RBRACE, + [56014] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2558), 1, + anon_sym_RBRACE, + [56021] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3037), 1, - sym_identifier, - [56936] = 2, + ts_builtin_sym_end, + [56028] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3039), 1, anon_sym_RPAREN, - [56943] = 2, + [56035] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3041), 1, anon_sym_RBRACE, - [56950] = 2, + [56042] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3043), 1, anon_sym_RBRACE, - [56957] = 2, + [56049] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3045), 1, anon_sym_RBRACK, - [56964] = 2, + [56056] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3047), 1, anon_sym_RPAREN, - [56971] = 2, + [56063] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3049), 1, sym_identifier, - [56978] = 2, + [56070] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3051), 1, - anon_sym_in, - [56985] = 2, + sym_identifier, + [56077] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3053), 1, - anon_sym_COLON, - [56992] = 2, + anon_sym_in, + [56084] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3055), 1, - sym_identifier, - [56999] = 2, + anon_sym_COLON, + [56091] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3057), 1, - anon_sym_COLON, - [57006] = 2, + anon_sym_in, + [56098] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3059), 1, - anon_sym_RBRACE, - [57013] = 2, + sym_identifier, + [56105] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3061), 1, anon_sym_COLON, - [57020] = 2, + [56112] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3063), 1, - anon_sym_RBRACE, - [57027] = 2, + sym_identifier, + [56119] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3065), 1, - anon_sym_COLON, - [57034] = 2, + sym_identifier, + [56126] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3067), 1, - anon_sym_RBRACK, - [57041] = 2, + anon_sym_RBRACE, + [56133] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3069), 1, - anon_sym_RBRACK, - [57048] = 2, + anon_sym_RBRACE, + [56140] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3071), 1, - anon_sym_in, - [57055] = 2, + sym_identifier, + [56147] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3073), 1, anon_sym_COLON, - [57062] = 2, + [56154] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3075), 1, anon_sym_COLON, - [57069] = 2, + [56161] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3077), 1, - anon_sym_COLON, - [57076] = 2, + anon_sym_RBRACK, + [56168] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3079), 1, anon_sym_RPAREN, - [57083] = 2, + [56175] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3081), 1, - anon_sym_RBRACE, - [57090] = 2, + anon_sym_COLON, + [56182] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3083), 1, - anon_sym_RBRACK, - [57097] = 2, + sym_identifier, + [56189] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3085), 1, - anon_sym_RPAREN, - [57104] = 2, + sym_identifier, + [56196] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3087), 1, - anon_sym_RBRACE, - [57111] = 2, + sym_identifier, + [56203] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3089), 1, - anon_sym_RBRACE, - [57118] = 2, + anon_sym_COLON, + [56210] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3091), 1, - anon_sym_COLON, - [57125] = 2, + anon_sym_in, + [56217] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(874), 1, + anon_sym_def, + [56224] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3093), 1, - anon_sym_COLON, - [57132] = 2, + sym_identifier, + [56231] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3095), 1, anon_sym_COLON, - [57139] = 2, + [56238] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3097), 1, anon_sym_RPAREN, - [57146] = 2, + [56245] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2289), 1, + anon_sym_COLON, + [56252] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3099), 1, - anon_sym_COLON, - [57153] = 2, + anon_sym_import, + [56259] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3101), 1, - anon_sym_RPAREN, - [57160] = 2, + anon_sym_RBRACE, + [56266] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3103), 1, - anon_sym_LPAREN, - [57167] = 2, + anon_sym_COLON, + [56273] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2097), 1, + anon_sym_EQ, + [56280] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3105), 1, - sym_identifier, - [57174] = 2, + anon_sym_COLON, + [56287] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3107), 1, - anon_sym_import, - [57181] = 2, + anon_sym_COLON, + [56294] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2293), 1, + anon_sym_COLON, + [56301] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2897), 1, + anon_sym_RBRACE, + [56308] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3109), 1, - anon_sym_in, - [57188] = 2, + anon_sym_for, + [56315] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3111), 1, - anon_sym_import, - [57195] = 2, + anon_sym_COLON, + [56322] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1844), 1, - anon_sym_RBRACE, - [57202] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(900), 1, - anon_sym_def, - [57209] = 2, + ACTIONS(2850), 1, + anon_sym_in, + [56329] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3113), 1, anon_sym_COLON, - [57216] = 2, + [56336] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3115), 1, anon_sym_COLON, - [57223] = 2, + [56343] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3117), 1, anon_sym_COLON, - [57230] = 2, + [56350] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1812), 1, + anon_sym_RBRACE, + [56357] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3119), 1, anon_sym_COLON, - [57237] = 2, + [56364] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3121), 1, anon_sym_COLON, - [57244] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2298), 1, - anon_sym_COLON, - [57251] = 2, + [56371] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3123), 1, - sym_identifier, - [57258] = 2, + anon_sym_COLON, + [56378] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3125), 1, anon_sym_COLON, - [57265] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2893), 1, - anon_sym_in, - [57272] = 2, + [56385] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3127), 1, - sym_identifier, - [57279] = 2, + anon_sym_RBRACK, + [56392] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3129), 1, anon_sym_COLON, - [57286] = 2, + [56399] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3131), 1, - anon_sym_RPAREN, - [57293] = 2, + anon_sym_RBRACE, + [56406] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3133), 1, - anon_sym_RPAREN, - [57300] = 2, + anon_sym_RBRACE, + [56413] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3135), 1, - anon_sym_import, - [57307] = 2, + anon_sym_COLON, + [56420] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3137), 1, - anon_sym_COLON, - [57314] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2877), 1, - anon_sym_RBRACE, - [57321] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2324), 1, - anon_sym_COLON, - [57328] = 2, + sym_identifier, + [56427] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3139), 1, - anon_sym_for, - [57335] = 2, + anon_sym_COLON, + [56434] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3141), 1, anon_sym_RPAREN, - [57342] = 2, + [56441] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3143), 1, anon_sym_COLON, - [57349] = 2, + [56448] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3145), 1, - anon_sym_RBRACE, - [57356] = 2, + sym_identifier, + [56455] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3147), 1, anon_sym_COLON, - [57363] = 2, + [56462] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3149), 1, - anon_sym_COLON, - [57370] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2326), 1, - anon_sym_COLON, - [57377] = 2, + anon_sym_EQ, + [56469] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3151), 1, anon_sym_COLON, - [57384] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2838), 1, - anon_sym_in, - [57391] = 2, + [56476] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3153), 1, - anon_sym_COLON, - [57398] = 2, + sym_identifier, + [56483] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3155), 1, - sym_identifier, - [57405] = 2, + anon_sym_COLON, + [56490] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3157), 1, - sym_identifier, - [57412] = 2, + anon_sym_RBRACE, + [56497] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3159), 1, anon_sym_COLON, - [57419] = 2, + [56504] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3161), 1, - anon_sym_RPAREN, - [57426] = 2, + anon_sym_LPAREN, + [56511] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3163), 1, anon_sym_COLON, - [57433] = 2, + [56518] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(983), 1, + anon_sym_STAR, + [56525] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2603), 1, + anon_sym_in, + [56532] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2266), 1, + anon_sym_COLON, + [56539] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3165), 1, anon_sym_COLON, - [57440] = 2, + [56546] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2672), 1, + anon_sym_in, + [56553] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3167), 1, - anon_sym_COLON, - [57447] = 2, + anon_sym_RPAREN, + [56560] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3169), 1, - anon_sym_COLON, - [57454] = 2, + anon_sym_RPAREN, + [56567] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(992), 1, + anon_sym_STAR, + [56574] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2670), 1, + anon_sym_RBRACE, + [56581] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3171), 1, - anon_sym_RBRACK, - [57461] = 2, + anon_sym_COLON, + [56588] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2979), 1, + ACTIONS(2421), 1, anon_sym_RBRACE, - [57468] = 2, + [56595] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3173), 1, - anon_sym_RBRACE, - [57475] = 2, + sym_identifier, + [56602] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3175), 1, - anon_sym_RBRACE, - [57482] = 2, + sym_identifier, + [56609] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3177), 1, sym_identifier, - [57489] = 2, + [56616] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3179), 1, - anon_sym_COLON, - [57496] = 2, + sym_identifier, + [56623] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3181), 1, - anon_sym_EQ, - [57503] = 2, + anon_sym_RPAREN, + [56630] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2601), 1, + anon_sym_in, + [56637] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(880), 1, + anon_sym_def, + [56644] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3183), 1, anon_sym_COLON, - [57510] = 2, + [56651] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2510), 1, - anon_sym_RBRACE, - [57517] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2309), 1, - anon_sym_COLON, - [57524] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2733), 1, + ACTIONS(2593), 1, anon_sym_in, - [57531] = 2, + [56658] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3185), 1, anon_sym_COLON, - [57538] = 2, + [56665] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3187), 1, - anon_sym_RPAREN, - [57545] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3189), 1, - anon_sym_RBRACE, - [57552] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3191), 1, - sym_identifier, - [57559] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3193), 1, - anon_sym_RBRACE, - [57566] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3195), 1, - anon_sym_RBRACK, - [57573] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3197), 1, - anon_sym_RPAREN, - [57580] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3199), 1, - anon_sym_RBRACE, - [57587] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3201), 1, - sym_identifier, - [57594] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3203), 1, - ts_builtin_sym_end, - [57601] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3205), 1, - sym_identifier, - [57608] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2575), 1, - anon_sym_RBRACE, - [57615] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3207), 1, - anon_sym_in, - [57622] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3209), 1, - sym_identifier, - [57629] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3211), 1, - sym_identifier, - [57636] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3213), 1, - sym_identifier, - [57643] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3215), 1, - sym_identifier, - [57650] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3217), 1, + ACTIONS(2279), 1, anon_sym_COLON, - [57657] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3219), 1, - sym_identifier, - [57664] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3221), 1, - anon_sym_COLON, - [57671] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3223), 1, - anon_sym_RBRACE, - [57678] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3225), 1, - sym_identifier, - [57685] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3227), 1, - sym_identifier, - [57692] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3229), 1, - anon_sym_RBRACE, - [57699] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2659), 1, - anon_sym_in, - [57706] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(908), 1, - anon_sym_def, - [57713] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3231), 1, - anon_sym_RBRACK, - [57720] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2657), 1, - anon_sym_in, - [57727] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3233), 1, - anon_sym_RPAREN, - [57734] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2072), 1, - anon_sym_EQ, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(155)] = 0, - [SMALL_STATE(156)] = 118, - [SMALL_STATE(157)] = 236, - [SMALL_STATE(158)] = 354, - [SMALL_STATE(159)] = 464, - [SMALL_STATE(160)] = 579, - [SMALL_STATE(161)] = 696, - [SMALL_STATE(162)] = 815, - [SMALL_STATE(163)] = 932, - [SMALL_STATE(164)] = 1047, - [SMALL_STATE(165)] = 1162, - [SMALL_STATE(166)] = 1262, - [SMALL_STATE(167)] = 1362, - [SMALL_STATE(168)] = 1466, - [SMALL_STATE(169)] = 1570, - [SMALL_STATE(170)] = 1674, - [SMALL_STATE(171)] = 1788, - [SMALL_STATE(172)] = 1902, - [SMALL_STATE(173)] = 2016, - [SMALL_STATE(174)] = 2117, - [SMALL_STATE(175)] = 2220, - [SMALL_STATE(176)] = 2325, - [SMALL_STATE(177)] = 2426, - [SMALL_STATE(178)] = 2529, - [SMALL_STATE(179)] = 2634, - [SMALL_STATE(180)] = 2739, - [SMALL_STATE(181)] = 2844, - [SMALL_STATE(182)] = 2951, - [SMALL_STATE(183)] = 3056, - [SMALL_STATE(184)] = 3161, - [SMALL_STATE(185)] = 3262, - [SMALL_STATE(186)] = 3364, - [SMALL_STATE(187)] = 3462, - [SMALL_STATE(188)] = 3564, - [SMALL_STATE(189)] = 3666, - [SMALL_STATE(190)] = 3768, - [SMALL_STATE(191)] = 3870, - [SMALL_STATE(192)] = 3974, - [SMALL_STATE(193)] = 4076, - [SMALL_STATE(194)] = 4180, - [SMALL_STATE(195)] = 4282, - [SMALL_STATE(196)] = 4384, - [SMALL_STATE(197)] = 4486, - [SMALL_STATE(198)] = 4588, - [SMALL_STATE(199)] = 4692, - [SMALL_STATE(200)] = 4794, - [SMALL_STATE(201)] = 4896, - [SMALL_STATE(202)] = 4998, - [SMALL_STATE(203)] = 5100, - [SMALL_STATE(204)] = 5204, - [SMALL_STATE(205)] = 5306, - [SMALL_STATE(206)] = 5408, - [SMALL_STATE(207)] = 5514, - [SMALL_STATE(208)] = 5616, - [SMALL_STATE(209)] = 5718, - [SMALL_STATE(210)] = 5820, - [SMALL_STATE(211)] = 5918, - [SMALL_STATE(212)] = 6020, - [SMALL_STATE(213)] = 6118, - [SMALL_STATE(214)] = 6220, - [SMALL_STATE(215)] = 6322, - [SMALL_STATE(216)] = 6428, - [SMALL_STATE(217)] = 6530, - [SMALL_STATE(218)] = 6628, - [SMALL_STATE(219)] = 6689, - [SMALL_STATE(220)] = 6750, - [SMALL_STATE(221)] = 6849, - [SMALL_STATE(222)] = 6910, - [SMALL_STATE(223)] = 6971, - [SMALL_STATE(224)] = 7070, - [SMALL_STATE(225)] = 7131, - [SMALL_STATE(226)] = 7192, - [SMALL_STATE(227)] = 7291, - [SMALL_STATE(228)] = 7352, - [SMALL_STATE(229)] = 7450, - [SMALL_STATE(230)] = 7548, - [SMALL_STATE(231)] = 7646, - [SMALL_STATE(232)] = 7744, - [SMALL_STATE(233)] = 7842, - [SMALL_STATE(234)] = 7940, - [SMALL_STATE(235)] = 8036, - [SMALL_STATE(236)] = 8134, - [SMALL_STATE(237)] = 8232, - [SMALL_STATE(238)] = 8304, - [SMALL_STATE(239)] = 8402, - [SMALL_STATE(240)] = 8474, - [SMALL_STATE(241)] = 8572, - [SMALL_STATE(242)] = 8670, - [SMALL_STATE(243)] = 8742, - [SMALL_STATE(244)] = 8814, - [SMALL_STATE(245)] = 8886, - [SMALL_STATE(246)] = 8984, - [SMALL_STATE(247)] = 9082, - [SMALL_STATE(248)] = 9154, - [SMALL_STATE(249)] = 9226, - [SMALL_STATE(250)] = 9324, - [SMALL_STATE(251)] = 9396, - [SMALL_STATE(252)] = 9491, - [SMALL_STATE(253)] = 9586, - [SMALL_STATE(254)] = 9681, - [SMALL_STATE(255)] = 9776, - [SMALL_STATE(256)] = 9871, - [SMALL_STATE(257)] = 9966, - [SMALL_STATE(258)] = 10061, - [SMALL_STATE(259)] = 10156, - [SMALL_STATE(260)] = 10229, - [SMALL_STATE(261)] = 10324, - [SMALL_STATE(262)] = 10397, - [SMALL_STATE(263)] = 10492, - [SMALL_STATE(264)] = 10587, - [SMALL_STATE(265)] = 10682, - [SMALL_STATE(266)] = 10777, - [SMALL_STATE(267)] = 10872, - [SMALL_STATE(268)] = 10967, - [SMALL_STATE(269)] = 11061, - [SMALL_STATE(270)] = 11155, - [SMALL_STATE(271)] = 11225, - [SMALL_STATE(272)] = 11319, - [SMALL_STATE(273)] = 11413, - [SMALL_STATE(274)] = 11481, - [SMALL_STATE(275)] = 11543, - [SMALL_STATE(276)] = 11605, - [SMALL_STATE(277)] = 11673, - [SMALL_STATE(278)] = 11741, - [SMALL_STATE(279)] = 11809, - [SMALL_STATE(280)] = 11903, - [SMALL_STATE(281)] = 11995, - [SMALL_STATE(282)] = 12087, - [SMALL_STATE(283)] = 12155, - [SMALL_STATE(284)] = 12249, - [SMALL_STATE(285)] = 12343, - [SMALL_STATE(286)] = 12437, - [SMALL_STATE(287)] = 12531, - [SMALL_STATE(288)] = 12625, - [SMALL_STATE(289)] = 12693, - [SMALL_STATE(290)] = 12787, - [SMALL_STATE(291)] = 12855, - [SMALL_STATE(292)] = 12917, - [SMALL_STATE(293)] = 12979, - [SMALL_STATE(294)] = 13071, - [SMALL_STATE(295)] = 13139, - [SMALL_STATE(296)] = 13228, - [SMALL_STATE(297)] = 13285, - [SMALL_STATE(298)] = 13342, - [SMALL_STATE(299)] = 13431, - [SMALL_STATE(300)] = 13520, - [SMALL_STATE(301)] = 13609, - [SMALL_STATE(302)] = 13666, - [SMALL_STATE(303)] = 13755, - [SMALL_STATE(304)] = 13818, - [SMALL_STATE(305)] = 13881, - [SMALL_STATE(306)] = 13972, - [SMALL_STATE(307)] = 14029, - [SMALL_STATE(308)] = 14120, - [SMALL_STATE(309)] = 14209, - [SMALL_STATE(310)] = 14298, - [SMALL_STATE(311)] = 14387, - [SMALL_STATE(312)] = 14478, - [SMALL_STATE(313)] = 14535, - [SMALL_STATE(314)] = 14626, - [SMALL_STATE(315)] = 14683, - [SMALL_STATE(316)] = 14750, - [SMALL_STATE(317)] = 14807, - [SMALL_STATE(318)] = 14896, - [SMALL_STATE(319)] = 14953, - [SMALL_STATE(320)] = 15042, - [SMALL_STATE(321)] = 15133, - [SMALL_STATE(322)] = 15224, - [SMALL_STATE(323)] = 15313, - [SMALL_STATE(324)] = 15404, - [SMALL_STATE(325)] = 15461, - [SMALL_STATE(326)] = 15550, - [SMALL_STATE(327)] = 15639, - [SMALL_STATE(328)] = 15696, - [SMALL_STATE(329)] = 15752, - [SMALL_STATE(330)] = 15808, - [SMALL_STATE(331)] = 15864, - [SMALL_STATE(332)] = 15920, - [SMALL_STATE(333)] = 15976, - [SMALL_STATE(334)] = 16032, - [SMALL_STATE(335)] = 16088, - [SMALL_STATE(336)] = 16144, - [SMALL_STATE(337)] = 16200, - [SMALL_STATE(338)] = 16256, - [SMALL_STATE(339)] = 16312, - [SMALL_STATE(340)] = 16368, - [SMALL_STATE(341)] = 16424, - [SMALL_STATE(342)] = 16480, - [SMALL_STATE(343)] = 16536, - [SMALL_STATE(344)] = 16596, - [SMALL_STATE(345)] = 16660, - [SMALL_STATE(346)] = 16716, - [SMALL_STATE(347)] = 16772, - [SMALL_STATE(348)] = 16828, - [SMALL_STATE(349)] = 16888, - [SMALL_STATE(350)] = 16952, - [SMALL_STATE(351)] = 17008, - [SMALL_STATE(352)] = 17064, - [SMALL_STATE(353)] = 17120, - [SMALL_STATE(354)] = 17176, - [SMALL_STATE(355)] = 17232, - [SMALL_STATE(356)] = 17288, - [SMALL_STATE(357)] = 17344, - [SMALL_STATE(358)] = 17400, - [SMALL_STATE(359)] = 17456, - [SMALL_STATE(360)] = 17512, - [SMALL_STATE(361)] = 17568, - [SMALL_STATE(362)] = 17656, - [SMALL_STATE(363)] = 17712, - [SMALL_STATE(364)] = 17768, - [SMALL_STATE(365)] = 17824, - [SMALL_STATE(366)] = 17884, - [SMALL_STATE(367)] = 17940, - [SMALL_STATE(368)] = 17996, - [SMALL_STATE(369)] = 18052, - [SMALL_STATE(370)] = 18108, - [SMALL_STATE(371)] = 18164, - [SMALL_STATE(372)] = 18228, - [SMALL_STATE(373)] = 18284, - [SMALL_STATE(374)] = 18340, - [SMALL_STATE(375)] = 18396, - [SMALL_STATE(376)] = 18460, - [SMALL_STATE(377)] = 18520, - [SMALL_STATE(378)] = 18576, - [SMALL_STATE(379)] = 18632, - [SMALL_STATE(380)] = 18688, - [SMALL_STATE(381)] = 18744, - [SMALL_STATE(382)] = 18800, - [SMALL_STATE(383)] = 18856, - [SMALL_STATE(384)] = 18944, - [SMALL_STATE(385)] = 19032, - [SMALL_STATE(386)] = 19088, - [SMALL_STATE(387)] = 19147, - [SMALL_STATE(388)] = 19232, - [SMALL_STATE(389)] = 19317, - [SMALL_STATE(390)] = 19402, - [SMALL_STATE(391)] = 19487, - [SMALL_STATE(392)] = 19572, - [SMALL_STATE(393)] = 19633, - [SMALL_STATE(394)] = 19692, - [SMALL_STATE(395)] = 19777, - [SMALL_STATE(396)] = 19832, - [SMALL_STATE(397)] = 19917, - [SMALL_STATE(398)] = 19978, - [SMALL_STATE(399)] = 20063, - [SMALL_STATE(400)] = 20148, - [SMALL_STATE(401)] = 20233, - [SMALL_STATE(402)] = 20292, - [SMALL_STATE(403)] = 20377, - [SMALL_STATE(404)] = 20462, - [SMALL_STATE(405)] = 20547, - [SMALL_STATE(406)] = 20632, - [SMALL_STATE(407)] = 20693, - [SMALL_STATE(408)] = 20778, - [SMALL_STATE(409)] = 20863, - [SMALL_STATE(410)] = 20948, - [SMALL_STATE(411)] = 21035, - [SMALL_STATE(412)] = 21120, - [SMALL_STATE(413)] = 21205, - [SMALL_STATE(414)] = 21290, - [SMALL_STATE(415)] = 21375, - [SMALL_STATE(416)] = 21436, - [SMALL_STATE(417)] = 21521, - [SMALL_STATE(418)] = 21606, - [SMALL_STATE(419)] = 21691, - [SMALL_STATE(420)] = 21750, - [SMALL_STATE(421)] = 21809, - [SMALL_STATE(422)] = 21894, - [SMALL_STATE(423)] = 21979, - [SMALL_STATE(424)] = 22064, - [SMALL_STATE(425)] = 22149, - [SMALL_STATE(426)] = 22234, - [SMALL_STATE(427)] = 22319, - [SMALL_STATE(428)] = 22404, - [SMALL_STATE(429)] = 22463, - [SMALL_STATE(430)] = 22522, - [SMALL_STATE(431)] = 22607, - [SMALL_STATE(432)] = 22692, - [SMALL_STATE(433)] = 22751, - [SMALL_STATE(434)] = 22836, - [SMALL_STATE(435)] = 22921, - [SMALL_STATE(436)] = 23006, - [SMALL_STATE(437)] = 23091, - [SMALL_STATE(438)] = 23176, - [SMALL_STATE(439)] = 23261, - [SMALL_STATE(440)] = 23346, - [SMALL_STATE(441)] = 23405, - [SMALL_STATE(442)] = 23490, - [SMALL_STATE(443)] = 23575, - [SMALL_STATE(444)] = 23660, - [SMALL_STATE(445)] = 23745, - [SMALL_STATE(446)] = 23800, - [SMALL_STATE(447)] = 23855, - [SMALL_STATE(448)] = 23940, - [SMALL_STATE(449)] = 24025, - [SMALL_STATE(450)] = 24110, - [SMALL_STATE(451)] = 24195, - [SMALL_STATE(452)] = 24280, - [SMALL_STATE(453)] = 24365, - [SMALL_STATE(454)] = 24450, - [SMALL_STATE(455)] = 24535, - [SMALL_STATE(456)] = 24620, - [SMALL_STATE(457)] = 24705, - [SMALL_STATE(458)] = 24790, - [SMALL_STATE(459)] = 24875, - [SMALL_STATE(460)] = 24960, - [SMALL_STATE(461)] = 25045, - [SMALL_STATE(462)] = 25100, - [SMALL_STATE(463)] = 25185, - [SMALL_STATE(464)] = 25270, - [SMALL_STATE(465)] = 25329, - [SMALL_STATE(466)] = 25414, - [SMALL_STATE(467)] = 25473, - [SMALL_STATE(468)] = 25532, - [SMALL_STATE(469)] = 25617, - [SMALL_STATE(470)] = 25702, - [SMALL_STATE(471)] = 25787, - [SMALL_STATE(472)] = 25872, - [SMALL_STATE(473)] = 25931, - [SMALL_STATE(474)] = 25990, - [SMALL_STATE(475)] = 26075, - [SMALL_STATE(476)] = 26160, - [SMALL_STATE(477)] = 26219, - [SMALL_STATE(478)] = 26274, - [SMALL_STATE(479)] = 26359, - [SMALL_STATE(480)] = 26444, - [SMALL_STATE(481)] = 26503, - [SMALL_STATE(482)] = 26588, - [SMALL_STATE(483)] = 26643, - [SMALL_STATE(484)] = 26728, - [SMALL_STATE(485)] = 26813, - [SMALL_STATE(486)] = 26898, - [SMALL_STATE(487)] = 26952, - [SMALL_STATE(488)] = 27006, - [SMALL_STATE(489)] = 27060, - [SMALL_STATE(490)] = 27114, - [SMALL_STATE(491)] = 27168, - [SMALL_STATE(492)] = 27222, - [SMALL_STATE(493)] = 27276, - [SMALL_STATE(494)] = 27330, - [SMALL_STATE(495)] = 27384, - [SMALL_STATE(496)] = 27438, - [SMALL_STATE(497)] = 27492, - [SMALL_STATE(498)] = 27546, - [SMALL_STATE(499)] = 27599, - [SMALL_STATE(500)] = 27652, - [SMALL_STATE(501)] = 27705, - [SMALL_STATE(502)] = 27758, - [SMALL_STATE(503)] = 27811, - [SMALL_STATE(504)] = 27864, - [SMALL_STATE(505)] = 27917, - [SMALL_STATE(506)] = 27970, - [SMALL_STATE(507)] = 28023, - [SMALL_STATE(508)] = 28076, - [SMALL_STATE(509)] = 28129, - [SMALL_STATE(510)] = 28182, - [SMALL_STATE(511)] = 28235, - [SMALL_STATE(512)] = 28288, - [SMALL_STATE(513)] = 28341, - [SMALL_STATE(514)] = 28394, - [SMALL_STATE(515)] = 28447, - [SMALL_STATE(516)] = 28500, - [SMALL_STATE(517)] = 28553, - [SMALL_STATE(518)] = 28606, - [SMALL_STATE(519)] = 28659, - [SMALL_STATE(520)] = 28712, - [SMALL_STATE(521)] = 28765, - [SMALL_STATE(522)] = 28818, - [SMALL_STATE(523)] = 28871, - [SMALL_STATE(524)] = 28924, - [SMALL_STATE(525)] = 28977, - [SMALL_STATE(526)] = 29030, - [SMALL_STATE(527)] = 29083, - [SMALL_STATE(528)] = 29136, - [SMALL_STATE(529)] = 29189, - [SMALL_STATE(530)] = 29242, - [SMALL_STATE(531)] = 29295, - [SMALL_STATE(532)] = 29348, - [SMALL_STATE(533)] = 29401, - [SMALL_STATE(534)] = 29454, - [SMALL_STATE(535)] = 29507, - [SMALL_STATE(536)] = 29560, - [SMALL_STATE(537)] = 29613, - [SMALL_STATE(538)] = 29666, - [SMALL_STATE(539)] = 29719, - [SMALL_STATE(540)] = 29772, - [SMALL_STATE(541)] = 29825, - [SMALL_STATE(542)] = 29878, - [SMALL_STATE(543)] = 29931, - [SMALL_STATE(544)] = 29984, - [SMALL_STATE(545)] = 30037, - [SMALL_STATE(546)] = 30090, - [SMALL_STATE(547)] = 30143, - [SMALL_STATE(548)] = 30196, - [SMALL_STATE(549)] = 30249, - [SMALL_STATE(550)] = 30302, - [SMALL_STATE(551)] = 30355, - [SMALL_STATE(552)] = 30408, - [SMALL_STATE(553)] = 30461, - [SMALL_STATE(554)] = 30514, - [SMALL_STATE(555)] = 30567, - [SMALL_STATE(556)] = 30620, - [SMALL_STATE(557)] = 30673, - [SMALL_STATE(558)] = 30726, - [SMALL_STATE(559)] = 30779, - [SMALL_STATE(560)] = 30832, - [SMALL_STATE(561)] = 30885, - [SMALL_STATE(562)] = 30938, - [SMALL_STATE(563)] = 30991, - [SMALL_STATE(564)] = 31044, - [SMALL_STATE(565)] = 31097, - [SMALL_STATE(566)] = 31150, - [SMALL_STATE(567)] = 31203, - [SMALL_STATE(568)] = 31256, - [SMALL_STATE(569)] = 31309, - [SMALL_STATE(570)] = 31362, - [SMALL_STATE(571)] = 31415, - [SMALL_STATE(572)] = 31468, - [SMALL_STATE(573)] = 31521, - [SMALL_STATE(574)] = 31574, - [SMALL_STATE(575)] = 31627, - [SMALL_STATE(576)] = 31680, - [SMALL_STATE(577)] = 31733, - [SMALL_STATE(578)] = 31786, - [SMALL_STATE(579)] = 31839, - [SMALL_STATE(580)] = 31892, - [SMALL_STATE(581)] = 31945, - [SMALL_STATE(582)] = 31998, - [SMALL_STATE(583)] = 32051, - [SMALL_STATE(584)] = 32104, - [SMALL_STATE(585)] = 32157, - [SMALL_STATE(586)] = 32210, - [SMALL_STATE(587)] = 32263, - [SMALL_STATE(588)] = 32316, - [SMALL_STATE(589)] = 32369, - [SMALL_STATE(590)] = 32422, - [SMALL_STATE(591)] = 32475, - [SMALL_STATE(592)] = 32528, - [SMALL_STATE(593)] = 32581, - [SMALL_STATE(594)] = 32634, - [SMALL_STATE(595)] = 32687, - [SMALL_STATE(596)] = 32740, - [SMALL_STATE(597)] = 32822, - [SMALL_STATE(598)] = 32906, - [SMALL_STATE(599)] = 32988, - [SMALL_STATE(600)] = 33043, - [SMALL_STATE(601)] = 33124, - [SMALL_STATE(602)] = 33179, - [SMALL_STATE(603)] = 33260, - [SMALL_STATE(604)] = 33341, - [SMALL_STATE(605)] = 33396, - [SMALL_STATE(606)] = 33477, - [SMALL_STATE(607)] = 33558, - [SMALL_STATE(608)] = 33639, - [SMALL_STATE(609)] = 33717, - [SMALL_STATE(610)] = 33795, - [SMALL_STATE(611)] = 33844, - [SMALL_STATE(612)] = 33893, - [SMALL_STATE(613)] = 33941, - [SMALL_STATE(614)] = 33989, - [SMALL_STATE(615)] = 34037, - [SMALL_STATE(616)] = 34085, - [SMALL_STATE(617)] = 34133, - [SMALL_STATE(618)] = 34181, - [SMALL_STATE(619)] = 34263, - [SMALL_STATE(620)] = 34311, - [SMALL_STATE(621)] = 34393, - [SMALL_STATE(622)] = 34441, - [SMALL_STATE(623)] = 34513, - [SMALL_STATE(624)] = 34561, - [SMALL_STATE(625)] = 34609, - [SMALL_STATE(626)] = 34657, - [SMALL_STATE(627)] = 34705, - [SMALL_STATE(628)] = 34753, - [SMALL_STATE(629)] = 34801, - [SMALL_STATE(630)] = 34849, - [SMALL_STATE(631)] = 34897, - [SMALL_STATE(632)] = 34945, - [SMALL_STATE(633)] = 34993, - [SMALL_STATE(634)] = 35041, - [SMALL_STATE(635)] = 35089, - [SMALL_STATE(636)] = 35137, - [SMALL_STATE(637)] = 35185, - [SMALL_STATE(638)] = 35233, - [SMALL_STATE(639)] = 35281, - [SMALL_STATE(640)] = 35329, - [SMALL_STATE(641)] = 35377, - [SMALL_STATE(642)] = 35425, - [SMALL_STATE(643)] = 35473, - [SMALL_STATE(644)] = 35521, - [SMALL_STATE(645)] = 35569, - [SMALL_STATE(646)] = 35617, - [SMALL_STATE(647)] = 35686, - [SMALL_STATE(648)] = 35743, - [SMALL_STATE(649)] = 35814, - [SMALL_STATE(650)] = 35885, - [SMALL_STATE(651)] = 35950, - [SMALL_STATE(652)] = 36021, - [SMALL_STATE(653)] = 36092, - [SMALL_STATE(654)] = 36149, - [SMALL_STATE(655)] = 36210, - [SMALL_STATE(656)] = 36281, - [SMALL_STATE(657)] = 36344, - [SMALL_STATE(658)] = 36401, - [SMALL_STATE(659)] = 36458, - [SMALL_STATE(660)] = 36519, - [SMALL_STATE(661)] = 36584, - [SMALL_STATE(662)] = 36651, - [SMALL_STATE(663)] = 36708, - [SMALL_STATE(664)] = 36779, - [SMALL_STATE(665)] = 36836, - [SMALL_STATE(666)] = 36899, - [SMALL_STATE(667)] = 36966, - [SMALL_STATE(668)] = 37035, - [SMALL_STATE(669)] = 37081, - [SMALL_STATE(670)] = 37147, - [SMALL_STATE(671)] = 37197, - [SMALL_STATE(672)] = 37263, - [SMALL_STATE(673)] = 37329, - [SMALL_STATE(674)] = 37377, - [SMALL_STATE(675)] = 37425, - [SMALL_STATE(676)] = 37473, - [SMALL_STATE(677)] = 37519, - [SMALL_STATE(678)] = 37567, - [SMALL_STATE(679)] = 37633, - [SMALL_STATE(680)] = 37683, - [SMALL_STATE(681)] = 37728, - [SMALL_STATE(682)] = 37791, - [SMALL_STATE(683)] = 37854, - [SMALL_STATE(684)] = 37917, - [SMALL_STATE(685)] = 37980, - [SMALL_STATE(686)] = 38029, - [SMALL_STATE(687)] = 38092, - [SMALL_STATE(688)] = 38155, - [SMALL_STATE(689)] = 38218, - [SMALL_STATE(690)] = 38281, - [SMALL_STATE(691)] = 38344, - [SMALL_STATE(692)] = 38407, - [SMALL_STATE(693)] = 38470, - [SMALL_STATE(694)] = 38515, - [SMALL_STATE(695)] = 38578, - [SMALL_STATE(696)] = 38641, - [SMALL_STATE(697)] = 38720, - [SMALL_STATE(698)] = 38783, - [SMALL_STATE(699)] = 38846, - [SMALL_STATE(700)] = 38909, - [SMALL_STATE(701)] = 38976, - [SMALL_STATE(702)] = 39025, - [SMALL_STATE(703)] = 39074, - [SMALL_STATE(704)] = 39137, - [SMALL_STATE(705)] = 39200, - [SMALL_STATE(706)] = 39263, - [SMALL_STATE(707)] = 39326, - [SMALL_STATE(708)] = 39389, - [SMALL_STATE(709)] = 39452, - [SMALL_STATE(710)] = 39515, - [SMALL_STATE(711)] = 39578, - [SMALL_STATE(712)] = 39641, - [SMALL_STATE(713)] = 39704, - [SMALL_STATE(714)] = 39767, - [SMALL_STATE(715)] = 39830, - [SMALL_STATE(716)] = 39893, - [SMALL_STATE(717)] = 39956, - [SMALL_STATE(718)] = 40019, - [SMALL_STATE(719)] = 40082, - [SMALL_STATE(720)] = 40145, - [SMALL_STATE(721)] = 40208, - [SMALL_STATE(722)] = 40271, - [SMALL_STATE(723)] = 40334, - [SMALL_STATE(724)] = 40397, - [SMALL_STATE(725)] = 40460, - [SMALL_STATE(726)] = 40523, - [SMALL_STATE(727)] = 40586, - [SMALL_STATE(728)] = 40649, - [SMALL_STATE(729)] = 40712, - [SMALL_STATE(730)] = 40775, - [SMALL_STATE(731)] = 40842, - [SMALL_STATE(732)] = 40905, - [SMALL_STATE(733)] = 40971, - [SMALL_STATE(734)] = 41039, - [SMALL_STATE(735)] = 41107, - [SMALL_STATE(736)] = 41183, - [SMALL_STATE(737)] = 41237, - [SMALL_STATE(738)] = 41281, - [SMALL_STATE(739)] = 41343, - [SMALL_STATE(740)] = 41387, - [SMALL_STATE(741)] = 41451, - [SMALL_STATE(742)] = 41499, - [SMALL_STATE(743)] = 41567, - [SMALL_STATE(744)] = 41621, - [SMALL_STATE(745)] = 41679, - [SMALL_STATE(746)] = 41739, - [SMALL_STATE(747)] = 41793, - [SMALL_STATE(748)] = 41860, - [SMALL_STATE(749)] = 41927, - [SMALL_STATE(750)] = 41970, - [SMALL_STATE(751)] = 42029, - [SMALL_STATE(752)] = 42074, - [SMALL_STATE(753)] = 42131, - [SMALL_STATE(754)] = 42184, - [SMALL_STATE(755)] = 42231, - [SMALL_STATE(756)] = 42276, - [SMALL_STATE(757)] = 42319, - [SMALL_STATE(758)] = 42364, - [SMALL_STATE(759)] = 42411, - [SMALL_STATE(760)] = 42472, - [SMALL_STATE(761)] = 42539, - [SMALL_STATE(762)] = 42592, - [SMALL_STATE(763)] = 42655, - [SMALL_STATE(764)] = 42702, - [SMALL_STATE(765)] = 42747, - [SMALL_STATE(766)] = 42792, - [SMALL_STATE(767)] = 42837, - [SMALL_STATE(768)] = 42882, - [SMALL_STATE(769)] = 42927, - [SMALL_STATE(770)] = 42992, - [SMALL_STATE(771)] = 43045, - [SMALL_STATE(772)] = 43092, - [SMALL_STATE(773)] = 43134, - [SMALL_STATE(774)] = 43176, - [SMALL_STATE(775)] = 43218, - [SMALL_STATE(776)] = 43260, - [SMALL_STATE(777)] = 43302, - [SMALL_STATE(778)] = 43344, - [SMALL_STATE(779)] = 43386, - [SMALL_STATE(780)] = 43428, - [SMALL_STATE(781)] = 43470, - [SMALL_STATE(782)] = 43512, - [SMALL_STATE(783)] = 43554, - [SMALL_STATE(784)] = 43596, - [SMALL_STATE(785)] = 43638, - [SMALL_STATE(786)] = 43680, - [SMALL_STATE(787)] = 43724, - [SMALL_STATE(788)] = 43768, - [SMALL_STATE(789)] = 43810, - [SMALL_STATE(790)] = 43852, - [SMALL_STATE(791)] = 43894, - [SMALL_STATE(792)] = 43936, - [SMALL_STATE(793)] = 43978, - [SMALL_STATE(794)] = 44020, - [SMALL_STATE(795)] = 44062, - [SMALL_STATE(796)] = 44104, - [SMALL_STATE(797)] = 44146, - [SMALL_STATE(798)] = 44190, - [SMALL_STATE(799)] = 44232, - [SMALL_STATE(800)] = 44274, - [SMALL_STATE(801)] = 44318, - [SMALL_STATE(802)] = 44360, - [SMALL_STATE(803)] = 44402, - [SMALL_STATE(804)] = 44444, - [SMALL_STATE(805)] = 44486, - [SMALL_STATE(806)] = 44530, - [SMALL_STATE(807)] = 44572, - [SMALL_STATE(808)] = 44614, - [SMALL_STATE(809)] = 44656, - [SMALL_STATE(810)] = 44698, - [SMALL_STATE(811)] = 44739, - [SMALL_STATE(812)] = 44780, - [SMALL_STATE(813)] = 44821, - [SMALL_STATE(814)] = 44862, - [SMALL_STATE(815)] = 44903, - [SMALL_STATE(816)] = 44944, - [SMALL_STATE(817)] = 44985, - [SMALL_STATE(818)] = 45026, - [SMALL_STATE(819)] = 45067, - [SMALL_STATE(820)] = 45108, - [SMALL_STATE(821)] = 45149, - [SMALL_STATE(822)] = 45190, - [SMALL_STATE(823)] = 45235, - [SMALL_STATE(824)] = 45276, - [SMALL_STATE(825)] = 45317, - [SMALL_STATE(826)] = 45362, - [SMALL_STATE(827)] = 45403, - [SMALL_STATE(828)] = 45444, - [SMALL_STATE(829)] = 45485, - [SMALL_STATE(830)] = 45526, - [SMALL_STATE(831)] = 45567, - [SMALL_STATE(832)] = 45608, - [SMALL_STATE(833)] = 45649, - [SMALL_STATE(834)] = 45690, - [SMALL_STATE(835)] = 45731, - [SMALL_STATE(836)] = 45772, - [SMALL_STATE(837)] = 45813, - [SMALL_STATE(838)] = 45854, - [SMALL_STATE(839)] = 45895, - [SMALL_STATE(840)] = 45936, - [SMALL_STATE(841)] = 45977, - [SMALL_STATE(842)] = 46018, - [SMALL_STATE(843)] = 46059, - [SMALL_STATE(844)] = 46100, - [SMALL_STATE(845)] = 46141, - [SMALL_STATE(846)] = 46182, - [SMALL_STATE(847)] = 46223, - [SMALL_STATE(848)] = 46264, - [SMALL_STATE(849)] = 46305, - [SMALL_STATE(850)] = 46346, - [SMALL_STATE(851)] = 46420, - [SMALL_STATE(852)] = 46494, - [SMALL_STATE(853)] = 46568, - [SMALL_STATE(854)] = 46642, - [SMALL_STATE(855)] = 46713, - [SMALL_STATE(856)] = 46786, - [SMALL_STATE(857)] = 46857, - [SMALL_STATE(858)] = 46928, - [SMALL_STATE(859)] = 46999, - [SMALL_STATE(860)] = 47070, - [SMALL_STATE(861)] = 47142, - [SMALL_STATE(862)] = 47210, - [SMALL_STATE(863)] = 47282, - [SMALL_STATE(864)] = 47354, - [SMALL_STATE(865)] = 47420, - [SMALL_STATE(866)] = 47483, - [SMALL_STATE(867)] = 47546, - [SMALL_STATE(868)] = 47601, - [SMALL_STATE(869)] = 47656, - [SMALL_STATE(870)] = 47696, - [SMALL_STATE(871)] = 47736, - [SMALL_STATE(872)] = 47776, - [SMALL_STATE(873)] = 47816, - [SMALL_STATE(874)] = 47846, - [SMALL_STATE(875)] = 47871, - [SMALL_STATE(876)] = 47908, - [SMALL_STATE(877)] = 47933, - [SMALL_STATE(878)] = 47962, - [SMALL_STATE(879)] = 47991, - [SMALL_STATE(880)] = 48016, - [SMALL_STATE(881)] = 48041, - [SMALL_STATE(882)] = 48078, - [SMALL_STATE(883)] = 48112, - [SMALL_STATE(884)] = 48146, - [SMALL_STATE(885)] = 48174, - [SMALL_STATE(886)] = 48220, - [SMALL_STATE(887)] = 48263, - [SMALL_STATE(888)] = 48306, - [SMALL_STATE(889)] = 48349, - [SMALL_STATE(890)] = 48392, - [SMALL_STATE(891)] = 48435, - [SMALL_STATE(892)] = 48466, - [SMALL_STATE(893)] = 48506, - [SMALL_STATE(894)] = 48552, - [SMALL_STATE(895)] = 48598, - [SMALL_STATE(896)] = 48644, - [SMALL_STATE(897)] = 48681, - [SMALL_STATE(898)] = 48718, - [SMALL_STATE(899)] = 48755, - [SMALL_STATE(900)] = 48792, - [SMALL_STATE(901)] = 48817, - [SMALL_STATE(902)] = 48851, - [SMALL_STATE(903)] = 48873, - [SMALL_STATE(904)] = 48907, - [SMALL_STATE(905)] = 48929, - [SMALL_STATE(906)] = 48951, - [SMALL_STATE(907)] = 48988, - [SMALL_STATE(908)] = 49010, - [SMALL_STATE(909)] = 49031, - [SMALL_STATE(910)] = 49062, - [SMALL_STATE(911)] = 49087, - [SMALL_STATE(912)] = 49110, - [SMALL_STATE(913)] = 49141, - [SMALL_STATE(914)] = 49178, - [SMALL_STATE(915)] = 49209, - [SMALL_STATE(916)] = 49232, - [SMALL_STATE(917)] = 49255, - [SMALL_STATE(918)] = 49280, - [SMALL_STATE(919)] = 49301, - [SMALL_STATE(920)] = 49324, - [SMALL_STATE(921)] = 49361, - [SMALL_STATE(922)] = 49392, - [SMALL_STATE(923)] = 49419, - [SMALL_STATE(924)] = 49444, - [SMALL_STATE(925)] = 49475, - [SMALL_STATE(926)] = 49506, - [SMALL_STATE(927)] = 49529, - [SMALL_STATE(928)] = 49566, - [SMALL_STATE(929)] = 49589, - [SMALL_STATE(930)] = 49610, - [SMALL_STATE(931)] = 49633, - [SMALL_STATE(932)] = 49664, - [SMALL_STATE(933)] = 49701, - [SMALL_STATE(934)] = 49732, - [SMALL_STATE(935)] = 49755, - [SMALL_STATE(936)] = 49776, - [SMALL_STATE(937)] = 49793, - [SMALL_STATE(938)] = 49824, - [SMALL_STATE(939)] = 49845, - [SMALL_STATE(940)] = 49864, - [SMALL_STATE(941)] = 49898, - [SMALL_STATE(942)] = 49932, - [SMALL_STATE(943)] = 49966, - [SMALL_STATE(944)] = 50000, - [SMALL_STATE(945)] = 50018, - [SMALL_STATE(946)] = 50040, - [SMALL_STATE(947)] = 50074, - [SMALL_STATE(948)] = 50096, - [SMALL_STATE(949)] = 50118, - [SMALL_STATE(950)] = 50140, - [SMALL_STATE(951)] = 50174, - [SMALL_STATE(952)] = 50208, - [SMALL_STATE(953)] = 50242, - [SMALL_STATE(954)] = 50260, - [SMALL_STATE(955)] = 50294, - [SMALL_STATE(956)] = 50317, - [SMALL_STATE(957)] = 50342, - [SMALL_STATE(958)] = 50361, - [SMALL_STATE(959)] = 50380, - [SMALL_STATE(960)] = 50399, - [SMALL_STATE(961)] = 50422, - [SMALL_STATE(962)] = 50441, - [SMALL_STATE(963)] = 50464, - [SMALL_STATE(964)] = 50483, - [SMALL_STATE(965)] = 50502, - [SMALL_STATE(966)] = 50516, - [SMALL_STATE(967)] = 50534, - [SMALL_STATE(968)] = 50552, - [SMALL_STATE(969)] = 50566, - [SMALL_STATE(970)] = 50580, - [SMALL_STATE(971)] = 50594, - [SMALL_STATE(972)] = 50608, - [SMALL_STATE(973)] = 50634, - [SMALL_STATE(974)] = 50658, - [SMALL_STATE(975)] = 50672, - [SMALL_STATE(976)] = 50686, - [SMALL_STATE(977)] = 50708, - [SMALL_STATE(978)] = 50726, - [SMALL_STATE(979)] = 50750, - [SMALL_STATE(980)] = 50770, - [SMALL_STATE(981)] = 50784, - [SMALL_STATE(982)] = 50802, - [SMALL_STATE(983)] = 50820, - [SMALL_STATE(984)] = 50834, - [SMALL_STATE(985)] = 50858, - [SMALL_STATE(986)] = 50872, - [SMALL_STATE(987)] = 50886, - [SMALL_STATE(988)] = 50906, - [SMALL_STATE(989)] = 50924, - [SMALL_STATE(990)] = 50938, - [SMALL_STATE(991)] = 50956, - [SMALL_STATE(992)] = 50970, - [SMALL_STATE(993)] = 50994, - [SMALL_STATE(994)] = 51008, - [SMALL_STATE(995)] = 51030, - [SMALL_STATE(996)] = 51044, - [SMALL_STATE(997)] = 51058, - [SMALL_STATE(998)] = 51072, - [SMALL_STATE(999)] = 51086, - [SMALL_STATE(1000)] = 51110, - [SMALL_STATE(1001)] = 51124, - [SMALL_STATE(1002)] = 51138, - [SMALL_STATE(1003)] = 51152, - [SMALL_STATE(1004)] = 51168, - [SMALL_STATE(1005)] = 51186, - [SMALL_STATE(1006)] = 51208, - [SMALL_STATE(1007)] = 51222, - [SMALL_STATE(1008)] = 51240, - [SMALL_STATE(1009)] = 51260, - [SMALL_STATE(1010)] = 51284, - [SMALL_STATE(1011)] = 51298, - [SMALL_STATE(1012)] = 51318, - [SMALL_STATE(1013)] = 51332, - [SMALL_STATE(1014)] = 51350, - [SMALL_STATE(1015)] = 51368, - [SMALL_STATE(1016)] = 51382, - [SMALL_STATE(1017)] = 51400, - [SMALL_STATE(1018)] = 51416, - [SMALL_STATE(1019)] = 51429, - [SMALL_STATE(1020)] = 51454, - [SMALL_STATE(1021)] = 51479, - [SMALL_STATE(1022)] = 51504, - [SMALL_STATE(1023)] = 51523, - [SMALL_STATE(1024)] = 51546, - [SMALL_STATE(1025)] = 51565, - [SMALL_STATE(1026)] = 51584, - [SMALL_STATE(1027)] = 51607, - [SMALL_STATE(1028)] = 51630, - [SMALL_STATE(1029)] = 51643, - [SMALL_STATE(1030)] = 51668, - [SMALL_STATE(1031)] = 51693, - [SMALL_STATE(1032)] = 51706, - [SMALL_STATE(1033)] = 51719, - [SMALL_STATE(1034)] = 51742, - [SMALL_STATE(1035)] = 51755, - [SMALL_STATE(1036)] = 51778, - [SMALL_STATE(1037)] = 51797, - [SMALL_STATE(1038)] = 51816, - [SMALL_STATE(1039)] = 51839, - [SMALL_STATE(1040)] = 51858, - [SMALL_STATE(1041)] = 51881, - [SMALL_STATE(1042)] = 51900, - [SMALL_STATE(1043)] = 51923, - [SMALL_STATE(1044)] = 51936, - [SMALL_STATE(1045)] = 51951, - [SMALL_STATE(1046)] = 51964, - [SMALL_STATE(1047)] = 51981, - [SMALL_STATE(1048)] = 52000, - [SMALL_STATE(1049)] = 52017, - [SMALL_STATE(1050)] = 52038, - [SMALL_STATE(1051)] = 52061, - [SMALL_STATE(1052)] = 52076, - [SMALL_STATE(1053)] = 52093, - [SMALL_STATE(1054)] = 52106, - [SMALL_STATE(1055)] = 52125, - [SMALL_STATE(1056)] = 52150, - [SMALL_STATE(1057)] = 52169, - [SMALL_STATE(1058)] = 52194, - [SMALL_STATE(1059)] = 52210, - [SMALL_STATE(1060)] = 52224, - [SMALL_STATE(1061)] = 52240, - [SMALL_STATE(1062)] = 52256, - [SMALL_STATE(1063)] = 52278, - [SMALL_STATE(1064)] = 52292, - [SMALL_STATE(1065)] = 52304, - [SMALL_STATE(1066)] = 52318, - [SMALL_STATE(1067)] = 52332, - [SMALL_STATE(1068)] = 52352, - [SMALL_STATE(1069)] = 52370, - [SMALL_STATE(1070)] = 52390, - [SMALL_STATE(1071)] = 52408, - [SMALL_STATE(1072)] = 52420, - [SMALL_STATE(1073)] = 52438, - [SMALL_STATE(1074)] = 52456, - [SMALL_STATE(1075)] = 52478, - [SMALL_STATE(1076)] = 52492, - [SMALL_STATE(1077)] = 52508, - [SMALL_STATE(1078)] = 52530, - [SMALL_STATE(1079)] = 52548, - [SMALL_STATE(1080)] = 52570, - [SMALL_STATE(1081)] = 52586, - [SMALL_STATE(1082)] = 52606, - [SMALL_STATE(1083)] = 52626, - [SMALL_STATE(1084)] = 52648, - [SMALL_STATE(1085)] = 52666, - [SMALL_STATE(1086)] = 52686, - [SMALL_STATE(1087)] = 52702, - [SMALL_STATE(1088)] = 52724, - [SMALL_STATE(1089)] = 52746, - [SMALL_STATE(1090)] = 52764, - [SMALL_STATE(1091)] = 52780, - [SMALL_STATE(1092)] = 52800, - [SMALL_STATE(1093)] = 52814, - [SMALL_STATE(1094)] = 52831, - [SMALL_STATE(1095)] = 52850, - [SMALL_STATE(1096)] = 52867, - [SMALL_STATE(1097)] = 52886, - [SMALL_STATE(1098)] = 52903, - [SMALL_STATE(1099)] = 52920, - [SMALL_STATE(1100)] = 52935, - [SMALL_STATE(1101)] = 52952, - [SMALL_STATE(1102)] = 52969, - [SMALL_STATE(1103)] = 52986, - [SMALL_STATE(1104)] = 53001, - [SMALL_STATE(1105)] = 53020, - [SMALL_STATE(1106)] = 53037, - [SMALL_STATE(1107)] = 53054, - [SMALL_STATE(1108)] = 53071, - [SMALL_STATE(1109)] = 53088, - [SMALL_STATE(1110)] = 53105, - [SMALL_STATE(1111)] = 53124, - [SMALL_STATE(1112)] = 53139, - [SMALL_STATE(1113)] = 53158, - [SMALL_STATE(1114)] = 53177, - [SMALL_STATE(1115)] = 53194, - [SMALL_STATE(1116)] = 53211, - [SMALL_STATE(1117)] = 53228, - [SMALL_STATE(1118)] = 53245, - [SMALL_STATE(1119)] = 53256, - [SMALL_STATE(1120)] = 53273, - [SMALL_STATE(1121)] = 53288, - [SMALL_STATE(1122)] = 53299, - [SMALL_STATE(1123)] = 53314, - [SMALL_STATE(1124)] = 53333, - [SMALL_STATE(1125)] = 53348, - [SMALL_STATE(1126)] = 53365, - [SMALL_STATE(1127)] = 53384, - [SMALL_STATE(1128)] = 53395, - [SMALL_STATE(1129)] = 53410, - [SMALL_STATE(1130)] = 53429, - [SMALL_STATE(1131)] = 53448, - [SMALL_STATE(1132)] = 53462, - [SMALL_STATE(1133)] = 53478, - [SMALL_STATE(1134)] = 53492, - [SMALL_STATE(1135)] = 53508, - [SMALL_STATE(1136)] = 53524, - [SMALL_STATE(1137)] = 53534, - [SMALL_STATE(1138)] = 53548, - [SMALL_STATE(1139)] = 53564, - [SMALL_STATE(1140)] = 53580, - [SMALL_STATE(1141)] = 53596, - [SMALL_STATE(1142)] = 53612, - [SMALL_STATE(1143)] = 53622, - [SMALL_STATE(1144)] = 53636, - [SMALL_STATE(1145)] = 53652, - [SMALL_STATE(1146)] = 53668, - [SMALL_STATE(1147)] = 53678, - [SMALL_STATE(1148)] = 53688, - [SMALL_STATE(1149)] = 53704, - [SMALL_STATE(1150)] = 53720, - [SMALL_STATE(1151)] = 53734, - [SMALL_STATE(1152)] = 53744, - [SMALL_STATE(1153)] = 53760, - [SMALL_STATE(1154)] = 53774, - [SMALL_STATE(1155)] = 53790, - [SMALL_STATE(1156)] = 53804, - [SMALL_STATE(1157)] = 53818, - [SMALL_STATE(1158)] = 53834, - [SMALL_STATE(1159)] = 53850, - [SMALL_STATE(1160)] = 53866, - [SMALL_STATE(1161)] = 53882, - [SMALL_STATE(1162)] = 53898, - [SMALL_STATE(1163)] = 53914, - [SMALL_STATE(1164)] = 53930, - [SMALL_STATE(1165)] = 53946, - [SMALL_STATE(1166)] = 53960, - [SMALL_STATE(1167)] = 53974, - [SMALL_STATE(1168)] = 53988, - [SMALL_STATE(1169)] = 54002, - [SMALL_STATE(1170)] = 54016, - [SMALL_STATE(1171)] = 54032, - [SMALL_STATE(1172)] = 54046, - [SMALL_STATE(1173)] = 54060, - [SMALL_STATE(1174)] = 54076, - [SMALL_STATE(1175)] = 54092, - [SMALL_STATE(1176)] = 54108, - [SMALL_STATE(1177)] = 54122, - [SMALL_STATE(1178)] = 54138, - [SMALL_STATE(1179)] = 54150, - [SMALL_STATE(1180)] = 54164, - [SMALL_STATE(1181)] = 54180, - [SMALL_STATE(1182)] = 54194, - [SMALL_STATE(1183)] = 54210, - [SMALL_STATE(1184)] = 54224, - [SMALL_STATE(1185)] = 54240, - [SMALL_STATE(1186)] = 54254, - [SMALL_STATE(1187)] = 54270, - [SMALL_STATE(1188)] = 54282, - [SMALL_STATE(1189)] = 54298, - [SMALL_STATE(1190)] = 54314, - [SMALL_STATE(1191)] = 54330, - [SMALL_STATE(1192)] = 54346, - [SMALL_STATE(1193)] = 54360, - [SMALL_STATE(1194)] = 54374, - [SMALL_STATE(1195)] = 54388, - [SMALL_STATE(1196)] = 54404, - [SMALL_STATE(1197)] = 54418, - [SMALL_STATE(1198)] = 54434, - [SMALL_STATE(1199)] = 54448, - [SMALL_STATE(1200)] = 54462, - [SMALL_STATE(1201)] = 54478, - [SMALL_STATE(1202)] = 54494, - [SMALL_STATE(1203)] = 54508, - [SMALL_STATE(1204)] = 54522, - [SMALL_STATE(1205)] = 54538, - [SMALL_STATE(1206)] = 54554, - [SMALL_STATE(1207)] = 54568, - [SMALL_STATE(1208)] = 54584, - [SMALL_STATE(1209)] = 54600, - [SMALL_STATE(1210)] = 54614, - [SMALL_STATE(1211)] = 54630, - [SMALL_STATE(1212)] = 54644, - [SMALL_STATE(1213)] = 54660, - [SMALL_STATE(1214)] = 54670, - [SMALL_STATE(1215)] = 54686, - [SMALL_STATE(1216)] = 54695, - [SMALL_STATE(1217)] = 54708, - [SMALL_STATE(1218)] = 54721, - [SMALL_STATE(1219)] = 54734, - [SMALL_STATE(1220)] = 54745, - [SMALL_STATE(1221)] = 54758, - [SMALL_STATE(1222)] = 54771, - [SMALL_STATE(1223)] = 54784, - [SMALL_STATE(1224)] = 54793, - [SMALL_STATE(1225)] = 54806, - [SMALL_STATE(1226)] = 54819, - [SMALL_STATE(1227)] = 54830, - [SMALL_STATE(1228)] = 54843, - [SMALL_STATE(1229)] = 54856, - [SMALL_STATE(1230)] = 54869, - [SMALL_STATE(1231)] = 54882, - [SMALL_STATE(1232)] = 54895, - [SMALL_STATE(1233)] = 54908, - [SMALL_STATE(1234)] = 54921, - [SMALL_STATE(1235)] = 54930, - [SMALL_STATE(1236)] = 54943, - [SMALL_STATE(1237)] = 54956, - [SMALL_STATE(1238)] = 54969, - [SMALL_STATE(1239)] = 54982, - [SMALL_STATE(1240)] = 54995, - [SMALL_STATE(1241)] = 55008, - [SMALL_STATE(1242)] = 55021, - [SMALL_STATE(1243)] = 55030, - [SMALL_STATE(1244)] = 55043, - [SMALL_STATE(1245)] = 55052, - [SMALL_STATE(1246)] = 55061, - [SMALL_STATE(1247)] = 55074, - [SMALL_STATE(1248)] = 55087, - [SMALL_STATE(1249)] = 55100, - [SMALL_STATE(1250)] = 55113, - [SMALL_STATE(1251)] = 55126, - [SMALL_STATE(1252)] = 55139, - [SMALL_STATE(1253)] = 55152, - [SMALL_STATE(1254)] = 55165, - [SMALL_STATE(1255)] = 55178, - [SMALL_STATE(1256)] = 55191, - [SMALL_STATE(1257)] = 55204, - [SMALL_STATE(1258)] = 55213, - [SMALL_STATE(1259)] = 55226, - [SMALL_STATE(1260)] = 55237, - [SMALL_STATE(1261)] = 55250, - [SMALL_STATE(1262)] = 55263, - [SMALL_STATE(1263)] = 55274, - [SMALL_STATE(1264)] = 55287, - [SMALL_STATE(1265)] = 55300, - [SMALL_STATE(1266)] = 55313, - [SMALL_STATE(1267)] = 55326, - [SMALL_STATE(1268)] = 55339, - [SMALL_STATE(1269)] = 55348, - [SMALL_STATE(1270)] = 55361, - [SMALL_STATE(1271)] = 55374, - [SMALL_STATE(1272)] = 55387, - [SMALL_STATE(1273)] = 55400, - [SMALL_STATE(1274)] = 55413, - [SMALL_STATE(1275)] = 55424, - [SMALL_STATE(1276)] = 55437, - [SMALL_STATE(1277)] = 55450, - [SMALL_STATE(1278)] = 55463, - [SMALL_STATE(1279)] = 55472, - [SMALL_STATE(1280)] = 55485, - [SMALL_STATE(1281)] = 55498, - [SMALL_STATE(1282)] = 55507, - [SMALL_STATE(1283)] = 55520, - [SMALL_STATE(1284)] = 55533, - [SMALL_STATE(1285)] = 55546, - [SMALL_STATE(1286)] = 55559, - [SMALL_STATE(1287)] = 55572, - [SMALL_STATE(1288)] = 55585, - [SMALL_STATE(1289)] = 55598, - [SMALL_STATE(1290)] = 55611, - [SMALL_STATE(1291)] = 55624, - [SMALL_STATE(1292)] = 55637, - [SMALL_STATE(1293)] = 55650, - [SMALL_STATE(1294)] = 55663, - [SMALL_STATE(1295)] = 55676, - [SMALL_STATE(1296)] = 55689, - [SMALL_STATE(1297)] = 55700, - [SMALL_STATE(1298)] = 55713, - [SMALL_STATE(1299)] = 55726, - [SMALL_STATE(1300)] = 55739, - [SMALL_STATE(1301)] = 55752, - [SMALL_STATE(1302)] = 55765, - [SMALL_STATE(1303)] = 55778, - [SMALL_STATE(1304)] = 55791, - [SMALL_STATE(1305)] = 55800, - [SMALL_STATE(1306)] = 55811, - [SMALL_STATE(1307)] = 55822, - [SMALL_STATE(1308)] = 55835, - [SMALL_STATE(1309)] = 55846, - [SMALL_STATE(1310)] = 55857, - [SMALL_STATE(1311)] = 55870, - [SMALL_STATE(1312)] = 55883, - [SMALL_STATE(1313)] = 55892, - [SMALL_STATE(1314)] = 55905, - [SMALL_STATE(1315)] = 55918, - [SMALL_STATE(1316)] = 55931, - [SMALL_STATE(1317)] = 55944, - [SMALL_STATE(1318)] = 55957, - [SMALL_STATE(1319)] = 55968, - [SMALL_STATE(1320)] = 55981, - [SMALL_STATE(1321)] = 55994, - [SMALL_STATE(1322)] = 56005, - [SMALL_STATE(1323)] = 56018, - [SMALL_STATE(1324)] = 56031, - [SMALL_STATE(1325)] = 56044, - [SMALL_STATE(1326)] = 56057, - [SMALL_STATE(1327)] = 56070, - [SMALL_STATE(1328)] = 56079, - [SMALL_STATE(1329)] = 56088, - [SMALL_STATE(1330)] = 56101, - [SMALL_STATE(1331)] = 56112, - [SMALL_STATE(1332)] = 56125, - [SMALL_STATE(1333)] = 56138, - [SMALL_STATE(1334)] = 56151, - [SMALL_STATE(1335)] = 56164, - [SMALL_STATE(1336)] = 56177, - [SMALL_STATE(1337)] = 56190, - [SMALL_STATE(1338)] = 56201, - [SMALL_STATE(1339)] = 56214, - [SMALL_STATE(1340)] = 56225, - [SMALL_STATE(1341)] = 56238, - [SMALL_STATE(1342)] = 56251, - [SMALL_STATE(1343)] = 56264, - [SMALL_STATE(1344)] = 56273, - [SMALL_STATE(1345)] = 56286, - [SMALL_STATE(1346)] = 56297, - [SMALL_STATE(1347)] = 56310, - [SMALL_STATE(1348)] = 56321, - [SMALL_STATE(1349)] = 56329, - [SMALL_STATE(1350)] = 56337, - [SMALL_STATE(1351)] = 56347, - [SMALL_STATE(1352)] = 56355, - [SMALL_STATE(1353)] = 56363, - [SMALL_STATE(1354)] = 56373, - [SMALL_STATE(1355)] = 56383, - [SMALL_STATE(1356)] = 56391, - [SMALL_STATE(1357)] = 56399, - [SMALL_STATE(1358)] = 56407, - [SMALL_STATE(1359)] = 56415, - [SMALL_STATE(1360)] = 56423, - [SMALL_STATE(1361)] = 56433, - [SMALL_STATE(1362)] = 56443, - [SMALL_STATE(1363)] = 56453, - [SMALL_STATE(1364)] = 56463, - [SMALL_STATE(1365)] = 56473, - [SMALL_STATE(1366)] = 56481, - [SMALL_STATE(1367)] = 56489, - [SMALL_STATE(1368)] = 56499, - [SMALL_STATE(1369)] = 56507, - [SMALL_STATE(1370)] = 56517, - [SMALL_STATE(1371)] = 56525, - [SMALL_STATE(1372)] = 56533, - [SMALL_STATE(1373)] = 56541, - [SMALL_STATE(1374)] = 56549, - [SMALL_STATE(1375)] = 56557, - [SMALL_STATE(1376)] = 56565, - [SMALL_STATE(1377)] = 56575, - [SMALL_STATE(1378)] = 56583, - [SMALL_STATE(1379)] = 56591, - [SMALL_STATE(1380)] = 56599, - [SMALL_STATE(1381)] = 56607, - [SMALL_STATE(1382)] = 56617, - [SMALL_STATE(1383)] = 56625, - [SMALL_STATE(1384)] = 56633, - [SMALL_STATE(1385)] = 56641, - [SMALL_STATE(1386)] = 56649, - [SMALL_STATE(1387)] = 56659, - [SMALL_STATE(1388)] = 56667, - [SMALL_STATE(1389)] = 56675, - [SMALL_STATE(1390)] = 56685, - [SMALL_STATE(1391)] = 56695, - [SMALL_STATE(1392)] = 56705, - [SMALL_STATE(1393)] = 56715, - [SMALL_STATE(1394)] = 56723, - [SMALL_STATE(1395)] = 56733, - [SMALL_STATE(1396)] = 56743, - [SMALL_STATE(1397)] = 56751, - [SMALL_STATE(1398)] = 56759, - [SMALL_STATE(1399)] = 56769, - [SMALL_STATE(1400)] = 56779, - [SMALL_STATE(1401)] = 56787, - [SMALL_STATE(1402)] = 56795, - [SMALL_STATE(1403)] = 56805, - [SMALL_STATE(1404)] = 56815, - [SMALL_STATE(1405)] = 56825, - [SMALL_STATE(1406)] = 56833, - [SMALL_STATE(1407)] = 56841, - [SMALL_STATE(1408)] = 56849, - [SMALL_STATE(1409)] = 56857, - [SMALL_STATE(1410)] = 56865, - [SMALL_STATE(1411)] = 56873, - [SMALL_STATE(1412)] = 56883, - [SMALL_STATE(1413)] = 56891, - [SMALL_STATE(1414)] = 56901, - [SMALL_STATE(1415)] = 56908, - [SMALL_STATE(1416)] = 56915, - [SMALL_STATE(1417)] = 56922, - [SMALL_STATE(1418)] = 56929, - [SMALL_STATE(1419)] = 56936, - [SMALL_STATE(1420)] = 56943, - [SMALL_STATE(1421)] = 56950, - [SMALL_STATE(1422)] = 56957, - [SMALL_STATE(1423)] = 56964, - [SMALL_STATE(1424)] = 56971, - [SMALL_STATE(1425)] = 56978, - [SMALL_STATE(1426)] = 56985, - [SMALL_STATE(1427)] = 56992, - [SMALL_STATE(1428)] = 56999, - [SMALL_STATE(1429)] = 57006, - [SMALL_STATE(1430)] = 57013, - [SMALL_STATE(1431)] = 57020, - [SMALL_STATE(1432)] = 57027, - [SMALL_STATE(1433)] = 57034, - [SMALL_STATE(1434)] = 57041, - [SMALL_STATE(1435)] = 57048, - [SMALL_STATE(1436)] = 57055, - [SMALL_STATE(1437)] = 57062, - [SMALL_STATE(1438)] = 57069, - [SMALL_STATE(1439)] = 57076, - [SMALL_STATE(1440)] = 57083, - [SMALL_STATE(1441)] = 57090, - [SMALL_STATE(1442)] = 57097, - [SMALL_STATE(1443)] = 57104, - [SMALL_STATE(1444)] = 57111, - [SMALL_STATE(1445)] = 57118, - [SMALL_STATE(1446)] = 57125, - [SMALL_STATE(1447)] = 57132, - [SMALL_STATE(1448)] = 57139, - [SMALL_STATE(1449)] = 57146, - [SMALL_STATE(1450)] = 57153, - [SMALL_STATE(1451)] = 57160, - [SMALL_STATE(1452)] = 57167, - [SMALL_STATE(1453)] = 57174, - [SMALL_STATE(1454)] = 57181, - [SMALL_STATE(1455)] = 57188, - [SMALL_STATE(1456)] = 57195, - [SMALL_STATE(1457)] = 57202, - [SMALL_STATE(1458)] = 57209, - [SMALL_STATE(1459)] = 57216, - [SMALL_STATE(1460)] = 57223, - [SMALL_STATE(1461)] = 57230, - [SMALL_STATE(1462)] = 57237, - [SMALL_STATE(1463)] = 57244, - [SMALL_STATE(1464)] = 57251, - [SMALL_STATE(1465)] = 57258, - [SMALL_STATE(1466)] = 57265, - [SMALL_STATE(1467)] = 57272, - [SMALL_STATE(1468)] = 57279, - [SMALL_STATE(1469)] = 57286, - [SMALL_STATE(1470)] = 57293, - [SMALL_STATE(1471)] = 57300, - [SMALL_STATE(1472)] = 57307, - [SMALL_STATE(1473)] = 57314, - [SMALL_STATE(1474)] = 57321, - [SMALL_STATE(1475)] = 57328, - [SMALL_STATE(1476)] = 57335, - [SMALL_STATE(1477)] = 57342, - [SMALL_STATE(1478)] = 57349, - [SMALL_STATE(1479)] = 57356, - [SMALL_STATE(1480)] = 57363, - [SMALL_STATE(1481)] = 57370, - [SMALL_STATE(1482)] = 57377, - [SMALL_STATE(1483)] = 57384, - [SMALL_STATE(1484)] = 57391, - [SMALL_STATE(1485)] = 57398, - [SMALL_STATE(1486)] = 57405, - [SMALL_STATE(1487)] = 57412, - [SMALL_STATE(1488)] = 57419, - [SMALL_STATE(1489)] = 57426, - [SMALL_STATE(1490)] = 57433, - [SMALL_STATE(1491)] = 57440, - [SMALL_STATE(1492)] = 57447, - [SMALL_STATE(1493)] = 57454, - [SMALL_STATE(1494)] = 57461, - [SMALL_STATE(1495)] = 57468, - [SMALL_STATE(1496)] = 57475, - [SMALL_STATE(1497)] = 57482, - [SMALL_STATE(1498)] = 57489, - [SMALL_STATE(1499)] = 57496, - [SMALL_STATE(1500)] = 57503, - [SMALL_STATE(1501)] = 57510, - [SMALL_STATE(1502)] = 57517, - [SMALL_STATE(1503)] = 57524, - [SMALL_STATE(1504)] = 57531, - [SMALL_STATE(1505)] = 57538, - [SMALL_STATE(1506)] = 57545, - [SMALL_STATE(1507)] = 57552, - [SMALL_STATE(1508)] = 57559, - [SMALL_STATE(1509)] = 57566, - [SMALL_STATE(1510)] = 57573, - [SMALL_STATE(1511)] = 57580, - [SMALL_STATE(1512)] = 57587, - [SMALL_STATE(1513)] = 57594, - [SMALL_STATE(1514)] = 57601, - [SMALL_STATE(1515)] = 57608, - [SMALL_STATE(1516)] = 57615, - [SMALL_STATE(1517)] = 57622, - [SMALL_STATE(1518)] = 57629, - [SMALL_STATE(1519)] = 57636, - [SMALL_STATE(1520)] = 57643, - [SMALL_STATE(1521)] = 57650, - [SMALL_STATE(1522)] = 57657, - [SMALL_STATE(1523)] = 57664, - [SMALL_STATE(1524)] = 57671, - [SMALL_STATE(1525)] = 57678, - [SMALL_STATE(1526)] = 57685, - [SMALL_STATE(1527)] = 57692, - [SMALL_STATE(1528)] = 57699, - [SMALL_STATE(1529)] = 57706, - [SMALL_STATE(1530)] = 57713, - [SMALL_STATE(1531)] = 57720, - [SMALL_STATE(1532)] = 57727, - [SMALL_STATE(1533)] = 57734, + [SMALL_STATE(143)] = 0, + [SMALL_STATE(144)] = 118, + [SMALL_STATE(145)] = 236, + [SMALL_STATE(146)] = 354, + [SMALL_STATE(147)] = 464, + [SMALL_STATE(148)] = 583, + [SMALL_STATE(149)] = 698, + [SMALL_STATE(150)] = 813, + [SMALL_STATE(151)] = 930, + [SMALL_STATE(152)] = 1045, + [SMALL_STATE(153)] = 1162, + [SMALL_STATE(154)] = 1276, + [SMALL_STATE(155)] = 1380, + [SMALL_STATE(156)] = 1484, + [SMALL_STATE(157)] = 1588, + [SMALL_STATE(158)] = 1688, + [SMALL_STATE(159)] = 1802, + [SMALL_STATE(160)] = 1916, + [SMALL_STATE(161)] = 2016, + [SMALL_STATE(162)] = 2121, + [SMALL_STATE(163)] = 2224, + [SMALL_STATE(164)] = 2329, + [SMALL_STATE(165)] = 2436, + [SMALL_STATE(166)] = 2541, + [SMALL_STATE(167)] = 2642, + [SMALL_STATE(168)] = 2743, + [SMALL_STATE(169)] = 2848, + [SMALL_STATE(170)] = 2951, + [SMALL_STATE(171)] = 3056, + [SMALL_STATE(172)] = 3161, + [SMALL_STATE(173)] = 3262, + [SMALL_STATE(174)] = 3364, + [SMALL_STATE(175)] = 3466, + [SMALL_STATE(176)] = 3568, + [SMALL_STATE(177)] = 3666, + [SMALL_STATE(178)] = 3772, + [SMALL_STATE(179)] = 3870, + [SMALL_STATE(180)] = 3974, + [SMALL_STATE(181)] = 4076, + [SMALL_STATE(182)] = 4178, + [SMALL_STATE(183)] = 4280, + [SMALL_STATE(184)] = 4382, + [SMALL_STATE(185)] = 4484, + [SMALL_STATE(186)] = 4586, + [SMALL_STATE(187)] = 4688, + [SMALL_STATE(188)] = 4790, + [SMALL_STATE(189)] = 4892, + [SMALL_STATE(190)] = 4990, + [SMALL_STATE(191)] = 5092, + [SMALL_STATE(192)] = 5194, + [SMALL_STATE(193)] = 5296, + [SMALL_STATE(194)] = 5398, + [SMALL_STATE(195)] = 5500, + [SMALL_STATE(196)] = 5602, + [SMALL_STATE(197)] = 5700, + [SMALL_STATE(198)] = 5804, + [SMALL_STATE(199)] = 5910, + [SMALL_STATE(200)] = 6012, + [SMALL_STATE(201)] = 6114, + [SMALL_STATE(202)] = 6216, + [SMALL_STATE(203)] = 6320, + [SMALL_STATE(204)] = 6424, + [SMALL_STATE(205)] = 6526, + [SMALL_STATE(206)] = 6628, + [SMALL_STATE(207)] = 6689, + [SMALL_STATE(208)] = 6750, + [SMALL_STATE(209)] = 6849, + [SMALL_STATE(210)] = 6948, + [SMALL_STATE(211)] = 7047, + [SMALL_STATE(212)] = 7108, + [SMALL_STATE(213)] = 7169, + [SMALL_STATE(214)] = 7230, + [SMALL_STATE(215)] = 7291, + [SMALL_STATE(216)] = 7352, + [SMALL_STATE(217)] = 7450, + [SMALL_STATE(218)] = 7548, + [SMALL_STATE(219)] = 7620, + [SMALL_STATE(220)] = 7718, + [SMALL_STATE(221)] = 7816, + [SMALL_STATE(222)] = 7914, + [SMALL_STATE(223)] = 8012, + [SMALL_STATE(224)] = 8110, + [SMALL_STATE(225)] = 8208, + [SMALL_STATE(226)] = 8306, + [SMALL_STATE(227)] = 8378, + [SMALL_STATE(228)] = 8476, + [SMALL_STATE(229)] = 8548, + [SMALL_STATE(230)] = 8620, + [SMALL_STATE(231)] = 8716, + [SMALL_STATE(232)] = 8814, + [SMALL_STATE(233)] = 8912, + [SMALL_STATE(234)] = 8984, + [SMALL_STATE(235)] = 9082, + [SMALL_STATE(236)] = 9154, + [SMALL_STATE(237)] = 9226, + [SMALL_STATE(238)] = 9324, + [SMALL_STATE(239)] = 9396, + [SMALL_STATE(240)] = 9491, + [SMALL_STATE(241)] = 9586, + [SMALL_STATE(242)] = 9681, + [SMALL_STATE(243)] = 9776, + [SMALL_STATE(244)] = 9871, + [SMALL_STATE(245)] = 9966, + [SMALL_STATE(246)] = 10061, + [SMALL_STATE(247)] = 10156, + [SMALL_STATE(248)] = 10251, + [SMALL_STATE(249)] = 10346, + [SMALL_STATE(250)] = 10441, + [SMALL_STATE(251)] = 10536, + [SMALL_STATE(252)] = 10609, + [SMALL_STATE(253)] = 10704, + [SMALL_STATE(254)] = 10777, + [SMALL_STATE(255)] = 10872, + [SMALL_STATE(256)] = 10967, + [SMALL_STATE(257)] = 11035, + [SMALL_STATE(258)] = 11129, + [SMALL_STATE(259)] = 11187, + [SMALL_STATE(260)] = 11245, + [SMALL_STATE(261)] = 11303, + [SMALL_STATE(262)] = 11397, + [SMALL_STATE(263)] = 11455, + [SMALL_STATE(264)] = 11549, + [SMALL_STATE(265)] = 11641, + [SMALL_STATE(266)] = 11699, + [SMALL_STATE(267)] = 11791, + [SMALL_STATE(268)] = 11859, + [SMALL_STATE(269)] = 11917, + [SMALL_STATE(270)] = 11987, + [SMALL_STATE(271)] = 12055, + [SMALL_STATE(272)] = 12123, + [SMALL_STATE(273)] = 12217, + [SMALL_STATE(274)] = 12311, + [SMALL_STATE(275)] = 12405, + [SMALL_STATE(276)] = 12499, + [SMALL_STATE(277)] = 12593, + [SMALL_STATE(278)] = 12651, + [SMALL_STATE(279)] = 12709, + [SMALL_STATE(280)] = 12777, + [SMALL_STATE(281)] = 12871, + [SMALL_STATE(282)] = 12933, + [SMALL_STATE(283)] = 13001, + [SMALL_STATE(284)] = 13059, + [SMALL_STATE(285)] = 13153, + [SMALL_STATE(286)] = 13221, + [SMALL_STATE(287)] = 13315, + [SMALL_STATE(288)] = 13383, + [SMALL_STATE(289)] = 13445, + [SMALL_STATE(290)] = 13507, + [SMALL_STATE(291)] = 13599, + [SMALL_STATE(292)] = 13657, + [SMALL_STATE(293)] = 13719, + [SMALL_STATE(294)] = 13810, + [SMALL_STATE(295)] = 13901, + [SMALL_STATE(296)] = 13992, + [SMALL_STATE(297)] = 14059, + [SMALL_STATE(298)] = 14122, + [SMALL_STATE(299)] = 14211, + [SMALL_STATE(300)] = 14300, + [SMALL_STATE(301)] = 14389, + [SMALL_STATE(302)] = 14478, + [SMALL_STATE(303)] = 14567, + [SMALL_STATE(304)] = 14658, + [SMALL_STATE(305)] = 14747, + [SMALL_STATE(306)] = 14836, + [SMALL_STATE(307)] = 14925, + [SMALL_STATE(308)] = 15014, + [SMALL_STATE(309)] = 15105, + [SMALL_STATE(310)] = 15168, + [SMALL_STATE(311)] = 15257, + [SMALL_STATE(312)] = 15346, + [SMALL_STATE(313)] = 15437, + [SMALL_STATE(314)] = 15526, + [SMALL_STATE(315)] = 15617, + [SMALL_STATE(316)] = 15706, + [SMALL_STATE(317)] = 15797, + [SMALL_STATE(318)] = 15888, + [SMALL_STATE(319)] = 15944, + [SMALL_STATE(320)] = 16000, + [SMALL_STATE(321)] = 16056, + [SMALL_STATE(322)] = 16144, + [SMALL_STATE(323)] = 16200, + [SMALL_STATE(324)] = 16256, + [SMALL_STATE(325)] = 16312, + [SMALL_STATE(326)] = 16372, + [SMALL_STATE(327)] = 16460, + [SMALL_STATE(328)] = 16516, + [SMALL_STATE(329)] = 16572, + [SMALL_STATE(330)] = 16628, + [SMALL_STATE(331)] = 16684, + [SMALL_STATE(332)] = 16740, + [SMALL_STATE(333)] = 16796, + [SMALL_STATE(334)] = 16860, + [SMALL_STATE(335)] = 16916, + [SMALL_STATE(336)] = 16972, + [SMALL_STATE(337)] = 17028, + [SMALL_STATE(338)] = 17084, + [SMALL_STATE(339)] = 17140, + [SMALL_STATE(340)] = 17204, + [SMALL_STATE(341)] = 17264, + [SMALL_STATE(342)] = 17328, + [SMALL_STATE(343)] = 17388, + [SMALL_STATE(344)] = 17448, + [SMALL_STATE(345)] = 17504, + [SMALL_STATE(346)] = 17560, + [SMALL_STATE(347)] = 17616, + [SMALL_STATE(348)] = 17672, + [SMALL_STATE(349)] = 17728, + [SMALL_STATE(350)] = 17784, + [SMALL_STATE(351)] = 17840, + [SMALL_STATE(352)] = 17896, + [SMALL_STATE(353)] = 17952, + [SMALL_STATE(354)] = 18008, + [SMALL_STATE(355)] = 18096, + [SMALL_STATE(356)] = 18160, + [SMALL_STATE(357)] = 18215, + [SMALL_STATE(358)] = 18300, + [SMALL_STATE(359)] = 18361, + [SMALL_STATE(360)] = 18446, + [SMALL_STATE(361)] = 18507, + [SMALL_STATE(362)] = 18568, + [SMALL_STATE(363)] = 18653, + [SMALL_STATE(364)] = 18738, + [SMALL_STATE(365)] = 18823, + [SMALL_STATE(366)] = 18908, + [SMALL_STATE(367)] = 18993, + [SMALL_STATE(368)] = 19054, + [SMALL_STATE(369)] = 19139, + [SMALL_STATE(370)] = 19198, + [SMALL_STATE(371)] = 19283, + [SMALL_STATE(372)] = 19368, + [SMALL_STATE(373)] = 19453, + [SMALL_STATE(374)] = 19538, + [SMALL_STATE(375)] = 19623, + [SMALL_STATE(376)] = 19708, + [SMALL_STATE(377)] = 19793, + [SMALL_STATE(378)] = 19878, + [SMALL_STATE(379)] = 19963, + [SMALL_STATE(380)] = 20048, + [SMALL_STATE(381)] = 20133, + [SMALL_STATE(382)] = 20218, + [SMALL_STATE(383)] = 20303, + [SMALL_STATE(384)] = 20388, + [SMALL_STATE(385)] = 20447, + [SMALL_STATE(386)] = 20532, + [SMALL_STATE(387)] = 20617, + [SMALL_STATE(388)] = 20702, + [SMALL_STATE(389)] = 20787, + [SMALL_STATE(390)] = 20872, + [SMALL_STATE(391)] = 20957, + [SMALL_STATE(392)] = 21042, + [SMALL_STATE(393)] = 21127, + [SMALL_STATE(394)] = 21212, + [SMALL_STATE(395)] = 21297, + [SMALL_STATE(396)] = 21382, + [SMALL_STATE(397)] = 21467, + [SMALL_STATE(398)] = 21552, + [SMALL_STATE(399)] = 21637, + [SMALL_STATE(400)] = 21722, + [SMALL_STATE(401)] = 21807, + [SMALL_STATE(402)] = 21892, + [SMALL_STATE(403)] = 21951, + [SMALL_STATE(404)] = 22036, + [SMALL_STATE(405)] = 22121, + [SMALL_STATE(406)] = 22206, + [SMALL_STATE(407)] = 22291, + [SMALL_STATE(408)] = 22376, + [SMALL_STATE(409)] = 22461, + [SMALL_STATE(410)] = 22546, + [SMALL_STATE(411)] = 22601, + [SMALL_STATE(412)] = 22660, + [SMALL_STATE(413)] = 22719, + [SMALL_STATE(414)] = 22804, + [SMALL_STATE(415)] = 22889, + [SMALL_STATE(416)] = 22974, + [SMALL_STATE(417)] = 23059, + [SMALL_STATE(418)] = 23118, + [SMALL_STATE(419)] = 23203, + [SMALL_STATE(420)] = 23288, + [SMALL_STATE(421)] = 23373, + [SMALL_STATE(422)] = 23432, + [SMALL_STATE(423)] = 23487, + [SMALL_STATE(424)] = 23572, + [SMALL_STATE(425)] = 23627, + [SMALL_STATE(426)] = 23712, + [SMALL_STATE(427)] = 23771, + [SMALL_STATE(428)] = 23856, + [SMALL_STATE(429)] = 23941, + [SMALL_STATE(430)] = 24026, + [SMALL_STATE(431)] = 24111, + [SMALL_STATE(432)] = 24196, + [SMALL_STATE(433)] = 24255, + [SMALL_STATE(434)] = 24314, + [SMALL_STATE(435)] = 24401, + [SMALL_STATE(436)] = 24486, + [SMALL_STATE(437)] = 24571, + [SMALL_STATE(438)] = 24656, + [SMALL_STATE(439)] = 24715, + [SMALL_STATE(440)] = 24774, + [SMALL_STATE(441)] = 24829, + [SMALL_STATE(442)] = 24914, + [SMALL_STATE(443)] = 24999, + [SMALL_STATE(444)] = 25084, + [SMALL_STATE(445)] = 25139, + [SMALL_STATE(446)] = 25224, + [SMALL_STATE(447)] = 25309, + [SMALL_STATE(448)] = 25394, + [SMALL_STATE(449)] = 25479, + [SMALL_STATE(450)] = 25538, + [SMALL_STATE(451)] = 25623, + [SMALL_STATE(452)] = 25708, + [SMALL_STATE(453)] = 25793, + [SMALL_STATE(454)] = 25852, + [SMALL_STATE(455)] = 25911, + [SMALL_STATE(456)] = 25970, + [SMALL_STATE(457)] = 26024, + [SMALL_STATE(458)] = 26078, + [SMALL_STATE(459)] = 26132, + [SMALL_STATE(460)] = 26186, + [SMALL_STATE(461)] = 26240, + [SMALL_STATE(462)] = 26294, + [SMALL_STATE(463)] = 26348, + [SMALL_STATE(464)] = 26402, + [SMALL_STATE(465)] = 26456, + [SMALL_STATE(466)] = 26510, + [SMALL_STATE(467)] = 26564, + [SMALL_STATE(468)] = 26618, + [SMALL_STATE(469)] = 26671, + [SMALL_STATE(470)] = 26724, + [SMALL_STATE(471)] = 26777, + [SMALL_STATE(472)] = 26830, + [SMALL_STATE(473)] = 26883, + [SMALL_STATE(474)] = 26936, + [SMALL_STATE(475)] = 26989, + [SMALL_STATE(476)] = 27042, + [SMALL_STATE(477)] = 27095, + [SMALL_STATE(478)] = 27148, + [SMALL_STATE(479)] = 27201, + [SMALL_STATE(480)] = 27254, + [SMALL_STATE(481)] = 27307, + [SMALL_STATE(482)] = 27360, + [SMALL_STATE(483)] = 27413, + [SMALL_STATE(484)] = 27466, + [SMALL_STATE(485)] = 27519, + [SMALL_STATE(486)] = 27572, + [SMALL_STATE(487)] = 27625, + [SMALL_STATE(488)] = 27678, + [SMALL_STATE(489)] = 27731, + [SMALL_STATE(490)] = 27784, + [SMALL_STATE(491)] = 27837, + [SMALL_STATE(492)] = 27890, + [SMALL_STATE(493)] = 27943, + [SMALL_STATE(494)] = 27996, + [SMALL_STATE(495)] = 28049, + [SMALL_STATE(496)] = 28102, + [SMALL_STATE(497)] = 28155, + [SMALL_STATE(498)] = 28208, + [SMALL_STATE(499)] = 28261, + [SMALL_STATE(500)] = 28314, + [SMALL_STATE(501)] = 28367, + [SMALL_STATE(502)] = 28420, + [SMALL_STATE(503)] = 28473, + [SMALL_STATE(504)] = 28526, + [SMALL_STATE(505)] = 28579, + [SMALL_STATE(506)] = 28632, + [SMALL_STATE(507)] = 28685, + [SMALL_STATE(508)] = 28738, + [SMALL_STATE(509)] = 28791, + [SMALL_STATE(510)] = 28844, + [SMALL_STATE(511)] = 28897, + [SMALL_STATE(512)] = 28950, + [SMALL_STATE(513)] = 29003, + [SMALL_STATE(514)] = 29056, + [SMALL_STATE(515)] = 29109, + [SMALL_STATE(516)] = 29162, + [SMALL_STATE(517)] = 29215, + [SMALL_STATE(518)] = 29268, + [SMALL_STATE(519)] = 29321, + [SMALL_STATE(520)] = 29374, + [SMALL_STATE(521)] = 29427, + [SMALL_STATE(522)] = 29480, + [SMALL_STATE(523)] = 29533, + [SMALL_STATE(524)] = 29586, + [SMALL_STATE(525)] = 29639, + [SMALL_STATE(526)] = 29692, + [SMALL_STATE(527)] = 29745, + [SMALL_STATE(528)] = 29798, + [SMALL_STATE(529)] = 29851, + [SMALL_STATE(530)] = 29904, + [SMALL_STATE(531)] = 29957, + [SMALL_STATE(532)] = 30010, + [SMALL_STATE(533)] = 30063, + [SMALL_STATE(534)] = 30116, + [SMALL_STATE(535)] = 30169, + [SMALL_STATE(536)] = 30222, + [SMALL_STATE(537)] = 30275, + [SMALL_STATE(538)] = 30328, + [SMALL_STATE(539)] = 30381, + [SMALL_STATE(540)] = 30434, + [SMALL_STATE(541)] = 30487, + [SMALL_STATE(542)] = 30540, + [SMALL_STATE(543)] = 30593, + [SMALL_STATE(544)] = 30646, + [SMALL_STATE(545)] = 30699, + [SMALL_STATE(546)] = 30752, + [SMALL_STATE(547)] = 30805, + [SMALL_STATE(548)] = 30858, + [SMALL_STATE(549)] = 30911, + [SMALL_STATE(550)] = 30964, + [SMALL_STATE(551)] = 31017, + [SMALL_STATE(552)] = 31070, + [SMALL_STATE(553)] = 31123, + [SMALL_STATE(554)] = 31176, + [SMALL_STATE(555)] = 31229, + [SMALL_STATE(556)] = 31282, + [SMALL_STATE(557)] = 31335, + [SMALL_STATE(558)] = 31388, + [SMALL_STATE(559)] = 31441, + [SMALL_STATE(560)] = 31494, + [SMALL_STATE(561)] = 31547, + [SMALL_STATE(562)] = 31600, + [SMALL_STATE(563)] = 31653, + [SMALL_STATE(564)] = 31706, + [SMALL_STATE(565)] = 31759, + [SMALL_STATE(566)] = 31812, + [SMALL_STATE(567)] = 31894, + [SMALL_STATE(568)] = 31978, + [SMALL_STATE(569)] = 32060, + [SMALL_STATE(570)] = 32141, + [SMALL_STATE(571)] = 32196, + [SMALL_STATE(572)] = 32251, + [SMALL_STATE(573)] = 32332, + [SMALL_STATE(574)] = 32413, + [SMALL_STATE(575)] = 32468, + [SMALL_STATE(576)] = 32549, + [SMALL_STATE(577)] = 32630, + [SMALL_STATE(578)] = 32711, + [SMALL_STATE(579)] = 32789, + [SMALL_STATE(580)] = 32867, + [SMALL_STATE(581)] = 32916, + [SMALL_STATE(582)] = 32965, + [SMALL_STATE(583)] = 33047, + [SMALL_STATE(584)] = 33095, + [SMALL_STATE(585)] = 33143, + [SMALL_STATE(586)] = 33191, + [SMALL_STATE(587)] = 33239, + [SMALL_STATE(588)] = 33287, + [SMALL_STATE(589)] = 33335, + [SMALL_STATE(590)] = 33383, + [SMALL_STATE(591)] = 33431, + [SMALL_STATE(592)] = 33479, + [SMALL_STATE(593)] = 33527, + [SMALL_STATE(594)] = 33575, + [SMALL_STATE(595)] = 33623, + [SMALL_STATE(596)] = 33671, + [SMALL_STATE(597)] = 33719, + [SMALL_STATE(598)] = 33767, + [SMALL_STATE(599)] = 33815, + [SMALL_STATE(600)] = 33863, + [SMALL_STATE(601)] = 33935, + [SMALL_STATE(602)] = 33983, + [SMALL_STATE(603)] = 34031, + [SMALL_STATE(604)] = 34079, + [SMALL_STATE(605)] = 34127, + [SMALL_STATE(606)] = 34175, + [SMALL_STATE(607)] = 34223, + [SMALL_STATE(608)] = 34271, + [SMALL_STATE(609)] = 34319, + [SMALL_STATE(610)] = 34367, + [SMALL_STATE(611)] = 34415, + [SMALL_STATE(612)] = 34463, + [SMALL_STATE(613)] = 34511, + [SMALL_STATE(614)] = 34559, + [SMALL_STATE(615)] = 34641, + [SMALL_STATE(616)] = 34689, + [SMALL_STATE(617)] = 34746, + [SMALL_STATE(618)] = 34803, + [SMALL_STATE(619)] = 34860, + [SMALL_STATE(620)] = 34923, + [SMALL_STATE(621)] = 34980, + [SMALL_STATE(622)] = 35051, + [SMALL_STATE(623)] = 35108, + [SMALL_STATE(624)] = 35179, + [SMALL_STATE(625)] = 35246, + [SMALL_STATE(626)] = 35307, + [SMALL_STATE(627)] = 35372, + [SMALL_STATE(628)] = 35443, + [SMALL_STATE(629)] = 35510, + [SMALL_STATE(630)] = 35571, + [SMALL_STATE(631)] = 35636, + [SMALL_STATE(632)] = 35699, + [SMALL_STATE(633)] = 35756, + [SMALL_STATE(634)] = 35827, + [SMALL_STATE(635)] = 35896, + [SMALL_STATE(636)] = 35965, + [SMALL_STATE(637)] = 36036, + [SMALL_STATE(638)] = 36107, + [SMALL_STATE(639)] = 36153, + [SMALL_STATE(640)] = 36203, + [SMALL_STATE(641)] = 36249, + [SMALL_STATE(642)] = 36297, + [SMALL_STATE(643)] = 36345, + [SMALL_STATE(644)] = 36411, + [SMALL_STATE(645)] = 36461, + [SMALL_STATE(646)] = 36527, + [SMALL_STATE(647)] = 36593, + [SMALL_STATE(648)] = 36659, + [SMALL_STATE(649)] = 36707, + [SMALL_STATE(650)] = 36755, + [SMALL_STATE(651)] = 36804, + [SMALL_STATE(652)] = 36867, + [SMALL_STATE(653)] = 36930, + [SMALL_STATE(654)] = 36993, + [SMALL_STATE(655)] = 37056, + [SMALL_STATE(656)] = 37119, + [SMALL_STATE(657)] = 37168, + [SMALL_STATE(658)] = 37217, + [SMALL_STATE(659)] = 37280, + [SMALL_STATE(660)] = 37343, + [SMALL_STATE(661)] = 37406, + [SMALL_STATE(662)] = 37469, + [SMALL_STATE(663)] = 37532, + [SMALL_STATE(664)] = 37599, + [SMALL_STATE(665)] = 37662, + [SMALL_STATE(666)] = 37725, + [SMALL_STATE(667)] = 37788, + [SMALL_STATE(668)] = 37851, + [SMALL_STATE(669)] = 37914, + [SMALL_STATE(670)] = 37977, + [SMALL_STATE(671)] = 38040, + [SMALL_STATE(672)] = 38103, + [SMALL_STATE(673)] = 38166, + [SMALL_STATE(674)] = 38229, + [SMALL_STATE(675)] = 38292, + [SMALL_STATE(676)] = 38355, + [SMALL_STATE(677)] = 38418, + [SMALL_STATE(678)] = 38485, + [SMALL_STATE(679)] = 38548, + [SMALL_STATE(680)] = 38611, + [SMALL_STATE(681)] = 38674, + [SMALL_STATE(682)] = 38737, + [SMALL_STATE(683)] = 38800, + [SMALL_STATE(684)] = 38863, + [SMALL_STATE(685)] = 38926, + [SMALL_STATE(686)] = 38989, + [SMALL_STATE(687)] = 39052, + [SMALL_STATE(688)] = 39097, + [SMALL_STATE(689)] = 39160, + [SMALL_STATE(690)] = 39205, + [SMALL_STATE(691)] = 39268, + [SMALL_STATE(692)] = 39331, + [SMALL_STATE(693)] = 39410, + [SMALL_STATE(694)] = 39473, + [SMALL_STATE(695)] = 39536, + [SMALL_STATE(696)] = 39599, + [SMALL_STATE(697)] = 39662, + [SMALL_STATE(698)] = 39725, + [SMALL_STATE(699)] = 39788, + [SMALL_STATE(700)] = 39851, + [SMALL_STATE(701)] = 39914, + [SMALL_STATE(702)] = 39977, + [SMALL_STATE(703)] = 40045, + [SMALL_STATE(704)] = 40107, + [SMALL_STATE(705)] = 40151, + [SMALL_STATE(706)] = 40205, + [SMALL_STATE(707)] = 40265, + [SMALL_STATE(708)] = 40333, + [SMALL_STATE(709)] = 40397, + [SMALL_STATE(710)] = 40465, + [SMALL_STATE(711)] = 40519, + [SMALL_STATE(712)] = 40577, + [SMALL_STATE(713)] = 40653, + [SMALL_STATE(714)] = 40707, + [SMALL_STATE(715)] = 40773, + [SMALL_STATE(716)] = 40821, + [SMALL_STATE(717)] = 40865, + [SMALL_STATE(718)] = 40910, + [SMALL_STATE(719)] = 40963, + [SMALL_STATE(720)] = 41016, + [SMALL_STATE(721)] = 41063, + [SMALL_STATE(722)] = 41128, + [SMALL_STATE(723)] = 41171, + [SMALL_STATE(724)] = 41216, + [SMALL_STATE(725)] = 41263, + [SMALL_STATE(726)] = 41330, + [SMALL_STATE(727)] = 41375, + [SMALL_STATE(728)] = 41434, + [SMALL_STATE(729)] = 41477, + [SMALL_STATE(730)] = 41534, + [SMALL_STATE(731)] = 41579, + [SMALL_STATE(732)] = 41642, + [SMALL_STATE(733)] = 41703, + [SMALL_STATE(734)] = 41770, + [SMALL_STATE(735)] = 41837, + [SMALL_STATE(736)] = 41884, + [SMALL_STATE(737)] = 41937, + [SMALL_STATE(738)] = 41982, + [SMALL_STATE(739)] = 42029, + [SMALL_STATE(740)] = 42074, + [SMALL_STATE(741)] = 42119, + [SMALL_STATE(742)] = 42164, + [SMALL_STATE(743)] = 42206, + [SMALL_STATE(744)] = 42248, + [SMALL_STATE(745)] = 42290, + [SMALL_STATE(746)] = 42332, + [SMALL_STATE(747)] = 42374, + [SMALL_STATE(748)] = 42416, + [SMALL_STATE(749)] = 42458, + [SMALL_STATE(750)] = 42500, + [SMALL_STATE(751)] = 42542, + [SMALL_STATE(752)] = 42584, + [SMALL_STATE(753)] = 42626, + [SMALL_STATE(754)] = 42670, + [SMALL_STATE(755)] = 42712, + [SMALL_STATE(756)] = 42754, + [SMALL_STATE(757)] = 42798, + [SMALL_STATE(758)] = 42842, + [SMALL_STATE(759)] = 42884, + [SMALL_STATE(760)] = 42926, + [SMALL_STATE(761)] = 42968, + [SMALL_STATE(762)] = 43010, + [SMALL_STATE(763)] = 43052, + [SMALL_STATE(764)] = 43094, + [SMALL_STATE(765)] = 43136, + [SMALL_STATE(766)] = 43178, + [SMALL_STATE(767)] = 43220, + [SMALL_STATE(768)] = 43262, + [SMALL_STATE(769)] = 43304, + [SMALL_STATE(770)] = 43346, + [SMALL_STATE(771)] = 43390, + [SMALL_STATE(772)] = 43432, + [SMALL_STATE(773)] = 43474, + [SMALL_STATE(774)] = 43516, + [SMALL_STATE(775)] = 43558, + [SMALL_STATE(776)] = 43600, + [SMALL_STATE(777)] = 43642, + [SMALL_STATE(778)] = 43684, + [SMALL_STATE(779)] = 43726, + [SMALL_STATE(780)] = 43770, + [SMALL_STATE(781)] = 43811, + [SMALL_STATE(782)] = 43852, + [SMALL_STATE(783)] = 43893, + [SMALL_STATE(784)] = 43934, + [SMALL_STATE(785)] = 43975, + [SMALL_STATE(786)] = 44016, + [SMALL_STATE(787)] = 44057, + [SMALL_STATE(788)] = 44098, + [SMALL_STATE(789)] = 44139, + [SMALL_STATE(790)] = 44184, + [SMALL_STATE(791)] = 44225, + [SMALL_STATE(792)] = 44270, + [SMALL_STATE(793)] = 44311, + [SMALL_STATE(794)] = 44352, + [SMALL_STATE(795)] = 44393, + [SMALL_STATE(796)] = 44434, + [SMALL_STATE(797)] = 44475, + [SMALL_STATE(798)] = 44516, + [SMALL_STATE(799)] = 44557, + [SMALL_STATE(800)] = 44598, + [SMALL_STATE(801)] = 44639, + [SMALL_STATE(802)] = 44680, + [SMALL_STATE(803)] = 44721, + [SMALL_STATE(804)] = 44762, + [SMALL_STATE(805)] = 44803, + [SMALL_STATE(806)] = 44844, + [SMALL_STATE(807)] = 44885, + [SMALL_STATE(808)] = 44926, + [SMALL_STATE(809)] = 44967, + [SMALL_STATE(810)] = 45008, + [SMALL_STATE(811)] = 45049, + [SMALL_STATE(812)] = 45090, + [SMALL_STATE(813)] = 45131, + [SMALL_STATE(814)] = 45172, + [SMALL_STATE(815)] = 45213, + [SMALL_STATE(816)] = 45254, + [SMALL_STATE(817)] = 45295, + [SMALL_STATE(818)] = 45336, + [SMALL_STATE(819)] = 45377, + [SMALL_STATE(820)] = 45418, + [SMALL_STATE(821)] = 45492, + [SMALL_STATE(822)] = 45566, + [SMALL_STATE(823)] = 45640, + [SMALL_STATE(824)] = 45714, + [SMALL_STATE(825)] = 45785, + [SMALL_STATE(826)] = 45858, + [SMALL_STATE(827)] = 45929, + [SMALL_STATE(828)] = 46000, + [SMALL_STATE(829)] = 46071, + [SMALL_STATE(830)] = 46142, + [SMALL_STATE(831)] = 46214, + [SMALL_STATE(832)] = 46282, + [SMALL_STATE(833)] = 46354, + [SMALL_STATE(834)] = 46426, + [SMALL_STATE(835)] = 46492, + [SMALL_STATE(836)] = 46555, + [SMALL_STATE(837)] = 46618, + [SMALL_STATE(838)] = 46673, + [SMALL_STATE(839)] = 46728, + [SMALL_STATE(840)] = 46768, + [SMALL_STATE(841)] = 46808, + [SMALL_STATE(842)] = 46848, + [SMALL_STATE(843)] = 46888, + [SMALL_STATE(844)] = 46918, + [SMALL_STATE(845)] = 46955, + [SMALL_STATE(846)] = 46992, + [SMALL_STATE(847)] = 47017, + [SMALL_STATE(848)] = 47042, + [SMALL_STATE(849)] = 47067, + [SMALL_STATE(850)] = 47092, + [SMALL_STATE(851)] = 47121, + [SMALL_STATE(852)] = 47150, + [SMALL_STATE(853)] = 47184, + [SMALL_STATE(854)] = 47230, + [SMALL_STATE(855)] = 47258, + [SMALL_STATE(856)] = 47292, + [SMALL_STATE(857)] = 47323, + [SMALL_STATE(858)] = 47366, + [SMALL_STATE(859)] = 47409, + [SMALL_STATE(860)] = 47452, + [SMALL_STATE(861)] = 47495, + [SMALL_STATE(862)] = 47538, + [SMALL_STATE(863)] = 47584, + [SMALL_STATE(864)] = 47630, + [SMALL_STATE(865)] = 47676, + [SMALL_STATE(866)] = 47716, + [SMALL_STATE(867)] = 47741, + [SMALL_STATE(868)] = 47778, + [SMALL_STATE(869)] = 47815, + [SMALL_STATE(870)] = 47852, + [SMALL_STATE(871)] = 47889, + [SMALL_STATE(872)] = 47911, + [SMALL_STATE(873)] = 47933, + [SMALL_STATE(874)] = 47967, + [SMALL_STATE(875)] = 47989, + [SMALL_STATE(876)] = 48023, + [SMALL_STATE(877)] = 48060, + [SMALL_STATE(878)] = 48082, + [SMALL_STATE(879)] = 48105, + [SMALL_STATE(880)] = 48142, + [SMALL_STATE(881)] = 48165, + [SMALL_STATE(882)] = 48188, + [SMALL_STATE(883)] = 48219, + [SMALL_STATE(884)] = 48240, + [SMALL_STATE(885)] = 48271, + [SMALL_STATE(886)] = 48302, + [SMALL_STATE(887)] = 48339, + [SMALL_STATE(888)] = 48370, + [SMALL_STATE(889)] = 48393, + [SMALL_STATE(890)] = 48414, + [SMALL_STATE(891)] = 48451, + [SMALL_STATE(892)] = 48476, + [SMALL_STATE(893)] = 48513, + [SMALL_STATE(894)] = 48544, + [SMALL_STATE(895)] = 48567, + [SMALL_STATE(896)] = 48594, + [SMALL_STATE(897)] = 48617, + [SMALL_STATE(898)] = 48638, + [SMALL_STATE(899)] = 48659, + [SMALL_STATE(900)] = 48684, + [SMALL_STATE(901)] = 48715, + [SMALL_STATE(902)] = 48736, + [SMALL_STATE(903)] = 48767, + [SMALL_STATE(904)] = 48790, + [SMALL_STATE(905)] = 48807, + [SMALL_STATE(906)] = 48826, + [SMALL_STATE(907)] = 48857, + [SMALL_STATE(908)] = 48888, + [SMALL_STATE(909)] = 48913, + [SMALL_STATE(910)] = 48936, + [SMALL_STATE(911)] = 48970, + [SMALL_STATE(912)] = 49004, + [SMALL_STATE(913)] = 49038, + [SMALL_STATE(914)] = 49060, + [SMALL_STATE(915)] = 49094, + [SMALL_STATE(916)] = 49116, + [SMALL_STATE(917)] = 49150, + [SMALL_STATE(918)] = 49172, + [SMALL_STATE(919)] = 49206, + [SMALL_STATE(920)] = 49224, + [SMALL_STATE(921)] = 49258, + [SMALL_STATE(922)] = 49292, + [SMALL_STATE(923)] = 49326, + [SMALL_STATE(924)] = 49348, + [SMALL_STATE(925)] = 49366, + [SMALL_STATE(926)] = 49385, + [SMALL_STATE(927)] = 49408, + [SMALL_STATE(928)] = 49427, + [SMALL_STATE(929)] = 49446, + [SMALL_STATE(930)] = 49471, + [SMALL_STATE(931)] = 49490, + [SMALL_STATE(932)] = 49509, + [SMALL_STATE(933)] = 49532, + [SMALL_STATE(934)] = 49551, + [SMALL_STATE(935)] = 49574, + [SMALL_STATE(936)] = 49594, + [SMALL_STATE(937)] = 49608, + [SMALL_STATE(938)] = 49622, + [SMALL_STATE(939)] = 49636, + [SMALL_STATE(940)] = 49654, + [SMALL_STATE(941)] = 49668, + [SMALL_STATE(942)] = 49682, + [SMALL_STATE(943)] = 49704, + [SMALL_STATE(944)] = 49722, + [SMALL_STATE(945)] = 49746, + [SMALL_STATE(946)] = 49764, + [SMALL_STATE(947)] = 49778, + [SMALL_STATE(948)] = 49798, + [SMALL_STATE(949)] = 49816, + [SMALL_STATE(950)] = 49834, + [SMALL_STATE(951)] = 49848, + [SMALL_STATE(952)] = 49862, + [SMALL_STATE(953)] = 49884, + [SMALL_STATE(954)] = 49898, + [SMALL_STATE(955)] = 49916, + [SMALL_STATE(956)] = 49930, + [SMALL_STATE(957)] = 49950, + [SMALL_STATE(958)] = 49966, + [SMALL_STATE(959)] = 49984, + [SMALL_STATE(960)] = 49998, + [SMALL_STATE(961)] = 50014, + [SMALL_STATE(962)] = 50028, + [SMALL_STATE(963)] = 50042, + [SMALL_STATE(964)] = 50060, + [SMALL_STATE(965)] = 50078, + [SMALL_STATE(966)] = 50092, + [SMALL_STATE(967)] = 50106, + [SMALL_STATE(968)] = 50120, + [SMALL_STATE(969)] = 50134, + [SMALL_STATE(970)] = 50148, + [SMALL_STATE(971)] = 50162, + [SMALL_STATE(972)] = 50176, + [SMALL_STATE(973)] = 50196, + [SMALL_STATE(974)] = 50214, + [SMALL_STATE(975)] = 50228, + [SMALL_STATE(976)] = 50250, + [SMALL_STATE(977)] = 50264, + [SMALL_STATE(978)] = 50288, + [SMALL_STATE(979)] = 50302, + [SMALL_STATE(980)] = 50328, + [SMALL_STATE(981)] = 50342, + [SMALL_STATE(982)] = 50356, + [SMALL_STATE(983)] = 50374, + [SMALL_STATE(984)] = 50392, + [SMALL_STATE(985)] = 50413, + [SMALL_STATE(986)] = 50434, + [SMALL_STATE(987)] = 50447, + [SMALL_STATE(988)] = 50466, + [SMALL_STATE(989)] = 50485, + [SMALL_STATE(990)] = 50504, + [SMALL_STATE(991)] = 50523, + [SMALL_STATE(992)] = 50542, + [SMALL_STATE(993)] = 50559, + [SMALL_STATE(994)] = 50572, + [SMALL_STATE(995)] = 50585, + [SMALL_STATE(996)] = 50608, + [SMALL_STATE(997)] = 50623, + [SMALL_STATE(998)] = 50648, + [SMALL_STATE(999)] = 50671, + [SMALL_STATE(1000)] = 50690, + [SMALL_STATE(1001)] = 50711, + [SMALL_STATE(1002)] = 50734, + [SMALL_STATE(1003)] = 50753, + [SMALL_STATE(1004)] = 50774, + [SMALL_STATE(1005)] = 50787, + [SMALL_STATE(1006)] = 50800, + [SMALL_STATE(1007)] = 50823, + [SMALL_STATE(1008)] = 50840, + [SMALL_STATE(1009)] = 50859, + [SMALL_STATE(1010)] = 50882, + [SMALL_STATE(1011)] = 50901, + [SMALL_STATE(1012)] = 50924, + [SMALL_STATE(1013)] = 50949, + [SMALL_STATE(1014)] = 50966, + [SMALL_STATE(1015)] = 50989, + [SMALL_STATE(1016)] = 51012, + [SMALL_STATE(1017)] = 51031, + [SMALL_STATE(1018)] = 51054, + [SMALL_STATE(1019)] = 51079, + [SMALL_STATE(1020)] = 51100, + [SMALL_STATE(1021)] = 51125, + [SMALL_STATE(1022)] = 51150, + [SMALL_STATE(1023)] = 51175, + [SMALL_STATE(1024)] = 51188, + [SMALL_STATE(1025)] = 51201, + [SMALL_STATE(1026)] = 51214, + [SMALL_STATE(1027)] = 51229, + [SMALL_STATE(1028)] = 51254, + [SMALL_STATE(1029)] = 51276, + [SMALL_STATE(1030)] = 51294, + [SMALL_STATE(1031)] = 51314, + [SMALL_STATE(1032)] = 51330, + [SMALL_STATE(1033)] = 51344, + [SMALL_STATE(1034)] = 51362, + [SMALL_STATE(1035)] = 51376, + [SMALL_STATE(1036)] = 51392, + [SMALL_STATE(1037)] = 51404, + [SMALL_STATE(1038)] = 51418, + [SMALL_STATE(1039)] = 51438, + [SMALL_STATE(1040)] = 51456, + [SMALL_STATE(1041)] = 51472, + [SMALL_STATE(1042)] = 51492, + [SMALL_STATE(1043)] = 51508, + [SMALL_STATE(1044)] = 51522, + [SMALL_STATE(1045)] = 51544, + [SMALL_STATE(1046)] = 51558, + [SMALL_STATE(1047)] = 51580, + [SMALL_STATE(1048)] = 51596, + [SMALL_STATE(1049)] = 51616, + [SMALL_STATE(1050)] = 51634, + [SMALL_STATE(1051)] = 51650, + [SMALL_STATE(1052)] = 51672, + [SMALL_STATE(1053)] = 51692, + [SMALL_STATE(1054)] = 51704, + [SMALL_STATE(1055)] = 51726, + [SMALL_STATE(1056)] = 51748, + [SMALL_STATE(1057)] = 51766, + [SMALL_STATE(1058)] = 51788, + [SMALL_STATE(1059)] = 51804, + [SMALL_STATE(1060)] = 51822, + [SMALL_STATE(1061)] = 51836, + [SMALL_STATE(1062)] = 51856, + [SMALL_STATE(1063)] = 51874, + [SMALL_STATE(1064)] = 51893, + [SMALL_STATE(1065)] = 51912, + [SMALL_STATE(1066)] = 51929, + [SMALL_STATE(1067)] = 51948, + [SMALL_STATE(1068)] = 51965, + [SMALL_STATE(1069)] = 51980, + [SMALL_STATE(1070)] = 51999, + [SMALL_STATE(1071)] = 52016, + [SMALL_STATE(1072)] = 52033, + [SMALL_STATE(1073)] = 52052, + [SMALL_STATE(1074)] = 52067, + [SMALL_STATE(1075)] = 52084, + [SMALL_STATE(1076)] = 52103, + [SMALL_STATE(1077)] = 52114, + [SMALL_STATE(1078)] = 52131, + [SMALL_STATE(1079)] = 52146, + [SMALL_STATE(1080)] = 52163, + [SMALL_STATE(1081)] = 52180, + [SMALL_STATE(1082)] = 52197, + [SMALL_STATE(1083)] = 52214, + [SMALL_STATE(1084)] = 52225, + [SMALL_STATE(1085)] = 52242, + [SMALL_STATE(1086)] = 52257, + [SMALL_STATE(1087)] = 52276, + [SMALL_STATE(1088)] = 52287, + [SMALL_STATE(1089)] = 52304, + [SMALL_STATE(1090)] = 52321, + [SMALL_STATE(1091)] = 52340, + [SMALL_STATE(1092)] = 52355, + [SMALL_STATE(1093)] = 52372, + [SMALL_STATE(1094)] = 52391, + [SMALL_STATE(1095)] = 52406, + [SMALL_STATE(1096)] = 52423, + [SMALL_STATE(1097)] = 52440, + [SMALL_STATE(1098)] = 52457, + [SMALL_STATE(1099)] = 52474, + [SMALL_STATE(1100)] = 52489, + [SMALL_STATE(1101)] = 52508, + [SMALL_STATE(1102)] = 52522, + [SMALL_STATE(1103)] = 52538, + [SMALL_STATE(1104)] = 52548, + [SMALL_STATE(1105)] = 52562, + [SMALL_STATE(1106)] = 52572, + [SMALL_STATE(1107)] = 52586, + [SMALL_STATE(1108)] = 52596, + [SMALL_STATE(1109)] = 52610, + [SMALL_STATE(1110)] = 52626, + [SMALL_STATE(1111)] = 52640, + [SMALL_STATE(1112)] = 52654, + [SMALL_STATE(1113)] = 52668, + [SMALL_STATE(1114)] = 52684, + [SMALL_STATE(1115)] = 52700, + [SMALL_STATE(1116)] = 52716, + [SMALL_STATE(1117)] = 52730, + [SMALL_STATE(1118)] = 52746, + [SMALL_STATE(1119)] = 52762, + [SMALL_STATE(1120)] = 52772, + [SMALL_STATE(1121)] = 52786, + [SMALL_STATE(1122)] = 52802, + [SMALL_STATE(1123)] = 52816, + [SMALL_STATE(1124)] = 52832, + [SMALL_STATE(1125)] = 52848, + [SMALL_STATE(1126)] = 52862, + [SMALL_STATE(1127)] = 52876, + [SMALL_STATE(1128)] = 52892, + [SMALL_STATE(1129)] = 52906, + [SMALL_STATE(1130)] = 52920, + [SMALL_STATE(1131)] = 52936, + [SMALL_STATE(1132)] = 52952, + [SMALL_STATE(1133)] = 52966, + [SMALL_STATE(1134)] = 52980, + [SMALL_STATE(1135)] = 52994, + [SMALL_STATE(1136)] = 53010, + [SMALL_STATE(1137)] = 53026, + [SMALL_STATE(1138)] = 53042, + [SMALL_STATE(1139)] = 53058, + [SMALL_STATE(1140)] = 53072, + [SMALL_STATE(1141)] = 53088, + [SMALL_STATE(1142)] = 53100, + [SMALL_STATE(1143)] = 53116, + [SMALL_STATE(1144)] = 53132, + [SMALL_STATE(1145)] = 53146, + [SMALL_STATE(1146)] = 53160, + [SMALL_STATE(1147)] = 53176, + [SMALL_STATE(1148)] = 53190, + [SMALL_STATE(1149)] = 53204, + [SMALL_STATE(1150)] = 53220, + [SMALL_STATE(1151)] = 53230, + [SMALL_STATE(1152)] = 53244, + [SMALL_STATE(1153)] = 53258, + [SMALL_STATE(1154)] = 53274, + [SMALL_STATE(1155)] = 53288, + [SMALL_STATE(1156)] = 53304, + [SMALL_STATE(1157)] = 53320, + [SMALL_STATE(1158)] = 53336, + [SMALL_STATE(1159)] = 53352, + [SMALL_STATE(1160)] = 53366, + [SMALL_STATE(1161)] = 53380, + [SMALL_STATE(1162)] = 53394, + [SMALL_STATE(1163)] = 53410, + [SMALL_STATE(1164)] = 53426, + [SMALL_STATE(1165)] = 53442, + [SMALL_STATE(1166)] = 53454, + [SMALL_STATE(1167)] = 53470, + [SMALL_STATE(1168)] = 53486, + [SMALL_STATE(1169)] = 53500, + [SMALL_STATE(1170)] = 53516, + [SMALL_STATE(1171)] = 53532, + [SMALL_STATE(1172)] = 53546, + [SMALL_STATE(1173)] = 53562, + [SMALL_STATE(1174)] = 53578, + [SMALL_STATE(1175)] = 53588, + [SMALL_STATE(1176)] = 53602, + [SMALL_STATE(1177)] = 53618, + [SMALL_STATE(1178)] = 53631, + [SMALL_STATE(1179)] = 53644, + [SMALL_STATE(1180)] = 53657, + [SMALL_STATE(1181)] = 53666, + [SMALL_STATE(1182)] = 53679, + [SMALL_STATE(1183)] = 53692, + [SMALL_STATE(1184)] = 53705, + [SMALL_STATE(1185)] = 53714, + [SMALL_STATE(1186)] = 53727, + [SMALL_STATE(1187)] = 53736, + [SMALL_STATE(1188)] = 53749, + [SMALL_STATE(1189)] = 53762, + [SMALL_STATE(1190)] = 53775, + [SMALL_STATE(1191)] = 53786, + [SMALL_STATE(1192)] = 53799, + [SMALL_STATE(1193)] = 53812, + [SMALL_STATE(1194)] = 53821, + [SMALL_STATE(1195)] = 53830, + [SMALL_STATE(1196)] = 53843, + [SMALL_STATE(1197)] = 53852, + [SMALL_STATE(1198)] = 53865, + [SMALL_STATE(1199)] = 53874, + [SMALL_STATE(1200)] = 53887, + [SMALL_STATE(1201)] = 53900, + [SMALL_STATE(1202)] = 53913, + [SMALL_STATE(1203)] = 53926, + [SMALL_STATE(1204)] = 53939, + [SMALL_STATE(1205)] = 53948, + [SMALL_STATE(1206)] = 53959, + [SMALL_STATE(1207)] = 53968, + [SMALL_STATE(1208)] = 53981, + [SMALL_STATE(1209)] = 53990, + [SMALL_STATE(1210)] = 54003, + [SMALL_STATE(1211)] = 54016, + [SMALL_STATE(1212)] = 54027, + [SMALL_STATE(1213)] = 54036, + [SMALL_STATE(1214)] = 54049, + [SMALL_STATE(1215)] = 54062, + [SMALL_STATE(1216)] = 54075, + [SMALL_STATE(1217)] = 54088, + [SMALL_STATE(1218)] = 54099, + [SMALL_STATE(1219)] = 54112, + [SMALL_STATE(1220)] = 54125, + [SMALL_STATE(1221)] = 54134, + [SMALL_STATE(1222)] = 54145, + [SMALL_STATE(1223)] = 54158, + [SMALL_STATE(1224)] = 54171, + [SMALL_STATE(1225)] = 54184, + [SMALL_STATE(1226)] = 54197, + [SMALL_STATE(1227)] = 54210, + [SMALL_STATE(1228)] = 54223, + [SMALL_STATE(1229)] = 54232, + [SMALL_STATE(1230)] = 54245, + [SMALL_STATE(1231)] = 54258, + [SMALL_STATE(1232)] = 54267, + [SMALL_STATE(1233)] = 54280, + [SMALL_STATE(1234)] = 54293, + [SMALL_STATE(1235)] = 54304, + [SMALL_STATE(1236)] = 54315, + [SMALL_STATE(1237)] = 54328, + [SMALL_STATE(1238)] = 54339, + [SMALL_STATE(1239)] = 54352, + [SMALL_STATE(1240)] = 54363, + [SMALL_STATE(1241)] = 54376, + [SMALL_STATE(1242)] = 54389, + [SMALL_STATE(1243)] = 54402, + [SMALL_STATE(1244)] = 54415, + [SMALL_STATE(1245)] = 54428, + [SMALL_STATE(1246)] = 54441, + [SMALL_STATE(1247)] = 54454, + [SMALL_STATE(1248)] = 54467, + [SMALL_STATE(1249)] = 54480, + [SMALL_STATE(1250)] = 54493, + [SMALL_STATE(1251)] = 54502, + [SMALL_STATE(1252)] = 54515, + [SMALL_STATE(1253)] = 54528, + [SMALL_STATE(1254)] = 54541, + [SMALL_STATE(1255)] = 54554, + [SMALL_STATE(1256)] = 54565, + [SMALL_STATE(1257)] = 54578, + [SMALL_STATE(1258)] = 54591, + [SMALL_STATE(1259)] = 54604, + [SMALL_STATE(1260)] = 54617, + [SMALL_STATE(1261)] = 54630, + [SMALL_STATE(1262)] = 54643, + [SMALL_STATE(1263)] = 54656, + [SMALL_STATE(1264)] = 54669, + [SMALL_STATE(1265)] = 54682, + [SMALL_STATE(1266)] = 54695, + [SMALL_STATE(1267)] = 54708, + [SMALL_STATE(1268)] = 54721, + [SMALL_STATE(1269)] = 54734, + [SMALL_STATE(1270)] = 54747, + [SMALL_STATE(1271)] = 54760, + [SMALL_STATE(1272)] = 54773, + [SMALL_STATE(1273)] = 54786, + [SMALL_STATE(1274)] = 54799, + [SMALL_STATE(1275)] = 54812, + [SMALL_STATE(1276)] = 54825, + [SMALL_STATE(1277)] = 54838, + [SMALL_STATE(1278)] = 54851, + [SMALL_STATE(1279)] = 54864, + [SMALL_STATE(1280)] = 54877, + [SMALL_STATE(1281)] = 54890, + [SMALL_STATE(1282)] = 54903, + [SMALL_STATE(1283)] = 54916, + [SMALL_STATE(1284)] = 54929, + [SMALL_STATE(1285)] = 54942, + [SMALL_STATE(1286)] = 54955, + [SMALL_STATE(1287)] = 54968, + [SMALL_STATE(1288)] = 54981, + [SMALL_STATE(1289)] = 54994, + [SMALL_STATE(1290)] = 55007, + [SMALL_STATE(1291)] = 55020, + [SMALL_STATE(1292)] = 55033, + [SMALL_STATE(1293)] = 55046, + [SMALL_STATE(1294)] = 55059, + [SMALL_STATE(1295)] = 55072, + [SMALL_STATE(1296)] = 55083, + [SMALL_STATE(1297)] = 55096, + [SMALL_STATE(1298)] = 55109, + [SMALL_STATE(1299)] = 55122, + [SMALL_STATE(1300)] = 55135, + [SMALL_STATE(1301)] = 55146, + [SMALL_STATE(1302)] = 55159, + [SMALL_STATE(1303)] = 55172, + [SMALL_STATE(1304)] = 55185, + [SMALL_STATE(1305)] = 55198, + [SMALL_STATE(1306)] = 55206, + [SMALL_STATE(1307)] = 55216, + [SMALL_STATE(1308)] = 55224, + [SMALL_STATE(1309)] = 55232, + [SMALL_STATE(1310)] = 55242, + [SMALL_STATE(1311)] = 55250, + [SMALL_STATE(1312)] = 55260, + [SMALL_STATE(1313)] = 55270, + [SMALL_STATE(1314)] = 55278, + [SMALL_STATE(1315)] = 55286, + [SMALL_STATE(1316)] = 55296, + [SMALL_STATE(1317)] = 55306, + [SMALL_STATE(1318)] = 55314, + [SMALL_STATE(1319)] = 55322, + [SMALL_STATE(1320)] = 55330, + [SMALL_STATE(1321)] = 55338, + [SMALL_STATE(1322)] = 55346, + [SMALL_STATE(1323)] = 55354, + [SMALL_STATE(1324)] = 55362, + [SMALL_STATE(1325)] = 55370, + [SMALL_STATE(1326)] = 55378, + [SMALL_STATE(1327)] = 55388, + [SMALL_STATE(1328)] = 55396, + [SMALL_STATE(1329)] = 55406, + [SMALL_STATE(1330)] = 55416, + [SMALL_STATE(1331)] = 55426, + [SMALL_STATE(1332)] = 55434, + [SMALL_STATE(1333)] = 55442, + [SMALL_STATE(1334)] = 55450, + [SMALL_STATE(1335)] = 55460, + [SMALL_STATE(1336)] = 55468, + [SMALL_STATE(1337)] = 55476, + [SMALL_STATE(1338)] = 55484, + [SMALL_STATE(1339)] = 55494, + [SMALL_STATE(1340)] = 55502, + [SMALL_STATE(1341)] = 55512, + [SMALL_STATE(1342)] = 55520, + [SMALL_STATE(1343)] = 55528, + [SMALL_STATE(1344)] = 55536, + [SMALL_STATE(1345)] = 55544, + [SMALL_STATE(1346)] = 55552, + [SMALL_STATE(1347)] = 55560, + [SMALL_STATE(1348)] = 55568, + [SMALL_STATE(1349)] = 55578, + [SMALL_STATE(1350)] = 55588, + [SMALL_STATE(1351)] = 55598, + [SMALL_STATE(1352)] = 55608, + [SMALL_STATE(1353)] = 55618, + [SMALL_STATE(1354)] = 55628, + [SMALL_STATE(1355)] = 55636, + [SMALL_STATE(1356)] = 55646, + [SMALL_STATE(1357)] = 55656, + [SMALL_STATE(1358)] = 55664, + [SMALL_STATE(1359)] = 55672, + [SMALL_STATE(1360)] = 55680, + [SMALL_STATE(1361)] = 55690, + [SMALL_STATE(1362)] = 55698, + [SMALL_STATE(1363)] = 55708, + [SMALL_STATE(1364)] = 55716, + [SMALL_STATE(1365)] = 55726, + [SMALL_STATE(1366)] = 55734, + [SMALL_STATE(1367)] = 55744, + [SMALL_STATE(1368)] = 55752, + [SMALL_STATE(1369)] = 55760, + [SMALL_STATE(1370)] = 55768, + [SMALL_STATE(1371)] = 55778, + [SMALL_STATE(1372)] = 55786, + [SMALL_STATE(1373)] = 55794, + [SMALL_STATE(1374)] = 55802, + [SMALL_STATE(1375)] = 55810, + [SMALL_STATE(1376)] = 55818, + [SMALL_STATE(1377)] = 55825, + [SMALL_STATE(1378)] = 55832, + [SMALL_STATE(1379)] = 55839, + [SMALL_STATE(1380)] = 55846, + [SMALL_STATE(1381)] = 55853, + [SMALL_STATE(1382)] = 55860, + [SMALL_STATE(1383)] = 55867, + [SMALL_STATE(1384)] = 55874, + [SMALL_STATE(1385)] = 55881, + [SMALL_STATE(1386)] = 55888, + [SMALL_STATE(1387)] = 55895, + [SMALL_STATE(1388)] = 55902, + [SMALL_STATE(1389)] = 55909, + [SMALL_STATE(1390)] = 55916, + [SMALL_STATE(1391)] = 55923, + [SMALL_STATE(1392)] = 55930, + [SMALL_STATE(1393)] = 55937, + [SMALL_STATE(1394)] = 55944, + [SMALL_STATE(1395)] = 55951, + [SMALL_STATE(1396)] = 55958, + [SMALL_STATE(1397)] = 55965, + [SMALL_STATE(1398)] = 55972, + [SMALL_STATE(1399)] = 55979, + [SMALL_STATE(1400)] = 55986, + [SMALL_STATE(1401)] = 55993, + [SMALL_STATE(1402)] = 56000, + [SMALL_STATE(1403)] = 56007, + [SMALL_STATE(1404)] = 56014, + [SMALL_STATE(1405)] = 56021, + [SMALL_STATE(1406)] = 56028, + [SMALL_STATE(1407)] = 56035, + [SMALL_STATE(1408)] = 56042, + [SMALL_STATE(1409)] = 56049, + [SMALL_STATE(1410)] = 56056, + [SMALL_STATE(1411)] = 56063, + [SMALL_STATE(1412)] = 56070, + [SMALL_STATE(1413)] = 56077, + [SMALL_STATE(1414)] = 56084, + [SMALL_STATE(1415)] = 56091, + [SMALL_STATE(1416)] = 56098, + [SMALL_STATE(1417)] = 56105, + [SMALL_STATE(1418)] = 56112, + [SMALL_STATE(1419)] = 56119, + [SMALL_STATE(1420)] = 56126, + [SMALL_STATE(1421)] = 56133, + [SMALL_STATE(1422)] = 56140, + [SMALL_STATE(1423)] = 56147, + [SMALL_STATE(1424)] = 56154, + [SMALL_STATE(1425)] = 56161, + [SMALL_STATE(1426)] = 56168, + [SMALL_STATE(1427)] = 56175, + [SMALL_STATE(1428)] = 56182, + [SMALL_STATE(1429)] = 56189, + [SMALL_STATE(1430)] = 56196, + [SMALL_STATE(1431)] = 56203, + [SMALL_STATE(1432)] = 56210, + [SMALL_STATE(1433)] = 56217, + [SMALL_STATE(1434)] = 56224, + [SMALL_STATE(1435)] = 56231, + [SMALL_STATE(1436)] = 56238, + [SMALL_STATE(1437)] = 56245, + [SMALL_STATE(1438)] = 56252, + [SMALL_STATE(1439)] = 56259, + [SMALL_STATE(1440)] = 56266, + [SMALL_STATE(1441)] = 56273, + [SMALL_STATE(1442)] = 56280, + [SMALL_STATE(1443)] = 56287, + [SMALL_STATE(1444)] = 56294, + [SMALL_STATE(1445)] = 56301, + [SMALL_STATE(1446)] = 56308, + [SMALL_STATE(1447)] = 56315, + [SMALL_STATE(1448)] = 56322, + [SMALL_STATE(1449)] = 56329, + [SMALL_STATE(1450)] = 56336, + [SMALL_STATE(1451)] = 56343, + [SMALL_STATE(1452)] = 56350, + [SMALL_STATE(1453)] = 56357, + [SMALL_STATE(1454)] = 56364, + [SMALL_STATE(1455)] = 56371, + [SMALL_STATE(1456)] = 56378, + [SMALL_STATE(1457)] = 56385, + [SMALL_STATE(1458)] = 56392, + [SMALL_STATE(1459)] = 56399, + [SMALL_STATE(1460)] = 56406, + [SMALL_STATE(1461)] = 56413, + [SMALL_STATE(1462)] = 56420, + [SMALL_STATE(1463)] = 56427, + [SMALL_STATE(1464)] = 56434, + [SMALL_STATE(1465)] = 56441, + [SMALL_STATE(1466)] = 56448, + [SMALL_STATE(1467)] = 56455, + [SMALL_STATE(1468)] = 56462, + [SMALL_STATE(1469)] = 56469, + [SMALL_STATE(1470)] = 56476, + [SMALL_STATE(1471)] = 56483, + [SMALL_STATE(1472)] = 56490, + [SMALL_STATE(1473)] = 56497, + [SMALL_STATE(1474)] = 56504, + [SMALL_STATE(1475)] = 56511, + [SMALL_STATE(1476)] = 56518, + [SMALL_STATE(1477)] = 56525, + [SMALL_STATE(1478)] = 56532, + [SMALL_STATE(1479)] = 56539, + [SMALL_STATE(1480)] = 56546, + [SMALL_STATE(1481)] = 56553, + [SMALL_STATE(1482)] = 56560, + [SMALL_STATE(1483)] = 56567, + [SMALL_STATE(1484)] = 56574, + [SMALL_STATE(1485)] = 56581, + [SMALL_STATE(1486)] = 56588, + [SMALL_STATE(1487)] = 56595, + [SMALL_STATE(1488)] = 56602, + [SMALL_STATE(1489)] = 56609, + [SMALL_STATE(1490)] = 56616, + [SMALL_STATE(1491)] = 56623, + [SMALL_STATE(1492)] = 56630, + [SMALL_STATE(1493)] = 56637, + [SMALL_STATE(1494)] = 56644, + [SMALL_STATE(1495)] = 56651, + [SMALL_STATE(1496)] = 56658, + [SMALL_STATE(1497)] = 56665, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -72723,1561 +70284,1537 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 0, 0, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1, 0, 0), - [119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(344), - [122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1134), - [125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1023), - [128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(162), - [131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(410), - [134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(90), - [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(427), - [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(205), - [143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(240), - [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(182), - [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1409), - [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1407), - [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1406), - [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(423), - [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(261), - [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(607), - [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(426), - [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1504), - [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(311), - [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(70), - [179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(688), - [182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(159), - [185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(172), - [188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(456), - [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1525), - [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1519), - [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1518), - [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(270), - [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(315), - [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1507), - [209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(434), - [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(433), - [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(886), - [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(178), - [221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(801), - [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(801), - [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(132), - [230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), - [232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(937), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(475), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(259), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(606), - [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(468), - [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1521), - [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(307), - [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(71), - [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1520), - [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1517), - [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), - [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), REDUCE(sym_primary_expression, 1, 0, 1), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1, 0, 0), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), + [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(341), + [118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1142), + [121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1015), + [124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(150), + [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(434), + [130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(125), + [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(446), + [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(184), + [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(225), + [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(161), + [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1354), + [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1331), + [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1321), + [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(368), + [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(251), + [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(576), + [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(395), + [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1463), + [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(317), + [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(66), + [175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(674), + [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(149), + [181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(159), + [184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(452), + [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1430), + [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1422), + [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1419), + [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(269), + [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(296), + [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1418), + [205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(377), + [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(372), + [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(857), + [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(168), + [217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(752), + [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(752), + [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(128), + [226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(882), + [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(401), + [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(253), + [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(572), + [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(386), + [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1467), + [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(314), + [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(67), + [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1489), + [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1470), + [256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), + [262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), REDUCE(sym_primary_expression, 1, 0, 1), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_list_splat_pattern, 2, 0, 8), - [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 8), - [566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 8), - [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 1, 0, 0), - [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, 0, 7), - [688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 2, 0, 7), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 3, 0, 16), - [694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 3, 0, 16), - [696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, 0, 7), - [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 3, 0, 16), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 3, 0, 50), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1, 0, 0), - [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, 0, 24), - [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, 0, 144), - [758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 7, 0, 144), - [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 3, 0, 16), - [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2, 0, 7), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1, 0, 0), - [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 125), - [804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 125), - [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 126), - [810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 126), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 101), - [820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 5, 0, 101), - [822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 69), - [824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 69), - [826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 69), - [828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 69), - [830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 96), - [832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 96), - [834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, 0, 96), - [836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, 0, 96), - [838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 40), - [840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 40), - [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 56), - [856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 56), - [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), - [864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 81), - [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 81), - [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 76), - [920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 76), - [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), - [926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), - [928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(389), - [931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), - [933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), - [935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(384), - [938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 77), - [940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 77), - [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 105), - [946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 105), - [948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1, 0, 0), - [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 54), - [954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(361), - [961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(435), - [964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, 0, 70), - [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, 0, 29), - [970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2, 0, 0), - [972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2, 0, 0), - [974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 4, 0, 0), - [976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 4, 0, 0), - [978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 70), - [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, 0, 28), - [982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 68), - [984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, 0, 0), - [986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 103), - [988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 103), - [990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 103), SHIFT_REPEAT(447), - [993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 103), SHIFT_REPEAT(485), - [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [1000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 3, 0, 0), - [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 3, 0, 0), - [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [1006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [1008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [1010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 0), - [1012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1, 0, 0), - [1014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1, 0, 0), - [1016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 10), - [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, 0, 98), - [1022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 4, 0, 133), - [1024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 4, 0, 133), - [1026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, 0, 159), - [1028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, 0, 159), - [1030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 6, 0, 159), - [1032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 6, 0, 159), - [1034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 3, 0, 56), - [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 3, 0, 56), - [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7, 0, 164), - [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7, 0, 164), - [1042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 7, 0, 164), - [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 7, 0, 164), - [1046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cases, 1, 0, 0), - [1048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cases, 1, 0, 0), - [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [1052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), - [1054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), - [1057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [1061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), - [1063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), - [1065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cases_repeat1, 2, 0, 0), - [1067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cases_repeat1, 2, 0, 0), - [1069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cases_repeat1, 2, 0, 0), SHIFT_REPEAT(853), - [1072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, 0, 150), - [1074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, 0, 150), - [1076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 5, 0, 150), - [1078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 5, 0, 150), - [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [1082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [1084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 133), - [1086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 133), - [1088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 81), - [1090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 81), - [1092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 9), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [1097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 9), - [1099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 9), - [1101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cases_repeat1, 2, 0, 0), SHIFT_REPEAT(851), - [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 55), - [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 55), - [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, 0, 77), - [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, 0, 77), - [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2, 0, 0), - [1116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), REDUCE(sym_list, 2, 0, 0), - [1119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2, 0, 0), - [1121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), - [1123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2, 0, 0), - [1125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 108), - [1127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 108), - [1129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2, 0, 0), - [1131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), REDUCE(sym_tuple, 2, 0, 0), - [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2, 0, 0), - [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), - [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2, 0, 0), - [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 146), - [1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 146), - [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 81), - [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 81), - [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 56), - [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 56), - [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 80), - [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 80), - [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 74), - [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 74), - [1166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, 0, 54), - [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, 0, 54), - [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 128), - [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 128), - [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 132), - [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 132), - [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, 0, 81), - [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, 0, 81), - [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, 0, 56), - [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, 0, 56), - [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 5, 0, 152), - [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 5, 0, 152), - [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 5, 0, 153), - [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 5, 0, 153), - [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 4, 0, 137), - [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 4, 0, 137), - [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 6, 0, 160), - [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 6, 0, 160), - [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, 0, 60), - [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, 0, 60), - [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 91), - [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 91), - [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 149), - [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 149), - [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 148), - [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 148), - [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 147), - [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 147), - [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 145), - [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 145), - [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 142), - [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 142), - [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 141), - [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 141), - [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 75), - [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 75), - [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 140), - [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 140), - [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 78), - [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 78), - [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 7, 0, 81), - [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 7, 0, 81), - [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 79), - [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 79), - [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 4, 0, 81), - [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 4, 0, 81), - [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 56), - [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 56), - [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 82), - [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 82), - [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 3, 0, 56), - [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 3, 0, 56), - [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 131), - [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 131), - [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 130), - [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 130), - [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 129), - [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 129), - [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 154), - [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 154), - [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 127), - [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 127), - [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 155), - [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 155), - [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 156), - [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 156), - [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 157), - [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 157), - [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 163), - [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 163), - [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 121), - [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 121), - [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 120), - [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 120), - [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 119), - [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 119), - [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 162), - [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 162), - [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 107), - [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 107), - [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 158), - [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 158), - [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 118), - [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 118), - [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 117), - [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 117), - [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, 0, 106), - [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, 0, 106), - [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 109), - [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 109), - [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 87), - [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 87), - [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 64), - [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 64), - [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 89), - [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 89), - [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 90), - [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 90), - [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 104), - [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 104), - [1366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 102), - [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 102), - [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, 0, 19), - [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, 0, 19), - [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, 0, 59), - [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, 0, 59), - [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 4, 0, 57), - [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 4, 0, 57), - [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, 0, 24), - [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 3, 0, 50), - [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [1394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(931), - [1397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [1399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [1401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 20), - [1403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 20), - [1405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 2), - [1407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 2), - [1409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 17), - [1411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 17), - [1413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, 0, 61), - [1415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, 0, 61), - [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 61), - [1419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 61), - [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 93), - [1423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 93), - [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [1429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [1431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2, 0, 0), - [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2, 0, 0), - [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_separator, 1, 0, 0), - [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 61), - [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 61), - [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 26), - [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 26), - [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3, 0, 25), - [1503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3, 0, 25), - [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, 0, 25), - [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, 0, 25), - [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3, 0, 0), - [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3, 0, 0), - [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3, 0, 31), - [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3, 0, 31), - [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set, 3, 0, 25), - [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set, 3, 0, 25), - [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), - [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), - [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, 0, 51), - [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, 0, 51), - [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_comprehension, 4, 0, 51), - [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_comprehension, 4, 0, 51), - [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, 0, 31), - [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, 0, 31), - [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, 0, 51), - [1539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, 0, 51), - [1541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 67), - [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 67), - [1545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5, 0, 61), - [1547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5, 0, 61), - [1549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 67), - [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 67), - [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 31), - [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 31), - [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 31), - [1559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 31), - [1561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 93), - [1563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 93), - [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), - [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), - [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_expression, 4, 0, 51), - [1571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_expression, 4, 0, 51), - [1573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, 0, 39), - [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, 0, 39), - [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, 0, 72), - [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, 0, 72), - [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, 0, 71), - [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, 0, 71), - [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 41), - [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 41), - [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, 0, 13), - [1591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, 0, 13), - [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [1597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(925), - [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [1612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(937), - [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [1689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open_sequence_match_pattern, 3, 0, 0), - [1691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_sequence_match_pattern, 3, 0, 0), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [1707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open_sequence_match_pattern, 2, 0, 0), - [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_sequence_match_pattern, 2, 0, 0), - [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [1729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), - [1731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(728), - [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), - [1736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(1425), - [1739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(728), - [1742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(672), - [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, 0, 18), - [1747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, 0, 18), - [1749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(716), - [1752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(1516), - [1755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(716), - [1758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(671), - [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 36), - [1763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 36), SHIFT_REPEAT(609), - [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 31), - [1768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(713), - [1771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(1454), - [1774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(713), - [1777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(678), - [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, 0, 25), - [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 34), - [1784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 33), - [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 25), - [1788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(682), - [1791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(1435), - [1794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(682), - [1797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(669), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, 0, 16), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2, 0, 0), - [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3, 0, 0), - [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await, 2, 0, 0), - [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await, 2, 0, 0), - [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, 0, 10), - [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, 0, 10), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_value_pattern_repeat1, 2, 0, 0), - [1860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_value_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1514), - [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 1, 0, 0), - [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, 0, 66), - [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 4, 0, 66), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 35), - [1887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 35), - [1889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 21), SHIFT_REPEAT(177), - [1892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 21), SHIFT_REPEAT(994), - [1895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 21), SHIFT_REPEAT(994), - [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 21), - [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [1902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_item, 1, -1, 12), SHIFT(184), - [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 27), - [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 27), - [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 0), - [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 0), - [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, 0, 39), - [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, 0, 39), - [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1, 0, 7), - [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2, 0, 0), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, 0, 32), - [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 3, 0, 32), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_class_name, 1, 0, 0), - [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_capture_pattern, 1, 0, 0), - [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_class_name, 2, 0, 0), - [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_value_pattern, 2, 0, 0), - [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [1973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 1, 0, 83), - [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2, 0, 14), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2, 0, 0), - [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3, 0, 0), - [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, 0, 31), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 2, 0, 110), - [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), - [2001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(405), - [2004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1475), - [2007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(600), - [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__f_expression, 1, 0, 0), - [2012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_or_pattern, 4, 0, 0), - [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_or_pattern, 3, 0, 0), - [2018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_within_for_in_clause, 1, 0, 0), - [2020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1, 0, 0), - [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_or_pattern_repeat1, 2, 0, 0), - [2026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_or_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(868), - [2029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2, 0, 0), - [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 2, 0, 0), - [2033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, 0, 16), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [2037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, 0, 36), - [2039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, 0, 36), SHIFT_REPEAT(256), - [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 7, 0, 139), - [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 3, 0, 0), - [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 3, 0, 135), - [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 8, 0, 139), - [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [2060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2, 0, 0), - [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [2068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 9, 0, 139), - [2070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 3, 0, 139), - [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 144), - [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [2080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 6, 0, 139), - [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), - [2084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(308), - [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 4, 0, 0), - [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 2, 0, 0), - [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 7, 0, 0), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 3, 0, 0), - [2097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, 0, 101), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [2101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 4, 0, 151), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_content, 1, 0, 0), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1, 0, 0), - [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 4, 0, 0), - [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 5, 0, 139), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_group_pattern, 3, 0, 134), - [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 4, 0, 139), - [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_or_pattern, 1, 0, 0), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2, 0, 0), - [2133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), - [2135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1005), - [2138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1005), - [2141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), - [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 5, 0, 0), - [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 126), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [2149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 5, 0, 0), - [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 125), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 6, 0, 0), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [2177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), - [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 31), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_list_splat_pattern, 2, 0, 8), + [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 8), + [550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 8), + [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 1, 0, 0), + [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, 0, 7), + [654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 3, 0, 16), + [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, 0, 7), + [666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 2, 0, 7), + [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 3, 0, 16), + [680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 3, 0, 16), + [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1, 0, 0), + [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 3, 0, 50), + [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, 0, 24), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 125), + [730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 125), + [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 126), + [736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 126), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1, 0, 0), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2, 0, 7), + [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 3, 0, 16), + [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, 0, 144), + [760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 7, 0, 144), + [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 101), + [774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 5, 0, 101), + [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, 0, 96), + [792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, 0, 96), + [794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 69), + [796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 69), + [798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 96), + [800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 96), + [802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 40), + [804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 40), + [806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 69), + [808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 69), + [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 56), + [816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 56), + [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 81), + [836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 81), + [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), + [886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 54), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 4, 0, 0), + [894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 4, 0, 0), + [896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1, 0, 0), + [898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1, 0, 0), + [900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 3, 0, 0), + [902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 3, 0, 0), + [904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2, 0, 0), + [906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2, 0, 0), + [908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, 0, 70), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1, 0, 0), + [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 105), + [922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 105), + [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 76), + [928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 76), + [930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 77), + [932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 77), + [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(321), + [943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(354), + [946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), + [948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), + [950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1476), + [953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1483), + [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 103), + [964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 103), + [966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 103), SHIFT_REPEAT(445), + [969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 68), + [971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, 0, 28), + [973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, 0, 29), + [975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 0), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 70), + [981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 10), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 103), SHIFT_REPEAT(441), + [990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, 0, 98), + [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, 0, 0), + [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, 0, 161), + [1000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, 0, 161), + [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 133), + [1004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 133), + [1006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cases_repeat1, 2, 0, 0), + [1008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cases_repeat1, 2, 0, 0), + [1010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cases_repeat1, 2, 0, 0), SHIFT_REPEAT(822), + [1013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 81), + [1015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 81), + [1017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 3, 0, 56), + [1019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 3, 0, 56), + [1021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 5, 0, 150), + [1023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 5, 0, 150), + [1025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, 0, 151), + [1027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, 0, 151), + [1029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 6, 0, 160), + [1031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 6, 0, 160), + [1033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 7, 0, 166), + [1035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 7, 0, 166), + [1037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7, 0, 167), + [1039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7, 0, 167), + [1041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 8, 0, 168), + [1043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 8, 0, 168), + [1045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cases, 1, 0, 0), + [1047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cases, 1, 0, 0), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [1051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), + [1053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), + [1056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), + [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [1060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), + [1062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), + [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [1066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cases_repeat1, 2, 0, 0), SHIFT_REPEAT(823), + [1069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 9), + [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [1074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 9), + [1076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 9), + [1078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, 0, 54), + [1080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, 0, 54), + [1082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2, 0, 0), + [1084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), REDUCE(sym_tuple, 2, 0, 0), + [1087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2, 0, 0), + [1089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [1091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [1093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2, 0, 0), + [1095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), REDUCE(sym_list, 2, 0, 0), + [1098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2, 0, 0), + [1100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), + [1102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2, 0, 0), + [1104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 108), + [1106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 108), + [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 55), + [1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 55), + [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 81), + [1114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 81), + [1116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, 0, 77), + [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, 0, 77), + [1120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 128), + [1122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 128), + [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 132), + [1126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 132), + [1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 146), + [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 146), + [1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 56), + [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 56), + [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 80), + [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 80), + [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 74), + [1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 74), + [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 5, 0, 153), + [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 5, 0, 153), + [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 4, 0, 137), + [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 4, 0, 137), + [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 6, 0, 162), + [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 6, 0, 162), + [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, 0, 56), + [1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, 0, 56), + [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 5, 0, 154), + [1168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 5, 0, 154), + [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, 0, 81), + [1172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, 0, 81), + [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 158), + [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 158), + [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 78), + [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 78), + [1182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 82), + [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 82), + [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, 0, 19), + [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, 0, 19), + [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 107), + [1192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 107), + [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 79), + [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 79), + [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, 0, 106), + [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, 0, 106), + [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 109), + [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 109), + [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 75), + [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 75), + [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 117), + [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 117), + [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 118), + [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 118), + [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 64), + [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 64), + [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, 0, 60), + [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, 0, 60), + [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, 0, 59), + [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, 0, 59), + [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 119), + [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 119), + [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 120), + [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 120), + [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 4, 0, 57), + [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 4, 0, 57), + [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 121), + [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 121), + [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 104), + [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 104), + [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 127), + [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 127), + [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 129), + [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 129), + [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 102), + [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 102), + [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 130), + [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 130), + [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 131), + [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 131), + [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 4, 0, 81), + [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 4, 0, 81), + [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 7, 0, 81), + [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 7, 0, 81), + [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 3, 0, 56), + [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 3, 0, 56), + [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 140), + [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 140), + [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 141), + [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 141), + [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 142), + [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 142), + [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 165), + [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 165), + [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 164), + [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 164), + [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 90), + [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 90), + [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 56), + [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 56), + [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 157), + [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 157), + [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 89), + [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 89), + [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 156), + [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 156), + [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 155), + [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 155), + [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 159), + [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 159), + [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 87), + [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 87), + [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 148), + [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 148), + [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 145), + [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 145), + [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 147), + [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 147), + [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 91), + [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 91), + [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 149), + [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 149), + [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, 0, 24), + [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 3, 0, 50), + [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [1370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(902), + [1373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 2), + [1375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 2), + [1377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 20), + [1379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 20), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [1385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_expression, 4, 0, 51), + [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_expression, 4, 0, 51), + [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set, 3, 0, 25), + [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set, 3, 0, 25), + [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3, 0, 31), + [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3, 0, 31), + [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3, 0, 0), + [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3, 0, 0), + [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, 0, 25), + [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, 0, 25), + [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3, 0, 25), + [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3, 0, 25), + [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 26), + [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 26), + [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), + [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 61), + [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 61), + [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 93), + [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 93), + [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 61), + [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 61), + [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 17), + [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 17), + [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 93), + [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 93), + [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 67), + [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 67), + [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 31), + [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 31), + [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [1477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_separator, 1, 0, 0), + [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5, 0, 61), + [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5, 0, 61), + [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 67), + [1487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 67), + [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 31), + [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 31), + [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), + [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, 0, 61), + [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, 0, 61), + [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, 0, 31), + [1503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, 0, 31), + [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2, 0, 0), + [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2, 0, 0), + [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, 0, 51), + [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, 0, 51), + [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, 0, 51), + [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, 0, 51), + [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [1541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_comprehension, 4, 0, 51), + [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_comprehension, 4, 0, 51), + [1545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, 0, 13), + [1547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, 0, 13), + [1549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, 0, 39), + [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, 0, 39), + [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 41), + [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 41), + [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, 0, 71), + [1559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, 0, 71), + [1561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, 0, 72), + [1563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, 0, 72), + [1565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(885), + [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [1584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(882), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open_sequence_match_pattern, 2, 0, 0), + [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_sequence_match_pattern, 2, 0, 0), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), + [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [1679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open_sequence_match_pattern, 3, 0, 0), + [1681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_sequence_match_pattern, 3, 0, 0), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), + [1703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(651), + [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), + [1708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(1377), + [1711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(651), + [1714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(646), + [1717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(682), + [1720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(1413), + [1723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(682), + [1726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(645), + [1729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, 0, 18), + [1731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, 0, 18), + [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 36), + [1735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 36), SHIFT_REPEAT(579), + [1738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(659), + [1741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(1432), + [1744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(659), + [1747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(643), + [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 31), + [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 25), + [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, 0, 25), + [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 34), + [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 33), + [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, 0, 16), + [1764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(669), + [1767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(1415), + [1770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(669), + [1773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(647), + [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3, 0, 0), + [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2, 0, 0), + [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, 0, 10), + [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, 0, 10), + [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await, 2, 0, 0), + [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await, 2, 0, 0), + [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_value_pattern_repeat1, 2, 0, 0), + [1832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_value_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1412), + [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, 0, 66), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [1845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_item, 1, -1, 12), SHIFT(172), + [1848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_class_name, 2, 0, 0), + [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_value_pattern, 2, 0, 0), + [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 0), + [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [1872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 27), + [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1, 0, 7), + [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, 0, 32), + [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 35), + [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 0), + [1898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 21), SHIFT_REPEAT(169), + [1901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 21), SHIFT_REPEAT(942), + [1904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 21), SHIFT_REPEAT(942), + [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 21), + [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_class_name, 1, 0, 0), + [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_capture_pattern, 1, 0, 0), + [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2, 0, 0), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, 0, 39), + [1919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, 0, 39), + [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 4, 0, 66), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 1, 0, 0), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 27), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [1935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 3, 0, 32), + [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 35), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2, 0, 0), + [1945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, 0, 31), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [1949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2, 0, 14), + [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 1, 0, 83), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [1965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3, 0, 0), + [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 2, 0, 110), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_or_pattern_repeat1, 2, 0, 0), + [1973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_or_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(837), + [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), + [1978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(373), + [1981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1446), + [1984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(569), + [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_or_pattern, 4, 0, 0), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_within_for_in_clause, 1, 0, 0), + [1993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__f_expression, 1, 0, 0), + [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_or_pattern, 3, 0, 0), + [1997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1, 0, 0), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [2001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2, 0, 0), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [2009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 9, 0, 139), + [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 3, 0, 135), + [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 3, 0, 0), + [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 4, 0, 0), + [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 4, 0, 152), + [2019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_content, 1, 0, 0), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1, 0, 0), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [2033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, 0, 101), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [2037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 5, 0, 139), + [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 144), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, 0, 16), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 3, 0, 0), + [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 4, 0, 0), + [2051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), + [2053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(952), + [2056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(952), + [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), + [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_group_pattern, 3, 0, 134), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 4, 0, 139), + [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 126), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 2, 0, 0), + [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_or_pattern, 1, 0, 0), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 8, 0, 139), + [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2, 0, 0), + [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 7, 0, 139), + [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 7, 0, 0), + [2085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 2, 0, 0), + [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 3, 0, 139), + [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 6, 0, 139), + [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 125), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 6, 0, 0), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [2105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 5, 0, 0), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2, 0, 0), + [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 5, 0, 0), + [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), + [2117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(298), + [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, 0, 36), + [2122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, 0, 36), SHIFT_REPEAT(255), + [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 3, 0, 32), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 31), + [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 1, -1, 12), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [2161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2, 0, 11), + [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 62), + [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 4, 0, 66), + [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [2169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2, 0, 0), + [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 4, 0, 15), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, 0, 10), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2, 0, 0), - [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 3, 0, 32), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 4, 0, 66), - [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2, 0, 11), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__right_hand_side, 1, 0, 0), - [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 62), - [2217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 1, -1, 12), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 4, 0, 15), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [2245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1, 0, 0), - [2247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, 0, 3), - [2249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, 0, 3), - [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_open_sequence_match_pattern_repeat1, 2, 0, 0), - [2253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_open_sequence_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(861), - [2256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2, 0, 0), - [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [2260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 43), - [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 43), - [2264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_as_pattern, 3, 0, 138), - [2266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, 0, 43), - [2268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, 0, 43), - [2270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 43), - [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 43), - [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, 0, 68), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chevron, 2, 0, 0), - [2280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 98), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [2284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 10), - [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, 0, 35), - [2288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), - [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [2292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 6, 0, 43), - [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 6, 0, 43), - [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, 0, 122), - [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [2300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_value_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1464), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 95), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_bound, 2, 0, 112), - [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 1, 0, 6), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), - [2321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(434), - [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, 0, 4), - [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, 0, 4), - [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5, 0, 143), - [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 3, 0, 22), - [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 5, 0, 88), - [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 4, 0, 63), - [2356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, 0, 36), SHIFT_REPEAT(262), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_param_default, 2, 0, 113), - [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 27), - [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 35), - [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 31), - [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 94), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, 0, 123), - [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, 0, 124), - [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 6), - [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4, 0, 53), - [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, 0, 30), - [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 36), - [2403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 36), SHIFT_REPEAT(234), - [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_star_pattern, 2, 0, 11), - [2408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), - [2410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(174), - [2413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(1123), - [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, 0, 16), - [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, 0, 6), - [2426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2, 0, 0), - [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [2434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1, 0, 0), - [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 29), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, 0, 0), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 1, 0, 7), - [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_prefix, 1, 0, 0), - [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 49), - [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 0), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_guard, 2, 0, 136), - [2484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(479), - [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3, 0, 0), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [2493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 52), SHIFT_REPEAT(484), - [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 52), - [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 3, 0, 0), - [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 0), - [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 3, 0, 0), - [2528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), - [2530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(383), - [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paramspec_parameter, 2, 0, 23), - [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [2541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 44), SHIFT_REPEAT(1326), - [2544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 44), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 23), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [2560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1497), - [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), - [2565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, 0, 65), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [2579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3, 0, 0), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 28), - [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, 0, 16), - [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [2593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), - [2595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(1196), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 22), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevartuple_parameter, 2, 0, 23), - [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 2, 0, 84), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 5, 0, 15), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 2, 0, 0), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 2, 0, 0), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [2634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(147), - [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 37), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [2661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 44), SHIFT_REPEAT(1227), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1, 0, 0), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat2, 2, 0, 0), - [2676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat2, 2, 0, 0), SHIFT_REPEAT(1394), - [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [2685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 1, 0, 0), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, 0, 45), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 115), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [2755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_mapping_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(906), - [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_mapping_pattern_repeat1, 2, 0, 0), - [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [2766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 116), SHIFT_REPEAT(1039), - [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 116), - [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 3, -1, 58), - [2773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 36), SHIFT_REPEAT(281), - [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 36), - [2778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(903), - [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [2785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 97), SHIFT_REPEAT(253), - [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 97), - [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat1, 2, 0, 0), - [2814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(864), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2, 0, 0), - [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 36), - [2825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 36), SHIFT_REPEAT(226), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 2, 0, 15), - [2844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(901), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 73), - [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 73), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [2885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 86), - [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_separator, 1, 0, 0), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [2907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relative_import, 1, 0, 0), - [2909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [2911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_maybe_star_pattern, 1, 0, 0), - [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_patterns, 1, 0, 0), - [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 31), - [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 47), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_double_star_pattern, 2, 0, 11), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [2933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_positional_pattern, 1, 0, 0), - [2939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, 0, 5), - [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), - [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_key_value_pattern, 3, 0, 62), - [2945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 2, 0, 85), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, 0, 92), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__right_hand_side, 1, 0, 0), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [2221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), + [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 98), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1, 0, 0), + [2231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 43), + [2233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 43), + [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chevron, 2, 0, 0), + [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 43), + [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 43), + [2241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2, 0, 0), + [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_as_pattern, 3, 0, 138), + [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, 0, 3), + [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, 0, 3), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [2253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, 0, 35), + [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_open_sequence_match_pattern_repeat1, 2, 0, 0), + [2257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_open_sequence_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(831), + [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 95), + [2262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, 0, 4), + [2264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, 0, 4), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [2268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, 0, 43), + [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, 0, 43), + [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, 0, 68), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [2276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_value_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1434), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [2281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 1, 0, 6), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 10), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), + [2297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(377), + [2300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_bound, 2, 0, 112), + [2302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 6, 0, 43), + [2304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 6, 0, 43), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, 0, 122), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [2318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1, 0, 0), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [2324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 94), + [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [2330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), + [2332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(162), + [2335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(1069), + [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, 0, 30), + [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 3, 0, 22), + [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 6), + [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5, 0, 143), + [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 31), + [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 35), + [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_star_pattern, 2, 0, 11), + [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 4, 0, 63), + [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, 0, 16), + [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 27), + [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_param_default, 2, 0, 113), + [2378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2, 0, 0), + [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [2382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, 0, 36), SHIFT_REPEAT(252), + [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4, 0, 53), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 36), + [2395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 36), SHIFT_REPEAT(230), + [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, 0, 123), + [2400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, 0, 124), + [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 5, 0, 88), + [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, 0, 6), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), + [2418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(326), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 28), + [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 0), + [2431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(420), + [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 49), + [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 2, 0, 84), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, 0, 0), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 5, 0, 15), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 1, 0, 7), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [2466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 29), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_guard, 2, 0, 136), + [2472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 44), SHIFT_REPEAT(1223), + [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 44), + [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paramspec_parameter, 2, 0, 23), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), + [2483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(1128), + [2486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 52), SHIFT_REPEAT(442), + [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 52), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, 0, 16), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, 0, 65), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_prefix, 1, 0, 0), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevartuple_parameter, 2, 0, 23), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 3, 0, 0), + [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 3, 0, 0), + [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3, 0, 0), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [2539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3, 0, 0), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [2545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1466), + [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), + [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 0), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 2, 0, 0), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [2568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 23), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [2572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(135), + [2575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), + [2577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 2, 0, 0), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [2581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 22), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [2607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 97), SHIFT_REPEAT(246), + [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 97), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1, 0, 0), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 3, -1, 58), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [2624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 36), SHIFT_REPEAT(290), + [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 36), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_separator, 1, 0, 0), + [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), + [2639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(875), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, 0, 45), + [2666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 73), + [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 73), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 115), + [2684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 116), SHIFT_REPEAT(1016), + [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 116), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [2697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 44), SHIFT_REPEAT(1226), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 37), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 2, 0, 15), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 86), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2, 0, 0), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [2774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(873), + [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [2813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 1, 0, 0), + [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 36), + [2817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 36), SHIFT_REPEAT(210), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [2824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relative_import, 1, 0, 0), + [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat2, 2, 0, 0), + [2828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat2, 2, 0, 0), SHIFT_REPEAT(1328), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [2837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat1, 2, 0, 0), + [2839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(834), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [2852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [2854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [2856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_mapping_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(876), + [2859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_mapping_pattern_repeat1, 2, 0, 0), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_maybe_star_pattern, 1, 0, 0), + [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_patterns, 1, 0, 0), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [2873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [2879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_key_value_pattern, 3, 0, 62), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, 0, 39), + [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 38), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_keyword_pattern, 3, 0, 163), + [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 48), + [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1, 0, 0), + [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_positional_pattern, 1, 0, 0), + [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, 0, 5), + [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_double_star_pattern, 2, 0, 11), + [2911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1, 0, 0), + [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 2, 0, 85), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, 0, 92), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [2929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 86), + [2931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 3, 0, 114), + [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paramspec_parameter, 3, 0, 111), + [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevartuple_parameter, 3, 0, 111), + [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 4, 0, 46), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [2943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pass_statement, 1, 0, 0), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 47), + [2963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 67), + [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [2971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 67), - [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), - [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_keyword_pattern, 3, 0, 161), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [2971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), + [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 31), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 6, 0, 100), [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 6, 0, 99), - [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 6, 0, 100), - [2985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [2989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevartuple_parameter, 3, 0, 111), - [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 86), - [2993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 3, 0, 114), - [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paramspec_parameter, 3, 0, 111), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 48), - [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard_import, 1, 0, 0), - [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 4, 0, 46), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [3021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1, 0, 0), - [3023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1, 0, 0), - [3025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 38), - [3027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pass_statement, 1, 0, 0), - [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, 0, 39), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1, 0, 0), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [3061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 0), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [3121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 0), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_import, 2, 0, 23), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [3179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 0), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [3203] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard_import, 1, 0, 0), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1, 0, 0), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [3037] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_import, 2, 0, 23), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 0), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [3163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 0), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [3183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 0), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), }; enum ts_external_scanner_symbol_identifiers { From 4f60494019d5c9c2f9e5b16b5e024965fb47af0b Mon Sep 17 00:00:00 2001 From: Taus Date: Tue, 22 Oct 2024 16:06:35 +0000 Subject: [PATCH 6/7] Python: Support assignments of the form `[x,y,z] = w` Surprisingly, the new parser did not support these constructs (and the relevant test was missing this case), so on files that required the new parser we were unable to parse this construct. To fix it, we add `list_pattern` (not to be confused with `pattern_list`) as a `tree-sitter-python` node that results in a `List` node in the AST. --- python/extractor/tests/parser/assignment.py | 2 ++ python/extractor/tsg-python/python.tsg | 7 +++++++ 2 files changed, 9 insertions(+) diff --git a/python/extractor/tests/parser/assignment.py b/python/extractor/tests/parser/assignment.py index c47eec4dd0d..d4955d999b1 100644 --- a/python/extractor/tests/parser/assignment.py +++ b/python/extractor/tests/parser/assignment.py @@ -14,4 +14,6 @@ x, y = z, w = 3, 4 s, *t = u +[v, *w] = x + o,p, = q,r, diff --git a/python/extractor/tsg-python/python.tsg b/python/extractor/tsg-python/python.tsg index c06596653f6..749d8e658be 100644 --- a/python/extractor/tsg-python/python.tsg +++ b/python/extractor/tsg-python/python.tsg @@ -25,6 +25,9 @@ [ (expression_list) (tuple) (tuple_pattern) (pattern_list) ] @tuple { let @tuple.node = (ast-node @tuple "Tuple") } +(list_pattern) @list +{ let @list.node = (ast-node @list "List") } + (call) @call { let @call.node = (ast-node @call "Call") } (for_statement) @for @@ -3436,6 +3439,9 @@ ; Left hand side of an assignment such as `foo, bar = ...` (pattern_list element: (_) @elt) @parent + ; Left hand side of an assignment such as `[foo, bar] = ...` + (list_pattern element: (_) @elt) @parent + ; An unadorned tuple (such as in `x = y, z`) (expression_list element: (_) @elt) @parent @@ -3472,6 +3478,7 @@ (tuple element: (_) @elt) (tuple_pattern element: (_) @elt) (pattern_list element: (_) @elt) + (list_pattern element: (_) @elt) (expression_list element: (_) @elt) (parenthesized_expression inner: (_) @elt) (set element: (_) @elt) From 5db601af3c429a41f46d6c8732f067816c89b8a2 Mon Sep 17 00:00:00 2001 From: Taus Date: Wed, 23 Oct 2024 14:24:47 +0000 Subject: [PATCH 7/7] Python: Allow comments in comprehensions A somewhat complicated solution that necessitated adding a new custom function to `tsg-python`. See the comments in `python.tsg` for why this was necessary. --- .../extractor/tests/parser/comprehensions.py | 10 +++ python/extractor/tsg-python/python.tsg | 79 +++++++------------ python/extractor/tsg-python/src/main.rs | 22 ++++++ 3 files changed, 60 insertions(+), 51 deletions(-) diff --git a/python/extractor/tests/parser/comprehensions.py b/python/extractor/tests/parser/comprehensions.py index 52de5828467..e82ac128909 100644 --- a/python/extractor/tests/parser/comprehensions.py +++ b/python/extractor/tests/parser/comprehensions.py @@ -55,3 +55,13 @@ t = tuple(x for y in z) [( t, ) for v in w] + +[# comment + a for b in c # comment + # comment +] # comment + +[# comment + d for e in f if g # comment + # comment +] # comment diff --git a/python/extractor/tsg-python/python.tsg b/python/extractor/tsg-python/python.tsg index 749d8e658be..e0edf62798c 100644 --- a/python/extractor/tsg-python/python.tsg +++ b/python/extractor/tsg-python/python.tsg @@ -1062,30 +1062,38 @@ let @genexpr.result = tuple } -; For the final `if` clause, we need to hook it up with the `yield` expression and with its associated `for` clause. +; For the final clause, we need to hook it up with the rest of the expression. +; If it's an `if` clause, we need to hook it up with the `yield` expression and with its associated +; `for` clause. +; If it's a `for` clause, we only need to create and hook it up with the `yield` expression. +; +; It would be tempting to use anchors here, but they just don't work. In particular, an anchor of +; the form `. (comment)* . )` (which would be needed in order to handle the case where there are +; comments after the last clause) cause the `tree-sitter` query engine to match _all_ clauses, not +; just the last one. +; Instead, we gather up all clauses in a list (these will be in the order they appear in the source +; code), and extract the last element using a custom Rust function. [ (generator_expression body: (_) @body - (if_clause) @last - . + [(if_clause) (for_in_clause)]+ @last_candidates ) @genexpr (list_comprehension body: (_) @body - (if_clause) @last - . + [(if_clause) (for_in_clause)]+ @last_candidates ) @genexpr (set_comprehension body: (_) @body - (if_clause) @last - . + [(if_clause) (for_in_clause)]+ @last_candidates ) @genexpr (dictionary_comprehension body: (_) @body - (if_clause) @last - . + [(if_clause) (for_in_clause)]+ @last_candidates ) @genexpr ] { + let last = (get-last-element @last_candidates) + let expr = (ast-node @body "Expr") let yield = (ast-node @body "Yield") @@ -1096,50 +1104,19 @@ attr (yield) value = @genexpr.result attr (@body.node) ctx = "load" - edge @last.first_if -> expr - attr (@last.first_if -> expr) body = 0 - ; Hook up this `if` clause with its `for` clause - edge @last.for -> @last.node - attr (@last.for -> @last.node) body = 0 -} + if (instance-of last "if_clause") { + edge last.first_if -> expr + attr (last.first_if -> expr) body = 0 -; If the last clause is a `for`, we only have to create and hook up the `yield` expression. -[ - (generator_expression - body: (_) @body - (for_in_clause) @last - . - ) @genexpr - (list_comprehension - body: (_) @body - (for_in_clause) @last - . - ) @genexpr - (set_comprehension - body: (_) @body - (for_in_clause) @last - . - ) @genexpr - (dictionary_comprehension - body: (_) @body - (for_in_clause) @last - . - ) @genexpr -] -{ - let expr = (ast-node @body "Expr") - let yield = (ast-node @body "Yield") - - let @genexpr.expr = expr - let @genexpr.yield = yield - - attr (expr) value = yield - - attr (yield) value = @genexpr.result - attr (@body.node) ctx = "load" - edge @last.node -> expr - attr (@last.node -> expr) body = 0 + ; Hook up this `if` clause with its `for` clause + edge last.for -> last.node + attr (last.for -> last.node) body = 0 + } else { + ; If the last clause is a `for`, we only have to create and hook up the `yield` expression. + edge last.node -> expr + attr (last.node -> expr) body = 0 + } } ; For whatever reason, we do not consider parentheses around the yielded expression if they are present, so diff --git a/python/extractor/tsg-python/src/main.rs b/python/extractor/tsg-python/src/main.rs index ebfcd01a74e..4f876a083e8 100644 --- a/python/extractor/tsg-python/src/main.rs +++ b/python/extractor/tsg-python/src/main.rs @@ -463,6 +463,22 @@ pub mod extra_functions { Ok(Value::Integer(left % right)) } } + + pub struct GetLastElement; + + impl Function for GetLastElement { + fn call( + &self, + _graph: &mut Graph, + _source: &str, + parameters: &mut dyn Parameters, + ) -> Result { + let list = parameters.param()?.into_list()?; + parameters.finish()?; + let last = list.last().unwrap_or(&Value::Null).clone(); + Ok(last) + } + } } fn main() -> Result<()> { @@ -562,6 +578,12 @@ fn main() -> Result<()> { ); functions.add(Identifier::from("mod"), extra_functions::Modulo); + + functions.add( + Identifier::from("get-last-element"), + extra_functions::GetLastElement, + ); + let globals = Variables::new(); let mut config = ExecutionConfig::new(&mut functions, &globals).lazy(false); let graph = file